From 9c4d353128568151ebbf172f3690b8ca205d7af4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:16:30 -0700 Subject: [PATCH 001/873] Create flake8.yml --- .github/workflows/flake8.yml | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8.yml diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml new file mode 100644 index 00000000000..f420ab6cc0a --- /dev/null +++ b/.github/workflows/flake8.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + 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 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 + flake8 . --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics + # yamllint enable rule:line-length \ No newline at end of file From 09930f8e046173cda76f01c606a35bdb03ccfe22 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:16:33 -0700 Subject: [PATCH 002/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 66c7e7a2006..82f013f8e22 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -14,4 +14,7 @@ jobs: uses: iKostanOrg/codewars/.github/workflows/pylint.yml@master mypy: name: MyPy Lint - uses: iKostanOrg/codewars/.github/workflows/mypy.yml@master \ No newline at end of file + uses: iKostanOrg/codewars/.github/workflows/mypy.yml@master + flake8: + name: MyPy Lint + uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master \ No newline at end of file From 29530b54c22aa1ddefd3f391e84b792799c043da Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:27:02 -0700 Subject: [PATCH 003/873] Create flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8_kyu2.yml diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml new file mode 100644 index 00000000000..12c08a0f01b --- /dev/null +++ b/.github/workflows/flake8_kyu2.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu2 + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + 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 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 /kyu_2 --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 From db5afec6933cd70b1c0637b60468fd7a6d07335f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:28:03 -0700 Subject: [PATCH 004/873] Update flake8.yml --- .github/workflows/flake8.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index f420ab6cc0a..c368ae873d4 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -1,13 +1,11 @@ --- name: Flake8 -on: # yamllint disable-line rule:truthy - pull_request_target: - types: - - opened - - edited - - synchronize - - reopened +on: + push: + branches: + - 'utils' + - 'none' workflow_call: jobs: From 2d35560ce99f341ee57ac1c402f11ffad69f1721 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:28:49 -0700 Subject: [PATCH 005/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 12c08a0f01b..0ba0c59bfab 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -1,14 +1,14 @@ --- name: Flake8 for kyu2 -on: # yamllint disable-line rule:truthy - pull_request_target: - types: - - opened - - edited - - synchronize - - reopened - workflow_call: +on: + push: + branches: + - 'kyu2' + +permissions: + contents: read + pull-requests: read jobs: build: From 5e7b3d657e4972c0994113ff462d68f10678f2f7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:29:33 -0700 Subject: [PATCH 006/873] Update flake8.yml --- .github/workflows/flake8.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index c368ae873d4..f95a3be838c 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -8,6 +8,10 @@ on: - 'none' workflow_call: +permissions: + contents: read + pull-requests: read + jobs: build: runs-on: ubuntu-latest From 0b23dfd23d7db26810b8fe69bfd5d3090bb8ee2d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:29:36 -0700 Subject: [PATCH 007/873] Update mypy.yml --- .github/workflows/mypy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 7dfd0f3bec9..770af5d41f1 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -11,7 +11,6 @@ permissions: contents: read pull-requests: read - jobs: build: runs-on: ubuntu-latest From 1e44093f7af4a1b64eaeb1836eb7b8e6cdf74d36 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:32:57 -0700 Subject: [PATCH 008/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 82f013f8e22..7cc548b3a67 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -16,5 +16,5 @@ jobs: name: MyPy Lint uses: iKostanOrg/codewars/.github/workflows/mypy.yml@master flake8: - name: MyPy Lint + name: Flake8 Lint uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master \ No newline at end of file From 21fb8fd905387359a08b2897f1d709499757a374 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:38:35 -0700 Subject: [PATCH 009/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 0ba0c59bfab..191af00eec5 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -42,6 +42,6 @@ jobs: # exit-zero treats all errors as warnings. # The GitHub editor is 127 chars wide run: | - flake8 /kyu_2 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics + flake8 kyu_2 --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 From fb895ad7b68d1202f479180468b41036fe3ef137 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:40:25 -0700 Subject: [PATCH 010/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 191af00eec5..c38562d8676 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -42,6 +42,6 @@ jobs: # exit-zero treats all errors as warnings. # The GitHub editor is 127 chars wide run: | - flake8 kyu_2 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics + flake8 ./kyu_2 --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 From b84e12f7495e3620cec98d3bff14e3352d4f2f34 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:42:07 -0700 Subject: [PATCH 011/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index c38562d8676..6a3dc675d39 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -42,6 +42,6 @@ jobs: # exit-zero treats all errors as warnings. # The GitHub editor is 127 chars wide run: | - flake8 ./kyu_2 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics + 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 # yamllint enable rule:line-length \ No newline at end of file From b166e7cc2c9155e6c88036b6eee99063d11a97e4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:44:01 -0700 Subject: [PATCH 012/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 6a3dc675d39..3f848fe08e3 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -42,6 +42,6 @@ jobs: # 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_2/ - flake8 . --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics + 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 From 3e6ed65fd7a4be569e573526f0396e98bc018714 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:56:15 -0700 Subject: [PATCH 013/873] C901 'normalize_string' is too complex (12) ./kyu_2/evaluate_mathematical_expression/evaluate.py:54:1: C901 'normalize_string' is too complex (12) def normalize_string(string: str) -> str: ^ 1 C901 'normalize_string' is too complex (12) 0.0599 seconds elapsed 152 total logical lines processed 2537 logical lines processed per second 296 total physical lines processed 4941 physical lines processed per second 1607 total tokens processed 26825 tokens processed per second 4 total files processed 66 files processed per second --- .../evaluate.py | 88 ++++++++++--------- .../test_evaluate.py | 3 +- 2 files changed, 47 insertions(+), 44 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index ed24d33d52b..c8e2b064624 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -51,48 +51,8 @@ def process_math_expression(string: str, operators: list) -> str: return ' '.join(strings) -def normalize_string(string: str) -> str: - """ - Normalizing string input - :param string: str - :return: str - """ - strings: list = [] - string_temp: str = ''.join([s for s in string if s != ' ']) - - while string_temp != '': - temp: str = '' - - for i, s in enumerate(string_temp): - if s.isdigit(): - temp += s - - if s in '()': - if temp != '': - strings.append(temp) - strings.append(s) - - if i + 1 < len(string_temp): - string_temp = string_temp[i + 1:] - else: - string_temp = '' - break - - if s in OPERATORS: - if temp != '': - strings.append(temp) - strings.append(s) - - if i + 1 < len(string_temp): - string_temp = string_temp[i + 1:] - break - - if i == len(string_temp) - 1: - if temp != '': - strings.append(temp) - string_temp = '' - - return ' '.join([s for s in strings if s != '']) +def condition_checker(): + pass def bracket_start(strings: list) -> int: @@ -199,3 +159,47 @@ def calc(string: str) -> float: string_lst = [float(s) for s in string_lst] string = str(sum(string_lst)) return float(string) + + +def normalize_string(string: str) -> str: + """ + Normalizing string input + :param string: str + :return: str + """ + strings: list = [] + string_temp: str = ''.join([s for s in string if s != ' ']) + + while string_temp != '': + temp: str = '' + + for i, s in enumerate(string_temp): + if s.isdigit(): + temp += s + + if s in '()': + if temp != '': + strings.append(temp) + strings.append(s) + + if i + 1 < len(string_temp): + string_temp = string_temp[i + 1:] + else: + string_temp = '' + break + + if s in OPERATORS: + if temp != '': + strings.append(temp) + strings.append(s) + + if i + 1 < len(string_temp): + string_temp = string_temp[i + 1:] + break + + if i == len(string_temp) - 1: + if temp != '': + strings.append(temp) + string_temp = '' + + return ' '.join([s for s in strings if s != '']) diff --git a/kyu_2/evaluate_mathematical_expression/test_evaluate.py b/kyu_2/evaluate_mathematical_expression/test_evaluate.py index 9851b41495b..cb9f8073717 100644 --- a/kyu_2/evaluate_mathematical_expression/test_evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/test_evaluate.py @@ -78,8 +78,7 @@ def test_calc(self): ['-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)', 1121.6785714285713], ['-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)', -11.810810810810807], ['(72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)', -5917.00871037987], - ['-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)', 0.8887166236003445] - ) + ['-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)', 0.8887166236003445]) for string, expected in test_data: From f9e9fd6825d19905ab1bb8d512e5b36c643f4021 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:57:24 -0700 Subject: [PATCH 014/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index c8e2b064624..a598a5d88c2 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -51,10 +51,6 @@ def process_math_expression(string: str, operators: list) -> str: return ' '.join(strings) -def condition_checker(): - pass - - def bracket_start(strings: list) -> int: """ Return index of first (open) bracket From 8aa12d9c8d6eb6b0bdd9523c83b66a1547a843d4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:15:40 -0700 Subject: [PATCH 015/873] Update evaluate.py --- .../evaluate_mathematical_expression/evaluate.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index a598a5d88c2..bffc8e413d3 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -173,11 +173,14 @@ def normalize_string(string: str) -> str: if s.isdigit(): temp += s - if s in '()': - if temp != '': - strings.append(temp) + if (s in '()' or s in OPERATORS or i == len(string_temp) - 1) \ + and temp != '': + strings.append(temp) + + if s in '()' or s in OPERATORS: strings.append(s) + if s in '()': if i + 1 < len(string_temp): string_temp = string_temp[i + 1:] else: @@ -185,17 +188,11 @@ def normalize_string(string: str) -> str: break if s in OPERATORS: - if temp != '': - strings.append(temp) - strings.append(s) - if i + 1 < len(string_temp): string_temp = string_temp[i + 1:] break if i == len(string_temp) - 1: - if temp != '': - strings.append(temp) string_temp = '' return ' '.join([s for s in strings if s != '']) From 752e3ab6d3bf6a4d1266420619535a57b0cd1842 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:23:38 -0700 Subject: [PATCH 016/873] Update evaluate.py --- .../evaluate_mathematical_expression/evaluate.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index bffc8e413d3..a598a5d88c2 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -173,14 +173,11 @@ def normalize_string(string: str) -> str: if s.isdigit(): temp += s - if (s in '()' or s in OPERATORS or i == len(string_temp) - 1) \ - and temp != '': - strings.append(temp) - - if s in '()' or s in OPERATORS: + if s in '()': + if temp != '': + strings.append(temp) strings.append(s) - if s in '()': if i + 1 < len(string_temp): string_temp = string_temp[i + 1:] else: @@ -188,11 +185,17 @@ def normalize_string(string: str) -> str: break if s in OPERATORS: + if temp != '': + strings.append(temp) + strings.append(s) + if i + 1 < len(string_temp): string_temp = string_temp[i + 1:] break if i == len(string_temp) - 1: + if temp != '': + strings.append(temp) string_temp = '' return ' '.join([s for s in strings if s != '']) From e5441c569e0c50fb1dd4bcddc14e1badf4553e77 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:26:17 -0700 Subject: [PATCH 017/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index a598a5d88c2..4d578001574 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -198,4 +198,4 @@ def normalize_string(string: str) -> str: strings.append(temp) string_temp = '' - return ' '.join([s for s in strings if s != '']) + return ' '.join([s for s in strings]) From ab5f5458a859efd92be3c3606d59dbc59ee3ec0b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:27:39 -0700 Subject: [PATCH 018/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 4d578001574..44b06f82fa7 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -198,4 +198,4 @@ def normalize_string(string: str) -> str: strings.append(temp) string_temp = '' - return ' '.join([s for s in strings]) + return ' '.join(strings) From 86d1f9b62f2af21678b4f38856b19fa579105623 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:30:42 -0700 Subject: [PATCH 019/873] Update evaluate.py --- .../evaluate.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 44b06f82fa7..ff6417f107d 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -145,6 +145,7 @@ def calc(string: str) -> float: :param string: str :return: float """ + string = ''.join([s for s in string if s != ' ']) string = normalize_string(string) string = ''.join(string.split('+')) strings: list = string.split() @@ -164,12 +165,11 @@ def normalize_string(string: str) -> str: :return: str """ strings: list = [] - string_temp: str = ''.join([s for s in string if s != ' ']) - while string_temp != '': + while string != '': temp: str = '' - for i, s in enumerate(string_temp): + for i, s in enumerate(string): if s.isdigit(): temp += s @@ -178,10 +178,10 @@ def normalize_string(string: str) -> str: strings.append(temp) strings.append(s) - if i + 1 < len(string_temp): - string_temp = string_temp[i + 1:] + if i + 1 < len(string): + string = string[i + 1:] else: - string_temp = '' + string = '' break if s in OPERATORS: @@ -189,13 +189,13 @@ def normalize_string(string: str) -> str: strings.append(temp) strings.append(s) - if i + 1 < len(string_temp): - string_temp = string_temp[i + 1:] + if i + 1 < len(string): + string = string[i + 1:] break - if i == len(string_temp) - 1: + if i == len(string) - 1: if temp != '': strings.append(temp) - string_temp = '' + string = '' return ' '.join(strings) From 8a8a2486c4f280e80c0676f5622c0d51a2b4de14 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:52:28 -0700 Subject: [PATCH 020/873] Update evaluate.py --- .../evaluate.py | 74 +++++++++++-------- 1 file changed, 43 insertions(+), 31 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index ff6417f107d..1bc79d36b28 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -136,7 +136,7 @@ def process_duplicate_minus(string: str) -> str: del strings[i] break - return ' '.join([s for s in strings if s != '']) + return ' '.join(strings) def calc(string: str) -> float: @@ -158,44 +158,56 @@ def calc(string: str) -> float: return float(string) -def normalize_string(string: str) -> str: +def check_conditions(strings, string, temp) -> (str, str): """ - Normalizing string input - :param string: str - :return: str + Check conditions + :param strings: + :param string: + :param temp: + :return: """ - strings: list = [] + for i, s in enumerate(string): + if s.isdigit(): + temp += s - while string != '': - temp: str = '' + if s in '()': + if temp != '': + strings.append(temp) + strings.append(s) - for i, s in enumerate(string): - if s.isdigit(): - temp += s + if i + 1 < len(string): + string = string[i + 1:] + else: + string = '' + break - if s in '()': - if temp != '': - strings.append(temp) - strings.append(s) + if s in OPERATORS: + if temp != '': + strings.append(temp) + strings.append(s) - if i + 1 < len(string): - string = string[i + 1:] - else: - string = '' - break + if i + 1 < len(string): + string = string[i + 1:] + break - if s in OPERATORS: - if temp != '': - strings.append(temp) - strings.append(s) + if i == len(string) - 1: + if temp != '': + strings.append(temp) + string = '' - if i + 1 < len(string): - string = string[i + 1:] - break + return temp, string - if i == len(string) - 1: - if temp != '': - strings.append(temp) - string = '' + +def normalize_string(string: str) -> str: + """ + Normalizing string input + :param string: str + :return: str + """ + strings: list = [] + + while string: + temp: str = '' + temp, string = check_conditions(strings, string, temp) return ' '.join(strings) From c260c5cf4557cd4c6e9880e3841a63c749842795 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:57:43 -0700 Subject: [PATCH 021/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 1bc79d36b28..9d2ac6dd46d 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -158,7 +158,7 @@ def calc(string: str) -> float: return float(string) -def check_conditions(strings, string, temp) -> (str, str): +def check_conditions(strings, string, temp) -> [str, str]: """ Check conditions :param strings: @@ -170,9 +170,10 @@ def check_conditions(strings, string, temp) -> (str, str): if s.isdigit(): temp += s + if (s in ''.join(OPERATORS) + '()' or i == len(string) - 1) and temp: + strings.append(temp) + if s in '()': - if temp != '': - strings.append(temp) strings.append(s) if i + 1 < len(string): @@ -182,8 +183,6 @@ def check_conditions(strings, string, temp) -> (str, str): break if s in OPERATORS: - if temp != '': - strings.append(temp) strings.append(s) if i + 1 < len(string): @@ -191,8 +190,6 @@ def check_conditions(strings, string, temp) -> (str, str): break if i == len(string) - 1: - if temp != '': - strings.append(temp) string = '' return temp, string From 527229f14db292abdf61ab915ec51b758e343744 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:59:33 -0700 Subject: [PATCH 022/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 9d2ac6dd46d..f2b24969696 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -158,7 +158,7 @@ def calc(string: str) -> float: return float(string) -def check_conditions(strings, string, temp) -> [str, str]: +def check_conditions(strings, string, temp) -> (str, str): """ Check conditions :param strings: From 4649c74ee6f1c58903a93d719203cfdceeae71b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:01:53 -0700 Subject: [PATCH 023/873] Update evaluate.py --- .../evaluate.py | 25 ++++++------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index f2b24969696..87ee10e9781 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -146,7 +146,13 @@ def calc(string: str) -> float: :return: float """ string = ''.join([s for s in string if s != ' ']) - string = normalize_string(string) + + strings: list = [] + while string: + temp: str = '' + temp, string = check_conditions(strings, string, temp) + string = ' '.join(strings) + string = ''.join(string.split('+')) strings: list = string.split() string = process_brackets(strings) @@ -160,7 +166,7 @@ def calc(string: str) -> float: def check_conditions(strings, string, temp) -> (str, str): """ - Check conditions + Checking conditions and normalizing string input :param strings: :param string: :param temp: @@ -193,18 +199,3 @@ def check_conditions(strings, string, temp) -> (str, str): string = '' return temp, string - - -def normalize_string(string: str) -> str: - """ - Normalizing string input - :param string: str - :return: str - """ - strings: list = [] - - while string: - temp: str = '' - temp, string = check_conditions(strings, string, temp) - - return ' '.join(strings) From 73b87dda28c31dd6782047ecb56bddc74e08ebe5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:03:11 -0700 Subject: [PATCH 024/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 87ee10e9781..dd4160ac220 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -154,7 +154,7 @@ def calc(string: str) -> float: string = ' '.join(strings) string = ''.join(string.split('+')) - strings: list = string.split() + strings = string.split() string = process_brackets(strings) string = process_duplicate_minus(string) string = process_math_expression(string, ['*', '/']) From 6ffe5698b480a554a9b8560232d9983bb8317376 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:04:47 -0700 Subject: [PATCH 025/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index dd4160ac220..6791ca9ec26 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -164,13 +164,13 @@ def calc(string: str) -> float: return float(string) -def check_conditions(strings, string, temp) -> (str, str): +def check_conditions(strings: list, string: str, temp: str) -> (str, str): """ - Checking conditions and normalizing string input - :param strings: - :param string: - :param temp: - :return: + Normalizing string input by checking conditions + :param strings: list + :param string: str + :param temp: str + :return: tuple(str, str) """ for i, s in enumerate(string): if s.isdigit(): From cb13be1570fb19a49f052b9a9421340e8cddb7f1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:05:32 -0700 Subject: [PATCH 026/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 6791ca9ec26..84399f4c70a 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -186,6 +186,7 @@ def check_conditions(strings: list, string: str, temp: str) -> (str, str): string = string[i + 1:] else: string = '' + break if s in OPERATORS: @@ -193,6 +194,7 @@ def check_conditions(strings: list, string: str, temp: str) -> (str, str): if i + 1 < len(string): string = string[i + 1:] + break if i == len(string) - 1: From 25db014a66a3f5f63bbdb31ff9935c54fc1bc8e4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:07:45 -0700 Subject: [PATCH 027/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 84399f4c70a..6c297d42e48 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -164,7 +164,7 @@ def calc(string: str) -> float: return float(string) -def check_conditions(strings: list, string: str, temp: str) -> (str, str): +def check_conditions(strings: list, string: str, temp: str) -> tuple[str, str]: """ Normalizing string input by checking conditions :param strings: list @@ -194,7 +194,7 @@ def check_conditions(strings: list, string: str, temp: str) -> (str, str): if i + 1 < len(string): string = string[i + 1:] - + break if i == len(string) - 1: From e4db2e74b081a8886d92131acda980bbf1275d43 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 21:45:49 -0700 Subject: [PATCH 028/873] Create flake8_kyu3.yml --- .github/workflows/flake8_kyu3.yml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8_kyu3.yml diff --git a/.github/workflows/flake8_kyu3.yml b/.github/workflows/flake8_kyu3.yml new file mode 100644 index 00000000000..861c5340f93 --- /dev/null +++ b/.github/workflows/flake8_kyu3.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu3 + +on: + 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 \ No newline at end of file From c4b63fcd734f6572cd503f21c5301cd31c7a0bb4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 30 Oct 2024 19:21:07 -0700 Subject: [PATCH 029/873] Update walker_class.py --- .../walker_class.py | 35 +++++++++---------- 1 file changed, 17 insertions(+), 18 deletions(-) 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..93c69e3ea2d 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 @@ -21,32 +21,27 @@ 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 @@ -165,23 +160,27 @@ def __set_direction(self) -> None: 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 == '+' 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'))) + + if ((self.position == '-' and (previous_position in ('-', 'X'))) or (self.position == '-' and previous_position == '+')): 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'))) + + if ((self.position == '|' and (previous_position in ('|', 'X'))) or (self.position == '|' and previous_position == '+')): if self.__position['row'] < self.__position['prev_row']: self.__direction['up'] = self.__test_up() From eb5f0253e9489b4d4689ba0cd524f7803bdc994d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 30 Oct 2024 19:26:50 -0700 Subject: [PATCH 030/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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 93c69e3ea2d..db7d2962982 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,6 +9,7 @@ class Walker: """ Walker class: make moves, check directions, etc... """ + def __init__(self, grid: list): # print('__init__') self.__grid: list = grid @@ -157,7 +158,7 @@ def __set_direction(self) -> None: 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() @@ -165,7 +166,7 @@ def __set_direction(self) -> None: self.__direction['left'] = self.__test_left() self.__direction['right'] = self.__test_right() - if self.position == '+' and previous_position == '+': + if self.position == previous_position == '+': if self.__position['col'] == self.__position['prev_col']: self.__direction['left'] = self.__test_left() self.__direction['right'] = self.__test_right() @@ -173,15 +174,13 @@ def __set_direction(self) -> None: self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() - if ((self.position == '-' and (previous_position in ('-', 'X'))) - or (self.position == '-' and previous_position == '+')): + 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() - if ((self.position == '|' and (previous_position in ('|', 'X'))) - or (self.position == '|' and previous_position == '+')): + 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']: From af9d1c19bd5dbdb8c6d5921003d3de12561ed062 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 30 Oct 2024 20:06:05 -0700 Subject: [PATCH 031/873] Update walker_class.py --- .../walker_class.py | 43 ++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) 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 db7d2962982..14707a95d1b 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 @@ -11,7 +11,6 @@ class Walker: """ def __init__(self, grid: list): - # print('__init__') self.__grid: list = grid self.__is_start: bool = True self.__position: dict = self.__get_start_point() @@ -158,6 +157,8 @@ def __set_direction(self) -> None: self.__reset_direction() print(f'prev: {previous_position}, pos: {self.position}') + case_i = self.__get_case_i(previous_position) + if self.position == '+' and previous_position in '-X': self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() @@ -186,6 +187,46 @@ def __set_direction(self) -> None: elif self.__position['row'] > self.__position['prev_row']: self.__direction['down'] = self.__test_down() + def __get_case_i(self, previous_position) -> int: + """ + Get case i base on the current position vs previous_position + :param previous_position: + :return: + """ + i: int = 0 + + if self.position == '+' and previous_position in '-X': + i = 1 + + if self.position == '+' and previous_position == '|': + i = 2 + + if self.position == previous_position == '+' \ + and self.__position['col'] == self.__position['prev_col']: + i = 3 + + if self.position == previous_position == '+' \ + and self.__position['row'] == self.__position['prev_row']: + i = 4 + + if self.position == '-' and previous_position in '-X+' \ + and self.__position['col'] < self.__position['prev_col']: + i = 5 + + if self.position == '-' and previous_position in '-X+' \ + and self.__position['col'] > self.__position['prev_col']: + i = 6 + + if self.position == '|' and previous_position in '|X+' \ + and self.__position['row'] < self.__position['prev_row']: + i = 7 + + if self.position == '|' and previous_position in '|X+' \ + and self.__position['row'] > self.__position['prev_row']: + i = 8 + + return i + def __test_up(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] From 21fac45bd6dec09e0333f9ee35991bf4595b99dd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 30 Oct 2024 20:16:36 -0700 Subject: [PATCH 032/873] Update walker_class.py --- .../walker_class.py | 42 ------------------- 1 file changed, 42 deletions(-) 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 14707a95d1b..b05caa94dd5 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 @@ -157,8 +157,6 @@ def __set_direction(self) -> None: self.__reset_direction() print(f'prev: {previous_position}, pos: {self.position}') - case_i = self.__get_case_i(previous_position) - if self.position == '+' and previous_position in '-X': self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() @@ -187,46 +185,6 @@ def __set_direction(self) -> None: elif self.__position['row'] > self.__position['prev_row']: self.__direction['down'] = self.__test_down() - def __get_case_i(self, previous_position) -> int: - """ - Get case i base on the current position vs previous_position - :param previous_position: - :return: - """ - i: int = 0 - - if self.position == '+' and previous_position in '-X': - i = 1 - - if self.position == '+' and previous_position == '|': - i = 2 - - if self.position == previous_position == '+' \ - and self.__position['col'] == self.__position['prev_col']: - i = 3 - - if self.position == previous_position == '+' \ - and self.__position['row'] == self.__position['prev_row']: - i = 4 - - if self.position == '-' and previous_position in '-X+' \ - and self.__position['col'] < self.__position['prev_col']: - i = 5 - - if self.position == '-' and previous_position in '-X+' \ - and self.__position['col'] > self.__position['prev_col']: - i = 6 - - if self.position == '|' and previous_position in '|X+' \ - and self.__position['row'] < self.__position['prev_row']: - i = 7 - - if self.position == '|' and previous_position in '|X+' \ - and self.__position['row'] > self.__position['prev_row']: - i = 8 - - return i - def __test_up(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] From 6b5e8984c3288259f7df57ec95ae52d920983f49 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:05:50 -0800 Subject: [PATCH 033/873] Update walker_class.py --- .../walker_class.py | 48 ++++++++++++++----- 1 file changed, 35 insertions(+), 13 deletions(-) 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 b05caa94dd5..e8e88088564 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 @@ -143,20 +143,12 @@ 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': self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() @@ -167,24 +159,54 @@ def __set_direction(self) -> None: if self.position == previous_position == '+': if self.__position['col'] == self.__position['prev_col']: - self.__direction['left'] = self.__test_left() + 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() + 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() + 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() + print(f'prev: {previous_position}, pos: {self.position}') + + 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'] From 89c2ac7c3f8d4a41e504d51354fa0e36e15aa2a0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:10:04 -0800 Subject: [PATCH 034/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 e8e88088564..5f75c76ca81 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 @@ -157,11 +157,13 @@ def position_plus(self, previous_position) -> None: self.__direction['left'] = self.__test_left() self.__direction['right'] = self.__test_right() - if self.position == previous_position == '+': - if self.__position['col'] == self.__position['prev_col']: + 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() - elif self.__position['row'] == self.__position['prev_row']: + + 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() From c89537d97460602be16c4f186ef04aa93731fab2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:11:36 -0800 Subject: [PATCH 035/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 5f75c76ca81..d529012b658 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 @@ -159,13 +159,13 @@ def position_plus(self, previous_position) -> None: 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() + 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() + self.__direction['up'] = self.__test_up() + self.__direction['down'] = self.__test_down() def position_minus(self, previous_position) -> None: """ From 0029279e9d604fbbfd92e518929b915cf9605c98 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:18:02 -0800 Subject: [PATCH 036/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..bd18cad04a4 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 @@ -25,7 +25,7 @@ @allure.link( url='https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237', name='Source/Kata') -@pytest.mark.skip(reason="The solution is not ready") +#@pytest.mark.skip(reason="The solution is not ready") # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): """ From 4ed546faad031c5419a605083bb459cb239f2149 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:21:02 -0800 Subject: [PATCH 037/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 2 -- 1 file changed, 2 deletions(-) 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 bd18cad04a4..45570fa3e9e 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): """ From 53c36aed8441c26054462d20c74a70474aae0078 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:37:12 -0800 Subject: [PATCH 038/873] Create flake8_kyu4.yml --- .github/workflows/flake8_kyu4.yml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8_kyu4.yml diff --git a/.github/workflows/flake8_kyu4.yml b/.github/workflows/flake8_kyu4.yml new file mode 100644 index 00000000000..558e25a9986 --- /dev/null +++ b/.github/workflows/flake8_kyu4.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu4 + +on: + 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 \ No newline at end of file From ba3c86025076a3cf917b8a8c48453e56597a2b82 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 19:48:10 -0800 Subject: [PATCH 039/873] Update format_duration.py --- .../format_duration.py | 39 +++++++++++++++---- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 4065d79cb7d..49dbd564312 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -69,14 +69,39 @@ def format_duration(seconds: int) -> str: 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}' + result = format_minutes(minutes, seconds, minute, result) + result = format_seconds(seconds, second, result) + 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: From 28a4a9c4dc40c4ba1ff4af8386f5aabedea64426 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 20:02:15 -0800 Subject: [PATCH 040/873] Update format_duration.py --- .../format_duration.py | 30 +++++++++++++++++-- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 49dbd564312..94f39286b35 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -59,19 +59,43 @@ 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}' - result = format_minutes(minutes, seconds, minute, result) - result = format_seconds(seconds, second, result) - return result From dde06b4cef47b0c7db9c8738cda2ce7bde93b04e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 4 Nov 2024 20:05:32 -0800 Subject: [PATCH 041/873] Update format_duration.py --- kyu_4/human_readable_duration_format/format_duration.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 94f39286b35..3bf8955a6a3 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -73,7 +73,7 @@ def format_days(days: int, day: str, result: str) -> str: :param days: :param day: :param result: - :return: + :return: """ if days > 0 and result != '': result += f', {day}' @@ -99,7 +99,10 @@ def format_hours(hours: int, hour: str, result: str) -> str: return result -def format_minutes(minutes: int, seconds: int, minute: str, result: str) -> str: +def format_minutes(minutes: int, + seconds: int, + minute: str, + result: str) -> str: """ Format minutes for the final string :param minutes: From 80d913bc8ea2eacaf34d87820c879c350b9fe2cd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 19:52:10 -0800 Subject: [PATCH 042/873] Update solution.py --- kyu_4/range_extraction/solution.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index 6bdc4e98e02..d0ced9fb32f 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -24,21 +24,19 @@ def solution(args: list) -> str: 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]) + ',' - current[2] = True else: result += str(current[0]) + ',' - current[2] = True - if current[0] != current[1]: result += str(current[1]) + ',' current[0] = a current[1] = a - if i == len(args) - 1 and current[2] is False: - + if i == len(args) - 1 and not current[2]: if current[1] + 1 == a: current[1] = a @@ -48,7 +46,7 @@ def solution(args: list) -> str: elif current[0] != current[1]: result += ',' + str(current[1]) - if i == len(args) - 1 and current[-1] != a and current[2] is True: + if i == len(args) - 1 and current[-1] != a and current[2]: result += str(a) return result From a65f6d32fa8a72ac8e9813ed87bd53f8091036fd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:02:11 -0800 Subject: [PATCH 043/873] Update solution.py --- kyu_4/range_extraction/solution.py | 48 ++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index d0ced9fb32f..e8f3547d3d1 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -17,25 +17,14 @@ 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: - 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 + # case 2 + result = case_2(a, i, current, result) + # case 3 if i == len(args) - 1 and not current[2]: if current[1] + 1 == a: current[1] = a @@ -46,7 +35,36 @@ def solution(args: list) -> str: elif current[0] != current[1]: result += ',' + str(current[1]) + # case 4 if i == len(args) - 1 and current[-1] != a and current[2]: result += str(a) return result + + +def case_2(a: int, i: int, current: list, result: str) -> str: + """ + Case #2 + :param i: + :param a: + :param current: + :param result: + :return: + """ + 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 From ca250c343b34fedede474e621438ededbe33c073 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:05:37 -0800 Subject: [PATCH 044/873] Update solution.py --- kyu_4/range_extraction/solution.py | 35 +++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index e8f3547d3d1..8db916961bd 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -25,15 +25,7 @@ def solution(args: list) -> str: result = case_2(a, i, current, result) # case 3 - if i == len(args) - 1 and not current[2]: - 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]) + result = case_3(args, a, i, current, result) # case 4 if i == len(args) - 1 and current[-1] != a and current[2]: @@ -42,7 +34,30 @@ def solution(args: list) -> str: return result -def case_2(a: int, i: int, current: list, result: str) -> str: +def case_3(args: list, a: int, i: int, current: list, result: str) -> str: + """ + Case #3 + :param args: + :param a: + :param i: + :param current: + :param result: + :return: + """ + if i == len(args) - 1 and not current[2]: + 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]) + + return result + + +def case_2(a: int, i: int, current: list, result: str) -> str: """ Case #2 :param i: From 5256018fc35dbacff71426459ea8db81fc2c59cd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:16:50 -0800 Subject: [PATCH 045/873] Update solution.py --- kyu_4/range_extraction/solution.py | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index 8db916961bd..fe5bfdb3e06 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -22,10 +22,11 @@ def solution(args: list) -> str: continue # case 2 - result = case_2(a, i, current, result) + result = case_2(a=a, i=i, current=current, result=result) # case 3 - result = case_3(args, a, i, current, result) + if i == len(args) - 1 and not current[2]: + result = case_3(args=args, a=a, i=i, current=current, result=result) # case 4 if i == len(args) - 1 and current[-1] != a and current[2]: @@ -44,20 +45,19 @@ def case_3(args: list, a: int, i: int, current: list, result: str) -> str: :param result: :return: """ - if i == len(args) - 1 and not current[2]: - if current[1] + 1 == a: - current[1] = a + 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]) + 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(a: int, i: int, current: list, result: str) -> str: +def case_2(**kwargs) -> str: """ Case #2 :param i: @@ -66,6 +66,12 @@ def case_2(a: int, i: int, current: list, result: str) -> str: :param result: :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 From cb855d47d075e552b9708bd63cca2c9146522d7e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:17:34 -0800 Subject: [PATCH 046/873] Update solution.py --- kyu_4/range_extraction/solution.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index fe5bfdb3e06..1747ce66db3 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -60,13 +60,8 @@ def case_3(args: list, a: int, i: int, current: list, result: str) -> str: def case_2(**kwargs) -> str: """ Case #2 - :param i: - :param a: - :param current: - :param result: :return: """ - a: int = kwargs['a'] i: int = kwargs['i'] current: list = kwargs['current'] From 6793c1f08e4dd0fc897a1b98502bf9bcbb50cabb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:20:05 -0800 Subject: [PATCH 047/873] Update solution.py --- kyu_4/range_extraction/solution.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index 1747ce66db3..6fc40883d8e 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -26,7 +26,7 @@ def solution(args: list) -> str: # case 3 if i == len(args) - 1 and not current[2]: - result = case_3(args=args, a=a, i=i, current=current, result=result) + result = case_3(a=a, current=current, result=result) # case 4 if i == len(args) - 1 and current[-1] != a and current[2]: @@ -35,12 +35,10 @@ def solution(args: list) -> str: return result -def case_3(args: list, a: int, i: int, current: list, result: str) -> str: +def case_3(a: int, current: list, result: str) -> str: """ Case #3 - :param args: :param a: - :param i: :param current: :param result: :return: From 4c82be456ba93e06ea04fa1009828a34449cd4c1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:34:50 -0800 Subject: [PATCH 048/873] Create flake8_kyu5.yml --- .github/workflows/flake8_kyu5.yml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8_kyu5.yml diff --git a/.github/workflows/flake8_kyu5.yml b/.github/workflows/flake8_kyu5.yml new file mode 100644 index 00000000000..a2a3514fe9b --- /dev/null +++ b/.github/workflows/flake8_kyu5.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu5 + +on: + 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 \ No newline at end of file From f397e154fbc71a47eeb5388007c0aa0eb9a3e145 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:37:21 -0800 Subject: [PATCH 049/873] Update test_compute_ranks.py --- kyu_5/sports_league_table_ranking/test_compute_ranks.py | 4 ---- 1 file changed, 4 deletions(-) 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 From c032efbbde4940bd42d13f97b8babec82e92a64f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 6 Nov 2024 20:46:13 -0800 Subject: [PATCH 050/873] Create flake8_kyu6.yml --- .github/workflows/flake8_kyu6.yml | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/flake8_kyu6.yml diff --git a/.github/workflows/flake8_kyu6.yml b/.github/workflows/flake8_kyu6.yml new file mode 100644 index 00000000000..87d68bbc791 --- /dev/null +++ b/.github/workflows/flake8_kyu6.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu6 + +on: + 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 \ No newline at end of file From 0da880e458127fcee1e1c461be7bfcf02fa14758 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 19:55:15 -0800 Subject: [PATCH 051/873] Update to_table.py --- kyu_6/array_to_html_table/to_table.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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': '', - 'end': ''} -} + 'end': ''}} def to_table(data: list, header: bool = False, index: bool = False) -> str: @@ -54,7 +53,7 @@ def to_table(data: list, header: bool = False, index: bool = False) -> str: rows_and_columns += ''.join(f'{TABLE['header']['start']}' f'{col}' - f'{ TABLE['header']['end']}' + f'{TABLE['header']['end']}' for b, col in enumerate(row)) rows_and_columns = (f'{rows_and_columns}' From 6aadecb0f01d4a7d9ec9c5557446e59918678ec0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 19:56:41 -0800 Subject: [PATCH 052/873] Update test_namelist.py --- kyu_6/format_string_of_names/test_namelist.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/format_string_of_names/test_namelist.py b/kyu_6/format_string_of_names/test_namelist.py index 428fe8beaa1..8f1649e4a91 100644 --- a/kyu_6/format_string_of_names/test_namelist.py +++ b/kyu_6/format_string_of_names/test_namelist.py @@ -11,6 +11,7 @@ from utils.log_func import print_log from kyu_6.format_string_of_names.solution import namelist + # pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') @@ -30,6 +31,7 @@ class NamelistTestCase(unittest.TestCase): """ Testing namelist function """ + def test_namelist(self): """ Test namelist From 843cd426ca4735ab3f91160c7db9d666fcbc70ff Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 19:59:05 -0800 Subject: [PATCH 053/873] Update test_find_missing_number.py --- kyu_6/number_zoo_patrol/test_find_missing_number.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/number_zoo_patrol/test_find_missing_number.py b/kyu_6/number_zoo_patrol/test_find_missing_number.py index b414c468be7..43d86cec932 100644 --- a/kyu_6/number_zoo_patrol/test_find_missing_number.py +++ b/kyu_6/number_zoo_patrol/test_find_missing_number.py @@ -12,6 +12,7 @@ from kyu_6.number_zoo_patrol.missing_number \ import find_missing_number + # pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') @@ -31,6 +32,7 @@ class FindMissingNumberTestCase(unittest.TestCase): """ Testing 'find_missing_number' function """ + def test_find_missing_number(self): """ Test a function that should take a shuffled list of @@ -100,7 +102,6 @@ def test_find_missing_number(self): with allure.step(f"Enter a list and verify the " f"expected output: {expected} vs " f"actual result: {actual_result}"): - print_log(seq=numbers, expected=expected, result=actual_result) From 36be7938dd291280d64069e293afd7c227154fc3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 19:59:08 -0800 Subject: [PATCH 054/873] Update test_group_cities.py --- kyu_6/rotate_the_letters_of_each_element/test_group_cities.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py b/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py index 6eb7b5412d1..fe132c61b0a 100644 --- a/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py +++ b/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py @@ -12,6 +12,7 @@ from kyu_6.rotate_the_letters_of_each_element.group_cities \ import group_cities + # pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') @@ -32,6 +33,7 @@ class GroupCitiesTestCase(unittest.TestCase): """ Testing 'group_cities' function """ + def test_group_cities(self): """ Test that a function that given a sequence of strings, From d235d258fb6bac6d033b10aa50029bd383a4dd5c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 19:59:47 -0800 Subject: [PATCH 055/873] Update test_has_subpattern.py --- kyu_6/string_subpattern_recognition_2/test_has_subpattern.py | 2 ++ 1 file changed, 2 insertions(+) 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 From 17af92eb5ffbf3c64d5cb33f51bd4212ca8f7694 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 20:10:42 -0800 Subject: [PATCH 056/873] Create yamllint.yml --- .github/workflows/yamllint.yml | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/yamllint.yml diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml new file mode 100644 index 00000000000..4a7d2eeb7f8 --- /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 . \ No newline at end of file From f99c2f56c2a564d2b8ad683d987a5eaf37dc0b4f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 20:13:03 -0800 Subject: [PATCH 057/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 7cc548b3a67..12685dc4b2c 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -17,4 +17,7 @@ jobs: 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 \ No newline at end of file From c630e2e3bb0dad057dc57953cc5012dacaa53350 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 20:51:40 -0800 Subject: [PATCH 058/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 12685dc4b2c..98038b80ac2 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -9,8 +9,8 @@ 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 @@ -18,6 +18,6 @@ jobs: flake8: name: Flake8 Lint uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master - Yamllint: + yamllint: name: YAML Lint uses: iKostanOrg/codewars/.github/workflows/yamllint.yml@master \ No newline at end of file From 13694014a25d85725d05c23192c5a1194f4eeeb0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 7 Nov 2024 20:53:30 -0800 Subject: [PATCH 059/873] Update markdown_lint.yml --- .github/workflows/markdown_lint.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index cb42838374c..bb583c8d84f 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -16,10 +16,6 @@ jobs: 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: From 6370426bbb98b165a5a39fe0d4225d4071464f9f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:07:53 -0800 Subject: [PATCH 060/873] Update .readthedocs.yaml ./.readthedocs.yaml Warning: 5:1 [document-start] missing document start "---" Error: 16:81 [line-length] line too long (110 > 80 characters) Error: 30:4 [indentation] wrong indentation: expected 2 but found 3 Error: 32:50 [new-line-at-end-of-file] no new line character at the end of file --- .readthedocs.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 From bcb8a27222de7c72ac9cb76d8f3de5c41d2b6416 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:10:27 -0800 Subject: [PATCH 061/873] Update .codacy.yml ./.codacy.yml Error: 4:4 [indentation] wrong indentation: expected 2 but found 3 Error: 6:4 [indentation] wrong indentation: expected 2 but found 3 Error: 8:4 [indentation] wrong indentation: expected 2 but found 3 Error: 15:3 [indentation] wrong indentation: expected 1 but found 2 Error: 16:5 [indentation] wrong indentation: expected 3 but found 4 Error: 17:7 [indentation] wrong indentation: expected 5 but found 6 Error: 19:5 [indentation] wrong indentation: expected 3 but found 4 Error: 22:3 [indentation] wrong indentation: expected 1 but found 2 --- .codacy.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.codacy.yml b/.codacy.yml index be9ff9185a6..8b15ec2f08d 100644 --- a/.codacy.yml +++ b/.codacy.yml @@ -1,23 +1,23 @@ --- 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/**' From 3665d97ac8b58ff29858bdd6a3e3a904dcbc58fa Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:15:35 -0800 Subject: [PATCH 062/873] Update .codacy.yml ./.codacy.yml Error: 17:5 [indentation] wrong indentation: expected 3 but found 4 Error: 22:3 [indentation] wrong indentation: expected 1 but found 2 --- .codacy.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.codacy.yml b/.codacy.yml index 8b15ec2f08d..237a0687d9f 100644 --- a/.codacy.yml +++ b/.codacy.yml @@ -14,21 +14,21 @@ engines: languages: python: extensions: - - '.py' + - '.py' markup: 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' From d6c735766584149266b77b8dd3a18991780da2c7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:17:25 -0800 Subject: [PATCH 063/873] Update .markdownlint-cli2.yaml ./.markdownlint-cli2.yaml Error: 2:81 [line-length] line too long (83 > 80 characters) Warning: 6:1 [document-start] missing document start "---" Warning: 12:2 [comments] missing starting space in comment Warning: 16:2 [comments] missing starting space in comment Error: 19:81 [line-length] line too long (104 > 80 characters) Error: 36:15 [new-line-at-end-of-file] no new line character at the end of file --- .markdownlint-cli2.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 7063bb113e6..66e2a7294bb 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: # - "!*bout.md" - # Define glob expressions to ignore #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,5 @@ MD013: # Strict length checking strict: false # Stern length checking - stern: false \ No newline at end of file + stern: false + \ No newline at end of file From e2cbe0fcb659130b73e66003b88a43385970a1a9 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:18:59 -0800 Subject: [PATCH 064/873] Update .markdownlint-cli2.yaml ./.markdownlint-cli2.yaml Warning: 13:2 [comments] missing starting space in comment Warning: 16:2 [comments] missing starting space in comment Error: 37:3 [new-line-at-end-of-file] no new line character at the end of file Error: 37:1 [trailing-spaces] trailing spaces --- .markdownlint-cli2.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 66e2a7294bb..97589fe9d76 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -10,10 +10,10 @@ 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 @@ -34,4 +34,3 @@ MD013: strict: false # Stern length checking stern: false - \ No newline at end of file From b13796847bc37af47e87915d465f167dcce502bd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:25:36 -0800 Subject: [PATCH 065/873] Update dependabot.yml ./.github/dependabot.yml Error: 47:34 [new-line-at-end-of-file] no new line character at the end of file --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From edc0955ae5584c89f0c6343116ec55484f42b9cd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:28:14 -0800 Subject: [PATCH 066/873] Update pylint.yml ./.github/workflows/pylint.yml Warning: 1:1 [document-start] missing document start "---" Warning: 3:1 [truthy] truthy value should be one of [false, true] Error: 21:5 [indentation] wrong indentation: expected 6 but found 4 Error: 23:81 [line-length] line too long (88 > 80 characters) Error: 47:48 [new-line-at-end-of-file] no new line character at the end of file --- .github/workflows/pylint.yml | 56 +++++++++++++++++++----------------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index ec2aa9cc8dd..eec3cabd06a 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,3 +1,4 @@ +--- name: PyLint on: @@ -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') From b7fd90de0dc299eae1452abd8a060ac29d2d3af4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:31:26 -0800 Subject: [PATCH 067/873] Update pylint.yml --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index eec3cabd06a..bb14ed20f36 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,7 +1,7 @@ --- name: PyLint -on: +on: # yamllint disable-line rule:truthy push: branches: - 'utils' From 83b900bff4612e53eca5b9b0390b3c4a25566d73 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:32:09 -0800 Subject: [PATCH 068/873] Update yamllint.yml --- .github/workflows/yamllint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 4a7d2eeb7f8..2f0cdf39f7b 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -36,4 +36,4 @@ jobs: yamllint --version - name: Analysing YML files run: | - yamllint . \ No newline at end of file + yamllint . From 3c366bec9e24d3cd279c2dea09a32889c73028f1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:33:23 -0800 Subject: [PATCH 069/873] Update yamllint.yml --- .github/workflows/yamllint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 2f0cdf39f7b..6a5382419ae 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -1,7 +1,7 @@ --- name: Yamllint -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy pull_request_target: types: - opened From bde94a0eb5d5f6c1dad9d3f52bcc2bb66103f762 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 8 Nov 2024 21:35:02 -0800 Subject: [PATCH 070/873] Update pylint.yml --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index bb14ed20f36..e06244d2491 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,7 +1,7 @@ --- name: PyLint -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy push: branches: - 'utils' From 0fad268c9c5271227db2d11f2c6afadfcd8de8a7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:33:19 -0800 Subject: [PATCH 071/873] Update pylint_kyu8.yml ./.github/workflows/pylint_kyu8.yml Warning: 1:1 [document-start] missing document start "---" Warning: 3:1 [truthy] truthy value should be one of [false, true] Error: 15:5 [indentation] wrong indentation: expected 6 but found 4 Error: 17:81 [line-length] line too long (88 > 80 characters) Error: 41:36 [new-line-at-end-of-file] no new line character at the end of file --- .github/workflows/pylint_kyu8.yml | 58 ++++++++++++++++--------------- 1 file changed, 30 insertions(+), 28 deletions(-) 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 From 37ae0ff10f615d0facf18366f1aaa203f0ebbc38 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:35:07 -0800 Subject: [PATCH 072/873] # yamllint disable-line rule:truthy --- .github/workflows/flake8.yml | 2 +- .github/workflows/flake8_kyu2.yml | 2 +- .github/workflows/flake8_kyu3.yml | 2 +- .github/workflows/flake8_kyu4.yml | 2 +- .github/workflows/flake8_kyu5.yml | 2 +- .github/workflows/flake8_kyu6.yml | 2 +- .github/workflows/lint_test_build_pipeline.yml | 2 +- .github/workflows/markdown_lint.yml | 2 +- .github/workflows/mypy.yml | 2 +- .github/workflows/mypy_kyu2.yml | 2 +- .github/workflows/mypy_kyu3.yml | 2 +- .github/workflows/mypy_kyu4.yml | 2 +- .github/workflows/mypy_kyu5.yml | 2 +- .github/workflows/mypy_kyu6.yml | 2 +- .github/workflows/mypy_kyu7.yml | 2 +- .github/workflows/mypy_kyu8.yml | 2 +- .github/workflows/pylint_kyu2.yml | 2 +- .github/workflows/pylint_kyu3.yml | 2 +- .github/workflows/pylint_kyu4.yml | 2 +- .github/workflows/pylint_kyu5.yml | 2 +- .github/workflows/pylint_kyu6.yml | 2 +- .github/workflows/pylint_kyu7.yml | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index f95a3be838c..2b907110f6a 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' diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 3f848fe08e3..0488df32ac6 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' diff --git a/.github/workflows/flake8_kyu3.yml b/.github/workflows/flake8_kyu3.yml index 861c5340f93..05ba645bc33 100644 --- a/.github/workflows/flake8_kyu3.yml +++ b/.github/workflows/flake8_kyu3.yml @@ -1,7 +1,7 @@ --- name: Flake8 for kyu3 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu3' diff --git a/.github/workflows/flake8_kyu4.yml b/.github/workflows/flake8_kyu4.yml index 558e25a9986..9b28984ec09 100644 --- a/.github/workflows/flake8_kyu4.yml +++ b/.github/workflows/flake8_kyu4.yml @@ -1,7 +1,7 @@ --- name: Flake8 for kyu4 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu4' diff --git a/.github/workflows/flake8_kyu5.yml b/.github/workflows/flake8_kyu5.yml index a2a3514fe9b..f166cd80abc 100644 --- a/.github/workflows/flake8_kyu5.yml +++ b/.github/workflows/flake8_kyu5.yml @@ -1,7 +1,7 @@ --- name: Flake8 for kyu5 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu5' diff --git a/.github/workflows/flake8_kyu6.yml b/.github/workflows/flake8_kyu6.yml index 87d68bbc791..0e25492aeda 100644 --- a/.github/workflows/flake8_kyu6.yml +++ b/.github/workflows/flake8_kyu6.yml @@ -1,7 +1,7 @@ --- name: Flake8 for kyu6 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu6' diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 98038b80ac2..4db604ef85a 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -1,6 +1,6 @@ name: Main Build Pipeline -on: +on: # yamllint disable-line rule:truthy push: branches: - master diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index bb583c8d84f..891d5712b5c 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -1,6 +1,6 @@ name: 'Markdown Lint' -on: +on: # yamllint disable-line rule:truthy push: branches: - 'Documentation' diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 770af5d41f1..271775d536c 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -1,6 +1,6 @@ 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..64172370531 100644 --- a/.github/workflows/mypy_kyu2.yml +++ b/.github/workflows/mypy_kyu2.yml @@ -1,6 +1,6 @@ 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..c1cb595b640 100644 --- a/.github/workflows/mypy_kyu3.yml +++ b/.github/workflows/mypy_kyu3.yml @@ -1,6 +1,6 @@ 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..dd4c088108b 100644 --- a/.github/workflows/mypy_kyu4.yml +++ b/.github/workflows/mypy_kyu4.yml @@ -1,6 +1,6 @@ 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..0f37d34faef 100644 --- a/.github/workflows/mypy_kyu5.yml +++ b/.github/workflows/mypy_kyu5.yml @@ -1,6 +1,6 @@ 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..4ee3a85e13d 100644 --- a/.github/workflows/mypy_kyu6.yml +++ b/.github/workflows/mypy_kyu6.yml @@ -1,6 +1,6 @@ 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..8f38f92caeb 100644 --- a/.github/workflows/mypy_kyu7.yml +++ b/.github/workflows/mypy_kyu7.yml @@ -1,6 +1,6 @@ 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..0db473714e6 100644 --- a/.github/workflows/mypy_kyu8.yml +++ b/.github/workflows/mypy_kyu8.yml @@ -1,6 +1,6 @@ name: MyPy for kyu8 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu8' diff --git a/.github/workflows/pylint_kyu2.yml b/.github/workflows/pylint_kyu2.yml index 617b211068a..2284db6eea0 100644 --- a/.github/workflows/pylint_kyu2.yml +++ b/.github/workflows/pylint_kyu2.yml @@ -1,6 +1,6 @@ name: PyLint for kyu2 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu2' diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index e5320c4681e..cee188e2b91 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -1,6 +1,6 @@ name: PyLint for kyu3 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu3' diff --git a/.github/workflows/pylint_kyu4.yml b/.github/workflows/pylint_kyu4.yml index 75df2d8fcb6..c45febf7307 100644 --- a/.github/workflows/pylint_kyu4.yml +++ b/.github/workflows/pylint_kyu4.yml @@ -1,6 +1,6 @@ name: PyLint for kyu4 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu4' diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index eaf6ff889fa..acdea3d9bb2 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -1,6 +1,6 @@ name: PyLint for kyu5 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu5' diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index b9a4d18a5c1..4ffa7d30e5c 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -1,6 +1,6 @@ name: PyLint for kyu6 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu6' diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index 2210d279d28..cafc9c3e9da 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -1,6 +1,6 @@ name: PyLint for kyu7 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu7' From 43ffc3a4fc32106693ea54a8bdfe1fcb5464b07e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:39:04 -0800 Subject: [PATCH 073/873] Warning: 1:1 [document-start] missing document start "---" --- .github/workflows/lint_test_build_pipeline.yml | 1 + .github/workflows/markdown_lint.yml | 1 + .github/workflows/mypy.yml | 1 + .github/workflows/mypy_kyu2.yml | 1 + .github/workflows/mypy_kyu3.yml | 1 + .github/workflows/mypy_kyu4.yml | 1 + .github/workflows/mypy_kyu5.yml | 1 + .github/workflows/mypy_kyu6.yml | 1 + .github/workflows/mypy_kyu7.yml | 1 + .github/workflows/mypy_kyu8.yml | 1 + .github/workflows/pylint_kyu2.yml | 1 + .github/workflows/pylint_kyu3.yml | 1 + .github/workflows/pylint_kyu4.yml | 1 + .github/workflows/pylint_kyu5.yml | 1 + .github/workflows/pylint_kyu6.yml | 1 + .github/workflows/pylint_kyu7.yml | 1 + 16 files changed, 16 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 4db604ef85a..16c30ccff16 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -1,3 +1,4 @@ +--- name: Main Build Pipeline on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index 891d5712b5c..32ec5676bd9 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -1,3 +1,4 @@ +--- name: 'Markdown Lint' on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 271775d536c..f5da779c804 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -1,3 +1,4 @@ +--- name: MyPy Lint on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu2.yml b/.github/workflows/mypy_kyu2.yml index 64172370531..c0a911f4faf 100644 --- a/.github/workflows/mypy_kyu2.yml +++ b/.github/workflows/mypy_kyu2.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu2 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu3.yml b/.github/workflows/mypy_kyu3.yml index c1cb595b640..f9f6be862bf 100644 --- a/.github/workflows/mypy_kyu3.yml +++ b/.github/workflows/mypy_kyu3.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu3 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu4.yml b/.github/workflows/mypy_kyu4.yml index dd4c088108b..2004ff181f4 100644 --- a/.github/workflows/mypy_kyu4.yml +++ b/.github/workflows/mypy_kyu4.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu4 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu5.yml b/.github/workflows/mypy_kyu5.yml index 0f37d34faef..f26d1e9b08d 100644 --- a/.github/workflows/mypy_kyu5.yml +++ b/.github/workflows/mypy_kyu5.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu5 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu6.yml b/.github/workflows/mypy_kyu6.yml index 4ee3a85e13d..65878b25524 100644 --- a/.github/workflows/mypy_kyu6.yml +++ b/.github/workflows/mypy_kyu6.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu6 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu7.yml b/.github/workflows/mypy_kyu7.yml index 8f38f92caeb..05e3d172197 100644 --- a/.github/workflows/mypy_kyu7.yml +++ b/.github/workflows/mypy_kyu7.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu7 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/mypy_kyu8.yml b/.github/workflows/mypy_kyu8.yml index 0db473714e6..820ffd8f9f3 100644 --- a/.github/workflows/mypy_kyu8.yml +++ b/.github/workflows/mypy_kyu8.yml @@ -1,3 +1,4 @@ +--- name: MyPy for kyu8 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu2.yml b/.github/workflows/pylint_kyu2.yml index 2284db6eea0..aed123a56a0 100644 --- a/.github/workflows/pylint_kyu2.yml +++ b/.github/workflows/pylint_kyu2.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu2 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index cee188e2b91..7aeadb6f0b7 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu3 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu4.yml b/.github/workflows/pylint_kyu4.yml index c45febf7307..68feb090d64 100644 --- a/.github/workflows/pylint_kyu4.yml +++ b/.github/workflows/pylint_kyu4.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu4 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index acdea3d9bb2..31dbb65a15a 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu5 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index 4ffa7d30e5c..053c3c892cb 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu6 on: # yamllint disable-line rule:truthy diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index cafc9c3e9da..e56f3c1d92b 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -1,3 +1,4 @@ +--- name: PyLint for kyu7 on: # yamllint disable-line rule:truthy From 004a9af8415f40e62b79a7397396f29f0cdaddca Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:42:16 -0800 Subject: [PATCH 074/873] Update pylint_kyu7.yml ./.github/workflows/pylint_kyu7.yml Error: 16:5 [indentation] wrong indentation: expected 6 but found 4 Error: 18:81 [line-length] line too long (88 > 80 characters) Error: 42:36 [new-line-at-end-of-file] no new line character at the end of file --- .github/workflows/pylint_kyu7.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index e56f3c1d92b..b79e0f28275 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -15,7 +15,8 @@ jobs: 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. + # 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 }} @@ -39,4 +40,4 @@ jobs: echo $PYTHONPATH - name: Analysing the code with pylint run: | - python -m pylint -v ./kyu_7 \ No newline at end of file + python -m pylint -v ./kyu_7 From e054d5236d9d70117168d455649a4fc6dd08320b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:42:51 -0800 Subject: [PATCH 075/873] Update pylint_kyu5.yml Error: 47:43 [new-line-at-end-of-file] no new line character at the end of file --- .github/workflows/pylint_kyu5.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index 31dbb65a15a..ad1f2d92156 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -39,4 +39,4 @@ jobs: echo $PYTHONPATH - name: Analysing the code with pylint run: | - python -m pylint -v ./kyu_5 \ No newline at end of file + python -m pylint -v ./kyu_5 From c64a10eb69cd5582e0b9d1febd9c39a0f6e56caf Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:44:11 -0800 Subject: [PATCH 076/873] Update markdown_lint.yml ./.github/workflows/markdown_lint.yml Error: 18:5 [indentation] wrong indentation: expected 6 but found 4 Error: 23:8 [indentation] wrong indentation: expected 8 but found 7 --- .github/workflows/markdown_lint.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index 32ec5676bd9..8222415ac4b 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -15,12 +15,12 @@ jobs: lint: runs-on: ubuntu-latest steps: - - name: Checkout v4 - uses: actions/checkout@v4 - - 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@v17 + with: + config: '.markdownlint-cli2.yaml' + fix: true + globs: '**/*.md' + separator: ',' From 3c1230b4afd4c5bcd81249b2e77c497fb5360c37 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:48:18 -0800 Subject: [PATCH 077/873] Update pylint_kyu7.yml --- .github/workflows/pylint_kyu7.yml | 56 +++++++++++++++---------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index b79e0f28275..9f2a38a8fd8 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -13,31 +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 + - 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 From a11820395bd4156a79ba8dfcbb85f79651961911 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:49:20 -0800 Subject: [PATCH 078/873] Update markdown_lint.yml --- .github/workflows/markdown_lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index 8222415ac4b..0cf2077fa5d 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -20,7 +20,7 @@ jobs: - name: markdownlint-cli2-action v16 uses: DavidAnson/markdownlint-cli2-action@v17 with: - config: '.markdownlint-cli2.yaml' - fix: true - globs: '**/*.md' - separator: ',' + config: '.markdownlint-cli2.yaml' + fix: true + globs: '**/*.md' + separator: ',' From 0e03e718287513ad4241784808342a9ec3e06968 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:49:43 -0800 Subject: [PATCH 079/873] Update flake8.yml --- .github/workflows/flake8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index 2b907110f6a..dcdc32c9235 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -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 From d2400548628dff0b38166cbd2222438f437ecbef Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:50:47 -0800 Subject: [PATCH 080/873] Update flake8_kyu5.yml --- .github/workflows/flake8_kyu5.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu5.yml b/.github/workflows/flake8_kyu5.yml index f166cd80abc..949d523fc23 100644 --- a/.github/workflows/flake8_kyu5.yml +++ b/.github/workflows/flake8_kyu5.yml @@ -44,4 +44,4 @@ jobs: 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 \ No newline at end of file + # yamllint enable rule:line-length From ed944470c4a3f0a54361c65410a74d1ad34dfee2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:51:06 -0800 Subject: [PATCH 081/873] Update flake8_kyu6.yml --- .github/workflows/flake8_kyu6.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu6.yml b/.github/workflows/flake8_kyu6.yml index 0e25492aeda..bb63ca50e62 100644 --- a/.github/workflows/flake8_kyu6.yml +++ b/.github/workflows/flake8_kyu6.yml @@ -44,4 +44,4 @@ jobs: 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 \ No newline at end of file + # yamllint enable rule:line-length From 895b2ef5a649a7164ec63a8259a257c4a7167337 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:52:00 -0800 Subject: [PATCH 082/873] Update pylint_kyu3.yml --- .github/workflows/pylint_kyu3.yml | 54 +++++++++++++++---------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index 7aeadb6f0b7..74b8247e7d9 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -13,30 +13,30 @@ 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 From 7714dbcdf2fbfa5ab555081fe04df3c4dfa9c621 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:52:25 -0800 Subject: [PATCH 083/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 16c30ccff16..ed867be133b 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -21,4 +21,4 @@ jobs: uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master yamllint: name: YAML Lint - uses: iKostanOrg/codewars/.github/workflows/yamllint.yml@master \ No newline at end of file + uses: iKostanOrg/codewars/.github/workflows/yamllint.yml@master From b9ac1da2b81911fd8d5f1857ca3f630c56a75058 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:53:04 -0800 Subject: [PATCH 084/873] Update pylint_kyu6.yml --- .github/workflows/pylint_kyu6.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index 053c3c892cb..8c065c74281 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -15,7 +15,8 @@ jobs: 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. + # 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 }} @@ -39,4 +40,4 @@ jobs: echo $PYTHONPATH - name: Analysing the code with pylint run: | - python -m pylint -v ./kyu_6 \ No newline at end of file + python -m pylint -v ./kyu_6 From 85e96249d43772620625625ca501ac550754f720 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:53:36 -0800 Subject: [PATCH 085/873] Update pylint_kyu2.yml --- .github/workflows/pylint_kyu2.yml | 55 ++++++++++++++++--------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pylint_kyu2.yml b/.github/workflows/pylint_kyu2.yml index aed123a56a0..6c04f48a8d4 100644 --- a/.github/workflows/pylint_kyu2.yml +++ b/.github/workflows/pylint_kyu2.yml @@ -17,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 From 6ff291b8045f5186c0dd70ff32e83a9c2cde9d84 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:55:37 -0800 Subject: [PATCH 086/873] Update pylint_kyu3.yml --- .github/workflows/pylint_kyu3.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index 74b8247e7d9..a78be28a815 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -15,7 +15,8 @@ jobs: 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. + # 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 }} From 9a1eb67bcd534453aa41dfffe6b1202553901aea Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:56:08 -0800 Subject: [PATCH 087/873] Update pylint_kyu6.yml --- .github/workflows/pylint_kyu6.yml | 56 +++++++++++++++---------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index 8c065c74281..83553dca5f7 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -13,31 +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 + - 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 From 95efd1032bf5b114b11f19d723dd6e0cc1b33bb5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:56:39 -0800 Subject: [PATCH 088/873] Update flake8_kyu2.yml --- .github/workflows/flake8_kyu2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 0488df32ac6..9952a11ae4f 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -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 From 2998907705a2c05a3b5a64e77331bd6069456fee Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:57:20 -0800 Subject: [PATCH 089/873] Update pylint_kyu5.yml --- .github/workflows/pylint_kyu5.yml | 55 ++++++++++++++++--------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index ad1f2d92156..130d1c7257e 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -13,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 + - 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 From b31bc36668c7b7d840c9816cf3c4cead5aab93b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:58:26 -0800 Subject: [PATCH 090/873] Update pylint_kyu4.yml --- .github/workflows/pylint_kyu4.yml | 55 ++++++++++++++++--------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pylint_kyu4.yml b/.github/workflows/pylint_kyu4.yml index 68feb090d64..09aa80f47e8 100644 --- a/.github/workflows/pylint_kyu4.yml +++ b/.github/workflows/pylint_kyu4.yml @@ -13,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 From 42603c6690f5bfee5dec0241af1e8dc439716edc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:58:51 -0800 Subject: [PATCH 091/873] Update flake8_kyu3.yml --- .github/workflows/flake8_kyu3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu3.yml b/.github/workflows/flake8_kyu3.yml index 05ba645bc33..db268875b55 100644 --- a/.github/workflows/flake8_kyu3.yml +++ b/.github/workflows/flake8_kyu3.yml @@ -44,4 +44,4 @@ jobs: 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 \ No newline at end of file + # yamllint enable rule:line-length From a373da926be1c8bccf60dd4ff578e56e94f1bd09 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 17:59:07 -0800 Subject: [PATCH 092/873] Update flake8_kyu4.yml --- .github/workflows/flake8_kyu4.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flake8_kyu4.yml b/.github/workflows/flake8_kyu4.yml index 9b28984ec09..c6a40769464 100644 --- a/.github/workflows/flake8_kyu4.yml +++ b/.github/workflows/flake8_kyu4.yml @@ -44,4 +44,4 @@ jobs: 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 \ No newline at end of file + # yamllint enable rule:line-length From e45f7ad5ff3a04bd5305a31b5fa3745f008f3948 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:01:08 -0800 Subject: [PATCH 093/873] Update .travis.yml --- depricated/.travis.yml | 1 + 1 file changed, 1 insertion(+) 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 From bdbaa9a951d09755feaf972755b88b52e0838cd5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:01:11 -0800 Subject: [PATCH 094/873] Update rocro.yml --- depricated/rocro.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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_* From 922f2eea361483189e8697f755c5b950fee3d06e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:02:58 -0800 Subject: [PATCH 095/873] Update config.yml --- .circleci/config.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d663181af41..b6098b2cafb 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,7 +13,7 @@ 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: @@ -46,9 +47,9 @@ jobs: # A basic unit of work in a run 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/ + - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ path: test-results/ - - store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ + - store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ path: test-results/ - destination: tr1 \ No newline at end of file + destination: tr1 From 4dbf4a8780a91e74b74df25cd1b61f07c18d63e4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:06:01 -0800 Subject: [PATCH 096/873] Update config.yml --- .circleci/config.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b6098b2cafb..586769c21f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ jobs: # A basic unit of work in a run - checkout - run: command: - python --version + python --version name: Check python version - run: command: @@ -46,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 From 43dd6a244d74ebb4d02faf3c0ed285d8020f4fe5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:18:16 -0800 Subject: [PATCH 097/873] Create .yamllint.yaml --- .yamllint.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .yamllint.yaml diff --git a/.yamllint.yaml b/.yamllint.yaml new file mode 100644 index 00000000000..78100d93dfc --- /dev/null +++ b/.yamllint.yaml @@ -0,0 +1,36 @@ +--- +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +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 \ No newline at end of file From e2382018ff2c336e0017d0af53497b150dc30d47 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:18:21 -0800 Subject: [PATCH 098/873] Update yamllint.yml --- .github/workflows/yamllint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 6a5382419ae..d99a3e30c0b 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -36,4 +36,4 @@ jobs: yamllint --version - name: Analysing YML files run: | - yamllint . + yamllint . -c .yamllint.yaml From db2117fbaa968ab6006147602ef2db7d601943ca Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:19:06 -0800 Subject: [PATCH 099/873] Update .yamllint.yaml --- .yamllint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 78100d93dfc..8bec848388f 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -33,4 +33,4 @@ rules: quoted-strings: disable trailing-spaces: enable truthy: - level: warning \ No newline at end of file + level: warning From 8fcb48fbf2a122ea0b2baeeafd70a926046bfe96 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:20:05 -0800 Subject: [PATCH 100/873] Update .yamllint.yaml --- .yamllint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.yamllint.yaml b/.yamllint.yaml index 8bec848388f..5a25344716f 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -1,4 +1,6 @@ --- +# yamllint — Linter for YAML files +# https://www.mankier.com/1/yamllint#Table_of_Contents-Configuration yaml-files: - '*.yaml' - '*.yml' From 0fc280cf2891694358bf5e8c54a9fc15e983192b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:29:03 -0800 Subject: [PATCH 101/873] Create pytest.yml --- .github/workflows/pytest.yml | 89 ++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 .github/workflows/pytest.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 00000000000..e5e5b9b115c --- /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.9", "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 }} + - 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=lessons --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() }} From dcdecd5716d4d64f9e08b7ba9e418828447efe69 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:29:07 -0800 Subject: [PATCH 102/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index ed867be133b..3db7bb3440b 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -22,3 +22,13 @@ jobs: 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 + From 6027a7c593610ba8991cdbce8a4ed80a95dbae6d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:30:14 -0800 Subject: [PATCH 103/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 3db7bb3440b..ff69588aaf3 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -31,4 +31,3 @@ jobs: - mypy - yamllint uses: iKostanOrg/codewars/.github/workflows/pytest.yml@master - From a693b8f2294f1b63dc3fb5a44bd3618ab5be393a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:35:30 -0800 Subject: [PATCH 104/873] Update requirements.txt --- requirements.txt | Bin 2262 -> 2300 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7beab2ed053dee3fce2f910395bc6afd9b24757a..1d8fc4dc17dcf496706fe9b89d8d5bf7ec3c75b0 100644 GIT binary patch delta 40 rcmca6_(yQVBsS?(hGK>i23>|^hJ1!H23sIBWzb_V0O8H;Z2n9D+*An_ delta 12 Tcmew(cujD_B(}{v*j$(ZCMg8; From 50b86d949e1aefd9dbeb7845e3318d7cbe8a4c16 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:39:24 -0800 Subject: [PATCH 105/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index e5e5b9b115c..e18e15e0bc4 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - 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=lessons --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest ./kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=lessons --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 From 4cf51506cb94af208a0be71525a6f9ee0a6f80dc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:47:01 -0800 Subject: [PATCH 106/873] Update pytest.yml --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index e18e15e0bc4..85deb87e758 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest] + os: [macos-latest, windows-latest, ubuntu-latest] python-version: ["3.9", "3.X"] steps: - uses: actions/checkout@v4 @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest ./kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=lessons --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest kyu_2/evaluate_mathematical_expression/ -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=lessons --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 From 69e08511ccca7d72ba59cbdc3f56c4514152f37b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:50:56 -0800 Subject: [PATCH 107/873] Update .coveragerc --- .coveragerc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.coveragerc b/.coveragerc index b69dcb91dde..8f679e906c0 100644 --- a/.coveragerc +++ b/.coveragerc @@ -8,3 +8,14 @@ omit = __init__* *.md docs/* + venv/* + *.gif + *.html + /tests/* + +[report] +; Regexes for lines to exclude from consideration + +exclude_also = + ; Don't complain if non-runnable code isn't run: + if __name__ == .__main__.: From 1f3727ec744581da43b03120a193ef791a77a1b5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:54:04 -0800 Subject: [PATCH 108/873] Update test_evaluate.py --- kyu_2/evaluate_mathematical_expression/test_evaluate.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kyu_2/evaluate_mathematical_expression/test_evaluate.py b/kyu_2/evaluate_mathematical_expression/test_evaluate.py index cb9f8073717..51753bd0801 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() From c02f7f909711ddf1dd6f7d7fa888697c3379381d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 18:56:27 -0800 Subject: [PATCH 109/873] Update test_evaluate.py --- kyu_2/evaluate_mathematical_expression/test_evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/test_evaluate.py b/kyu_2/evaluate_mathematical_expression/test_evaluate.py index 51753bd0801..8e0ca54451b 100644 --- a/kyu_2/evaluate_mathematical_expression/test_evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/test_evaluate.py @@ -93,6 +93,6 @@ def test_calc(self): self.assertEqual(expected, actual_result) - + if __name__ == '__main__': unittest.main() From bf367daecc2da53f64d64257e726a7f749fd123c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:01:25 -0800 Subject: [PATCH 110/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 85deb87e758..3a6dc5a3f7c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest kyu_2/evaluate_mathematical_expression/ -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=lessons --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest kyu_2/evaluate_mathematical_expression/ -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=kuy_2 --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 From 622a0adbb25f4a1d24abd21cddf04bc6c76aa9ef Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:08:33 -0800 Subject: [PATCH 111/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 3a6dc5a3f7c..ff94ff61472 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest kyu_2/evaluate_mathematical_expression/ -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=kuy_2 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=kuy_2 --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 From 11873092b3e361f0deced1759ef9047ed9fd21eb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:11:39 -0800 Subject: [PATCH 112/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index ff94ff61472..b8780e94696 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=kuy_2 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --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 From 2c29a77952593bb7b999c08e63473befc05679ad Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:15:39 -0800 Subject: [PATCH 113/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index b8780e94696..d75757876e2 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest kyu_2 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + 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-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 From 427a58d5f320363a7642161293faef7d5ff42942 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:22:28 -0800 Subject: [PATCH 114/873] Update log_func.py --- utils/log_func.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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') From 8dd8556784be7fe9f1987e661840ae1a5e639a22 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:25:29 -0800 Subject: [PATCH 115/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d75757876e2..0b7a16b1d57 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - 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-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest kyu_5 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --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 From 735723ced537d1770c1ffba371ae7c204e1175d8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:27:07 -0800 Subject: [PATCH 116/873] Update pytest.yml --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0b7a16b1d57..62f1b3e325c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.9", "3.X"] + python-version: ["3.10", "3.X"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest kyu_5 -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + 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-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 From 2d55c4e3e732e573903316476ff21d55c9b5f1d8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:33:32 -0800 Subject: [PATCH 117/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 62f1b3e325c..7ea118b9e63 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.10", "3.X"] + python-version: ["3.11", "3.X"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From 6738b2773c33664e057c16f19b0331a458db92e9 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:37:29 -0800 Subject: [PATCH 118/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 7ea118b9e63..0cf948acc0d 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.11", "3.X"] + python-version: ["3.12", "3.X"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From fa651babd0da50739d11f4329c2de23bdeb8be45 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:42:28 -0800 Subject: [PATCH 119/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0cf948acc0d..9a0baa02d38 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - 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-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + 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=./kyu_2 --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 From 3783ee5748d09447cbe473b430bfd0fe08789107 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:47:27 -0800 Subject: [PATCH 120/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 9a0baa02d38..76afe148ff3 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - 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=./kyu_2 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + 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=./kyu_2 --cov=./kyu_3 --cov=./kyu_4 --cov=./kyu_5 --cov=kyu_6 --cov=kyu_7 --cov=kyu_8 --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 From 22421d8e7f187cafca212eed0e429bc64b5861c4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:55:07 -0800 Subject: [PATCH 121/873] Update .coveragerc --- .coveragerc | 1 + 1 file changed, 1 insertion(+) diff --git a/.coveragerc b/.coveragerc index 8f679e906c0..a86a94f27ab 100644 --- a/.coveragerc +++ b/.coveragerc @@ -12,6 +12,7 @@ omit = *.gif *.html /tests/* + test_* [report] ; Regexes for lines to exclude from consideration From e3b9e29983f68b73de7b0d068d96a56850bac2a5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:55:39 -0800 Subject: [PATCH 122/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 76afe148ff3..237785c9e75 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - 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=./kyu_2 --cov=./kyu_3 --cov=./kyu_4 --cov=./kyu_5 --cov=kyu_6 --cov=kyu_7 --cov=kyu_8 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + 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 From 45937202291049d62de30d50b6cb5e0c9f1fdd8f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:20:13 -0800 Subject: [PATCH 123/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 6c297d42e48..a3e0f543d0d 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -59,7 +59,6 @@ def bracket_start(strings: list) -> 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 From e5de58cb2ba6dfebf1461d48d7c46bff6b1913c4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:22:04 -0800 Subject: [PATCH 124/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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 d529012b658..e3e2ec3e30c 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 @@ -87,11 +87,13 @@ def move(self) -> None: 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 @@ -103,16 +105,16 @@ def is_done(self) -> bool: """ if self.__is_start: if len([val for val in self.__direction.values() if val]) != 1: - print('\nRule #1') + #print('\nRule #1') return True else: if self.position == 'X' and not self.__is_start: - print('\nRule #2') + #print('\nRule #2') return True if len([val for val in self.__direction.values() if val]) != 1: - print('\nRule #3') - print(self.__direction) + #print('\nRule #3') + #print(self.__direction) return True return False @@ -203,7 +205,7 @@ def __set_direction(self) -> None: # reset all directions self.__reset_direction() - print(f'prev: {previous_position}, pos: {self.position}') + #print(f'prev: {previous_position}, pos: {self.position}') self.position_plus(previous_position) self.position_minus(previous_position) From 0eb2390aa5ad5f7e392bfd87857fde21d6ffd979 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:25:26 -0800 Subject: [PATCH 125/873] Update sudoku_by_row.py --- kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..3029af616f1 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,7 @@ def assert_sudoku_by_row(board: list) -> bool: :return: bool """ for row in board: - print(row) + #print(row) if len(row) != len(set(row)) or len(row) != len(board[0]): return False From 4ea6b41a228e1abba06bb0ccbcf7d0e4b1e56a17 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:30:20 -0800 Subject: [PATCH 126/873] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index a3e0f543d0d..838725fb105 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -58,7 +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('(') return a From cef72f75662e9fb6aee7a3fd851d711f752d1469 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:30:27 -0800 Subject: [PATCH 127/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 13 ------------- 1 file changed, 13 deletions(-) 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 e3e2ec3e30c..58ee3550647 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 @@ -83,17 +83,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 @@ -205,8 +194,6 @@ def __set_direction(self) -> None: # reset all directions self.__reset_direction() - #print(f'prev: {previous_position}, pos: {self.position}') - self.position_plus(previous_position) self.position_minus(previous_position) self.position_pipe(previous_position) From 5fa2de5f4231c90025b6664c44c0cd74005997ea Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:31:24 -0800 Subject: [PATCH 128/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 4 ---- 1 file changed, 4 deletions(-) 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 58ee3550647..4144fcf82db 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 @@ -94,16 +94,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 From ef6c89506e9f7db6a453a6dda5f0da23f355e71c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:32:05 -0800 Subject: [PATCH 129/873] Update sudoku_by_row.py --- kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py | 1 - 1 file changed, 1 deletion(-) 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 3029af616f1..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 From 0da6396c1faf3fc47c7c01b4a9039743b2a4d67c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:38:57 -0800 Subject: [PATCH 130/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 1 - 1 file changed, 1 deletion(-) 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 4144fcf82db..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 @@ -43,7 +43,6 @@ def __set_initial_direction(self) -> dict: 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 From 09b86755562de4d1ec03b48eaf13973dc59373d9 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:44:35 -0800 Subject: [PATCH 131/873] Update test_line_negative.py --- kyu_3/line_safari_is_that_a_line/test_line_negative.py | 4 ---- 1 file changed, 4 deletions(-) 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) From e6b0ef573460643f8feea057bec093e6278715ad Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:44:38 -0800 Subject: [PATCH 132/873] Update test_line_positive.py --- kyu_3/line_safari_is_that_a_line/test_line_positive.py | 4 ---- 1 file changed, 4 deletions(-) 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) From 1a51196f5c6ccb9a586efc794c5b8c2c9ab4cb4f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:44:41 -0800 Subject: [PATCH 133/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 1 - 1 file changed, 1 deletion(-) 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 45570fa3e9e..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 @@ -125,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 From 4100658f489f86b20a700afcd3b2bc7ee6a72910 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:53:54 -0800 Subject: [PATCH 134/873] Update test_advice.py --- kyu_5/find_the_safest_places_in_town/test_advice.py | 3 --- 1 file changed, 3 deletions(-) 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)), From fe853a5e95037b0907ee6ba3258874679b6c9b4e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 20:54:55 -0800 Subject: [PATCH 135/873] Update test_century.py --- kyu_8/century_from_year/test_century.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_8/century_from_year/test_century.py b/kyu_8/century_from_year/test_century.py index 8cc56daa5f5..ef70d92f7d1 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 " From 3df465d5b6becc412e6bc180e58affeb9c76bd22 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 21:01:00 -0800 Subject: [PATCH 136/873] Update test_century.py --- kyu_8/century_from_year/test_century.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_8/century_from_year/test_century.py b/kyu_8/century_from_year/test_century.py index ef70d92f7d1..1c86b9c549c 100644 --- a/kyu_8/century_from_year/test_century.py +++ b/kyu_8/century_from_year/test_century.py @@ -69,7 +69,8 @@ def test_century(self): print_log(year=year, result=result, - expected=expected) + expected=expected, + message=message) self.assertEqual(expected, result) From 9815d3fbb543a7b99f1cf5fe3de4e582b22bcad0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:25:01 -0800 Subject: [PATCH 137/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index ff69588aaf3..88fa5a754c6 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -31,3 +31,10 @@ jobs: - mypy - yamllint uses: iKostanOrg/codewars/.github/workflows/pytest.yml@master + 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 }} From f547e22e53329eca94033cc8ed3ea42059b9d4e7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:28:00 -0800 Subject: [PATCH 138/873] Create codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/codeclimate_coverage.yml diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml new file mode 100644 index 00000000000..6db542af8da --- /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 wheel + pip install -r requirements.txt + pip install pytest + 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=lessons --cov-report=xml --cov=./ + # yamllint enable rule:line-length + debug: true \ No newline at end of file From faa374610952a41e628f6921257c43ac0d367912 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:29:06 -0800 Subject: [PATCH 139/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 237785c9e75..d6319a89181 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.12", "3.X"] + python-version: ["3.11"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From dbcc78c2fbcd20bceadba7d46118ba3d26703159 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:29:45 -0800 Subject: [PATCH 140/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index 6db542af8da..eb390b9f625 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -44,4 +44,4 @@ jobs: # yamllint disable rule:line-length coverageCommand: python -m pytest . -v --cov-report term-missing --cov=lessons --cov-report=xml --cov=./ # yamllint enable rule:line-length - debug: true \ No newline at end of file + debug: true From 3b1d54d38ad806bf8100bb86eac67532499b6c2d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:33:18 -0800 Subject: [PATCH 141/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index eb390b9f625..8780bc2a885 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -28,9 +28,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Dependencies run: | - python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade pip setuptools + python -m pip install pytest pip install -r requirements.txt - pip install pytest pip install pytest-cov - name: Check PYTHONPATH run: | From 9b3de4e7e662873e7096c70b72f6eedfe0b90c57 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:34:24 -0800 Subject: [PATCH 142/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index 8780bc2a885..f39f0e3bc9d 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -28,7 +28,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Dependencies run: | - python -m pip install --upgrade pip setuptools + python -m pip install --upgrade pip setuptools python -m pip install pytest pip install -r requirements.txt pip install pytest-cov From bd614350b302f28200987c359d90089c67a39768 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:38:52 -0800 Subject: [PATCH 143/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index f39f0e3bc9d..94bd65a7be0 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -21,9 +21,9 @@ jobs: os: [ubuntu-latest] python-version: ["3.X"] steps: - - uses: actions/checkout@main + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@main + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies From 5bf27f498b23eff895eef6df6ab2165367f6c4de Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:43:11 -0800 Subject: [PATCH 144/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d6319a89181..86bce4fb6dc 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.11"] + python-version: ["3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From c2b1ff3c6beea7c6514457e9f6b975d08d3f3897 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:43:15 -0800 Subject: [PATCH 145/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index 94bd65a7be0..8780bc2a885 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -21,14 +21,14 @@ jobs: os: [ubuntu-latest] python-version: ["3.X"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main - name: Setup Python - uses: actions/setup-python@v5 + 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 --upgrade pip setuptools python -m pip install pytest pip install -r requirements.txt pip install pytest-cov From 30822a1e92b689d4b42894fcbdf1aa519ff98ac4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:44:31 -0800 Subject: [PATCH 146/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index 8780bc2a885..f39f0e3bc9d 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -28,7 +28,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Dependencies run: | - python -m pip install --upgrade pip setuptools + python -m pip install --upgrade pip setuptools python -m pip install pytest pip install -r requirements.txt pip install pytest-cov From f6ee3d2b639e8e7b3539ca5b322462c3af2e44da Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:52:06 -0800 Subject: [PATCH 147/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 88fa5a754c6..018478f6da0 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -31,6 +31,15 @@ jobs: - 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: From 5f09bef367c09b7d46b1cd0cb2397f346bfa4696 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:54:06 -0800 Subject: [PATCH 148/873] Create codecov.yml --- .github/workflows/codecov.yml | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 00000000000..9a61e318b9b --- /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 tests/ -v --cov-report term-missing --cov=lessons --cov-report=xml + # yamllint enable rule:line-length + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4.6.0 + with: + token: ${{ secrets.codecov_token }} + files: coverage.xml + fail_ci_if_error: true # optional (default = false) + verbose: true # optional (default = false) From c9fb2fe9221875363969926062878b65b9978a04 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 19:55:43 -0800 Subject: [PATCH 149/873] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 86bce4fb6dc..82e602905a6 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-latest, windows-latest] python-version: ["3.12"] steps: - uses: actions/checkout@v4 From dc29912f6719a27fcab4f60dec866db38d297074 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 20:01:14 -0800 Subject: [PATCH 150/873] Update codeclimate_coverage.yml --- .github/workflows/codeclimate_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml index f39f0e3bc9d..1f39fa91ecd 100644 --- a/.github/workflows/codeclimate_coverage.yml +++ b/.github/workflows/codeclimate_coverage.yml @@ -42,6 +42,6 @@ jobs: 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=lessons --cov-report=xml --cov=./ + coverageCommand: python -m pytest . -v --cov-report term-missing --cov-report=xml --cov=./ # yamllint enable rule:line-length debug: true From 22399950f68642869cff97be61415ec77c39878c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 20:01:18 -0800 Subject: [PATCH 151/873] Update codecov.yml --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 9a61e318b9b..4959185a324 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -39,7 +39,7 @@ jobs: # yamllint disable rule:line-length run: | python -c "import os; print(os.getcwd())" - python -m pytest tests/ -v --cov-report term-missing --cov=lessons --cov-report=xml + 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@v4.6.0 From 839dd515ea19c29a9e86280728f9e567f6ab2ad2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 14 Nov 2024 20:12:34 -0800 Subject: [PATCH 152/873] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ca74b10ac83..9c622f428a5 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ [![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) From e1d926c18500effafa532eed87160fd127038a86 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:37:12 +0000 Subject: [PATCH 153/873] Bump DavidAnson/markdownlint-cli2-action in /.github/workflows Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 17 to 18. - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases) - [Commits](https://github.com/davidanson/markdownlint-cli2-action/compare/v17...v18) --- updated-dependencies: - dependency-name: DavidAnson/markdownlint-cli2-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/markdown_lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index 0cf2077fa5d..64a623ac2da 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -18,7 +18,7 @@ jobs: - name: Checkout v4 uses: actions/checkout@v4 - name: markdownlint-cli2-action v16 - uses: DavidAnson/markdownlint-cli2-action@v17 + uses: DavidAnson/markdownlint-cli2-action@v18 with: config: '.markdownlint-cli2.yaml' fix: true From 6d18488ff5f61abdc6927d96131a4011442a921f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:37:15 +0000 Subject: [PATCH 154/873] Bump codecov/codecov-action from 4.6.0 to 5.0.2 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.6.0 to 5.0.2. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.6.0...v5.0.2) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 4959185a324..73bfe035954 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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@v4.6.0 + uses: codecov/codecov-action@v5.0.2 with: token: ${{ secrets.codecov_token }} files: coverage.xml From 6d5597c87da6a4d153e124f23e383ee86a9d4d83 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 16 Nov 2024 20:58:10 -0800 Subject: [PATCH 155/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 018478f6da0..df635faaed5 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -47,3 +47,9 @@ jobs: 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: iKostanOrg/codewars/.github/workflows/codeql.yml@master From d076af3697493cae49981f3305083973cce29105 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 16 Nov 2024 20:58:13 -0800 Subject: [PATCH 156/873] Create codeql.yml --- .github/workflows/codeql.yml | 98 ++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000000..4a2f61b5c57 --- /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 for a new build" + +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}}" From 50bcae12d0b360a556ddef9c118fd5ce32e55275 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 20:41:17 -0800 Subject: [PATCH 157/873] Create snyk.yml --- .github/workflows/snyk.yml | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/snyk.yml diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml new file mode 100644 index 00000000000..da0e672c95f --- /dev/null +++ b/.github/workflows/snyk.yml @@ -0,0 +1,72 @@ + +--- +name: "Snyk for a new build" + +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 From dbb2434e924005fabac5b403ac941fc197b99eb3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 20:41:20 -0800 Subject: [PATCH 158/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index df635faaed5..668df239e45 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -53,3 +53,9 @@ jobs: - codecov - codeclimate uses: iKostanOrg/codewars/.github/workflows/codeql.yml@master + snyk: + name: Snyk for a new build + needs: + - codecov + - codeclimate + uses: iKostanOrg/codewars/.github/workflows/snyk.yml@master From aea4e67e6e11135047b5e6044a6cbaf284f9fa30 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 20:43:28 -0800 Subject: [PATCH 159/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 668df239e45..660d6ca24ca 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -59,3 +59,5 @@ jobs: - codecov - codeclimate uses: iKostanOrg/codewars/.github/workflows/snyk.yml@master + secrets: + snyk_token: ${{ secrets.SNYK_TOKEN }} From d674f1b84bac11bd5caf72689e8d180ec5e50ff2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 20:45:03 -0800 Subject: [PATCH 160/873] Update snyk.yml --- .github/workflows/snyk.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index da0e672c95f..981639bcecc 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -1,4 +1,3 @@ - --- name: "Snyk for a new build" From 30e0fcc6677f81ec13325091caa06e5d90e53bcf Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 20:56:13 -0800 Subject: [PATCH 161/873] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c622f428a5..5405ae7dd4d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![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) From 9d63366b306311746bb2517928a2d24abc6730d0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:09:53 -0800 Subject: [PATCH 162/873] Update _codeql.yml --- .github/workflows/{codeql.yml => _codeql.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{codeql.yml => _codeql.yml} (100%) diff --git a/.github/workflows/codeql.yml b/.github/workflows/_codeql.yml similarity index 100% rename from .github/workflows/codeql.yml rename to .github/workflows/_codeql.yml From 470e962e2df5f9cf3d82bba3ed2fec406154f5d7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 17 Nov 2024 21:11:37 -0800 Subject: [PATCH 163/873] Create codeql.yml --- .github/workflows/codeql.yml | 96 ++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000000..1dd72f11c2b --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,96 @@ +# 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 Advanced" + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + schedule: + - cron: '28 1 * * 3' + 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' }} + 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: javascript-typescript + build-mode: none + - 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' + shell: bash + 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: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" From d20b9a6c0933d27a7f0565d32c4d7505607d2c57 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:15:22 -0800 Subject: [PATCH 164/873] Update codeql.yml --- .github/workflows/codeql.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1dd72f11c2b..2bb013e8f9d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,3 +1,4 @@ +--- # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # @@ -11,16 +12,19 @@ # name: "CodeQL Advanced" -on: +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened push: branches: [ "master" ] - pull_request: - branches: [ "master" ] schedule: - cron: '28 1 * * 3' workflow_call: - jobs: analyze: name: Analyze (${{ matrix.language }}) @@ -28,7 +32,8 @@ jobs: # - 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. + # Consider using larger runners or machines with greater resources + # for possible analysis time improvements. runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} permissions: # required for all workflows From 5fd64621adde9224591a4dccb9072b02ccf2eb98 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:19:33 -0800 Subject: [PATCH 165/873] Update codeql.yml --- .github/workflows/codeql.yml | 48 ++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2bb013e8f9d..a6c2fc160b5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -50,10 +50,10 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript - build-mode: none - - language: python - build-mode: none + - language: javascript-typescript + build-mode: none + - 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 @@ -63,15 +63,15 @@ jobs: # 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 + - 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 }} + - 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. @@ -85,17 +85,17 @@ jobs: # 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' - shell: bash - 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 + - if: matrix.build-mode == 'manual' + shell: bash + 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: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" From 865a4b32528cdeb145938e29d96e24f983f8b83d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:22:51 -0800 Subject: [PATCH 166/873] Update codeql.yml --- .github/workflows/codeql.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a6c2fc160b5..cfb22d6adce 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ on: # yamllint disable-line rule:truthy - synchronize - reopened push: - branches: [ "master" ] + branches: ["master"] schedule: - cron: '28 1 * * 3' workflow_call: @@ -54,14 +54,21 @@ jobs: build-mode: none - language: python build-mode: none - # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' + # 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 + # 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 @@ -76,7 +83,8 @@ jobs: # 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 + # 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 From 053c4ae4c8538707f63a62bf9479def03b809f94 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 17 Nov 2024 21:31:53 -0800 Subject: [PATCH 167/873] Create snyk.yml --- .github/workflows/snyk-security.yml | 71 +++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/workflows/snyk-security.yml diff --git a/.github/workflows/snyk-security.yml b/.github/workflows/snyk-security.yml new file mode 100644 index 00000000000..9e892f15cff --- /dev/null +++ b/.github/workflows/snyk-security.yml @@ -0,0 +1,71 @@ +--- +name: "Snyk for a new build" + +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@v4 + - 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 From 6e213e635fda7079d8f5dcd137f5def0563ae145 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:33:02 -0800 Subject: [PATCH 168/873] Delete _codeql.yml --- .github/workflows/_codeql.yml | 98 ----------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 .github/workflows/_codeql.yml diff --git a/.github/workflows/_codeql.yml b/.github/workflows/_codeql.yml deleted file mode 100644 index 4a2f61b5c57..00000000000 --- a/.github/workflows/_codeql.yml +++ /dev/null @@ -1,98 +0,0 @@ ---- -# 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 for a new build" - -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}}" From 1fcebb1ac5ee387544a61dffcc99b7f407353fb4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:33:31 -0800 Subject: [PATCH 169/873] Delete snyk.yml --- .github/workflows/snyk.yml | 71 -------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/snyk.yml diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml deleted file mode 100644 index 981639bcecc..00000000000 --- a/.github/workflows/snyk.yml +++ /dev/null @@ -1,71 +0,0 @@ ---- -name: "Snyk for a new build" - -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 From 22eebabcdccfb0ba5c5a0d793a60613af1d8afc3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:33:57 -0800 Subject: [PATCH 170/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 660d6ca24ca..3c11896ce10 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -58,6 +58,6 @@ jobs: needs: - codecov - codeclimate - uses: iKostanOrg/codewars/.github/workflows/snyk.yml@master + uses: iKostanOrg/codewars/.github/workflows/snyk-security.yml@master secrets: snyk_token: ${{ secrets.SNYK_TOKEN }} From b17e5d1097bb63cc9fa63558a1fb143ff205b8c6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:37:47 -0800 Subject: [PATCH 171/873] Update __snyk-security.yml --- .github/workflows/{snyk-security.yml => __snyk-security.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{snyk-security.yml => __snyk-security.yml} (100%) diff --git a/.github/workflows/snyk-security.yml b/.github/workflows/__snyk-security.yml similarity index 100% rename from .github/workflows/snyk-security.yml rename to .github/workflows/__snyk-security.yml From 9c9a5e0ba70915e84c4da3fab6b5add97eb5fb8a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:41:46 -0800 Subject: [PATCH 172/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 3c11896ce10..796bf0f1f7c 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -47,17 +47,4 @@ jobs: 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: iKostanOrg/codewars/.github/workflows/codeql.yml@master - snyk: - name: Snyk for a new build - needs: - - codecov - - codeclimate - uses: iKostanOrg/codewars/.github/workflows/snyk-security.yml@master - secrets: - snyk_token: ${{ secrets.SNYK_TOKEN }} + \ No newline at end of file From ad6f87f467090284be264c2cce5c1559152bc711 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:42:11 -0800 Subject: [PATCH 173/873] Delete __snyk-security.yml --- .github/workflows/__snyk-security.yml | 71 --------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/__snyk-security.yml diff --git a/.github/workflows/__snyk-security.yml b/.github/workflows/__snyk-security.yml deleted file mode 100644 index 9e892f15cff..00000000000 --- a/.github/workflows/__snyk-security.yml +++ /dev/null @@ -1,71 +0,0 @@ ---- -name: "Snyk for a new build" - -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@v4 - - 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 From 479b9ab8123a30bed13c0e537b0e6d7023bb8f04 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:42:15 -0800 Subject: [PATCH 174/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 796bf0f1f7c..018478f6da0 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -47,4 +47,3 @@ jobs: uses: iKostanOrg/codewars/.github/workflows/codeclimate_coverage.yml@master secrets: cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }} - \ No newline at end of file From edc097c054194e260072cd21a0d039622d5b7b88 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:42:18 -0800 Subject: [PATCH 175/873] Delete codeql.yml --- .github/workflows/codeql.yml | 109 ----------------------------------- 1 file changed, 109 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index cfb22d6adce..00000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,109 +0,0 @@ ---- -# 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 Advanced" - -on: # yamllint disable-line rule:truthy - pull_request_target: - types: - - opened - - edited - - synchronize - - reopened - push: - branches: ["master"] - schedule: - - cron: '28 1 * * 3' - 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' }} - 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: javascript-typescript - build-mode: none - - 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' - shell: bash - 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: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" From 4e2bf722fbdb680a691a53b06b9bf5c161c009ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 17 Nov 2024 21:49:18 -0800 Subject: [PATCH 176/873] Create codeql.yml --- .github/workflows/codeql.yml | 98 ++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000000..4a2f61b5c57 --- /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 for a new build" + +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}}" From db40381562f1f85633647550578cc8c0f0a47475 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 21:51:36 -0800 Subject: [PATCH 177/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 018478f6da0..2e1d11365be 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -47,3 +47,9 @@ jobs: 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 From e4d76dafb99529a302e492ea35dac6fb371f4976 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 22:00:27 -0800 Subject: [PATCH 178/873] Create snyk.yml --- .github/workflows/snyk.yml | 71 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/workflows/snyk.yml diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml new file mode 100644 index 00000000000..981639bcecc --- /dev/null +++ b/.github/workflows/snyk.yml @@ -0,0 +1,71 @@ +--- +name: "Snyk for a new build" + +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 From 782205ee18fee9276c540ae3e317084cebaf2fe8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 22:02:57 -0800 Subject: [PATCH 179/873] Update codeql.yml --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4a2f61b5c57..79dc3307da2 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -12,7 +12,7 @@ # supported CodeQL languages. # -name: "CodeQL for a new build" +name: "CodeQL" on: # yamllint disable-line rule:truthy pull_request_target: From b06d3cbbdf8e6bb63cf1de3a70e4b665d4453782 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 22:03:11 -0800 Subject: [PATCH 180/873] Update snyk.yml --- .github/workflows/snyk.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 981639bcecc..f2fc9b4298b 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -1,5 +1,5 @@ --- -name: "Snyk for a new build" +name: "Snyk" on: # yamllint disable-line rule:truthy pull_request_target: From d0c093ff88e7b4f4078bac950e7912396c318bf7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 22:12:29 -0800 Subject: [PATCH 181/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 2e1d11365be..10e83601227 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -53,3 +53,11 @@ jobs: - 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 }} \ No newline at end of file From 6a38bb5c778bb70e7cb47de8a0cce8fdb3420c81 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 17 Nov 2024 22:13:45 -0800 Subject: [PATCH 182/873] Update lint_test_build_pipeline.yml --- .github/workflows/lint_test_build_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 10e83601227..28eaad4cef4 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -60,4 +60,4 @@ jobs: - codeclimate uses: ikostan/pico/.github/workflows/snyk.yml@master secrets: - snyk_token: ${{ secrets.SNYK_TOKEN }} \ No newline at end of file + snyk_token: ${{ secrets.SNYK_TOKEN }} From 87393cf6fe22447de651ebd951d843bb23bfe32e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 18 Nov 2024 21:58:47 -0800 Subject: [PATCH 183/873] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5405ae7dd4d..ad67cc4d02c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ [![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 From f8681151139435d7aac9fece969d77c00c15846e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 18:34:15 +0000 Subject: [PATCH 184/873] Bump codecov/codecov-action from 5.0.2 to 5.0.5 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.0.2 to 5.0.5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.0.2...v5.0.5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 73bfe035954..fe5cd80e041 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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.2 + uses: codecov/codecov-action@v5.0.5 with: token: ${{ secrets.codecov_token }} files: coverage.xml From 53b5bd4aa351cc5e3a65e1a2cf058ce4ed3e9259 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 19:06:12 -0800 Subject: [PATCH 185/873] Create __init__.py --- kyu_6/scheduling/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 kyu_6/scheduling/__init__.py diff --git a/kyu_6/scheduling/__init__.py b/kyu_6/scheduling/__init__.py new file mode 100644 index 00000000000..e69de29bb2d From eb1241cf5413c413f8e13fa5a76c3f7a43ea16cc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 19:06:18 -0800 Subject: [PATCH 186/873] Create README.md --- kyu_6/scheduling/README.md | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 kyu_6/scheduling/README.md diff --git a/kyu_6/scheduling/README.md b/kyu_6/scheduling/README.md new file mode 100644 index 00000000000..c20f2f9a0b3 --- /dev/null +++ b/kyu_6/scheduling/README.md @@ -0,0 +1,42 @@ +# Scheduling (Shortest Job First or SJF) + +Scheduling is how the processor decides which jobs(processes) get to use the processor and for how long. +This can cause a lot of problems. Like a really long process taking the entire CPU and freezing all the +other processes. One solution is Shortest Job First(SJF), which today you will be implementing. + +SJF works by, well, letting the shortest jobs take the CPU first. If the jobs are the same size then it is +First In First Out (FIFO). The idea is that the shorter jobs will finish quicker, so theoretically jobs won't +get frozen because of large jobs. (In practice they're frozen because of small jobs). + +You will be implementing: + +```python +def SJF(jobs, index) +``` + +## It takes in: + +1. "jobs" a non-empty array of positive integers. They represent the clock-cycles(cc) needed to finish the job. +2. "index" a positive integer. That represents the job we're interested in. + +## SJF returns: + +1. A positive integer representing the cc it takes to complete the job at index. + +2. Here's an example: + +```text +SJF([3, 10, 20, 1, 2], 0) +at 0cc [3, 10, 20, 1, 2] jobs[3] starts +at 1cc [3, 10, 20, 0, 2] jobs[3] finishes, jobs[4] starts +at 3cc [3, 10, 20, 0, 0] jobs[4] finishes, jobs[0] starts +at 6cc [0, 10, 20, 0, 0] jobs[0] finishes +``` + +so: + +```text +SJF([3,10,20,1,2], 0) == 6 +``` + +[Source](https://www.codewars.com/kata/550cc572b9e7b563be00054f) \ No newline at end of file From 6558584e5a43ed7f33e31c77242ae9882644ef86 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 19:16:09 -0800 Subject: [PATCH 187/873] Update README.md --- kyu_6/README.md | 80 +++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 39 deletions(-) diff --git a/kyu_6/README.md b/kyu_6/README.md index effac3ed330..4d6798c552f 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 ) | + [Source](https://www.codewars.com/about) \ No newline at end of file From f327b028bb661efbfd8bcd5b21fc849643537cd5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:10:32 -0800 Subject: [PATCH 188/873] Create test_solution.py --- kyu_6/scheduling/test_solution.py | 85 +++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 kyu_6/scheduling/test_solution.py diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py new file mode 100644 index 00000000000..2b71a3aff9b --- /dev/null +++ b/kyu_6/scheduling/test_solution.py @@ -0,0 +1,85 @@ +""" +Test for -> Scheduling (Shortest Job First or SJF) +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + +# Scheduling Queues Algorithms + +import unittest +import allure +from utils.log_func import print_log +from kyu_6.scheduling.solution import SJF + + +@allure.epic('6 kyu') +@allure.parent_suite('Novice') +@allure.suite("Fundamentals") +@allure.sub_suite("Unit Tests") +@allure.feature("Algorithms") +@allure.story('Scheduling (Shortest Job First or SJF)') +@allure.tag('Scheduling', 'Queues', 'Algorithms') +@allure.link( + url='https://www.codewars.com/kata/550cc572b9e7b563be00054f', + name='Source/Kata') +class SJFTestCase(unittest.TestCase): + """ + Testing 'SJF' function + """ + + # pylint: disable-msg=R0801 + def test_sjf(self): + """ + Testing 'sjf' function with various test data + :return: + """ + allure.dynamic.title("Testing 'sjf' function") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

Codewars badge:

' + '' + '

Test Description:

' + "

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 = SJF(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 From c7591032d0dbe5f788656ed77edb780dab7e9b3e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:10:35 -0800 Subject: [PATCH 189/873] Create solution.py --- kyu_6/scheduling/solution.py | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 kyu_6/scheduling/solution.py diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py new file mode 100644 index 00000000000..867b24dc8c3 --- /dev/null +++ b/kyu_6/scheduling/solution.py @@ -0,0 +1,54 @@ +""" +Test for -> Scheduling (Shortest Job First or SJF) +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + + +def SJF(jobs: list, index: int) -> int: + """ + It takes in: + 1. "jobs" a non-empty array of positive integers. + They represent the clock-cycles(cc) needed to finish the job. + 2. "index" a positive integer. That represents the job we're interested in. + + SJF returns: + 1. A positive integer representing the cc it takes to complete the job at index. + + :param jobs: + :param index: + :return: + """ + cc: int = 0 + done: bool = False + + while not done: + min_j = get_min_job(jobs) + for i, j in enumerate(jobs): + if j == 0: + continue + + # Get to next job in que + if j == min_j: + cc += j + jobs[i] = 0 + # Get to the scheduled job, final step + if i == index: + done = True + break + + return cc + + +def get_min_job(jobs: list) -> int: + """ + Get the smallest job value of jobs that is not equals to 0 + :param jobs: + :return: + """ + min_job = max(jobs) + for j in jobs: + if j <= min_job and j != 0: + min_job = j + + return min_job From 4dc32ddb3a4086d3371d6e669280dff98ab7ab3d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:23:52 -0800 Subject: [PATCH 190/873] Docs --- docs/kyu_6.rst | 1 + docs/kyu_6.scheduling.module.rst | 11 +++++++++++ docs/kyu_6.scheduling.readme.rst | 5 +++++ docs/kyu_6.scheduling.rst | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 docs/kyu_6.scheduling.module.rst create mode 100644 docs/kyu_6.scheduling.readme.rst create mode 100644 docs/kyu_6.scheduling.rst diff --git a/docs/kyu_6.rst b/docs/kyu_6.rst index 35a1529b1ee..7b7eab1907a 100644 --- a/docs/kyu_6.rst +++ b/docs/kyu_6.rst @@ -37,6 +37,7 @@ 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 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: From 4228eca72585c46cd1a716e6db9a875fc0237800 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:26:38 -0800 Subject: [PATCH 191/873] Update README.md Error: kyu_6/scheduling/README.md:3:81 MD013/line-length Line length [Expected: 80; Actual: 104] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: kyu_6/scheduling/README.md:4:81 MD013/line-length Line length [Expected: 80; Actual: 103] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: kyu_6/scheduling/README.md:5:81 MD013/line-length Line length [Expected: 80; Actual: 95] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: kyu_6/scheduling/README.md:7:81 MD013/line-length Line length [Expected: 80; Actual: 106] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: kyu_6/scheduling/README.md:8:81 MD013/line-length Line length [Expected: 80; Actual: 109] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: kyu_6/scheduling/README.md:19:81 MD013/line-length Line length [Expected: 80; Actual: 111] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: Failed with exit code: 1 --- kyu_6/scheduling/README.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/kyu_6/scheduling/README.md b/kyu_6/scheduling/README.md index c20f2f9a0b3..9c139ee8ff3 100644 --- a/kyu_6/scheduling/README.md +++ b/kyu_6/scheduling/README.md @@ -1,12 +1,16 @@ # Scheduling (Shortest Job First or SJF) -Scheduling is how the processor decides which jobs(processes) get to use the processor and for how long. -This can cause a lot of problems. Like a really long process taking the entire CPU and freezing all the -other processes. One solution is Shortest Job First(SJF), which today you will be implementing. - -SJF works by, well, letting the shortest jobs take the CPU first. If the jobs are the same size then it is -First In First Out (FIFO). The idea is that the shorter jobs will finish quicker, so theoretically jobs won't -get frozen because of large jobs. (In practice they're frozen because of small jobs). +Scheduling is how the processor decides which jobs(processes) get to use +the processor and for how long. This can cause a lot of problems. Like a +really long process taking the entire CPU and freezing all the other +processes. One solution is Shortest Job First(SJF), which today you will +be implementing. + +SJF works by, well, letting the shortest jobs take the CPU first. If the +jobs are the same size then it is First In First Out (FIFO). The idea is +that the shorter jobs will finish quicker, so theoretically jobs won't +get frozen because of large jobs. (In practice they're frozen because of +small jobs). You will be implementing: @@ -16,7 +20,8 @@ def SJF(jobs, index) ## It takes in: -1. "jobs" a non-empty array of positive integers. They represent the clock-cycles(cc) needed to finish the job. +1. "jobs" a non-empty array of positive integers. They represent the +2. clock-cycles(cc) needed to finish the job. 2. "index" a positive integer. That represents the job we're interested in. ## SJF returns: From 78dd8b1ddfe09a86ab1675ad144b62617b4c0b45 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:28:37 -0800 Subject: [PATCH 192/873] Update README.md Error: kyu_6/scheduling/README.md:25:1 MD029/ol-prefix Ordered list item prefix [Expected: 3; Actual: 2; Style: 1/2/3] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md029.md Error: Failed with exit code: 1 --- kyu_6/scheduling/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/scheduling/README.md b/kyu_6/scheduling/README.md index 9c139ee8ff3..f0170cc4c59 100644 --- a/kyu_6/scheduling/README.md +++ b/kyu_6/scheduling/README.md @@ -21,7 +21,7 @@ def SJF(jobs, index) ## It takes in: 1. "jobs" a non-empty array of positive integers. They represent the -2. clock-cycles(cc) needed to finish the job. + clock-cycles(cc) needed to finish the job. 2. "index" a positive integer. That represents the job we're interested in. ## SJF returns: From 34452ae746eae58940cb427408abe9248385ab59 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:29:56 -0800 Subject: [PATCH 193/873] Update test_solution.py Run python -m pylint $(git ls-files '*.py') ************* Module kyu_6.scheduling.solution kyu_6/scheduling/solution.py:8:0: C0103: Function name "SJF" doesn't conform to snake_case naming style (invalid-name) ************* Module utils.primes.test_primes_generator utils/primes/test_primes_generator.py:1:0: R0801: Similar lines in 2 files ==kyu_6.help_the_bookseller.test_stock_list:[14:19] ==kyu_6.scheduling.test_solution:[14:19] @allure.epic('6 kyu') @allure.parent_suite('Novice') @allure.suite("Fundamentals") @allure.sub_suite("Unit Tests") @allure.feature("Algorithms") (duplicate-code) --- kyu_6/scheduling/test_solution.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py index 2b71a3aff9b..4c1f6a8c291 100644 --- a/kyu_6/scheduling/test_solution.py +++ b/kyu_6/scheduling/test_solution.py @@ -12,6 +12,7 @@ from kyu_6.scheduling.solution import SJF +# pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') @allure.suite("Fundamentals") @@ -22,6 +23,7 @@ @allure.link( url='https://www.codewars.com/kata/550cc572b9e7b563be00054f', name='Source/Kata') +# pylint: enable-msg=R0801 class SJFTestCase(unittest.TestCase): """ Testing 'SJF' function @@ -65,8 +67,7 @@ def test_sjf(self): 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) - ) + 7, 14, 12, 11, 18, 3, 4, 9, 5, 19], 24), 275)) for n, expected in test_data: jobs, index = n From 9cc182fa8a369380e3529c9ea327c61d7aa375e5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:33:37 -0800 Subject: [PATCH 194/873] shortest_job_first( kyu_6/scheduling/solution.py:8:0: C0103: Function name "SJF" doesn't conform to snake_case naming style (invalid-name) --- kyu_6/scheduling/solution.py | 2 +- kyu_6/scheduling/test_solution.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py index 867b24dc8c3..5179ad81953 100644 --- a/kyu_6/scheduling/solution.py +++ b/kyu_6/scheduling/solution.py @@ -5,7 +5,7 @@ """ -def SJF(jobs: list, index: int) -> int: +def shortest_job_first(jobs: list, index: int) -> int: """ It takes in: 1. "jobs" a non-empty array of positive integers. diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py index 4c1f6a8c291..50ea8e5a22f 100644 --- a/kyu_6/scheduling/test_solution.py +++ b/kyu_6/scheduling/test_solution.py @@ -9,7 +9,7 @@ import unittest import allure from utils.log_func import print_log -from kyu_6.scheduling.solution import SJF +from kyu_6.scheduling.solution import shortest_job_first # pylint: disable-msg=R0801 @@ -26,16 +26,16 @@ # pylint: enable-msg=R0801 class SJFTestCase(unittest.TestCase): """ - Testing 'SJF' function + Testing 'shortest_job_first(' function """ # pylint: disable-msg=R0801 def test_sjf(self): """ - Testing 'sjf' function with various test data + Testing 'shortest_job_first(' function with various test data :return: """ - allure.dynamic.title("Testing 'sjf' function") + allure.dynamic.title("Testing 'shortest_job_first(' function") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

Codewars badge:

' @@ -71,7 +71,7 @@ def test_sjf(self): for n, expected in test_data: jobs, index = n - actual_result = SJF(jobs, index) + 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 " From 1b808a4c18b80ec9a043c439136fd9f832972203 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 20 Nov 2024 20:45:05 -0800 Subject: [PATCH 195/873] Update solution.py /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/latest/kyu_6/scheduling/solution.py:docstring of kyu_6.scheduling.solution.shortest_job_first:3: ERROR: Unexpected indentation. [docutils] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/latest/kyu_6/scheduling/solution.py:docstring of kyu_6.scheduling.solution.shortest_job_first:4: WARNING: Block quote ends without a blank line; unexpected unindent. [docutils] --- kyu_6/scheduling/solution.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py index 5179ad81953..09cd478990f 100644 --- a/kyu_6/scheduling/solution.py +++ b/kyu_6/scheduling/solution.py @@ -9,12 +9,11 @@ def shortest_job_first(jobs: list, index: int) -> int: """ It takes in: 1. "jobs" a non-empty array of positive integers. - They represent the clock-cycles(cc) needed to finish the job. + They represent the clock-cycles(cc) needed to finish the job. 2. "index" a positive integer. That represents the job we're interested in. SJF returns: 1. A positive integer representing the cc it takes to complete the job at index. - :param jobs: :param index: :return: From bf5dd3da870f4d69077440587c4e930e75fba57a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 18:49:17 +0000 Subject: [PATCH 196/873] Bump codecov/codecov-action from 5.0.5 to 5.0.7 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.0.5 to 5.0.7. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.0.5...v5.0.7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index fe5cd80e041..504a61e4e3d 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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.5 + uses: codecov/codecov-action@v5.0.7 with: token: ${{ secrets.codecov_token }} files: coverage.xml From f700b4a4b2287959bcd7b6836d4c3474b94f9f9e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 18:30:19 -0800 Subject: [PATCH 197/873] Update solution.py --- kyu_6/scheduling/solution.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py index 09cd478990f..8461c3a09e0 100644 --- a/kyu_6/scheduling/solution.py +++ b/kyu_6/scheduling/solution.py @@ -41,11 +41,12 @@ def shortest_job_first(jobs: list, index: int) -> int: def get_min_job(jobs: list) -> int: """ - Get the smallest job value of jobs that is not equals to 0 + Get the smallest job value of jobs that is not equal to 0 :param jobs: :return: """ - min_job = max(jobs) + min_job: int = max(jobs) + for j in jobs: if j <= min_job and j != 0: min_job = j From 330ec6cf1b3032f5e2d39985ba7edfb27f4b5389 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 18:31:57 -0800 Subject: [PATCH 198/873] Update solution.py --- kyu_6/scheduling/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py index 8461c3a09e0..dfe7d3fed23 100644 --- a/kyu_6/scheduling/solution.py +++ b/kyu_6/scheduling/solution.py @@ -46,7 +46,7 @@ def get_min_job(jobs: list) -> int: :return: """ min_job: int = max(jobs) - + for j in jobs: if j <= min_job and j != 0: min_job = j From 52ea8c0c641b4c66e1626218ef6c854a17f7f6d4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 19:19:27 -0800 Subject: [PATCH 199/873] kyu_5.alphabet_wars_nuclear_strike --- docs/kyu_5.alphabet_wars_nuclear_strike.module.rst | 11 +++++++++++ docs/kyu_5.alphabet_wars_nuclear_strike.readme.rst | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 docs/kyu_5.alphabet_wars_nuclear_strike.module.rst create mode 100644 docs/kyu_5.alphabet_wars_nuclear_strike.readme.rst diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst new file mode 100644 index 00000000000..b5037df10ea --- /dev/null +++ b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst @@ -0,0 +1,11 @@ +kyu\_4.validate\_sudoku\_with\_size.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.alphabet_wars_nuclear_strike.readme.rst b/docs/kyu_5.alphabet_wars_nuclear_strike.readme.rst new file mode 100644 index 00000000000..775868558f5 --- /dev/null +++ b/docs/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 From ce6d57c88441563c34b47b757b15e5026124f781 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 19:22:22 -0800 Subject: [PATCH 200/873] Update kyu_5.rst --- docs/kyu_5.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_5.rst b/docs/kyu_5.rst index b29b1c5ae10..4432f16ca82 100644 --- a/docs/kyu_5.rst +++ b/docs/kyu_5.rst @@ -8,7 +8,7 @@ Subpackages :maxdepth: 4 kyu_5.readme - kyu_5.alphabet_wars_nuclear_strike + kyu_5.alphabet_wars_nuclear_strike.module kyu_5.count_ip_addresses kyu_5.did_i_finish_my_sudoku kyu_5.diophantine_equation From 57ceaab0c73a1fe43bc5d8c614c697c74c5abfd4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 19:31:25 -0800 Subject: [PATCH 201/873] Update kyu_5.alphabet_wars_nuclear_strike.module.rst --- docs/kyu_5.alphabet_wars_nuclear_strike.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst index b5037df10ea..fef964eae8e 100644 --- a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst +++ b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst @@ -1,4 +1,4 @@ -kyu\_4.validate\_sudoku\_with\_size.module module +kyu\_5.alphabet\_wars\_nuclear\_strike.module module ================================================= Subpackages From fa2dc5b088a2b45768599a4dbd39b1694f73fad3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 19:33:53 -0800 Subject: [PATCH 202/873] count_ip_addresses --- docs/kyu_5.count_ip_addresses.module.rst | 11 +++++++++++ docs/kyu_5.count_ip_addresses.readme.rst | 5 +++++ docs/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5.count_ip_addresses.module.rst create mode 100644 docs/kyu_5.count_ip_addresses.readme.rst diff --git a/docs/kyu_5.count_ip_addresses.module.rst b/docs/kyu_5.count_ip_addresses.module.rst new file mode 100644 index 00000000000..424dfb4ab14 --- /dev/null +++ b/docs/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.count_ip_addresses.readme.rst b/docs/kyu_5.count_ip_addresses.readme.rst new file mode 100644 index 00000000000..a3c82ea3c0a --- /dev/null +++ b/docs/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.rst b/docs/kyu_5.rst index 4432f16ca82..c585599a747 100644 --- a/docs/kyu_5.rst +++ b/docs/kyu_5.rst @@ -9,7 +9,7 @@ Subpackages kyu_5.readme kyu_5.alphabet_wars_nuclear_strike.module - kyu_5.count_ip_addresses + kyu_5.count_ip_addresses.module kyu_5.did_i_finish_my_sudoku kyu_5.diophantine_equation kyu_5.directions_reduction From aed409ea9917c576e25d7f47f5720d24e9ac41e5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 21 Nov 2024 19:38:38 -0800 Subject: [PATCH 203/873] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst:2: WARNING: Title underline too short. /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst:2: WARNING: Title underline too short. --- docs/kyu_5.alphabet_wars_nuclear_strike.module.rst | 2 +- docs/kyu_5.count_ip_addresses.module.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst index fef964eae8e..d5503f66e64 100644 --- a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst +++ b/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst @@ -1,5 +1,5 @@ kyu\_5.alphabet\_wars\_nuclear\_strike.module module -================================================= +==================================================== Subpackages ----------- diff --git a/docs/kyu_5.count_ip_addresses.module.rst b/docs/kyu_5.count_ip_addresses.module.rst index 424dfb4ab14..c3337cb84bb 100644 --- a/docs/kyu_5.count_ip_addresses.module.rst +++ b/docs/kyu_5.count_ip_addresses.module.rst @@ -1,5 +1,5 @@ kyu\_5.count\_ip\_addresses.module module -================================================= +========================================= Subpackages ----------- From 3a9a917f9b3df6ac378656ab17a5011bb0939cbe Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 20:50:40 -0800 Subject: [PATCH 204/873] kyu_2 docs refactoring --- docs/index.rst | 2 +- ...valuate_mathematical_expression.module.rst | 11 ------- ...valuate_mathematical_expression.readme.rst | 5 --- ...kyu_2.evaluate_mathematical_expression.rst | 32 ------------------- ...valuate_mathematical_expression.module.rst | 11 +++++++ ...valuate_mathematical_expression.readme.rst | 5 +++ ...kyu_2.evaluate_mathematical_expression.rst | 32 +++++++++++++++++++ docs/{ => kyu_2}/kyu_2.readme.rst | 2 +- docs/{ => kyu_2}/kyu_2.rst | 8 ++--- 9 files changed, 54 insertions(+), 54 deletions(-) delete mode 100644 docs/kyu_2.evaluate_mathematical_expression.module.rst delete mode 100644 docs/kyu_2.evaluate_mathematical_expression.readme.rst delete mode 100644 docs/kyu_2.evaluate_mathematical_expression.rst create mode 100644 docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst create mode 100644 docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst create mode 100644 docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst rename docs/{ => kyu_2}/kyu_2.readme.rst (54%) rename docs/{ => kyu_2}/kyu_2.rst (60%) diff --git a/docs/index.rst b/docs/index.rst index cc3ae39dfdb..3adfecaff29 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,7 +11,7 @@ Welcome to Python3 solutions for codewars problems's documentation! :caption: Contents: readme - kyu_2 + kyu_2.kyu_2 kyu_3 kyu_4 kyu_5 diff --git a/docs/kyu_2.evaluate_mathematical_expression.module.rst b/docs/kyu_2.evaluate_mathematical_expression.module.rst deleted file mode 100644 index 3b8a6a0a4c5..00000000000 --- a/docs/kyu_2.evaluate_mathematical_expression.module.rst +++ /dev/null @@ -1,11 +0,0 @@ -kyu\_2.evaluate\_mathematical\_expression.module module -======================================================= - -Subpackages ------------ - -.. toctree:: - :maxdepth: 4 - - kyu_2.evaluate_mathematical_expression.readme - kyu_2.evaluate_mathematical_expression \ No newline at end of file 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.evaluate_mathematical_expression.rst b/docs/kyu_2.evaluate_mathematical_expression.rst deleted file mode 100644 index 2cd5e6c8d05..00000000000 --- a/docs/kyu_2.evaluate_mathematical_expression.rst +++ /dev/null @@ -1,32 +0,0 @@ -kyu\_2.evaluate\_mathematical\_expression package -================================================= - -Submodules ----------- - -kyu\_2.evaluate\_mathematical\_expression.evaluate module ---------------------------------------------------------- - -.. automodule:: kyu_2.evaluate_mathematical_expression.evaluate - :members: - :undoc-members: - :show-inheritance: - :private-members: - -kyu\_2.evaluate\_mathematical\_expression.test\_evaluate module ---------------------------------------------------------------- - -.. automodule:: kyu_2.evaluate_mathematical_expression.test_evaluate - :members: - :undoc-members: - :show-inheritance: - :private-members: - -Module contents ---------------- - -.. automodule:: kyu_2.evaluate_mathematical_expression - :members: - :undoc-members: - :show-inheritance: - :private-members: diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst new file mode 100644 index 00000000000..ce3e3ff2f7c --- /dev/null +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst @@ -0,0 +1,11 @@ +kyu\_2.kyu\_2.evaluate\_mathematical\_expression.module module +============================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_2.kyu_2.evaluate_mathematical_expression.readme + kyu_2.kyu_2.evaluate_mathematical_expression \ No newline at end of file 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..50b24ea44b5 --- /dev/null +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../kyu_2/kyu_2/evaluate_mathematical_expression/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst new file mode 100644 index 00000000000..2358163dffa --- /dev/null +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst @@ -0,0 +1,32 @@ +kyu\_2.kyu\_2.evaluate\_mathematical\_expression package +======================================================== + +Submodules +---------- + +kyu\_2.kyu\_2.evaluate\_mathematical\_expression.evaluate module +---------------------------------------------------------------- + +.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression.evaluate + :members: + :undoc-members: + :show-inheritance: + :private-members: + +kyu\_2.kyu\_2.evaluate\_mathematical\_expression.test\_evaluate module +---------------------------------------------------------------------- + +.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression.test_evaluate + :members: + :undoc-members: + :show-inheritance: + :private-members: + +Module contents +--------------- + +.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression + :members: + :undoc-members: + :show-inheritance: + :private-members: diff --git a/docs/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst similarity index 54% rename from docs/kyu_2.readme.rst rename to docs/kyu_2/kyu_2.readme.rst index 683534cd5d0..e51f8bfc97e 100644 --- a/docs/kyu_2.readme.rst +++ b/docs/kyu_2/kyu_2.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/README.md +.. include:: ../kyu_2/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 60% rename from docs/kyu_2.rst rename to docs/kyu_2/kyu_2.rst index 23e5842a0f2..744018d8077 100644 --- a/docs/kyu_2.rst +++ b/docs/kyu_2/kyu_2.rst @@ -1,5 +1,5 @@ -kyu\_2 package -============== +kyu\_2.kyu\_2 package +===================== Subpackages ----------- @@ -7,8 +7,8 @@ Subpackages .. toctree:: :maxdepth: 4 - kyu_2.readme - kyu_2.evaluate_mathematical_expression.module + kyu_2.kyu_2.readme + kyu_2.kyu_2.evaluate_mathematical_expression.module Module contents --------------- From e7c375d0a977e5655823285411907d87ceb86eb7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 20:55:18 -0800 Subject: [PATCH 205/873] Update kyu_2.rst /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/kyu_2/kyu_2.rst:7: WARNING: toctree contains reference to nonexisting document 'kyu_2/kyu_2.kyu_2.readme' [toc.not_readable] --- docs/kyu_2/kyu_2.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/kyu_2/kyu_2.rst b/docs/kyu_2/kyu_2.rst index 744018d8077..23e5842a0f2 100644 --- a/docs/kyu_2/kyu_2.rst +++ b/docs/kyu_2/kyu_2.rst @@ -1,5 +1,5 @@ -kyu\_2.kyu\_2 package -===================== +kyu\_2 package +============== Subpackages ----------- @@ -7,8 +7,8 @@ Subpackages .. toctree:: :maxdepth: 4 - kyu_2.kyu_2.readme - kyu_2.kyu_2.evaluate_mathematical_expression.module + kyu_2.readme + kyu_2.evaluate_mathematical_expression.module Module contents --------------- From 79fb071240f0954a22e49ba4a51f5305bcc6b454 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:00:07 -0800 Subject: [PATCH 206/873] kyu_2 --- ...evaluate_mathematical_expression.module.rst | 8 ++++---- ...evaluate_mathematical_expression.readme.rst | 2 +- .../kyu_2.evaluate_mathematical_expression.rst | 18 +++++++++--------- docs/kyu_2/kyu_2.readme.rst | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst index ce3e3ff2f7c..3b8a6a0a4c5 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst @@ -1,5 +1,5 @@ -kyu\_2.kyu\_2.evaluate\_mathematical\_expression.module module -============================================================== +kyu\_2.evaluate\_mathematical\_expression.module module +======================================================= Subpackages ----------- @@ -7,5 +7,5 @@ Subpackages .. toctree:: :maxdepth: 4 - kyu_2.kyu_2.evaluate_mathematical_expression.readme - kyu_2.kyu_2.evaluate_mathematical_expression \ No newline at end of file + kyu_2.evaluate_mathematical_expression.readme + kyu_2.evaluate_mathematical_expression \ No newline at end of file diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst index 50b24ea44b5..6fd7ac011bd 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/kyu_2/evaluate_mathematical_expression/README.md +.. include:: ../kyu_2/evaluate_mathematical_expression/README.md :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst index 2358163dffa..2cd5e6c8d05 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst @@ -1,22 +1,22 @@ -kyu\_2.kyu\_2.evaluate\_mathematical\_expression package -======================================================== +kyu\_2.evaluate\_mathematical\_expression package +================================================= Submodules ---------- -kyu\_2.kyu\_2.evaluate\_mathematical\_expression.evaluate module ----------------------------------------------------------------- +kyu\_2.evaluate\_mathematical\_expression.evaluate module +--------------------------------------------------------- -.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression.evaluate +.. automodule:: kyu_2.evaluate_mathematical_expression.evaluate :members: :undoc-members: :show-inheritance: :private-members: -kyu\_2.kyu\_2.evaluate\_mathematical\_expression.test\_evaluate module ----------------------------------------------------------------------- +kyu\_2.evaluate\_mathematical\_expression.test\_evaluate module +--------------------------------------------------------------- -.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression.test_evaluate +.. automodule:: kyu_2.evaluate_mathematical_expression.test_evaluate :members: :undoc-members: :show-inheritance: @@ -25,7 +25,7 @@ kyu\_2.kyu\_2.evaluate\_mathematical\_expression.test\_evaluate module Module contents --------------- -.. automodule:: kyu_2.kyu_2.evaluate_mathematical_expression +.. automodule:: kyu_2.evaluate_mathematical_expression :members: :undoc-members: :show-inheritance: diff --git a/docs/kyu_2/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst index e51f8bfc97e..683534cd5d0 100644 --- a/docs/kyu_2/kyu_2.readme.rst +++ b/docs/kyu_2/kyu_2.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/kyu_2/README.md +.. include:: ../kyu_2/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 40a66903d204b119aa6b3d4f9a95ba881d9cde4f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:05:22 -0800 Subject: [PATCH 207/873] Update kyu_2.readme.rst --- docs/kyu_2/kyu_2.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_2/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst index 683534cd5d0..e51f8bfc97e 100644 --- a/docs/kyu_2/kyu_2.readme.rst +++ b/docs/kyu_2/kyu_2.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/README.md +.. include:: ../kyu_2/kyu_2/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 4e2ad53eef5fe2ebbe202cde219137c1a45b68ef Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:06:15 -0800 Subject: [PATCH 208/873] Update kyu_2.evaluate_mathematical_expression.readme.rst --- docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst index 6fd7ac011bd..50b24ea44b5 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/evaluate_mathematical_expression/README.md +.. include:: ../kyu_2/kyu_2/evaluate_mathematical_expression/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From eecf463c2ffc92e5b882195253ec15341fb6dd8f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:11:16 -0800 Subject: [PATCH 209/873] /kyu_2/ --- docs/index.rst | 2 +- docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst | 2 +- docs/kyu_2/kyu_2.readme.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 3adfecaff29..c67c24499a0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,7 +11,7 @@ Welcome to Python3 solutions for codewars problems's documentation! :caption: Contents: readme - kyu_2.kyu_2 + kyu_2/kyu_2 kyu_3 kyu_4 kyu_5 diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst index 50b24ea44b5..6fd7ac011bd 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/kyu_2/evaluate_mathematical_expression/README.md +.. include:: ../kyu_2/evaluate_mathematical_expression/README.md :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst index e51f8bfc97e..683534cd5d0 100644 --- a/docs/kyu_2/kyu_2.readme.rst +++ b/docs/kyu_2/kyu_2.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/kyu_2/README.md +.. include:: ../kyu_2/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 1be298046024c0e5092bd533974676042dd45508 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:15:10 -0800 Subject: [PATCH 210/873] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst:4: CRITICAL: Problems with "include" directive path: --- docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst | 2 +- docs/kyu_2/kyu_2.readme.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst index 6fd7ac011bd..096d66c2196 100644 --- a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/evaluate_mathematical_expression/README.md +.. include:: ../../kyu_2/evaluate_mathematical_expression/README.md :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst index 683534cd5d0..d75f8b7ceee 100644 --- a/docs/kyu_2/kyu_2.readme.rst +++ b/docs/kyu_2/kyu_2.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_2/README.md +.. include:: ../../kyu_2/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 0042c6f0737108c77b88f2d3a708aff299b24efa Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:20:26 -0800 Subject: [PATCH 211/873] Kyu_3 --- docs/index.rst | 2 +- docs/kyu_3.battleship_field_validator.readme.rst | 5 ----- docs/kyu_3.line_safari_is_that_a_line.readme.rst | 5 ----- docs/kyu_3.make_spiral.readme.rst | 5 ----- .../kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst | 5 ----- docs/{ => kyu_3}/kyu_3.battleship_field_validator.module.rst | 0 docs/kyu_3/kyu_3.battleship_field_validator.readme.rst | 5 +++++ docs/{ => kyu_3}/kyu_3.battleship_field_validator.rst | 0 docs/{ => kyu_3}/kyu_3.calculator.module.rst | 0 docs/{ => kyu_3}/kyu_3.calculator.readme.rst | 2 +- docs/{ => kyu_3}/kyu_3.calculator.rst | 0 docs/{ => kyu_3}/kyu_3.line_safari_is_that_a_line.module.rst | 0 docs/kyu_3/kyu_3.line_safari_is_that_a_line.readme.rst | 5 +++++ docs/{ => kyu_3}/kyu_3.line_safari_is_that_a_line.rst | 0 docs/{ => kyu_3}/kyu_3.make_spiral.module.rst | 0 docs/kyu_3/kyu_3.make_spiral.readme.rst | 5 +++++ docs/{ => kyu_3}/kyu_3.make_spiral.rst | 0 .../kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst | 0 .../kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst | 5 +++++ .../kyu_3.rail_fence_cipher_encoding_and_decoding.rst | 0 docs/{ => kyu_3}/kyu_3.readme.rst | 2 +- docs/{ => kyu_3}/kyu_3.rst | 0 22 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 docs/kyu_3.battleship_field_validator.readme.rst delete mode 100644 docs/kyu_3.line_safari_is_that_a_line.readme.rst delete mode 100644 docs/kyu_3.make_spiral.readme.rst delete mode 100644 docs/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst rename docs/{ => kyu_3}/kyu_3.battleship_field_validator.module.rst (100%) create mode 100644 docs/kyu_3/kyu_3.battleship_field_validator.readme.rst rename docs/{ => kyu_3}/kyu_3.battleship_field_validator.rst (100%) rename docs/{ => kyu_3}/kyu_3.calculator.module.rst (100%) rename docs/{ => kyu_3}/kyu_3.calculator.readme.rst (50%) rename docs/{ => kyu_3}/kyu_3.calculator.rst (100%) rename docs/{ => kyu_3}/kyu_3.line_safari_is_that_a_line.module.rst (100%) create mode 100644 docs/kyu_3/kyu_3.line_safari_is_that_a_line.readme.rst rename docs/{ => kyu_3}/kyu_3.line_safari_is_that_a_line.rst (100%) rename docs/{ => kyu_3}/kyu_3.make_spiral.module.rst (100%) create mode 100644 docs/kyu_3/kyu_3.make_spiral.readme.rst rename docs/{ => kyu_3}/kyu_3.make_spiral.rst (100%) rename docs/{ => kyu_3}/kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst (100%) create mode 100644 docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst rename docs/{ => kyu_3}/kyu_3.rail_fence_cipher_encoding_and_decoding.rst (100%) rename docs/{ => kyu_3}/kyu_3.readme.rst (56%) rename docs/{ => kyu_3}/kyu_3.rst (100%) diff --git a/docs/index.rst b/docs/index.rst index c67c24499a0..d0a4407079a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,7 +12,7 @@ Welcome to Python3 solutions for codewars problems's documentation! readme kyu_2/kyu_2 - kyu_3 + kyu_3.kyu_3 kyu_4 kyu_5 kyu_6 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.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.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.calculator.readme.rst b/docs/kyu_3/kyu_3.calculator.readme.rst similarity index 50% rename from docs/kyu_3.calculator.readme.rst rename to docs/kyu_3/kyu_3.calculator.readme.rst index fce496a2c63..3ff802e1826 100644 --- a/docs/kyu_3.calculator.readme.rst +++ b/docs/kyu_3/kyu_3.calculator.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_3/calculator/README.md +.. 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.readme.rst b/docs/kyu_3/kyu_3.readme.rst similarity index 56% rename from docs/kyu_3.readme.rst rename to docs/kyu_3/kyu_3.readme.rst index 0608f71ff4d..88da00e65fd 100644 --- a/docs/kyu_3.readme.rst +++ b/docs/kyu_3/kyu_3.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_3/README.md +.. 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 From 7e5eedfdcd02d6cb81f1137e49eddf52fc41819d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:23:04 -0800 Subject: [PATCH 212/873] kyu_3 /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/index.rst:9: WARNING: toctree contains reference to nonexisting document 'kyu_3.kyu_3' [toc.not_readable] looking for now-outdated files... none found pickling environment... done checking consistency... /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/532/docs/kyu_3/kyu_3.rst: WARNING: document isn't included in any toctree done --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index d0a4407079a..0f19a4bf199 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,7 +12,7 @@ Welcome to Python3 solutions for codewars problems's documentation! readme kyu_2/kyu_2 - kyu_3.kyu_3 + kyu_3/kyu_3 kyu_4 kyu_5 kyu_6 From 5f35ca71744fdc4e44bf7d14b83128fec1bdd911 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 22 Nov 2024 21:36:41 -0800 Subject: [PATCH 213/873] kyu_4 --- docs/index.rst | 2 +- docs/kyu_4.human_readable_duration_format.readme.rst | 5 ----- docs/kyu_4.most_frequently_used_words.readme.rst | 5 ----- .../kyu_4.next_bigger_number_with_the_same_digits.readme.rst | 5 ----- ...kyu_4.next_smaller_number_with_the_same_digits.readme.rst | 5 ----- docs/kyu_4.permutations.readme.rst | 5 ----- docs/kyu_4.range_extraction.readme.rst | 5 ----- docs/kyu_4.strings_mix.readme.rst | 5 ----- docs/kyu_4.strip_comments.readme.rst | 5 ----- docs/kyu_4.sudoku_solution_validator.readme.rst | 5 ----- docs/kyu_4.sum_by_factors.readme.rst | 5 ----- docs/kyu_4.sum_of_intervals.readme.rst | 5 ----- docs/kyu_4.the_greatest_warrior.readme.rst | 5 ----- docs/kyu_4.validate_sudoku_with_size.readme.rst | 5 ----- .../kyu_4.human_readable_duration_format.module.rst | 0 docs/kyu_4/kyu_4.human_readable_duration_format.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.human_readable_duration_format.rst | 0 docs/{ => kyu_4}/kyu_4.most_frequently_used_words.module.rst | 0 docs/kyu_4/kyu_4.most_frequently_used_words.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.most_frequently_used_words.rst | 0 .../kyu_4.next_bigger_number_with_the_same_digits.module.rst | 0 .../kyu_4.next_bigger_number_with_the_same_digits.readme.rst | 5 +++++ .../kyu_4.next_bigger_number_with_the_same_digits.rst | 0 ...kyu_4.next_smaller_number_with_the_same_digits.module.rst | 0 ...kyu_4.next_smaller_number_with_the_same_digits.readme.rst | 5 +++++ .../kyu_4.next_smaller_number_with_the_same_digits.rst | 0 docs/{ => kyu_4}/kyu_4.permutations.module.rst | 0 docs/kyu_4/kyu_4.permutations.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.permutations.rst | 0 docs/{ => kyu_4}/kyu_4.range_extraction.module.rst | 0 docs/kyu_4/kyu_4.range_extraction.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.range_extraction.rst | 0 docs/{ => kyu_4}/kyu_4.readme.rst | 2 +- docs/{ => kyu_4}/kyu_4.rst | 0 docs/{ => kyu_4}/kyu_4.snail.module.rst | 0 docs/{ => kyu_4}/kyu_4.snail.readme.rst | 2 +- docs/{ => kyu_4}/kyu_4.snail.rst | 0 docs/{ => kyu_4}/kyu_4.strings_mix.module.rst | 0 docs/kyu_4/kyu_4.strings_mix.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.strings_mix.rst | 0 docs/{ => kyu_4}/kyu_4.strip_comments.module.rst | 0 docs/kyu_4/kyu_4.strip_comments.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.strip_comments.rst | 0 docs/{ => kyu_4}/kyu_4.sudoku_solution_validator.module.rst | 0 docs/kyu_4/kyu_4.sudoku_solution_validator.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.sudoku_solution_validator.rst | 0 docs/{ => kyu_4}/kyu_4.sum_by_factors.module.rst | 0 docs/kyu_4/kyu_4.sum_by_factors.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.sum_by_factors.rst | 0 docs/{ => kyu_4}/kyu_4.sum_of_intervals.module.rst | 0 docs/kyu_4/kyu_4.sum_of_intervals.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.sum_of_intervals.rst | 0 docs/{ => kyu_4}/kyu_4.the_greatest_warrior.module.rst | 0 docs/kyu_4/kyu_4.the_greatest_warrior.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.the_greatest_warrior.rst | 0 docs/{ => kyu_4}/kyu_4.validate_sudoku_with_size.module.rst | 0 docs/kyu_4/kyu_4.validate_sudoku_with_size.readme.rst | 5 +++++ docs/{ => kyu_4}/kyu_4.validate_sudoku_with_size.rst | 0 58 files changed, 68 insertions(+), 68 deletions(-) delete mode 100644 docs/kyu_4.human_readable_duration_format.readme.rst delete mode 100644 docs/kyu_4.most_frequently_used_words.readme.rst delete mode 100644 docs/kyu_4.next_bigger_number_with_the_same_digits.readme.rst delete mode 100644 docs/kyu_4.next_smaller_number_with_the_same_digits.readme.rst delete mode 100644 docs/kyu_4.permutations.readme.rst delete mode 100644 docs/kyu_4.range_extraction.readme.rst delete mode 100644 docs/kyu_4.strings_mix.readme.rst delete mode 100644 docs/kyu_4.strip_comments.readme.rst delete mode 100644 docs/kyu_4.sudoku_solution_validator.readme.rst delete mode 100644 docs/kyu_4.sum_by_factors.readme.rst delete mode 100644 docs/kyu_4.sum_of_intervals.readme.rst delete mode 100644 docs/kyu_4.the_greatest_warrior.readme.rst delete mode 100644 docs/kyu_4.validate_sudoku_with_size.readme.rst rename docs/{ => kyu_4}/kyu_4.human_readable_duration_format.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.human_readable_duration_format.readme.rst rename docs/{ => kyu_4}/kyu_4.human_readable_duration_format.rst (100%) rename docs/{ => kyu_4}/kyu_4.most_frequently_used_words.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.most_frequently_used_words.readme.rst rename docs/{ => kyu_4}/kyu_4.most_frequently_used_words.rst (100%) rename docs/{ => kyu_4}/kyu_4.next_bigger_number_with_the_same_digits.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.readme.rst rename docs/{ => kyu_4}/kyu_4.next_bigger_number_with_the_same_digits.rst (100%) rename docs/{ => kyu_4}/kyu_4.next_smaller_number_with_the_same_digits.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.readme.rst rename docs/{ => kyu_4}/kyu_4.next_smaller_number_with_the_same_digits.rst (100%) rename docs/{ => kyu_4}/kyu_4.permutations.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.permutations.readme.rst rename docs/{ => kyu_4}/kyu_4.permutations.rst (100%) rename docs/{ => kyu_4}/kyu_4.range_extraction.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.range_extraction.readme.rst rename docs/{ => kyu_4}/kyu_4.range_extraction.rst (100%) rename docs/{ => kyu_4}/kyu_4.readme.rst (56%) rename docs/{ => kyu_4}/kyu_4.rst (100%) rename docs/{ => kyu_4}/kyu_4.snail.module.rst (100%) rename docs/{ => kyu_4}/kyu_4.snail.readme.rst (52%) rename docs/{ => kyu_4}/kyu_4.snail.rst (100%) rename docs/{ => kyu_4}/kyu_4.strings_mix.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.strings_mix.readme.rst rename docs/{ => kyu_4}/kyu_4.strings_mix.rst (100%) rename docs/{ => kyu_4}/kyu_4.strip_comments.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.strip_comments.readme.rst rename docs/{ => kyu_4}/kyu_4.strip_comments.rst (100%) rename docs/{ => kyu_4}/kyu_4.sudoku_solution_validator.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.sudoku_solution_validator.readme.rst rename docs/{ => kyu_4}/kyu_4.sudoku_solution_validator.rst (100%) rename docs/{ => kyu_4}/kyu_4.sum_by_factors.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.sum_by_factors.readme.rst rename docs/{ => kyu_4}/kyu_4.sum_by_factors.rst (100%) rename docs/{ => kyu_4}/kyu_4.sum_of_intervals.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.sum_of_intervals.readme.rst rename docs/{ => kyu_4}/kyu_4.sum_of_intervals.rst (100%) rename docs/{ => kyu_4}/kyu_4.the_greatest_warrior.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.the_greatest_warrior.readme.rst rename docs/{ => kyu_4}/kyu_4.the_greatest_warrior.rst (100%) rename docs/{ => kyu_4}/kyu_4.validate_sudoku_with_size.module.rst (100%) create mode 100644 docs/kyu_4/kyu_4.validate_sudoku_with_size.readme.rst rename docs/{ => kyu_4}/kyu_4.validate_sudoku_with_size.rst (100%) diff --git a/docs/index.rst b/docs/index.rst index 0f19a4bf199..d632af2491c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,7 +13,7 @@ Welcome to Python3 solutions for codewars problems's documentation! readme kyu_2/kyu_2 kyu_3/kyu_3 - kyu_4 + kyu_4/kyu_4 kyu_5 kyu_6 kyu_7 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.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.readme.rst b/docs/kyu_4/kyu_4.readme.rst similarity index 56% rename from docs/kyu_4.readme.rst rename to docs/kyu_4/kyu_4.readme.rst index 2a74a39743c..d92d00c959f 100644 --- a/docs/kyu_4.readme.rst +++ b/docs/kyu_4/kyu_4.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_4/README.md +.. 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.snail.readme.rst b/docs/kyu_4/kyu_4.snail.readme.rst similarity index 52% rename from docs/kyu_4.snail.readme.rst rename to docs/kyu_4/kyu_4.snail.readme.rst index 7268c5f2e02..da24038ceb6 100644 --- a/docs/kyu_4.snail.readme.rst +++ b/docs/kyu_4/kyu_4.snail.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_4/snail/README.md +.. 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 From 51e5b4b84b5c84aca116ee150b58ad2a728b3acc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 14:29:08 -0800 Subject: [PATCH 214/873] kyu_5 --- docs/index.rst | 2 +- .../kyu_5.alphabet_wars_nuclear_strike.module.rst | 0 .../kyu_5.alphabet_wars_nuclear_strike.readme.rst | 0 .../kyu_5.alphabet_wars_nuclear_strike.rst | 0 docs/{ => kyu_5}/kyu_5.count_ip_addresses.module.rst | 0 docs/{ => kyu_5}/kyu_5.count_ip_addresses.readme.rst | 0 docs/{ => kyu_5}/kyu_5.count_ip_addresses.rst | 0 docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst | 5 +++++ docs/{ => kyu_5}/kyu_5.did_i_finish_my_sudoku.rst | 0 docs/{ => kyu_5}/kyu_5.diophantine_equation.rst | 0 docs/{ => kyu_5}/kyu_5.directions_reduction.rst | 0 .../kyu_5.extract_the_domain_name_from_url.rst | 0 docs/{ => kyu_5}/kyu_5.fibonacci_streaming.rst | 0 .../kyu_5.find_the_safest_places_in_town.rst | 0 docs/{ => kyu_5}/kyu_5.find_the_smallest.rst | 0 .../kyu_5.first_non_repeating_character.rst | 0 docs/{ => kyu_5}/kyu_5.flatten.rst | 0 docs/{ => kyu_5}/kyu_5.human_readable_time.rst | 0 docs/{ => kyu_5}/kyu_5.integers_recreation_one.rst | 0 docs/{ => kyu_5}/kyu_5.josephus_survivor.rst | 0 ...yu_5.master_your_primes_sieve_with_memoization.rst | 0 docs/{ => kyu_5}/kyu_5.moving_zeros_to_the_end.rst | 0 .../kyu_5.multidimensional_neighbourhood.rst | 0 docs/{ => kyu_5}/kyu_5.not_very_secure.rst | 0 .../kyu_5.number_of_trailing_zeros_of_n.rst | 0 docs/{ => kyu_5}/kyu_5.readme.rst | 0 docs/{ => kyu_5}/kyu_5.rst | 0 docs/{ => kyu_5}/kyu_5.simple_pig_latin.rst | 0 .../{ => kyu_5}/kyu_5.sports_league_table_ranking.rst | 0 docs/{ => kyu_5}/kyu_5.string_incrementer.rst | 0 docs/{ => kyu_5}/kyu_5.sum_of_pairs.rst | 0 docs/{ => kyu_5}/kyu_5.the_hashtag_generator.rst | 0 docs/{ => kyu_5}/kyu_5.tic_tac_toe_checker.rst | 0 docs/{ => kyu_5}/kyu_5.valid_parentheses.rst | 0 docs/{ => kyu_5}/kyu_5.where_my_anagrams_at.rst | 0 36 files changed, 17 insertions(+), 1 deletion(-) rename docs/{ => kyu_5}/kyu_5.alphabet_wars_nuclear_strike.module.rst (100%) rename docs/{ => kyu_5}/kyu_5.alphabet_wars_nuclear_strike.readme.rst (100%) rename docs/{ => kyu_5}/kyu_5.alphabet_wars_nuclear_strike.rst (100%) rename docs/{ => kyu_5}/kyu_5.count_ip_addresses.module.rst (100%) rename docs/{ => kyu_5}/kyu_5.count_ip_addresses.readme.rst (100%) rename docs/{ => kyu_5}/kyu_5.count_ip_addresses.rst (100%) create mode 100644 docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst create mode 100644 docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst rename docs/{ => kyu_5}/kyu_5.did_i_finish_my_sudoku.rst (100%) rename docs/{ => kyu_5}/kyu_5.diophantine_equation.rst (100%) rename docs/{ => kyu_5}/kyu_5.directions_reduction.rst (100%) rename docs/{ => kyu_5}/kyu_5.extract_the_domain_name_from_url.rst (100%) rename docs/{ => kyu_5}/kyu_5.fibonacci_streaming.rst (100%) rename docs/{ => kyu_5}/kyu_5.find_the_safest_places_in_town.rst (100%) rename docs/{ => kyu_5}/kyu_5.find_the_smallest.rst (100%) rename docs/{ => kyu_5}/kyu_5.first_non_repeating_character.rst (100%) rename docs/{ => kyu_5}/kyu_5.flatten.rst (100%) rename docs/{ => kyu_5}/kyu_5.human_readable_time.rst (100%) rename docs/{ => kyu_5}/kyu_5.integers_recreation_one.rst (100%) rename docs/{ => kyu_5}/kyu_5.josephus_survivor.rst (100%) rename docs/{ => kyu_5}/kyu_5.master_your_primes_sieve_with_memoization.rst (100%) rename docs/{ => kyu_5}/kyu_5.moving_zeros_to_the_end.rst (100%) rename docs/{ => kyu_5}/kyu_5.multidimensional_neighbourhood.rst (100%) rename docs/{ => kyu_5}/kyu_5.not_very_secure.rst (100%) rename docs/{ => kyu_5}/kyu_5.number_of_trailing_zeros_of_n.rst (100%) rename docs/{ => kyu_5}/kyu_5.readme.rst (100%) rename docs/{ => kyu_5}/kyu_5.rst (100%) rename docs/{ => kyu_5}/kyu_5.simple_pig_latin.rst (100%) rename docs/{ => kyu_5}/kyu_5.sports_league_table_ranking.rst (100%) rename docs/{ => kyu_5}/kyu_5.string_incrementer.rst (100%) rename docs/{ => kyu_5}/kyu_5.sum_of_pairs.rst (100%) rename docs/{ => kyu_5}/kyu_5.the_hashtag_generator.rst (100%) rename docs/{ => kyu_5}/kyu_5.tic_tac_toe_checker.rst (100%) rename docs/{ => kyu_5}/kyu_5.valid_parentheses.rst (100%) rename docs/{ => kyu_5}/kyu_5.where_my_anagrams_at.rst (100%) diff --git a/docs/index.rst b/docs/index.rst index d632af2491c..fefbd97ba67 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,7 +14,7 @@ Welcome to Python3 solutions for codewars problems's documentation! kyu_2/kyu_2 kyu_3/kyu_3 kyu_4/kyu_4 - kyu_5 + kyu_5/kyu_5 kyu_6 kyu_7 kyu_8 diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.module.rst b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.module.rst similarity index 100% rename from docs/kyu_5.alphabet_wars_nuclear_strike.module.rst rename to docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.module.rst diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.readme.rst b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst similarity index 100% rename from docs/kyu_5.alphabet_wars_nuclear_strike.readme.rst rename to docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst 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.count_ip_addresses.module.rst b/docs/kyu_5/kyu_5.count_ip_addresses.module.rst similarity index 100% rename from docs/kyu_5.count_ip_addresses.module.rst rename to docs/kyu_5/kyu_5.count_ip_addresses.module.rst diff --git a/docs/kyu_5.count_ip_addresses.readme.rst b/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst similarity index 100% rename from docs/kyu_5.count_ip_addresses.readme.rst rename to docs/kyu_5/kyu_5.count_ip_addresses.readme.rst 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..713df3a00eb --- /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..c5503d37c8e --- /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.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.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.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.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.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.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.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.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.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.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.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.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.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.readme.rst b/docs/kyu_5/kyu_5.readme.rst similarity index 100% rename from docs/kyu_5.readme.rst rename to docs/kyu_5/kyu_5.readme.rst diff --git a/docs/kyu_5.rst b/docs/kyu_5/kyu_5.rst similarity index 100% rename from docs/kyu_5.rst rename to docs/kyu_5/kyu_5.rst 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 From 394ad862647410e9f91aed1fd928422301fb3b23 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 14:34:14 -0800 Subject: [PATCH 215/873] link fixes /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst:4: CRITICAL: Problems with "include" directive path: InputError: [Errno 2] No such file or directory: 'kyu_5/alphabet_wars_nuclear_strike/README.md'. [docutils] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst:4: CRITICAL: Problems with "include" directive path: InputError: [Errno 2] No such file or directory: 'kyu_5/count_ip_addresses/README.md'. [docutils] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst:2: WARNING: Title underline too short. kyu\_5.did\_i\_finish\_my\_sudoku.module module ========================================= [docutils] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst:4: CRITICAL: Problems with "include" directive path: InputError: [Errno 2] No such file or directory: 'kyu_5/did_i_finish_my_sudoku/README.md'. [docutils] /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.readme.rst:4: CRITICAL: Problems with "include" directive path: InputError: [Errno 2] No such file or directory: 'kyu_5/README.md'. [docutils] looking for now-outdated files... none found pickling environment... done checking consistency... /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst: WARNING: document isn't included in any toctree /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/534_a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.rst: document is referenced in multiple toctrees: ['kyu_5/kyu_5', 'kyu_5/kyu_5.did_i_finish_my_sudoku.module'], selecting: kyu_5/kyu_5.did_i_finish_my_sudoku.module <- kyu_5/kyu_5.did_i_finish_my_sudoku --- docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst | 2 +- docs/kyu_5/kyu_5.count_ip_addresses.readme.rst | 2 +- docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst | 2 +- docs/kyu_5/kyu_5.readme.rst | 2 +- docs/kyu_5/kyu_5.rst | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 index 775868558f5..60dfe55265d 100644 --- a/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst +++ b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_5/alphabet_wars_nuclear_strike/README.md +.. 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/kyu_5.count_ip_addresses.readme.rst b/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst index a3c82ea3c0a..980471c7325 100644 --- a/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst +++ b/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_5/count_ip_addresses/README.md +.. include:: ../../kyu_5/count_ip_addresses/README.md :parser: myst_parser.sphinx_ \ 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 index c5503d37c8e..1ca5ad1fabc 100644 --- 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 @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_5/did_i_finish_my_sudoku/README.md +.. 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/kyu_5.readme.rst b/docs/kyu_5/kyu_5.readme.rst index a83b9e5461b..882c338233d 100644 --- a/docs/kyu_5/kyu_5.readme.rst +++ b/docs/kyu_5/kyu_5.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_5/README.md +.. 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 index c585599a747..52a7d3098a0 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -10,7 +10,7 @@ Subpackages kyu_5.readme kyu_5.alphabet_wars_nuclear_strike.module kyu_5.count_ip_addresses.module - kyu_5.did_i_finish_my_sudoku + kyu_5.did_i_finish_my_sudoku.module kyu_5.diophantine_equation kyu_5.directions_reduction kyu_5.extract_the_domain_name_from_url From 7f0770498d23acd977c7e855f531e4aa1c539a61 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 14:39:55 -0800 Subject: [PATCH 216/873] kyu_5 fixes --- docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst | 2 +- docs/kyu_5/kyu_5.diophantine_equation.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.diophantine_equation.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 docs/kyu_5/kyu_5.diophantine_equation.module.rst create mode 100644 docs/kyu_5/kyu_5.diophantine_equation.readme.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 index 713df3a00eb..d83ce911efe 100644 --- 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 @@ -1,5 +1,5 @@ kyu\_5.did\_i\_finish\_my\_sudoku.module module -========================================= +=============================================== Subpackages ----------- 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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 52a7d3098a0..82540979f60 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -11,7 +11,7 @@ Subpackages 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 + kyu_5.diophantine_equation.module kyu_5.directions_reduction kyu_5.extract_the_domain_name_from_url kyu_5.fibonacci_streaming From 7d7827bd3df11c17e3e79d4a16ffc6fe1985ca66 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 14:52:42 -0800 Subject: [PATCH 217/873] directions_reduction --- docs/kyu_5/kyu_5.directions_reduction.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.directions_reduction.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.directions_reduction.module.rst create mode 100644 docs/kyu_5/kyu_5.directions_reduction.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 82540979f60..552c7b95af7 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -12,7 +12,7 @@ Subpackages kyu_5.count_ip_addresses.module kyu_5.did_i_finish_my_sudoku.module kyu_5.diophantine_equation.module - kyu_5.directions_reduction + kyu_5.directions_reduction.module kyu_5.extract_the_domain_name_from_url kyu_5.fibonacci_streaming kyu_5.find_the_safest_places_in_town From 801eb4eb3ea48745eef8434bf5a1c111ab562b48 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 14:58:49 -0800 Subject: [PATCH 218/873] extract_the_domain_name_from_url --- .../kyu_5.extract_the_domain_name_from_url.module.rst | 11 +++++++++++ .../kyu_5.extract_the_domain_name_from_url.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.extract_the_domain_name_from_url.module.rst create mode 100644 docs/kyu_5/kyu_5.extract_the_domain_name_from_url.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 552c7b95af7..bdba9abd66d 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -13,7 +13,7 @@ Subpackages 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 + kyu_5.extract_the_domain_name_from_url.module kyu_5.fibonacci_streaming kyu_5.find_the_safest_places_in_town kyu_5.find_the_smallest From 52e8bec82c5eb8ff0810239178cde7d1cb302746 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 15:04:04 -0800 Subject: [PATCH 219/873] fibonacci_streaming --- docs/kyu_5/kyu_5.fibonacci_streaming.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.fibonacci_streaming.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.fibonacci_streaming.module.rst create mode 100644 docs/kyu_5/kyu_5.fibonacci_streaming.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index bdba9abd66d..c20afa7d7ec 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -14,7 +14,7 @@ Subpackages kyu_5.diophantine_equation.module kyu_5.directions_reduction.module kyu_5.extract_the_domain_name_from_url.module - kyu_5.fibonacci_streaming + kyu_5.fibonacci_streaming.module kyu_5.find_the_safest_places_in_town kyu_5.find_the_smallest kyu_5.first_non_repeating_character From 7b15e09f09b102b74bc882ffb496d8bf64d01816 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 15:09:22 -0800 Subject: [PATCH 220/873] find_the_safest_places_in_town --- .../kyu_5.find_the_safest_places_in_town.module.rst | 11 +++++++++++ .../kyu_5.find_the_safest_places_in_town.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.find_the_safest_places_in_town.module.rst create mode 100644 docs/kyu_5/kyu_5.find_the_safest_places_in_town.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index c20afa7d7ec..72ef53007d0 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -15,7 +15,7 @@ Subpackages 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 + kyu_5.find_the_safest_places_in_town.module kyu_5.find_the_smallest kyu_5.first_non_repeating_character kyu_5.flatten From 1372c3ac3b18984f67b7ecf5580b421c8bc52a8a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 15:15:53 -0800 Subject: [PATCH 221/873] find_the_smallest --- docs/kyu_5/kyu_5.find_the_smallest.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.find_the_smallest.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.find_the_smallest.module.rst create mode 100644 docs/kyu_5/kyu_5.find_the_smallest.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 72ef53007d0..9f630fd3402 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -16,7 +16,7 @@ Subpackages 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 + kyu_5.find_the_smallest.module kyu_5.first_non_repeating_character kyu_5.flatten kyu_5.human_readable_time From c8e856ee62c4bd6193a14898a217f7e31f36b86f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:25:42 -0800 Subject: [PATCH 222/873] first_non_repeating_character --- .../kyu_5.first_non_repeating_character.module.rst | 11 +++++++++++ .../kyu_5.first_non_repeating_character.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.first_non_repeating_character.module.rst create mode 100644 docs/kyu_5/kyu_5.first_non_repeating_character.readme.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..9a3dbdb3419 --- /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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 9f630fd3402..91bc3eeea04 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -17,7 +17,7 @@ Subpackages 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 + kyu_5.first_non_repeating_character.module kyu_5.flatten kyu_5.human_readable_time kyu_5.integers_recreation_one From 3d3354d0305a6de6ef6717400d603c20a20be7c2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:31:07 -0800 Subject: [PATCH 223/873] Update kyu_5.first_non_repeating_character.module.rst --- docs/kyu_5/kyu_5.first_non_repeating_character.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 index 9a3dbdb3419..83a58a8d68f 100644 --- a/docs/kyu_5/kyu_5.first_non_repeating_character.module.rst +++ b/docs/kyu_5/kyu_5.first_non_repeating_character.module.rst @@ -1,5 +1,5 @@ kyu\_5.first\_non\_repeating\_character.module module -======================================== +===================================================== Subpackages ----------- From 833d9c510545d207d5df8c21da7f61de915c2702 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:33:57 -0800 Subject: [PATCH 224/873] flatten --- docs/kyu_5/kyu_5.flatten.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.flatten.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.flatten.module.rst create mode 100644 docs/kyu_5/kyu_5.flatten.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 91bc3eeea04..c4991657d5c 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -18,7 +18,7 @@ Subpackages 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 + kyu_5.flatten.module kyu_5.human_readable_time kyu_5.integers_recreation_one kyu_5.josephus_survivor From 8d67f6cfa0f8598ff4343217523b70cf890d46fe Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:44:30 -0800 Subject: [PATCH 225/873] human_readable_time --- docs/kyu_5/kyu_5.human_readable_time.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.human_readable_time.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.human_readable_time.module.rst create mode 100644 docs/kyu_5/kyu_5.human_readable_time.readme.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..8354eaf3196 --- /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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index c4991657d5c..f9dbe11b362 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -19,7 +19,7 @@ Subpackages kyu_5.find_the_smallest.module kyu_5.first_non_repeating_character.module kyu_5.flatten.module - kyu_5.human_readable_time + kyu_5.human_readable_time.module kyu_5.integers_recreation_one kyu_5.josephus_survivor kyu_5.master_your_primes_sieve_with_memoization From 1e6382a74fb2c0cdff0e18ec1126245d3aa47928 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:50:35 -0800 Subject: [PATCH 226/873] integers_recreation_one --- docs/kyu_5/kyu_5.human_readable_time.module.rst | 2 +- docs/kyu_5/kyu_5.integers_recreation_one.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.integers_recreation_one.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 docs/kyu_5/kyu_5.integers_recreation_one.module.rst create mode 100644 docs/kyu_5/kyu_5.integers_recreation_one.readme.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 index 8354eaf3196..dcf080b1426 100644 --- a/docs/kyu_5/kyu_5.human_readable_time.module.rst +++ b/docs/kyu_5/kyu_5.human_readable_time.module.rst @@ -1,5 +1,5 @@ kyu\_5.human\_readable\_time.module module -============================ +========================================== Subpackages ----------- 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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index f9dbe11b362..7b7cd7dea72 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -20,7 +20,7 @@ Subpackages kyu_5.first_non_repeating_character.module kyu_5.flatten.module kyu_5.human_readable_time.module - kyu_5.integers_recreation_one + kyu_5.integers_recreation_one.module kyu_5.josephus_survivor kyu_5.master_your_primes_sieve_with_memoization kyu_5.moving_zeros_to_the_end From 13653faa818f84252e56e41b5d453aa9808113f2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 19:56:47 -0800 Subject: [PATCH 227/873] josephus_survivor --- docs/kyu_5/kyu_5.josephus_survivor.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.josephus_survivor.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.josephus_survivor.module.rst create mode 100644 docs/kyu_5/kyu_5.josephus_survivor.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 7b7cd7dea72..1da8bbec5d2 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -21,7 +21,7 @@ Subpackages kyu_5.flatten.module kyu_5.human_readable_time.module kyu_5.integers_recreation_one.module - kyu_5.josephus_survivor + kyu_5.josephus_survivor.module kyu_5.master_your_primes_sieve_with_memoization kyu_5.moving_zeros_to_the_end kyu_5.multidimensional_neighbourhood From 500183fd8e014657ee0618c80441328c802be7c2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:07:11 -0800 Subject: [PATCH 228/873] master_your_primes_sieve_with_memoization --- ...ster_your_primes_sieve_with_memoization.module.rst | 11 +++++++++++ ...ster_your_primes_sieve_with_memoization.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.module.rst create mode 100644 docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 1da8bbec5d2..c4f7466347c 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -22,7 +22,7 @@ Subpackages 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 + kyu_5.master_your_primes_sieve_with_memoization.module kyu_5.moving_zeros_to_the_end kyu_5.multidimensional_neighbourhood kyu_5.not_very_secure From 6bc8c59595d9c8fdaca515cbe8233c489b8726d2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:13:37 -0800 Subject: [PATCH 229/873] moving_zeros_to_the_end --- docs/kyu_5/kyu_5.moving_zeros_to_the_end.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.moving_zeros_to_the_end.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.moving_zeros_to_the_end.module.rst create mode 100644 docs/kyu_5/kyu_5.moving_zeros_to_the_end.readme.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/kyu_5.rst b/docs/kyu_5/kyu_5.rst index c4f7466347c..7c8e83b7c78 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -23,7 +23,7 @@ Subpackages 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 + 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 From 14a0cb48a392b00d2a79905ed40ed11d66c92e05 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:36:34 -0800 Subject: [PATCH 230/873] Update test_solution.py --- kyu_6/scheduling/test_solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py index 50ea8e5a22f..d07fadb5109 100644 --- a/kyu_6/scheduling/test_solution.py +++ b/kyu_6/scheduling/test_solution.py @@ -4,7 +4,7 @@ GitHub: https://github.com/ikostan """ -# Scheduling Queues Algorithms +# SCHEDULING QUEUES ALGORITHMS import unittest import allure @@ -19,7 +19,7 @@ @allure.sub_suite("Unit Tests") @allure.feature("Algorithms") @allure.story('Scheduling (Shortest Job First or SJF)') -@allure.tag('Scheduling', 'Queues', 'Algorithms') +@allure.tag('SCHEDULING', 'QUEUES', 'ALGORITHMS') @allure.link( url='https://www.codewars.com/kata/550cc572b9e7b563be00054f', name='Source/Kata') From b69f9222058c64750fc7dcf8e30c466cebc82b28 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:48:01 -0800 Subject: [PATCH 231/873] Update test_solution.py --- kyu_6/scheduling/test_solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py index d07fadb5109..f2fcd014e08 100644 --- a/kyu_6/scheduling/test_solution.py +++ b/kyu_6/scheduling/test_solution.py @@ -26,13 +26,13 @@ # pylint: enable-msg=R0801 class SJFTestCase(unittest.TestCase): """ - Testing 'shortest_job_first(' function + Testing 'shortest_job_first' function """ # pylint: disable-msg=R0801 def test_sjf(self): """ - Testing 'shortest_job_first(' function with various test data + Testing 'shortest_job_first' function with various test data :return: """ allure.dynamic.title("Testing 'shortest_job_first(' function") From 0525e8ac64dbc558b77e085dd69c750fac4a93b5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:56:50 -0800 Subject: [PATCH 232/873] Sums of Parts --- kyu_6/sums_of_parts/README.md | 44 +++++++++++++++++ kyu_6/sums_of_parts/__init__.py | 0 kyu_6/sums_of_parts/solution.py | 15 ++++++ kyu_6/sums_of_parts/test_solution.py | 73 ++++++++++++++++++++++++++++ 4 files changed, 132 insertions(+) create mode 100644 kyu_6/sums_of_parts/README.md create mode 100644 kyu_6/sums_of_parts/__init__.py create mode 100644 kyu_6/sums_of_parts/solution.py create mode 100644 kyu_6/sums_of_parts/test_solution.py diff --git a/kyu_6/sums_of_parts/README.md b/kyu_6/sums_of_parts/README.md new file mode 100644 index 00000000000..80dc10fa158 --- /dev/null +++ b/kyu_6/sums_of_parts/README.md @@ -0,0 +1,44 @@ +# 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..c9e548a82c2 --- /dev/null +++ b/kyu_6/sums_of_parts/solution.py @@ -0,0 +1,15 @@ +""" +Test for -> Sums of Parts +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + + +def parts_sums(ls: list) -> list: + """ + The function parts_sums will take as parameter a list ls + and return a list of the sums of its parts. + :param ls: + :return: + """ + pass 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..e683e2f5bc4 --- /dev/null +++ b/kyu_6/sums_of_parts/test_solution.py @@ -0,0 +1,73 @@ +""" +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 SJFTestCase(unittest.TestCase): + """ + Testing 'parts_sums' function + """ + + # pylint: disable-msg=R0801 + def test_sjf(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( + '

Codewars badge:

' + '' + '

Test Description:

' + "

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]" + "

") + # pylint: enable-msg=R0801 + test_data: tuple = ( + ([1, 2, 3, 4, 5, 6], [21, 20, 18, 15, 11, 6, 0]), + ([0, 1, 3, 6, 10], [20, 20, 19, 16, 10, 0]), + ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358], + [10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, + 9291270, 2581057, 2580168, 2579358, 0])) + + for ls, expected in test_data: + actual_result = parts_sums(ls) + # pylint: disable-msg=R0801 + with allure.step(f"Enter a list ls ({ls}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + + print_log(ls=ls, + expected=expected, + result=actual_result) + + self.assertEqual(expected, + actual_result) + # pylint: enable-msg=R0801 From acda7a8b1d363fd35703793739448aae2e978739 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 20:59:20 -0800 Subject: [PATCH 233/873] Update solution.py --- kyu_6/sums_of_parts/solution.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index c9e548a82c2..a6872651a58 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -12,4 +12,5 @@ def parts_sums(ls: list) -> list: :param ls: :return: """ - pass + result: list = [] + return result From 5f926a046186c29caedc6c90f08bd4678945d136 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:21:32 -0800 Subject: [PATCH 234/873] final solution --- kyu_6/sums_of_parts/solution.py | 12 ++++++++++++ kyu_6/sums_of_parts/test_solution.py | 1 + 2 files changed, 13 insertions(+) diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index a6872651a58..de42460c068 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -12,5 +12,17 @@ def parts_sums(ls: list) -> list: :param ls: :return: """ + # empty list should return 0 + if not ls: + return [0] + result: list = [] + ls_sum: int = sum(ls) + result.append(ls_sum) + + for num in ls: + n = ls_sum - num + result.append(n) + ls_sum = n + return result diff --git a/kyu_6/sums_of_parts/test_solution.py b/kyu_6/sums_of_parts/test_solution.py index e683e2f5bc4..43b93a73526 100644 --- a/kyu_6/sums_of_parts/test_solution.py +++ b/kyu_6/sums_of_parts/test_solution.py @@ -51,6 +51,7 @@ def test_sjf(self): "

") # pylint: enable-msg=R0801 test_data: tuple = ( + ([], [0]), ([1, 2, 3, 4, 5, 6], [21, 20, 18, 15, 11, 6, 0]), ([0, 1, 3, 6, 10], [20, 20, 19, 16, 10, 0]), ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358], From c3e94b1304ebcec0f25e49ae0e9bdef9bc86b73b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:24:34 -0800 Subject: [PATCH 235/873] Variable name n doesn't conform to snake_case naming style --- kyu_6/sums_of_parts/solution.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index de42460c068..2c332f9d96d 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -5,22 +5,22 @@ """ -def parts_sums(ls: list) -> list: +def parts_sums(input_ls: list) -> list: """ - The function parts_sums will take as parameter a list ls + The function parts_sums will take as parameter a list input_ls and return a list of the sums of its parts. - :param ls: + :param input_ls: :return: """ # empty list should return 0 - if not ls: + if not input_ls: return [0] result: list = [] - ls_sum: int = sum(ls) + ls_sum: int = sum(input_ls) result.append(ls_sum) - for num in ls: + for num in input_ls: n = ls_sum - num result.append(n) ls_sum = n From 0b88681d6ff32cb781447b6bec7ce91af07c52c3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:26:32 -0800 Subject: [PATCH 236/873] Variable name n doesn't conform to snake_case naming style --- kyu_6/sums_of_parts/solution.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index 2c332f9d96d..938405f8f4b 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -21,8 +21,8 @@ def parts_sums(input_ls: list) -> list: result.append(ls_sum) for num in input_ls: - n = ls_sum - num - result.append(n) - ls_sum = n + current_sum: int = ls_sum - num + result.append(current_sum) + ls_sum = current_sum return result From 43f88dce1d7ff14c29de82af8f1ffaff4305f305 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:32:56 -0800 Subject: [PATCH 237/873] Update test_solution.py Variable name ls doesn't conform to snake_case naming style New for ls, expected in test_data: Severity: InfoFound in kyu_6/sums_of_parts/test_solution.py by pylint --- kyu_6/sums_of_parts/test_solution.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_6/sums_of_parts/test_solution.py b/kyu_6/sums_of_parts/test_solution.py index 43b93a73526..7807a41c1c1 100644 --- a/kyu_6/sums_of_parts/test_solution.py +++ b/kyu_6/sums_of_parts/test_solution.py @@ -58,14 +58,14 @@ def test_sjf(self): [10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])) - for ls, expected in test_data: - actual_result = parts_sums(ls) + for input_ls, expected in test_data: + actual_result = parts_sums(input_ls) # pylint: disable-msg=R0801 - with allure.step(f"Enter a list ls ({ls}) and verify the " + with allure.step(f"Enter a list ls ({input_ls}) and verify the " f"expected output ({expected}) vs " f"actual result ({actual_result})"): - print_log(ls=ls, + print_log(input_ls=input_ls, expected=expected, result=actual_result) From ff3061e7df85dbf5bb3ab847a977f6f6cb9bd3a7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:36:43 -0800 Subject: [PATCH 238/873] Create .codeclimate.yml To disable this check in your analysis, modify your .codeclimate.yml file to mark the check as disabled. An example is shown below. --- .codeclimate.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 00000000000..975fa9fda43 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,9 @@ +engines: + # ... CONFIG CONTENT ... + pylint: + enabled: true + # ... CONFIG CONTENT ... + checks: + import-error: + enabled: false +# ... CONFIG CONTENT ... \ No newline at end of file From f015cfcbf432d50873d6b3a46de8a6939b0110b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:39:17 -0800 Subject: [PATCH 239/873] Update README.md --- kyu_6/README.md | 81 +++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/kyu_6/README.md b/kyu_6/README.md index 4d6798c552f..f55d851b407 100644 --- a/kyu_6/README.md +++ b/kyu_6/README.md @@ -15,46 +15,47 @@ 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) | -| 38 | [Scheduling](https://www.codewars.com/kata/550cc572b9e7b563be00054f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/scheduling ) | +| 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 From 8f445051cf34977c8a96f90e0983a5fc5d8b857a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:40:00 -0800 Subject: [PATCH 240/873] Update README.md --- kyu_6/README.md | 82 ++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/kyu_6/README.md b/kyu_6/README.md index f55d851b407..1ba5bb5a6b4 100644 --- a/kyu_6/README.md +++ b/kyu_6/README.md @@ -15,47 +15,47 @@ 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) | -| 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 ) | +| 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 From 50a9b2098f86db4d54181b3513c28bd878cbadc9 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:42:45 -0800 Subject: [PATCH 241/873] Create kyu_6.sums_of_parts.rst --- docs/kyu_6.sums_of_parts.rst | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/kyu_6.sums_of_parts.rst 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: From ed8ea49c35ad9e5fae0d4e886bd0fddec8398ad3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:45:36 -0800 Subject: [PATCH 242/873] Update kyu_6.rst --- docs/kyu_6.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/kyu_6.rst b/docs/kyu_6.rst index 7b7eab1907a..fdd602fdf14 100644 --- a/docs/kyu_6.rst +++ b/docs/kyu_6.rst @@ -44,6 +44,7 @@ Subpackages 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 From 59f8bce49b748d144df30b4dc857b2aa6e5aa4ed Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 21:58:16 -0800 Subject: [PATCH 243/873] Allure report --- ...ad3759760cab8.txt => 108fa13d4dc4aeec.txt} | 0 ...0e0654514a566.txt => 10bda13bc4365ba8.txt} | 0 ...9d4a3b473573d.txt => 1124405dfe872592.txt} | 0 ...eccad181be3c1.txt => 11a60e97d1d843b1.txt} | 0 ...de29522b3bca9.txt => 1200393e54a2122a.txt} | 0 ...dbc79412a1f1a.txt => 120b1ea05b87d5bf.txt} | 0 ...9908fee85e940.txt => 121911719c53624e.txt} | 0 ...9d384f3f447d6.txt => 13b8ab05fc59b31a.txt} | 0 ...480a17e666525.txt => 143162d049c6ebb2.txt} | 0 ...fda141a79d4a4.txt => 15329bd7c41462e0.txt} | 0 ...a01ccf7a5d5fb.txt => 1569f62e2424ff1a.txt} | 0 ...f2d7a8f9aae90.txt => 15c99b80ae7e843e.txt} | 0 ...f3173e0272363.txt => 17deef7e1cb66e60.txt} | 0 ...0cf64cd92fe35.txt => 187a7b2783fd6cca.txt} | 0 ...b503d0999422e.txt => 189c0101c5666165.txt} | 0 ...8b20d7eb3affa.txt => 18b79283e1874d20.txt} | 0 ...f9b6773cb0004.txt => 1a0603f4ec8cac73.txt} | 0 ...7a41c1cef3094.txt => 1a6c1f836394adf7.txt} | 0 ...69ed25c4100a9.txt => 1a8cbd3585c92133.txt} | 0 ...1c98a4ff92571.txt => 1ae3e81e546a5a71.txt} | 0 ...ef79b357be404.txt => 1c3dfeaa04fe2908.txt} | 0 ...1c471a2ff7ad0.txt => 1c3fe0844baefb8c.txt} | 0 ...67237b9ff3f68.txt => 1c7070c159aacf2e.txt} | 0 ...0a6143164600f.txt => 1e9020a1f427ff16.txt} | 0 ...ee55342013cf8.txt => 1fb0e4eb0d1b73ee.txt} | 0 ...17c1a51c46902.txt => 1fc52e2c49c9d723.txt} | 0 ...0f072266b0c8b.txt => 1ffc7fe5a8d7f425.txt} | 0 ...825a6f4542c1b.txt => 207d1fd44f82d410.txt} | 0 ...e62bfea691dff.txt => 2143b544775b35fe.txt} | 0 ...5598cd8b8ad42.txt => 218f40b324526f4d.txt} | 0 ...fe84144db5541.txt => 22862af9bcf091d4.txt} | 0 ...c0f30c04fe1a7.txt => 22f31b147f604ade.txt} | 0 ...127e0b150af3e.txt => 251428633abf607e.txt} | 0 ...d0c860ff49ada.txt => 257782fa3edc8402.txt} | 0 ...3d96b077c7c36.txt => 25c7546e6e88bf29.txt} | 0 ...bb4472566335f.txt => 2613f5d1bde5e090.txt} | 0 ...07dc960eb0dfb.txt => 26c574f777b434b5.txt} | 0 ...b7ec371919319.txt => 2704cebfbdb23ee9.txt} | 0 ...843dd93b69bc1.txt => 270cdfea12dfee25.txt} | 0 ...f2f644721a146.txt => 27155577e4b86a95.txt} | 0 ...29d280ede2dce.txt => 272f73f71ea0c103.txt} | 0 ...6b516dff28930.txt => 2738d7f17afba1b9.txt} | 0 ...b9498c70949de.txt => 27add2ef21833533.txt} | 0 ...68f0d93022512.txt => 292d200c224939da.txt} | 0 ...b5cadf707dc0f.txt => 29ea9005f7d14049.txt} | 0 ...2eb7ad7f7ffae.txt => 29f64ed4da9c0ecc.txt} | 0 ...a0c4c44acfdb4d.txt => 2a724e02684b391.txt} | 0 ...f446de5bdc3b2.txt => 2a9f69c076428754.txt} | 0 ...c8c952ae09079.txt => 2c0b65a9daada0df.txt} | 0 ...25223dfac2107.txt => 2dcda4c0465e81d2.txt} | 0 ...f240af350b21a.txt => 2f602fdb5599f0ec.txt} | 0 ...ae5e3f6546093.txt => 2fa0f7a126ad592b.txt} | 0 ...51033cb9da8c3.txt => 30383d555cbdd5c6.txt} | 0 ...422b59c38b206.txt => 30d5c7b600785dbe.txt} | 0 ...af3f1690a1750.txt => 32d8e8facf5868da.txt} | 0 ...46e4c3602d8a1.txt => 336614ff4bde976d.txt} | 0 ...ba33ea5b8b774.txt => 33928ceb3bfb16f9.txt} | 0 ...2dc25f3aca2ef.txt => 34ee6a50b9a56e7d.txt} | 0 ...04fa99fe20225.txt => 35b0040677726bbd.txt} | 0 ...ccd6ee86418bf.txt => 362de8ecec922d6a.txt} | 0 ...b43b014d8e007.txt => 36b72f15ac4ac48f.txt} | 0 ...1b8030852d43f.txt => 3714b6ca536dc4d2.txt} | 0 ...93fb00e3c01f4.txt => 396239392c64a388.txt} | 0 ...d75bb7c349fc2.txt => 398543e2b30d0b75.txt} | 0 ...ca4d0fca525c3.txt => 3a93f15f0e448e53.txt} | 0 ...f64e2c1a83a10.txt => 3a9eebe7718e7480.txt} | 0 ...6e003ef1a2db2.txt => 3b3328f837a21f35.txt} | 0 ...66b96af215b9a3.txt => 3b4c7e69e73ca20.txt} | 0 ...4cea1d0950828.txt => 3b770734c2a5e83b.txt} | 0 ...ee8345f947a69.txt => 3c5d6a8306713e1a.txt} | 0 ...dba3ada60a54e.txt => 3c7f9bf2787b94f7.txt} | 0 ...2d94f06ac3a09.txt => 3d05ca7bd9d20192.txt} | 0 ...cfc856d6695aa.txt => 3d08be5d3c35bf84.txt} | 0 ...abb90a321cb9c.txt => 3db726a85ec26b65.txt} | 0 ...8f59235ab8ed3.txt => 3dc83265322e5aba.txt} | 0 ...50f93d41108b9.txt => 3de7bb1aa01966ff.txt} | 0 ...ee03d6cf0b073.txt => 3e00d2a8f3aaa1eb.txt} | 0 ...495ef6842bbd0.txt => 3e1cb74f119a5c14.txt} | 0 ...c13d212d8a981.txt => 3ea6423e21d6d262.txt} | 0 ...4bd0471b5b6f6.txt => 4144b9b4343fdd9e.txt} | 0 ...75e98e5c4a9b8.txt => 4158b1e0c4f5a122.txt} | 0 ...884da2dda6a3c.txt => 41c90fa760e8d420.txt} | 0 ...fed2a90df0f51.txt => 41eff5539d108708.txt} | 0 ...c9a1d1088ee7f.txt => 41f5ec6cee6b6454.txt} | 0 ...9434379983da3.txt => 41f66f3f97e3d4e4.txt} | 0 ...33c8513b435f2.txt => 4273c801c4c75440.txt} | 0 ...ef923daaeaa1ca.txt => 4277e39e2fd03a2.txt} | 0 ...2a6124ae0828b.txt => 45411ab5eb543e75.txt} | 0 ...c4d55846b6e292.txt => 4646d812c4a39ce.txt} | 0 ...45202c63af573.txt => 47bd852e88dda4bd.txt} | 0 ...c0c1fd5b8ed77.txt => 47cde424bd281215.txt} | 0 ...fc560f92c35a2.txt => 47de92a1be75c8fa.txt} | 0 ...206842b9d15e3.txt => 47eb10d648ead31b.txt} | 0 ...102ee65639b46.txt => 4a5ff4e66314365b.txt} | 0 ...18dd5b9f09793.txt => 4b46eca85ecd31e8.txt} | 0 ...4a50ffeae5e8e.txt => 4cd1e84a01209f22.txt} | 0 ...487ab63cfc7fc2.txt => 4cfe45f98e3a162.txt} | 0 ...63b4b3901e4cf.txt => 4d1c728cd3990d41.txt} | 0 ...ae731f70e5cc0.txt => 4d3f39137718ed9c.txt} | 0 ...6ab4a75a4141f.txt => 4e2e1868fac6f5c2.txt} | 0 ...323196c3e301a.txt => 4e5a0ef8eae5b1f5.txt} | 0 ...99aafcc4f7095.txt => 4ee69d91518c273c.txt} | 0 ...3ec856aedeb02.txt => 4f8b5b6368092f66.txt} | 0 ...e795eadf52633.txt => 4faf6d536992c308.txt} | 0 ...dc1bb275f3b43.txt => 51a4e96e6102d985.txt} | 0 ...669c80cc4b641.txt => 52b7eb4ac34d1a3f.txt} | 0 ...bbed0c4f1b31e.txt => 52c3b8574c415b89.txt} | 0 ...c3b37f02414c6.txt => 54973229fb9bb954.txt} | 0 ...b522e7a7ff120.txt => 55424ab646409d91.txt} | 0 ...584e5ea4131ab.txt => 56a8d88c2e7e082f.txt} | 0 ...bbdd3ff9c847b.txt => 56f4811665ed892a.txt} | 0 ...8397ca4ccbb02.txt => 5705204dae406a16.txt} | 0 ...14c949df5ab84.txt => 5763b31517fb1cf6.txt} | 0 ...19d7db75ba582.txt => 5767980cac6ccce8.txt} | 0 ...f5479718ea061.txt => 57be236067b41f3e.txt} | 0 ...0ac27e17ecc55.txt => 59e7a80b454faae7.txt} | 0 ...75768f78eee8a.txt => 5a6636ef2e259cf6.txt} | 0 ...55456b7a7b1c7.txt => 5a779afadfd77377.txt} | 0 ...f2c0cf3da9e17.txt => 5a8f2e8a8daac7d4.txt} | 0 ...f2fd7fd45644d.txt => 5a90b58ce6e21a4f.txt} | 0 ...76696af18d9ef.txt => 5b1486b52334c41e.txt} | 0 ...108cbbea40a77.txt => 5ba70b78893a0ae6.txt} | 0 ...3dd25f9db8ef8.txt => 5bb3529b62d1131a.txt} | 0 ...50f10970b9ec2.txt => 5c0575d9cafe6cf6.txt} | 0 ...18dba8f721c82.txt => 5c7638f94c1897db.txt} | 0 ...6180442c9597a.txt => 5d46e2ecc5195696.txt} | 0 ...9d4323468e7bb.txt => 5da58154c309059a.txt} | 0 ...2a655acda438b.txt => 5e405ef5b3f740d5.txt} | 0 ...04e4dff4eacf0.txt => 5e9be09b414388f9.txt} | 0 ...9b47ec7013850.txt => 5efed1b6b7f1c808.txt} | 0 ...25e08dcd9bfc5.txt => 5fc827b08877ee80.txt} | 0 ...ec87c38eb56d7.txt => 60434b32a4fa91ba.txt} | 0 ...de990c6eec147.txt => 6062d7cf7b32bc2c.txt} | 0 ...38c981635713c.txt => 6096f7399a313214.txt} | 0 ...f4b2271cbc6fa.txt => 60ce0e41b02093a3.txt} | 0 ...f870721a1c097.txt => 616f142dc436d37a.txt} | 0 ...4c41a6f3733c3.txt => 62a27b454b36563d.txt} | 0 ...9f958435ebad0.txt => 62bd346b3a261fc6.txt} | 0 ...18c3041d69a65.txt => 62e987f3927afd7c.txt} | 0 ...504931bd72ff66.txt => 6344061f744d93d.txt} | 0 ...b8d457e08492a.txt => 634594d507e663ad.txt} | 0 ...893879ec80255.txt => 63766a355340dea4.txt} | 0 ...edf03f6f69fd7.txt => 6431ac3684ba417d.txt} | 0 ...a522aaa0b36d6.txt => 6570d6c473e55397.txt} | 0 ...53335fdb63078.txt => 6681f7087b7f0e75.txt} | 0 ...67b9e1153821e.txt => 672a2772e24fdc9b.txt} | 0 ...ae6d54cae55b6.txt => 676a2b28cd4ab614.txt} | 0 ...12a7ae2303d05.txt => 67735b58dfb8e3b0.txt} | 0 ...fa93ef6d7d13e.txt => 678b686f33957e9f.txt} | 0 ...7f32db32388b4.txt => 6833583f4e17d4b6.txt} | 0 ...52e49cbd26e06.txt => 6886fc4b238144c3.txt} | 0 ...ccf3919bc3e5ff.txt => 6968a83bd2f66f6.txt} | 0 ...ac517b9df672f.txt => 698bafa9b89cd763.txt} | 0 ...af59eb83f9741.txt => 6a878131575ef850.txt} | 0 ...b6a8a1ba7c33d.txt => 6b2bb00f201470b4.txt} | 0 ...f43f6454a1720.txt => 6b3bb7e070cc7a5c.txt} | 0 ...cfc939d43f91f.txt => 6bbd8e6923c5cdcc.txt} | 0 ...cb30872911938.txt => 6c919aa9e8f6951e.txt} | 0 ...7a5204398ee70.txt => 6cceaf28d236f584.txt} | 0 ...93fa2e59b881f.txt => 6ce0e167f1507713.txt} | 0 ...0fbec2255f23d.txt => 6e31fbe4dea71ee0.txt} | 0 ...3f1d26bd9a423c.txt => 6e51aca385250e4.txt} | 0 ...5bd8e99b083ac.txt => 6f54ca69ed4a797e.txt} | 0 ...ff6118121df43.txt => 7030d405852b736e.txt} | 0 ...0476a0c6524cb.txt => 70b6cf48eb9066a3.txt} | 0 ...16aa1f8f49132.txt => 715d12e01ffe8bd2.txt} | 0 ...c2ed826ee28d4.txt => 7177fb466625b3ce.txt} | 0 ...ac05e5cdca73e.txt => 719718f24c29d8b6.txt} | 0 ...b0f1347c132fe.txt => 71aab19d1a615a57.txt} | 0 ...128bc00470776.txt => 72d1d4db3cffe73b.txt} | 0 ...a054aaded1508.txt => 72f410625d43ac82.txt} | 0 ...289116dbc88a1.txt => 737d6b3bd85f76bf.txt} | 0 ...5461145584dca2.txt => 737f4d50843fbb5.txt} | 0 ...dd4abd2f8dc67.txt => 747e90cc8dad54fd.txt} | 0 ...907fb8e8c491a.txt => 7517e0fe4fd38ce3.txt} | 0 ...11c0bf2af69dd.txt => 754273bb670e7e63.txt} | 0 ...63b8490ff9e1a.txt => 75b9c5da68ec52a2.txt} | 0 ...cb658d7b3a6f1.txt => 763794db833f43e6.txt} | 0 ...de901ccccedd4.txt => 7716f7bce2ac3794.txt} | 0 ...01c952fac9b91.txt => 77f74c85e8c0841a.txt} | 0 ...e3d617394daf9.txt => 7829271a783962e0.txt} | 0 ...3b9029fd263e4.txt => 78984c686d4aec41.txt} | 0 ...72e951bcc6869.txt => 78b71274c888e77b.txt} | 0 ...0cca72eddc4b9.txt => 7941ce7b9fdf9a23.txt} | 0 ...dbc88a29a3828.txt => 79650f7b74d71675.txt} | 0 ...724b3c30f749b.txt => 7dbffa484c49e1de.txt} | 0 ...26f88e303aee4.txt => 7e0d861d218b6b53.txt} | 0 ...dec26e63ca72b.txt => 7efcea1d1ffd3662.txt} | 0 ...7cf4a7f7609fa.txt => 7f080e317c4cdc0d.txt} | 0 ...9bf5ba31b7f2c.txt => 7f52a9aa50bef455.txt} | 0 ...13926fc466813.txt => 7f7258c787806381.txt} | 0 ...42cf050bb287f.txt => 825e5ff6c26dfc23.txt} | 0 ...d89c40af0bf20.txt => 837e80b6f559a9c2.txt} | 0 ...e305576d932cc.txt => 838e96495b7301c2.txt} | 0 ...c621ad66d7630.txt => 839567f1e1e69ee5.txt} | 0 ...678a9109bb789.txt => 839e0167efc9a3e5.txt} | 0 ...dbf4edab807e9.txt => 8418aaca0f21809c.txt} | 0 ...2ae39708baa025.txt => 841a9d92019cea7.txt} | 0 ...d2d13f3e8d074.txt => 8433939b2e0016e1.txt} | 0 ...66b749f49be9c.txt => 84bdcd72726e2c84.txt} | 0 ...c423a8c519ee0.txt => 84cd17876f4516cf.txt} | 0 ...07b9aabc03ce3.txt => 84f9893956705e3c.txt} | 0 ...f4df7343a141f.txt => 85aa32b5caa3d259.txt} | 0 ...ce931e4a4e183.txt => 868a8a8788cc39fc.txt} | 0 ...7170537d4b92b.txt => 87f777895eba7eaf.txt} | 0 ...db4f6bd21cad6.txt => 88f8e3a1f8c2be2b.txt} | 0 ...8bde66fa0c099.txt => 894de7f1e428d962.txt} | 0 ...62037cd68092f.txt => 8b00f3eb19799549.txt} | 0 ...4b9e8092c85e0.txt => 8da729485857d70b.txt} | 0 ...009b2f078b1df.txt => 8e2411421a238415.txt} | 0 ...589c7521ffb38.txt => 8e6997f43eb72f85.txt} | 0 ...38f13b61d4440.txt => 8f40a615942b6a99.txt} | 0 ...f00271c0b6744.txt => 8f8b0aa6406d8405.txt} | 0 ...173a13e0da0bb.txt => 90811aa4d663c1f1.txt} | 0 ...d49dc5212bf5e.txt => 90ef8c17370e6610.txt} | 0 ...967bf708ac2d5.txt => 90fac117ed2f5b2c.txt} | 0 ...c81b6d668011d.txt => 9185450f0b6d0b62.txt} | 0 ...290234370c8e2.txt => 91c5a91c91d3cce8.txt} | 0 ...7066a5ba7cb3b6.txt => 920856e6e183642.txt} | 0 ...5f6f8a1949219.txt => 9221a1b722d3e57e.txt} | 0 ...2790d78a26553.txt => 92552b4b1fe49529.txt} | 0 ...c74c53ed8174f.txt => 92abbc4fad82e6db.txt} | 0 ...59e1fbcfa5f37.txt => 92e60d573610c20c.txt} | 0 ...5bcb2e6dc29da.txt => 93547fa89048aa2f.txt} | 0 ...bcd4167469499.txt => 940a8818c4ee9f6a.txt} | 0 ...d21b9a71df26a.txt => 951e88f3edc608ae.txt} | 0 ...e1d893c73077a.txt => 95eee5a3754aa8a2.txt} | 0 ...76024ab075e9a.txt => 981d1c1e601a3a5b.txt} | 0 ...36bad780dde2b.txt => 986dcde2e02037cb.txt} | 0 ...b93915ba589e1.txt => 99fbed72185a436d.txt} | 0 ...056f652a803a9.txt => 9aa90db0f884f6f0.txt} | 0 ...768a471c3713a.txt => 9d173a5e0d4bb0c8.txt} | 0 ...a869c56ca7757.txt => 9e063e588b090ea7.txt} | 0 ...68f6f0d4b074f.txt => a140c6342ce1ee58.txt} | 0 ...059081fd8f1bb.txt => a1cb38196225980f.txt} | 0 ...5d05911fa6e28.txt => a2b0f0b93e0e2887.txt} | 0 ...1995ca08b8bb7.txt => a4db6f7d6cd87570.txt} | 0 ...65904ee358dea.txt => a54c971159a9735d.txt} | 0 ...c8240eecf71ad.txt => a5a1e9dabd89620f.txt} | 0 ...bcaa809c6d1fd.txt => a5b9b2f5d2166132.txt} | 0 ...515c8ae418cf7.txt => a5cbeea06209bb6e.txt} | 0 ...4534146449bf1.txt => a73c95935cebe487.txt} | 0 ...62533038d97f8.txt => a8cdc7c5d92ea524.txt} | 0 ...32cb10b99852f.txt => a8f23a9981f406ff.txt} | 0 ...896f1244645b9.txt => a9033f7cad83170f.txt} | 0 ...50a898056fbe2.txt => aa35c4221cf1383d.txt} | 0 ...fb893ba3ae3ec.txt => abb69032ea61f29c.txt} | 0 ...63bf761fdda50.txt => ac514e66507a8175.txt} | 0 ...42e833e18e0a2.txt => ac68097df5e78e9a.txt} | 0 ...6819321100dff.txt => ad7db611240dcbc0.txt} | 0 ...514ad99c38029.txt => ae1ab7427cab55e0.txt} | 0 ...c404945ad5b7e.txt => b013d563709aaa2b.txt} | 0 ...2051636b52745.txt => b34610167fe8aa65.txt} | 0 ...2b6c6dff59425.txt => b43989c1fe59fe7e.txt} | 0 ...a4cb1d46acc21.txt => b4f27bd29772e298.txt} | 0 ...d8d390aff60c1.txt => b5130ca9dc47578e.txt} | 0 ...7c1182dc91a88.txt => b55ce2a23080a57e.txt} | 0 ...b33dc86ae86c3.txt => b63774e9e6663cf7.txt} | 0 ...496fd36abeefa.txt => b653a3e02677ec62.txt} | 0 ...1131297f0da2f.txt => b7bfbf78e894e0ca.txt} | 0 ...514fff914ffad.txt => b8036761eae2b6cd.txt} | 0 ...caa49d4564a64.txt => b8749033ef3225ff.txt} | 0 ...a61632d7aba21.txt => b87eb62b93596729.txt} | 0 ...9efbee6f5aead.txt => b8fb66a095ff9819.txt} | 0 ...87d9cf50add05.txt => b9b05bf139af2d32.txt} | 0 ...bd0c9522a1b66.txt => ba01f85fc1c9de89.txt} | 0 ...4275b899037f8.txt => ba17606ecf187aae.txt} | 0 ...5a7daf7553683.txt => ba387d8fdc4ccb3b.txt} | 0 ...aece0ccab9b6b.txt => c013aca8f3f007b8.txt} | 0 ...4cc662dcb9dfc.txt => c1146e7ec026151e.txt} | 0 ...b23666826b836.txt => c126cf9c398e7752.txt} | 0 ...d6a45eab59a36a.txt => c12b7919feb22bf.txt} | 0 ...3c5b7701746a6.txt => c144733a0318ce29.txt} | 0 ...0cbf302079de1.txt => c3d16eb9cb3b239c.txt} | 0 ...3a724cee6015a.txt => c60a729cdea9a7d9.txt} | 0 ...60595a654ff1f.txt => c6d99744fc651725.txt} | 0 ...817c6a7654978.txt => c72469286db7525d.txt} | 0 ...07bd45470dc9b.txt => c72b6aed91bdc6cb.txt} | 0 ...5b46f1adbac58.txt => c7c3f41b6f879f22.txt} | 0 ...6587a78bdd6d0.txt => c88c8283826150a7.txt} | 0 ...438c05e0b734e.txt => c8970b155f88dd79.txt} | 0 ...84c2ff475cafc.txt => c931c8cfab53b972.txt} | 0 ...e03ec55e1d110.txt => c954d80fa61d867d.txt} | 0 ...24752e4f404ea.txt => c9a3c6ad41839ce3.txt} | 0 ...b4c07500e73b2e1.txt => caa5a9b030d38c.txt} | 0 ...d402aefb9d5a50.txt => cab012145f3c31e.txt} | 0 ...7618408ea03e4.txt => caf6549170870e9e.txt} | 0 ...b42561d9470dc.txt => cb5281dd2f2e56c3.txt} | 0 ...793fb42851981e.txt => cc97e34ff385a06.txt} | 0 ...7c752081290ad.txt => cd9f556fe34434c9.txt} | 0 ...3bb39449ddf28.txt => cf2100e65e09b423.txt} | 0 ...7492df16f7840.txt => cfb7ba55710ea734.txt} | 0 ...6a258151a8eec.txt => d032b19c209c380e.txt} | 0 ...2028306699105.txt => d071752d20b95de3.txt} | 0 ...4fbc0a7fcea99.txt => d0ae6f01edd6f40b.txt} | 0 ...018a625502a4f.txt => d1528cec1dd8dea3.txt} | 0 ...3ac63c02af5a3.txt => d17644d369f719b5.txt} | 0 ...78f64458ff79c1.txt => d19d47ecb32ff1a.txt} | 0 ...d8c1e516fca3a.txt => d27167744db90954.txt} | 0 ...fa138ce1d41528.txt => d279b3f66291ee3.txt} | 0 ...4172377fbc2e7.txt => d352d3b8134952ea.txt} | 0 ...5a835dfc96c0c.txt => d406966fbaffbd00.txt} | 0 ...435a54cfbfd93.txt => d499b60fd50eab17.txt} | 0 ...c4bbf86727665.txt => d4d0d11b46cc8eb0.txt} | 0 ...b32efa6426426.txt => d544fbd4d09ad0f7.txt} | 0 ...c8918aed39603.txt => d5adffae1b4c5d49.txt} | 0 ...75cae3405924b.txt => d682c96b1e76edae.txt} | 0 ...8aa30f0d3e03ac.txt => d6a0933efaeb03c.txt} | 0 ...31b32bbe9613e.txt => d700c3a94542cad8.txt} | 0 ...1bc52b29fdec3.txt => d789b0e2f7ac3471.txt} | 0 ...6f360d1ace914.txt => d7e0ef7caf28d559.txt} | 0 ...735e1e281b0c2.txt => d86f11066e8eb2f7.txt} | 0 ...d212f16ce4ea2.txt => d920f200ffe2c729.txt} | 0 ...9cb7b27cc62e1.txt => d9e1cc8a9d47ef26.txt} | 0 ...79ea3adfa82ee.txt => da9065dd6d539fab.txt} | 0 ...31a3e84d54eef.txt => db0dfa2ecde82e2a.txt} | 0 ...a1d1be82c27c9.txt => db194e9e67e4f8fb.txt} | 0 ...0b70b32be23e6.txt => db7ce475c42c1e48.txt} | 0 ...2ebd9f3514d62.txt => dc00b83d62a7bfbf.txt} | 0 ...fa1b50e5fd149.txt => dd3f4f217e87fedc.txt} | 0 ...940f05851678f8.txt => dd62b896cd445c4.txt} | 0 ...1f9eaace164be.txt => ddae89531089be3f.txt} | 0 ...34f90f4db7120.txt => e0ce3a7d48216112.txt} | 0 ...5523631c32cdd.txt => e11ad2661eb07ca9.txt} | 0 ...26e3f96426662.txt => e19fa4140ca62ee4.txt} | 0 ...f83b71ba0db05.txt => e20f82a8bca3f91b.txt} | 0 ...8dfeb91d0b6ab.txt => e36f2ac65e2625af.txt} | 0 ...312b12957bd2f.txt => e3861efa7e547869.txt} | 0 ...b723ed6209615.txt => e3d1c47094969219.txt} | 0 ...3f59db3a9bd3d.txt => e3e4221321612bf1.txt} | 0 ...35f69345b3378.txt => e423707f4478eb49.txt} | 0 ...56391f1917fb4.txt => e46ecdc21febfa2d.txt} | 0 ...a6f11637998ca.txt => e497f0d93067cd8e.txt} | 0 ...e93a1a848049d.txt => e5b745fd985bd7ab.txt} | 0 ...92f3996f587d0.txt => e6170073182411e7.txt} | 0 ...2228a3a71cd4e.txt => e67bc3e5b3334332.txt} | 0 ...fcb73d39cab15.txt => e6af0cabbf264491.txt} | 0 ...df2076e64b836.txt => e747e2d69cfbefdf.txt} | 0 ...2cac4981701e4.txt => e89406beb8fb490f.txt} | 0 ...aa1dfbb9be751.txt => e8c4247db1945485.txt} | 0 ...45acdd775eb62.txt => e9ba7465215b13fc.txt} | 0 ...9f53200712f62.txt => ea676dbf2861ab6b.txt} | 0 ...2bfa987012064.txt => ea7fb2d8338c4ae8.txt} | 0 ...5d72a43416890.txt => eb9dc4155dddb919.txt} | 0 ...6cabc1aa63064.txt => eba58defe547aa99.txt} | 0 ...c441db40a3cac.txt => ebee3405e01a539f.txt} | 0 ...633f3542e88e2.txt => eceb81b9185d8ebf.txt} | 0 ...3acaa0f865561.txt => edbe93ce737c702f.txt} | 0 ...a7fe95e3c81cb.txt => ee2fa2d0000577e9.txt} | 0 ...84a1435124a1a.txt => f1276b53d50f9117.txt} | 0 ...d4b11c0086ef7.txt => f1386283fe3a63a2.txt} | 0 ...ba40705e2fc47.txt => f18b0e548340aa4f.txt} | 0 ...2675a360dbc62.txt => f1f91f89a689bba4.txt} | 0 ...f3c0595488474.txt => f200722e18d9d59a.txt} | 0 ...4cc9a323ef73f.txt => f25bb18adfb0c750.txt} | 0 ...447e2ab5b5752.txt => f26281521e32f10c.txt} | 0 ...ea44cc626928f.txt => f29437b097cf88b9.txt} | 0 ...74086212add1b.txt => f457bf5da9408839.txt} | 0 ...4d6c4e5eeb4af.txt => f522ce9854634cf6.txt} | 0 ...2a133ebed89ed0.txt => f69b6836dc35d93.txt} | 0 ...c11b33d3f5691.txt => f753b26a6d68bf5b.txt} | 0 ...fe2fe4ac3b196.txt => f79ef762befefc39.txt} | 0 ...ff84d2ee8d5a7.txt => f8b4598a501c7d27.txt} | 0 ...a4c86abf39025.txt => f8c0f6bed7a29f7c.txt} | 0 ...9371e55578388.txt => f93ff3c1bc3ca41c.txt} | 0 ...7cd63e86f3101.txt => faca10a249542315.txt} | 0 ...eb17ebdcc9231.txt => faf563094f59ca6b.txt} | 0 ...db4d20a85ffa0.txt => fb14be3959747375.txt} | 0 ...427722b0cc833f.txt => fb2891f4860c316.txt} | 0 ...dd2a19da8e0f3.txt => fb7e53ff5946a92d.txt} | 0 ...6048e33b52cf9.txt => fcab257bac252f0f.txt} | 0 ...976337c3f0f2c.txt => fcb85638cafa3b09.txt} | 0 ...50ee3f66285b1.txt => fcbbb87dd9240b08.txt} | 0 ...be9ee27fc2e73.txt => fcdb96625b1e26db.txt} | 0 ...455f4d59eea4c.txt => fd4f4028774f914d.txt} | 0 ...824bd6b5ae161.txt => fde614c2efca69df.txt} | 0 ...c5edec457b138.txt => fec67c535945138b.txt} | 0 ...9369ae06b01d8f.txt => feeed58e51d5c7a.txt} | 0 ...d2d5c953cd624.txt => ff4563a6816a8fb1.txt} | 0 allure-report/data/behaviors.csv | 260 +-- allure-report/data/behaviors.json | 2 +- allure-report/data/packages.json | 2 +- allure-report/data/suites.csv | 1958 ++++++++--------- allure-report/data/suites.json | 2 +- ...bf9ac4c61ba.json => 103efa7b767774fa.json} | 2 +- ...26721b4acfd.json => 1073662453fffbc9.json} | 2 +- .../data/test-cases/108c2723377a98c0.json | 1 + ...b47c2adbbcb.json => 10b94291a50321ec.json} | 2 +- ...edf9c2316ff.json => 1188dda60b67ea96.json} | 2 +- ...602ca4ac006.json => 11b0f4fd11e05b10.json} | 2 +- ...09f549aa423.json => 11b4e7794c00f220.json} | 2 +- ...3e05f6d005c.json => 11b652a05502070f.json} | 2 +- .../data/test-cases/11ee5493e293e3de.json | 1 + .../data/test-cases/12ce3777e030dbb5.json | 1 + ...a0c3dd76e6c.json => 130e4ffebf4e47af.json} | 2 +- ...a806475fb37.json => 1319e1ae94efdc02.json} | 2 +- ...8e2b1065e77.json => 133341d40af1e905.json} | 2 +- ...2b3d247ad31.json => 139c28ca38674b14.json} | 2 +- .../data/test-cases/13ca9b99f559671b.json | 1 - ...5b9582868fd.json => 13e77cd2d97ddcd8.json} | 2 +- ...b7edfec4e6b.json => 1467bda4d9665eda.json} | 2 +- ...3a5da57f5c7.json => 148a22b7e430194f.json} | 2 +- ...974bace8b60.json => 14d00f76e0b4f9e4.json} | 2 +- ...39be0c776f3.json => 14d24a2946d66b00.json} | 2 +- .../data/test-cases/15008ede7bd87a18.json | 1 + .../data/test-cases/16026a681cee6bae.json | 1 - ...dda8143933e.json => 1719ddf6913445c8.json} | 2 +- ...44698a52752.json => 1728ec761d912068.json} | 2 +- ...4cdb1c288eb.json => 17d8ff61005bb0bc.json} | 2 +- ...1f70ebe865a.json => 17f807e7e2cad355.json} | 2 +- ...8b6417fd35d.json => 19146436627ee869.json} | 2 +- ...91a0624f51c.json => 19910c11538825d6.json} | 2 +- ...b15371870f6.json => 1b018537831100fb.json} | 2 +- ...a00b6998f67.json => 1b3bd0a5ea1aa072.json} | 2 +- ...61e311267c0.json => 1b8dc3acaf7dd027.json} | 2 +- ...a838e1e2c35.json => 1bbe34ba42279f71.json} | 2 +- ...1370cee7fa1.json => 1c0de6c68e45d781.json} | 2 +- ...446aa99f6ae.json => 1c454649db0c0ed2.json} | 2 +- ...c7a9755def6.json => 1c922c5f58027b49.json} | 2 +- ...209dd79eabb.json => 1dee8c06fd165199.json} | 2 +- ...cd98fc040fc.json => 1dfdd5c5551a6420.json} | 2 +- ...75fd8c33c3c.json => 1e3570598c901af4.json} | 2 +- .../data/test-cases/1e52950a202e2f6f.json | 1 + ...8519588d2dc.json => 1ece392343bb9b12.json} | 2 +- ...bb983650c85.json => 1edd352618c6aa2b.json} | 2 +- ...70630444180.json => 1efaf2ab015adde4.json} | 2 +- ...5a772f90af2.json => 1f991ba5bad9e7e9.json} | 2 +- ...1b2b7e0b335.json => 20308d2341c6b899.json} | 2 +- ...dcf0c194a67.json => 204251456ada0752.json} | 2 +- ...411e3c9974d.json => 2077f18aded36c8a.json} | 2 +- ...2ce9d2203c6.json => 22fcf1edf8ebf197.json} | 2 +- ...74e0de065ab.json => 2348115dae27ed81.json} | 2 +- ...7ca55a94ba5.json => 23b523b580f78123.json} | 2 +- ...6c2a9399b84.json => 23cc390416e7aa52.json} | 2 +- .../data/test-cases/23d2f8eb0089d9c.json | 1 - ...298aab7eba8.json => 2460353038ce1955.json} | 2 +- ...4e01aa089ec.json => 2512233f29820ca9.json} | 2 +- ...50e25bdce85.json => 252f381a068f762f.json} | 2 +- ...a125a2c6746.json => 25be1d40d6774add.json} | 2 +- .../data/test-cases/266702a52edb0749.json | 1 + .../data/test-cases/26cf86ca9eda4b5.json | 1 + ...834a1d39093.json => 270b5395a9143b9c.json} | 2 +- ...bf6821c7c25.json => 280a7287fd39d5a9.json} | 2 +- .../data/test-cases/29266ed99d46b2a.json | 1 - ...376fdcba717.json => 2965d2d3db0ea08e.json} | 2 +- ...43e36479ba0.json => 2aa3a63b6fff605a.json} | 2 +- ...5b7994550ed.json => 2acb560e089cb7c8.json} | 2 +- .../data/test-cases/2b38fe6b8a5a46.json | 1 + .../data/test-cases/2b3e2264864275ed.json | 1 - ...246e9141e4e.json => 2b7f0b03733442e8.json} | 2 +- ...1f837671677.json => 2b9309fd398214a5.json} | 2 +- .../data/test-cases/2b9e2e21ff531ae4.json | 1 - .../data/test-cases/2c78d4954ac14f9e.json | 1 + ...f2f4bdc38ce.json => 2cfa19c331ab824b.json} | 2 +- .../data/test-cases/2d25cb87282ab722.json | 1 + .../data/test-cases/2d35bd18d5e6ee6b.json | 1 + .../data/test-cases/30cacf1f2fb31f20.json | 1 - ...2a5507646ca.json => 30fbee992b0ca53e.json} | 2 +- ...50697dd0c07.json => 311e6a6343f5272c.json} | 2 +- ...414b6e0cabc.json => 31b67858aaa81503.json} | 2 +- ...1da7f90eb82.json => 31cd5c9e8017f83c.json} | 2 +- ...235f1a637f6.json => 31f6e05cb2bf8e17.json} | 2 +- ...45b01d7d10f.json => 327fbdea3443aca5.json} | 2 +- .../data/test-cases/337891d8027fbc46.json | 1 + ...f7383671b63.json => 33b81b348332f41f.json} | 2 +- .../data/test-cases/34febd97f08d8df7.json | 1 - ...2982127bba0.json => 35cf25b9e515e00d.json} | 2 +- ...92a782b80e3.json => 369d691aa58bf89d.json} | 2 +- ...6ca73efd1b4.json => 371888dd705cab28.json} | 2 +- .../data/test-cases/37b95a78feb35857.json | 1 + ...5e5886d8954.json => 38639b46d1e381a9.json} | 2 +- ...80c6cd8da83.json => 39245131d70863d6.json} | 2 +- .../data/test-cases/396df158495e2556.json | 1 - ...2f886d5e100.json => 398c0a461bbe2313.json} | 2 +- ...daa91edbaa5.json => 39ba63dd42027b29.json} | 2 +- ...ddc74cd287e.json => 39c69409f76377e7.json} | 2 +- ...4239c4fcbde.json => 3a2392b112899a67.json} | 2 +- .../data/test-cases/3cad1df85b3a49c.json | 1 - ...b41703125e1.json => 3ceac2ca244e095b.json} | 2 +- ...551541527fc.json => 3cf8d83dbb2d66b5.json} | 2 +- .../data/test-cases/3e354a7b4ef8aa9f.json | 1 + ...8530a5ace8b.json => 3f3af6e95d4ded07.json} | 2 +- ...665affcf957.json => 3fab8ff7d7139e20.json} | 2 +- ...c098c0e7678.json => 4041d4d534df9c91.json} | 2 +- .../data/test-cases/40b6991ee66facde.json | 1 - .../data/test-cases/40cf8e66ad985f0e.json | 1 - ...967d3373bac.json => 41ca81ef54591f7f.json} | 2 +- .../data/test-cases/41efd0d786aed73.json | 1 + .../data/test-cases/42383b817b641e4e.json | 1 + .../data/test-cases/4260c429366ea20f.json | 1 - ...66c1c393960.json => 42bb8c96d4cb1bcf.json} | 2 +- ...7dce833287a.json => 431c7499a8a042ca.json} | 2 +- ...eab34dca31f.json => 4458ac38c6c9a97c.json} | 2 +- .../data/test-cases/44708af2bbd77aa6.json | 1 - ...a79bef78acd.json => 449aa1de0e8221e9.json} | 2 +- ...cf8369a95ff.json => 458ee4cae9834334.json} | 2 +- .../data/test-cases/45ec56dab60499e.json | 1 - .../data/test-cases/462e434377d791a9.json | 1 + .../data/test-cases/46f01e6c3f72b063.json | 1 - ...863f78bcd65.json => 474af6c568bdf675.json} | 2 +- ...f831e47cf3a.json => 4783529dae6eb3af.json} | 2 +- ...6fa8ad3035d.json => 47a613697aa0c71f.json} | 2 +- ...5d25cc5d60c.json => 47f8df09a84d8337.json} | 2 +- ...e94ec6d4f1e.json => 490cf50ddd5cff83.json} | 2 +- ...7457d950935.json => 4979ee3063a87441.json} | 2 +- ...4c06cab651e.json => 49aa5cc4276ca55b.json} | 2 +- .../data/test-cases/4bb5c832e26c3df6.json | 1 - .../data/test-cases/4bdc75ea73bb042.json | 1 - .../data/test-cases/4c1cbf2e97bf2e3a.json | 1 - ...1ec04bbfe07.json => 4d0514d90adb5feb.json} | 2 +- ...406d5c624ab.json => 4df49eaeb4ea4daa.json} | 2 +- .../data/test-cases/4e7abb728f95d63f.json | 1 - .../data/test-cases/4ecd1e835300dbcf.json | 1 + .../data/test-cases/4f85a4b1698202d.json | 1 + ...a1116cde2e1.json => 4fb2a019463cdbdf.json} | 2 +- ...1d350b9fa85.json => 500c62fc4806377c.json} | 2 +- .../data/test-cases/504baf7c4d256536.json | 1 + .../data/test-cases/51971bf7ad109ed2.json | 1 + ...68fe0a1265e.json => 51a9aec46de8d878.json} | 2 +- ...943cf5bdd10.json => 52187b3daff300ae.json} | 2 +- ...3d0fdf317ac.json => 52715db4a1ce5955.json} | 2 +- ...122708c0be8.json => 5274eeeb29391ba1.json} | 2 +- ...451486f6a25.json => 52dd320a58bdb229.json} | 2 +- ...cf487834f3e.json => 5320007ca0191a21.json} | 2 +- ...415804ea08d.json => 5321a1bb93b59f1e.json} | 2 +- ...edd756c4a04.json => 535d557e01267994.json} | 2 +- .../data/test-cases/536deebe5c2f9229.json | 1 + ...3ff21d85aec.json => 54942c51ed88331c.json} | 2 +- ...c76ce916d94.json => 55d1d73293e16236.json} | 2 +- .../data/test-cases/5653676293d9b683.json | 1 - .../data/test-cases/56a28cc490d83b65.json | 1 + ...cd510532417.json => 571c043aeb64d363.json} | 2 +- ...c6db0d4b2a0.json => 5740cd94d023a2bf.json} | 2 +- ...075972e7fae.json => 5781ea9a417efe48.json} | 2 +- .../data/test-cases/578c3a6cd3e7e40f.json | 1 - ...ddd95d9c6d3.json => 57efbea0ccf3907a.json} | 2 +- ...8d1e5ed1dbe.json => 585949d19b46a5d2.json} | 2 +- ...c06763280e5.json => 587ebae959bb9619.json} | 2 +- ...2a14a7968ec.json => 58ec93395b112a8f.json} | 2 +- .../data/test-cases/59863a86bad45fb3.json | 1 + ...d539f3f636c.json => 59ab6d9b07f441c0.json} | 2 +- .../data/test-cases/59ff5157ed7e9ae.json | 1 + ...1d85a023003.json => 5a22d7a269c3ca06.json} | 2 +- ...a25b0e8e9c5.json => 5a941d3b90762a67.json} | 2 +- .../data/test-cases/5ae2799c264c377c.json | 1 - ...52bd581baeb.json => 5b9aa5357d8d514d.json} | 2 +- ...1d1ccf7bcca.json => 5baa430d724786c4.json} | 2 +- .../data/test-cases/5c281d5272513bfd.json | 1 - ...5ed619b4051.json => 5d080f15b08c0b4f.json} | 2 +- .../data/test-cases/5d312c5161e8ccab.json | 1 - ...5073b489f49.json => 5dad026541a05e65.json} | 2 +- ...3002f86b4e6.json => 5de6808258f0151f.json} | 2 +- ...367fb92978f.json => 5e4b4c0a3aeae99e.json} | 2 +- ...6a1b47d468e.json => 5e6aa533c6c0fafa.json} | 2 +- .../data/test-cases/5e8c0121e99e8c0.json | 1 - .../data/test-cases/5ecfe278b9d03b10.json | 1 - ...7a70915ceac.json => 5fa0c36654622313.json} | 2 +- ...06790439c52.json => 6022cdc8b5145e28.json} | 2 +- ...22d74ae937b.json => 613579922cc04140.json} | 2 +- ...2f5cc38e024.json => 614b9e2de4457676.json} | 2 +- ...4247f4c6307.json => 616180d049b16d1d.json} | 2 +- ...39521c4ca00.json => 627da61e5891aa44.json} | 2 +- .../data/test-cases/62e4f6698c2439c.json | 1 - ...c3e22df5008.json => 63bb569f11b7f542.json} | 2 +- ...132e9551c33.json => 645c6c05562d2f01.json} | 2 +- ...02aa93d2093.json => 64a44b1c9018ad85.json} | 2 +- ...5c5d56f477f.json => 650faaf602cc8f99.json} | 2 +- ...43f4af43f00.json => 6566b62febd2f997.json} | 2 +- ...f874f8f5965.json => 673ecd99dac0c86e.json} | 2 +- ...17d20109e13.json => 675849fee1009391.json} | 2 +- .../data/test-cases/68c4a39d8a6017b.json | 1 + .../data/test-cases/693c5b2693478689.json | 1 + ...e05a0862f7e.json => 69f65011f131e2b6.json} | 2 +- .../data/test-cases/6a1d96979e635e7f.json | 1 + .../data/test-cases/6a770856a19e186.json | 1 - ...f100d008741.json => 6a793815cad01bd2.json} | 2 +- ...8c46639d0ec.json => 6ab6caccad49b468.json} | 2 +- ...6b3532a4935.json => 6af8fedb1f0ef3c6.json} | 2 +- ...6e849cd43c1.json => 6b00dc7a9142ab25.json} | 2 +- ...7127d81f7d9.json => 6c1504a4fcfadf69.json} | 2 +- .../data/test-cases/6c5d99461aa2603.json | 1 - .../data/test-cases/6c6b3f6be4f1b963.json | 1 - ...e00daba1c69.json => 6cad203fab564c60.json} | 2 +- ...19d766f390f.json => 6d22e154a5a83d80.json} | 2 +- ...7ca4b1de4b9.json => 6d9270ca3330737a.json} | 2 +- .../data/test-cases/6d9afe9fda19581e.json | 1 + ...4e5ba1b9bbc.json => 6e797d850b813669.json} | 2 +- ...2ed6f6510da.json => 6e940c353ac4ade9.json} | 2 +- ...6d750e08ee1.json => 6ea719d6e8a376fb.json} | 2 +- ...899017a5d3c.json => 6fce95111dc1cc14.json} | 2 +- ...3442b4ab9dd.json => 70085274c959a3cb.json} | 2 +- ...8cbf25955af.json => 7028cdfd068e31be.json} | 2 +- ...1686ca36a1e.json => 704aacac2db91585.json} | 2 +- .../data/test-cases/70e9bff1f7e13160.json | 1 - ...07aa8b56caa.json => 715edf62d220bc66.json} | 2 +- ...bffdc64c952.json => 71d876f4d19ecd67.json} | 2 +- ...faa427e9f9d.json => 72010ab4f2692ae4.json} | 2 +- ...0568a4f83a1.json => 743e871493ba28b4.json} | 2 +- ...84c035d8b08.json => 7511d5ab976a748a.json} | 2 +- .../data/test-cases/761811e55728ed74.json | 1 + ...fcea83005e2.json => 7637c123d5cf58af.json} | 2 +- ...b53923bc0e9.json => 76548c4669002681.json} | 2 +- ...e5f44fcbcaa.json => 76f8c586f8a804f0.json} | 2 +- .../data/test-cases/776765eba79884f4.json | 1 + ...4d219d443a4.json => 78957f7729625c40.json} | 2 +- .../data/test-cases/79e609aaa466cdf.json | 1 - ...73c681a87bf.json => 7a1019ba1beb3118.json} | 2 +- .../data/test-cases/7a2bcbeb9bd4f3cc.json | 1 - ...7c950740ddd.json => 7ac9af93b3d2f297.json} | 2 +- ...c897ddcf1a6.json => 7b2352a8e3675c67.json} | 2 +- ...91ec2a2bdb70.json => 7b9876690035f17.json} | 2 +- ...1820cce2f7e.json => 7c2750d825fae93b.json} | 2 +- ...3a53ac553ac.json => 7c3ec7eab2e0be6d.json} | 2 +- .../data/test-cases/7d6f39edb784ab0.json | 1 - ...aadaa20d5c2.json => 7e0d94f0ee4e397d.json} | 2 +- .../data/test-cases/7f2ec06c200d3086.json | 1 - ...30da8c9a520.json => 7f90afc62f8400f4.json} | 2 +- .../data/test-cases/7fad3735c185529a.json | 1 - ...77935ced5c5.json => 7fd5632b0213855d.json} | 2 +- ...e5074e54ef7.json => 801bdccb4e1aa824.json} | 2 +- ...52f389b32f9.json => 808471d4cfeae814.json} | 2 +- .../data/test-cases/80dd204b4961834.json | 1 + ...4729542d5c4.json => 82619e3fb0e84d4d.json} | 2 +- ...75f5ec554bd.json => 826a0963540c6e75.json} | 2 +- ...5fd61fb96b1.json => 8271021679b0cc06.json} | 2 +- ...6c42b460eb3.json => 82e3ff5b5bd4ac62.json} | 2 +- ...a6f9a11a927.json => 83105e24306c53ac.json} | 2 +- ...5f9ff7d7473.json => 83f04a2f029479df.json} | 2 +- ...c2fa9a311c4.json => 8427b8f31ff35d6c.json} | 2 +- .../data/test-cases/8451096f3488e82.json | 1 + ...6de448230b8.json => 84aa3b23910872ae.json} | 2 +- ...1918ed3c26a.json => 84f17449b7b13451.json} | 2 +- ...72c3a2aa5d2.json => 84fd4c67efee5295.json} | 2 +- ...f7fe7ecd8e2.json => 85cc51a7df0f4a6c.json} | 2 +- .../data/test-cases/8655885cb5db7a58.json | 1 + ...4ba32daaf31.json => 874b39a75ad8fa3b.json} | 2 +- ...48d91c28f13.json => 87acfa055dcbe26a.json} | 2 +- ...117a88e4fd1.json => 87be1c294a496f4a.json} | 2 +- ...01c45ee1611.json => 884c8d1f852cc3dc.json} | 2 +- ...589fb870406.json => 88c7e92ae3f035ea.json} | 2 +- ...cdd7cb94a40.json => 895ce9b19a080b91.json} | 2 +- ...8420f6ec93b.json => 89c677f035513057.json} | 2 +- .../data/test-cases/89ceeba296a3ea3.json | 1 - ...c235702ff2b.json => 8a0dfae45b96d6a4.json} | 2 +- ...071b1bee987.json => 8a76fd0002a5824c.json} | 2 +- ...a72cd312e40.json => 8af4ebd0495f0e70.json} | 2 +- ...5f5e7aa4e08.json => 8baea38a8fa67e7e.json} | 2 +- ...107455b4f48.json => 8c975897c57d974e.json} | 2 +- ...0b4585e5c2e.json => 8d05bbd591902299.json} | 2 +- ...55d479da390.json => 8f884e4fa29bb7d4.json} | 2 +- ...93df714aac2.json => 9035abe5e1151932.json} | 2 +- ...b39220bbcf9.json => 9098856200f13690.json} | 2 +- ...467ea4b79e1.json => 90a114379d845ff7.json} | 2 +- .../data/test-cases/90a24ba96aea3cfc.json | 1 + ...e6ef36ce602.json => 90eee3ddc83b1454.json} | 2 +- ...7c5ac3f243c.json => 91e2410535ccc997.json} | 2 +- ...c744b764be6.json => 91ed862dacbec840.json} | 2 +- ...f3a146e3d51.json => 92083f552ecb72c4.json} | 2 +- .../data/test-cases/92297f3cbdd8ad78.json | 1 + .../data/test-cases/922eccc2ca8ed714.json | 1 + .../data/test-cases/9393151991be7f33.json | 1 + .../data/test-cases/93b3042e12ae0dc2.json | 1 - ...8001c2b32fd.json => 95011c2c3c205658.json} | 2 +- .../data/test-cases/95172229a5a9ad6.json | 1 + ...38f6230f980.json => 9519f48ec729ba4c.json} | 2 +- ...76bdacd6cb0.json => 9525e56c1666fc0f.json} | 2 +- .../data/test-cases/95ddc175910ea52.json | 1 + .../data/test-cases/95e612b16602c749.json | 1 + .../data/test-cases/964ad50f448ed64d.json | 1 + ...20464a462e0.json => 96bc84b88ae05ea5.json} | 2 +- .../data/test-cases/9710b9a44c2e3c82.json | 1 - ...e42bb3933c8.json => 972d0622d29729c4.json} | 2 +- .../data/test-cases/98200e3d5ae32ca.json | 1 + ...7d31fee6968.json => 98d0f495e6dcba7e.json} | 2 +- .../data/test-cases/990d1d89497fbcc.json | 1 - ...f8cf836294a.json => 996165a0ada95681.json} | 2 +- ...2570aec1823.json => 99a050e28b9f808c.json} | 2 +- ...97408a13c1e.json => 9a325845218dd6ae.json} | 2 +- ...7e8229dd1a3.json => 9a93b35004a87c6a.json} | 2 +- ...b0b000d2943.json => 9b0990a97652b0f6.json} | 2 +- ...f8d7ed67798.json => 9b4ada0bf1630c0a.json} | 2 +- ...7c30e625752.json => 9b82a842fdc9b867.json} | 2 +- ...909958ad3a2.json => 9c38060cc376f686.json} | 2 +- ...fd7ca5a3d13.json => 9cb8749ab5d5d5c7.json} | 2 +- ...5f7b1aa879c.json => 9cc84b4c3c851a20.json} | 2 +- .../data/test-cases/9d396e0b9ed83131.json | 1 - ...ed3e3e64e21.json => 9d8518015a2b07b6.json} | 2 +- ...1e127206139.json => 9e5b993187ac8b27.json} | 2 +- ...1d47c82f25c.json => 9f6955234023cbe8.json} | 2 +- ...347a8b67e93.json => 9f7fc4731241a976.json} | 2 +- ...96a825eac3f.json => a08dd22616aac704.json} | 2 +- .../data/test-cases/a10d36c92cf89a63.json | 1 + ...fc9da736d87.json => a1571db34190da47.json} | 2 +- .../data/test-cases/a2776f2124bd86f4.json | 1 - .../data/test-cases/a2cb5446a34df86.json | 1 - ...0022d9ce284.json => a2fbd8f640be4431.json} | 2 +- ...4fce77ea3c3.json => a381266642fdbdd2.json} | 2 +- ...2bbb0f17cd9.json => a492d74df14be54a.json} | 2 +- .../data/test-cases/a4b7cb6ba7726224.json | 1 + .../data/test-cases/a4f7c6dc4c7e84.json | 1 + ...bc5e3d23df9.json => a50af3a4d2a7afb5.json} | 2 +- ...d2e679669bc.json => a51a382d521d00cc.json} | 2 +- ...d32858afd04.json => a54c934450b934d7.json} | 2 +- ...15630ec06cb.json => a5f55a655c70213f.json} | 2 +- .../data/test-cases/a60fe7d0456e1873.json | 1 + ...be37bb5a0b6.json => a6a0450be3f30fe6.json} | 2 +- ...d264cb4d263.json => a6bf4a932c1ec147.json} | 2 +- ...d17c374a4d8.json => a70604cd2465a183.json} | 2 +- ...12f30edb56f.json => a70ffb4d0a92e5c8.json} | 2 +- ...65d85b3cd20.json => a90fdb1fb3683308.json} | 2 +- ...2bb58c8a587.json => a93bd997ced3859a.json} | 2 +- ...89269ca1ca6.json => a96041a690fcc058.json} | 2 +- ...7fe3b72cd9a.json => a97caba53074497b.json} | 2 +- .../data/test-cases/a9f33e581ec48813.json | 1 + .../data/test-cases/a9fa2bf5091c83a.json | 1 - .../data/test-cases/aac9dbbaca38b054.json | 1 - .../data/test-cases/aacbcab78401e86c.json | 1 + .../data/test-cases/ab402f3759df06f.json | 1 - ...4ce63a07c82.json => ab4f4753656b93ab.json} | 2 +- ...71dee0329e4.json => ab70ba446dcfc9e3.json} | 2 +- ...f28bd7241b2.json => abba91be3722688b.json} | 2 +- ...4682d25d573.json => ac127c4c71bf788d.json} | 2 +- ...99cb0e5842e.json => ace382695affabdf.json} | 2 +- ...9de643a720d.json => ae7d3fce45bf33fb.json} | 2 +- .../data/test-cases/aefb4681bbbff0c9.json | 1 + ...2efeafa2904.json => af543ced061d8858.json} | 2 +- ...48cf5f0bf9f.json => af580569ddf3e366.json} | 2 +- ...fd2fe38a284.json => afae2f3faef55f2b.json} | 2 +- ...b4de8eb0e3a.json => afce902b58f1520a.json} | 2 +- ...9f449cde9ee.json => b01fd4e8d095b60f.json} | 2 +- ...566662ada8b.json => b0f9b8de2eb00fed.json} | 2 +- ...d5f2266ba73.json => b0ff51cf7a3c2781.json} | 2 +- ...114486cc2f9.json => b1c2f2381b1441f6.json} | 2 +- ...b4d60441085.json => b1ce4d34a0cdd5eb.json} | 2 +- ...7ecc666d9a0.json => b1d54b76165521a0.json} | 2 +- ...0603b79e82b.json => b29b4bc1c1fe7917.json} | 2 +- .../data/test-cases/b3223ce64ed8bee2.json | 1 + .../data/test-cases/b3ab40391b5da28d.json | 1 - ...4bb5166af1c.json => b48a50dffbb61197.json} | 2 +- ...2c8b3d6796a.json => b4fb6cdf4d1895f5.json} | 2 +- ...ca68cdfc481.json => b5a45493f51c1d67.json} | 2 +- ...c94d1e2968c.json => b5f6e3f148925a4f.json} | 2 +- .../data/test-cases/b6301a55868859d.json | 1 + ...6bd99df3d56.json => b72d4e8ad3288d1b.json} | 2 +- ...e125f6b46a3.json => b8a68af9dbc0f892.json} | 2 +- ...fcb14132f63.json => b8b1a20b1ac22e64.json} | 2 +- ...57d104e13f2.json => b96004f0b179053d.json} | 2 +- ...f8f0c07772d.json => b97e3a9bf54f17f3.json} | 2 +- ...cba518971f8.json => b99ca9a8ecf19524.json} | 2 +- .../data/test-cases/b9d7d0d5afb8734c.json | 1 + ...ff2977881cd.json => bb0af84ecb430495.json} | 2 +- .../data/test-cases/bb5e32abc058341d.json | 1 - .../data/test-cases/bc3230f80ad8864d.json | 1 - ...ddcd2b39bc4.json => bc5cb7d257f882a1.json} | 2 +- ...5c7ad2aba25.json => bd5d964c0a6197cf.json} | 2 +- .../data/test-cases/bd89dc29359aa359.json | 1 - .../data/test-cases/bdcb772653d8aad.json | 1 - ...bbc39e29652.json => be5b8c63ffdd840d.json} | 2 +- ...e86a3d51a7b.json => bf3022b66d91aba7.json} | 2 +- ...5c82192cbb2.json => bfd2093ec920e131.json} | 2 +- ...bb37b9c251e.json => bfe92f9ff640a644.json} | 2 +- ...5effe27f7a1.json => c1d9afec6278b1a8.json} | 2 +- ...88fed8dedd7.json => c1e0648976f6a694.json} | 2 +- ...fbcf8c301ec.json => c1ea0a3d5ef9530e.json} | 2 +- ...8481d776554.json => c2776ae7e29336e9.json} | 2 +- .../data/test-cases/c28b7a3b6367ab64.json | 1 - .../data/test-cases/c35da98b55fb5e6b.json | 1 + ...ad111bd69a7.json => c37dfc82a096ec09.json} | 2 +- .../data/test-cases/c462a5b80d49c98b.json | 1 - ...0d8543f0b6f.json => c707b9e0a465edac.json} | 2 +- .../data/test-cases/c7101c0acde15873.json | 1 - ...d67a3f53ad3.json => c799982c38b97fcc.json} | 2 +- ...e698e2a6fdb.json => c7c7f21adbc73706.json} | 2 +- .../data/test-cases/c8a6a3e5884b319c.json | 1 - ...9a7614d7699.json => c8be7042d182d7bb.json} | 2 +- .../data/test-cases/ca423ea5ac901436.json | 1 + ...905d0e48c01.json => cabe377ec9af3c98.json} | 2 +- .../data/test-cases/cb5c8ea3b9796931.json | 1 + .../data/test-cases/cc5bed1d964110c.json | 1 + .../data/test-cases/ccc9716a60da4021.json | 1 - ...bc704b417e2.json => cd862d92408a60a2.json} | 2 +- ...efbcb176750.json => cdb95614a08f7813.json} | 2 +- ...0d4d035c3a4.json => cde5d1b46b10d7ac.json} | 2 +- ...1a20d6f8fe7.json => cdfe495bc85470d2.json} | 2 +- ...98557709e7f.json => ce00ffd36d904f61.json} | 2 +- ...f18f0370583.json => cf3552eb00513a1a.json} | 2 +- ...ff9d73daf75.json => d0862b5213f7938f.json} | 2 +- .../data/test-cases/d1585e7c78fd8d06.json | 1 - .../data/test-cases/d1a80d9f422182d.json | 1 + ...9f84c1b433f.json => d1aabae67bc18ba0.json} | 2 +- ...842ef40288f.json => d3037fd25424c6f3.json} | 2 +- ...82a341dd7b4.json => d4c41912963969d7.json} | 2 +- ...ba2ff4664c2.json => d558fd9b3bcee4ae.json} | 2 +- .../data/test-cases/d57f06aa2f911f40.json | 1 + ...dfade05c52d.json => d5804044d1767680.json} | 2 +- ...36079819472.json => d5a389260d41a743.json} | 2 +- ...dabc7dad91e.json => d5ae1235bc27ccba.json} | 2 +- ...668932e1548.json => d5eb9c17e95fe424.json} | 2 +- ...3f8c8d195b2.json => d62d5681db1186b9.json} | 2 +- .../data/test-cases/d6d06cbc227917e.json | 1 - ...b0fb6eef203.json => d6d51bdb700f78e3.json} | 2 +- ...09699fc2b8b.json => d6e4ebd44034ff08.json} | 2 +- ...87bd4c8b374.json => d6e6e46de805754f.json} | 2 +- ...e73be805e2a.json => d7357eaa8c15ec47.json} | 2 +- ...988eff12f93.json => d757011cc42c205e.json} | 2 +- ...adf611eb67d.json => d7c1fb6f236110ca.json} | 2 +- ...85b91ce5826.json => d880bf6ff390f682.json} | 2 +- .../data/test-cases/d8d5d2ee94f4b051.json | 1 + ...82a547ab48a.json => d9458c8615b9e985.json} | 2 +- ...b3276511b9a.json => d946600dafcc1f6d.json} | 2 +- ...6f32ac7ce4e.json => d9a6d590487a20fd.json} | 2 +- ...5092f796e5b.json => da49bdf1737798b8.json} | 2 +- ...4b8936ce5ba.json => db267da7b8a1b004.json} | 2 +- ...d87bdd84a50.json => dbd8c0e7d9b1bcd0.json} | 2 +- ...89cb0add672.json => dc29e000a4adcd25.json} | 2 +- ...26758417bf9.json => dcb40cbe5ee38417.json} | 2 +- ...7c93d1df521.json => dcfefe9c10c1f5d2.json} | 2 +- ...72e7ac209e4.json => ddd327d6f403c655.json} | 2 +- ...d9ac0e81498.json => ddf52bfae3cd34f4.json} | 2 +- ...42542b066f3.json => de04793abb90de01.json} | 2 +- ...8dc5a767b91.json => dead64fe3d4f484d.json} | 2 +- .../data/test-cases/debf2b82465b0240.json | 1 + ...4b1a6365fc2.json => dee0416f79d22a0d.json} | 2 +- ...12f582a6d83.json => deed80da6e08bd69.json} | 2 +- ...989a12e3c0a.json => df0c490941a6877a.json} | 2 +- ...121cbd75dda.json => df0cebb647c4d6ba.json} | 2 +- ...41f6b0bb073.json => df11ad8a9930a85d.json} | 2 +- .../data/test-cases/dfb4af6de633e98.json | 1 - ...e26a53d92ff.json => e03974f538ea8ee6.json} | 2 +- ...8c95cfacbf7.json => e0851c0ba53ec6a9.json} | 2 +- ...a5672bbc2f6.json => e0d5281d75a0b4df.json} | 2 +- .../data/test-cases/e0e034728609b0e2.json | 1 + ...1ebfbb61905.json => e10517b1ea4eb479.json} | 2 +- ...2b965b39180.json => e1471afe863c97c8.json} | 2 +- ...b7ae28c8945.json => e21dc9fd5c9ffdad.json} | 2 +- .../data/test-cases/e2620475a1119269.json | 1 - ...7e282725f43.json => e2d8966b9a0500aa.json} | 2 +- ...047aea456b4.json => e41551e078ed42ea.json} | 2 +- .../data/test-cases/e5822ae7754d2e8.json | 1 - ...4beeb8e83b4.json => e5ae32dea8d8e5c3.json} | 2 +- ...7ec3b0f496f.json => e6a3da330525d2f4.json} | 2 +- .../data/test-cases/e6d62aae7d602336.json | 1 + ...ddcf91d8640.json => e722b9059cce92a0.json} | 2 +- ...9b867db5809.json => e738d6d09d0feb9e.json} | 2 +- .../data/test-cases/e7c5e93321efe39.json | 1 + .../data/test-cases/e7eaed29fbceb75.json | 1 + ...30a444a5013.json => e7f4165c790464aa.json} | 2 +- .../data/test-cases/e9046461411ed99f.json | 1 - ...c4c6a1469d8.json => e99ff83f7419b047.json} | 2 +- ...408764fe7c9.json => e9a0c341753d9526.json} | 2 +- ...41d7d4eb4dd.json => e9aaea22e808b4eb.json} | 2 +- .../data/test-cases/eb3e9f6b3780b454.json | 1 + ...5e5df78aa3f.json => ec6e703f7fb1f8f7.json} | 2 +- .../data/test-cases/ecd029e0f98c606.json | 1 - ...dbec02630b0.json => ecfcf126e0555bf0.json} | 2 +- ...f1a750aec43.json => ed30e8563a89229a.json} | 2 +- ...7373a5f8e86.json => ed37a80783d347db.json} | 2 +- ...480b8f26290.json => ed5fbc4b14885f68.json} | 2 +- ...5f624316184.json => edde73c32cfd2214.json} | 2 +- ...2034ba0a692.json => ede582dcc2b34bf3.json} | 2 +- ...1348f0cd9d2.json => ee325afc05dcb3e8.json} | 2 +- ...b1c9114b312.json => ee4f0501c1152713.json} | 2 +- ...2916e07d272.json => ef7cb2e79441187e.json} | 2 +- ...fc6b385d9d8.json => ef7e94367cfcafa4.json} | 2 +- .../data/test-cases/f0d79dba84dbdf82.json | 1 - ...23892be7ac3.json => f1ac1e81621379df.json} | 2 +- .../data/test-cases/f1acd3007b7873ed.json | 1 - .../data/test-cases/f1c4cfcd59974ea.json | 1 - ...59a7c2bd36e.json => f3ffd9201b6a1ce3.json} | 2 +- ...09a5b8b5aee.json => f4ad45627654b5fc.json} | 2 +- .../data/test-cases/f50d911c93ffbcb0.json | 1 + ...77affd6f821.json => f534ec218cc4d08d.json} | 2 +- ...8f6f2d47ab4.json => f5c85086c052dc96.json} | 2 +- .../data/test-cases/f5da6537a014533.json | 1 - ...dffd26d2650.json => f5f1282b0eb8a484.json} | 2 +- ...a91cc990f40.json => f6e7e7d9161dd5e2.json} | 2 +- ...23a2a73f974.json => f711bbcd16ab2119.json} | 2 +- ...8081cda2c59.json => f72e37459a6b99ff.json} | 2 +- ...02eb7703e13.json => f7ad7c048e8324d3.json} | 2 +- ...1b62c390084.json => f80099cf6c294d2b.json} | 2 +- ...a37037093b2.json => f81d7a6e8f8b1259.json} | 2 +- ...e4ff2cb0b57.json => f8800adc39df0e11.json} | 2 +- .../data/test-cases/f8cc7e1ba1a4852f.json | 1 + ...84e60c021f7.json => f90c5e53432ea6c2.json} | 2 +- ...5cb150cd794.json => fa5b03edd274b2cd.json} | 2 +- ...aa2ef47fd1b.json => fa7d64e0658fe1a2.json} | 2 +- ...fe177dff4e3.json => fabe21d8eab469bd.json} | 2 +- ...05f57c78056.json => fbd4191028146e80.json} | 2 +- ...b6957e2fa23.json => fc2c5a5df6e26162.json} | 2 +- .../data/test-cases/fca0a479e6a9caa.json | 1 - ...dd9e8f95c74.json => fcd8cc6f9f4777c4.json} | 2 +- ...95e4f930686.json => fd395297ed368b03.json} | 2 +- ...206e9df0991.json => fd4d83368b6d5d5e.json} | 2 +- .../data/test-cases/fdff4b964fae0427.json | 1 + allure-report/data/timeline.json | 2 +- allure-report/export/influxDbData.txt | 26 +- allure-report/history/duration-trend.json | 2 +- allure-report/history/history-trend.json | 2 +- allure-report/history/history.json | 2 +- allure-report/history/retry-trend.json | 2 +- allure-report/index.html | 2 +- allure-report/widgets/duration-trend.json | 2 +- allure-report/widgets/duration.json | 2 +- allure-report/widgets/history-trend.json | 2 +- allure-report/widgets/retry-trend.json | 2 +- allure-report/widgets/severity.json | 2 +- allure-report/widgets/status-chart.json | 2 +- 907 files changed, 1578 insertions(+), 1578 deletions(-) rename allure-report/data/attachments/{688ad3759760cab8.txt => 108fa13d4dc4aeec.txt} (100%) rename allure-report/data/attachments/{2ec0e0654514a566.txt => 10bda13bc4365ba8.txt} (100%) rename allure-report/data/attachments/{4519d4a3b473573d.txt => 1124405dfe872592.txt} (100%) rename allure-report/data/attachments/{5beccad181be3c1.txt => 11a60e97d1d843b1.txt} (100%) rename allure-report/data/attachments/{5e9de29522b3bca9.txt => 1200393e54a2122a.txt} (100%) rename allure-report/data/attachments/{204dbc79412a1f1a.txt => 120b1ea05b87d5bf.txt} (100%) rename allure-report/data/attachments/{bb19908fee85e940.txt => 121911719c53624e.txt} (100%) rename allure-report/data/attachments/{1f59d384f3f447d6.txt => 13b8ab05fc59b31a.txt} (100%) rename allure-report/data/attachments/{e7d480a17e666525.txt => 143162d049c6ebb2.txt} (100%) rename allure-report/data/attachments/{985fda141a79d4a4.txt => 15329bd7c41462e0.txt} (100%) rename allure-report/data/attachments/{66a01ccf7a5d5fb.txt => 1569f62e2424ff1a.txt} (100%) rename allure-report/data/attachments/{33f2d7a8f9aae90.txt => 15c99b80ae7e843e.txt} (100%) rename allure-report/data/attachments/{761f3173e0272363.txt => 17deef7e1cb66e60.txt} (100%) rename allure-report/data/attachments/{1720cf64cd92fe35.txt => 187a7b2783fd6cca.txt} (100%) rename allure-report/data/attachments/{69eb503d0999422e.txt => 189c0101c5666165.txt} (100%) rename allure-report/data/attachments/{6da8b20d7eb3affa.txt => 18b79283e1874d20.txt} (100%) rename allure-report/data/attachments/{34df9b6773cb0004.txt => 1a0603f4ec8cac73.txt} (100%) rename allure-report/data/attachments/{4617a41c1cef3094.txt => 1a6c1f836394adf7.txt} (100%) rename allure-report/data/attachments/{2e869ed25c4100a9.txt => 1a8cbd3585c92133.txt} (100%) rename allure-report/data/attachments/{22a1c98a4ff92571.txt => 1ae3e81e546a5a71.txt} (100%) rename allure-report/data/attachments/{1a1ef79b357be404.txt => 1c3dfeaa04fe2908.txt} (100%) rename allure-report/data/attachments/{a541c471a2ff7ad0.txt => 1c3fe0844baefb8c.txt} (100%) rename allure-report/data/attachments/{1dd67237b9ff3f68.txt => 1c7070c159aacf2e.txt} (100%) rename allure-report/data/attachments/{8b0a6143164600f.txt => 1e9020a1f427ff16.txt} (100%) rename allure-report/data/attachments/{2d2ee55342013cf8.txt => 1fb0e4eb0d1b73ee.txt} (100%) rename allure-report/data/attachments/{38a17c1a51c46902.txt => 1fc52e2c49c9d723.txt} (100%) rename allure-report/data/attachments/{aa0f072266b0c8b.txt => 1ffc7fe5a8d7f425.txt} (100%) rename allure-report/data/attachments/{f74825a6f4542c1b.txt => 207d1fd44f82d410.txt} (100%) rename allure-report/data/attachments/{167e62bfea691dff.txt => 2143b544775b35fe.txt} (100%) rename allure-report/data/attachments/{57e5598cd8b8ad42.txt => 218f40b324526f4d.txt} (100%) rename allure-report/data/attachments/{3a5fe84144db5541.txt => 22862af9bcf091d4.txt} (100%) rename allure-report/data/attachments/{d25c0f30c04fe1a7.txt => 22f31b147f604ade.txt} (100%) rename allure-report/data/attachments/{178127e0b150af3e.txt => 251428633abf607e.txt} (100%) rename allure-report/data/attachments/{b3ed0c860ff49ada.txt => 257782fa3edc8402.txt} (100%) rename allure-report/data/attachments/{70c3d96b077c7c36.txt => 25c7546e6e88bf29.txt} (100%) rename allure-report/data/attachments/{9e2bb4472566335f.txt => 2613f5d1bde5e090.txt} (100%) rename allure-report/data/attachments/{82b07dc960eb0dfb.txt => 26c574f777b434b5.txt} (100%) rename allure-report/data/attachments/{bb5b7ec371919319.txt => 2704cebfbdb23ee9.txt} (100%) rename allure-report/data/attachments/{79e843dd93b69bc1.txt => 270cdfea12dfee25.txt} (100%) rename allure-report/data/attachments/{93af2f644721a146.txt => 27155577e4b86a95.txt} (100%) rename allure-report/data/attachments/{5ee29d280ede2dce.txt => 272f73f71ea0c103.txt} (100%) rename allure-report/data/attachments/{67a6b516dff28930.txt => 2738d7f17afba1b9.txt} (100%) rename allure-report/data/attachments/{46bb9498c70949de.txt => 27add2ef21833533.txt} (100%) rename allure-report/data/attachments/{7e868f0d93022512.txt => 292d200c224939da.txt} (100%) rename allure-report/data/attachments/{a41b5cadf707dc0f.txt => 29ea9005f7d14049.txt} (100%) rename allure-report/data/attachments/{1652eb7ad7f7ffae.txt => 29f64ed4da9c0ecc.txt} (100%) rename allure-report/data/attachments/{61a0c4c44acfdb4d.txt => 2a724e02684b391.txt} (100%) rename allure-report/data/attachments/{9ef446de5bdc3b2.txt => 2a9f69c076428754.txt} (100%) rename allure-report/data/attachments/{461c8c952ae09079.txt => 2c0b65a9daada0df.txt} (100%) rename allure-report/data/attachments/{51125223dfac2107.txt => 2dcda4c0465e81d2.txt} (100%) rename allure-report/data/attachments/{1b3f240af350b21a.txt => 2f602fdb5599f0ec.txt} (100%) rename allure-report/data/attachments/{a22ae5e3f6546093.txt => 2fa0f7a126ad592b.txt} (100%) rename allure-report/data/attachments/{d0b51033cb9da8c3.txt => 30383d555cbdd5c6.txt} (100%) rename allure-report/data/attachments/{3b422b59c38b206.txt => 30d5c7b600785dbe.txt} (100%) rename allure-report/data/attachments/{24af3f1690a1750.txt => 32d8e8facf5868da.txt} (100%) rename allure-report/data/attachments/{2b46e4c3602d8a1.txt => 336614ff4bde976d.txt} (100%) rename allure-report/data/attachments/{146ba33ea5b8b774.txt => 33928ceb3bfb16f9.txt} (100%) rename allure-report/data/attachments/{55c2dc25f3aca2ef.txt => 34ee6a50b9a56e7d.txt} (100%) rename allure-report/data/attachments/{8ec04fa99fe20225.txt => 35b0040677726bbd.txt} (100%) rename allure-report/data/attachments/{c76ccd6ee86418bf.txt => 362de8ecec922d6a.txt} (100%) rename allure-report/data/attachments/{19eb43b014d8e007.txt => 36b72f15ac4ac48f.txt} (100%) rename allure-report/data/attachments/{d4c1b8030852d43f.txt => 3714b6ca536dc4d2.txt} (100%) rename allure-report/data/attachments/{37493fb00e3c01f4.txt => 396239392c64a388.txt} (100%) rename allure-report/data/attachments/{c30d75bb7c349fc2.txt => 398543e2b30d0b75.txt} (100%) rename allure-report/data/attachments/{402ca4d0fca525c3.txt => 3a93f15f0e448e53.txt} (100%) rename allure-report/data/attachments/{95ff64e2c1a83a10.txt => 3a9eebe7718e7480.txt} (100%) rename allure-report/data/attachments/{3c56e003ef1a2db2.txt => 3b3328f837a21f35.txt} (100%) rename allure-report/data/attachments/{bf66b96af215b9a3.txt => 3b4c7e69e73ca20.txt} (100%) rename allure-report/data/attachments/{7564cea1d0950828.txt => 3b770734c2a5e83b.txt} (100%) rename allure-report/data/attachments/{96eee8345f947a69.txt => 3c5d6a8306713e1a.txt} (100%) rename allure-report/data/attachments/{422dba3ada60a54e.txt => 3c7f9bf2787b94f7.txt} (100%) rename allure-report/data/attachments/{6f22d94f06ac3a09.txt => 3d05ca7bd9d20192.txt} (100%) rename allure-report/data/attachments/{d2acfc856d6695aa.txt => 3d08be5d3c35bf84.txt} (100%) rename allure-report/data/attachments/{4a6abb90a321cb9c.txt => 3db726a85ec26b65.txt} (100%) rename allure-report/data/attachments/{65e8f59235ab8ed3.txt => 3dc83265322e5aba.txt} (100%) rename allure-report/data/attachments/{48d50f93d41108b9.txt => 3de7bb1aa01966ff.txt} (100%) rename allure-report/data/attachments/{36bee03d6cf0b073.txt => 3e00d2a8f3aaa1eb.txt} (100%) rename allure-report/data/attachments/{79495ef6842bbd0.txt => 3e1cb74f119a5c14.txt} (100%) rename allure-report/data/attachments/{4abc13d212d8a981.txt => 3ea6423e21d6d262.txt} (100%) rename allure-report/data/attachments/{3dc4bd0471b5b6f6.txt => 4144b9b4343fdd9e.txt} (100%) rename allure-report/data/attachments/{15675e98e5c4a9b8.txt => 4158b1e0c4f5a122.txt} (100%) rename allure-report/data/attachments/{f64884da2dda6a3c.txt => 41c90fa760e8d420.txt} (100%) rename allure-report/data/attachments/{58afed2a90df0f51.txt => 41eff5539d108708.txt} (100%) rename allure-report/data/attachments/{249c9a1d1088ee7f.txt => 41f5ec6cee6b6454.txt} (100%) rename allure-report/data/attachments/{7009434379983da3.txt => 41f66f3f97e3d4e4.txt} (100%) rename allure-report/data/attachments/{b3933c8513b435f2.txt => 4273c801c4c75440.txt} (100%) rename allure-report/data/attachments/{baef923daaeaa1ca.txt => 4277e39e2fd03a2.txt} (100%) rename allure-report/data/attachments/{cd12a6124ae0828b.txt => 45411ab5eb543e75.txt} (100%) rename allure-report/data/attachments/{25c4d55846b6e292.txt => 4646d812c4a39ce.txt} (100%) rename allure-report/data/attachments/{7e845202c63af573.txt => 47bd852e88dda4bd.txt} (100%) rename allure-report/data/attachments/{593c0c1fd5b8ed77.txt => 47cde424bd281215.txt} (100%) rename allure-report/data/attachments/{dc6fc560f92c35a2.txt => 47de92a1be75c8fa.txt} (100%) rename allure-report/data/attachments/{c1b206842b9d15e3.txt => 47eb10d648ead31b.txt} (100%) rename allure-report/data/attachments/{223102ee65639b46.txt => 4a5ff4e66314365b.txt} (100%) rename allure-report/data/attachments/{1a418dd5b9f09793.txt => 4b46eca85ecd31e8.txt} (100%) rename allure-report/data/attachments/{5084a50ffeae5e8e.txt => 4cd1e84a01209f22.txt} (100%) rename allure-report/data/attachments/{52487ab63cfc7fc2.txt => 4cfe45f98e3a162.txt} (100%) rename allure-report/data/attachments/{e3e63b4b3901e4cf.txt => 4d1c728cd3990d41.txt} (100%) rename allure-report/data/attachments/{a0aae731f70e5cc0.txt => 4d3f39137718ed9c.txt} (100%) rename allure-report/data/attachments/{eea6ab4a75a4141f.txt => 4e2e1868fac6f5c2.txt} (100%) rename allure-report/data/attachments/{5a9323196c3e301a.txt => 4e5a0ef8eae5b1f5.txt} (100%) rename allure-report/data/attachments/{f7d99aafcc4f7095.txt => 4ee69d91518c273c.txt} (100%) rename allure-report/data/attachments/{1193ec856aedeb02.txt => 4f8b5b6368092f66.txt} (100%) rename allure-report/data/attachments/{b50e795eadf52633.txt => 4faf6d536992c308.txt} (100%) rename allure-report/data/attachments/{ba1dc1bb275f3b43.txt => 51a4e96e6102d985.txt} (100%) rename allure-report/data/attachments/{c28669c80cc4b641.txt => 52b7eb4ac34d1a3f.txt} (100%) rename allure-report/data/attachments/{262bbed0c4f1b31e.txt => 52c3b8574c415b89.txt} (100%) rename allure-report/data/attachments/{20ec3b37f02414c6.txt => 54973229fb9bb954.txt} (100%) rename allure-report/data/attachments/{2d6b522e7a7ff120.txt => 55424ab646409d91.txt} (100%) rename allure-report/data/attachments/{85584e5ea4131ab.txt => 56a8d88c2e7e082f.txt} (100%) rename allure-report/data/attachments/{723bbdd3ff9c847b.txt => 56f4811665ed892a.txt} (100%) rename allure-report/data/attachments/{a048397ca4ccbb02.txt => 5705204dae406a16.txt} (100%) rename allure-report/data/attachments/{2d914c949df5ab84.txt => 5763b31517fb1cf6.txt} (100%) rename allure-report/data/attachments/{ebe19d7db75ba582.txt => 5767980cac6ccce8.txt} (100%) rename allure-report/data/attachments/{d55f5479718ea061.txt => 57be236067b41f3e.txt} (100%) rename allure-report/data/attachments/{1a80ac27e17ecc55.txt => 59e7a80b454faae7.txt} (100%) rename allure-report/data/attachments/{44675768f78eee8a.txt => 5a6636ef2e259cf6.txt} (100%) rename allure-report/data/attachments/{ca755456b7a7b1c7.txt => 5a779afadfd77377.txt} (100%) rename allure-report/data/attachments/{6e5f2c0cf3da9e17.txt => 5a8f2e8a8daac7d4.txt} (100%) rename allure-report/data/attachments/{628f2fd7fd45644d.txt => 5a90b58ce6e21a4f.txt} (100%) rename allure-report/data/attachments/{e7476696af18d9ef.txt => 5b1486b52334c41e.txt} (100%) rename allure-report/data/attachments/{a05108cbbea40a77.txt => 5ba70b78893a0ae6.txt} (100%) rename allure-report/data/attachments/{2563dd25f9db8ef8.txt => 5bb3529b62d1131a.txt} (100%) rename allure-report/data/attachments/{67250f10970b9ec2.txt => 5c0575d9cafe6cf6.txt} (100%) rename allure-report/data/attachments/{ab818dba8f721c82.txt => 5c7638f94c1897db.txt} (100%) rename allure-report/data/attachments/{4606180442c9597a.txt => 5d46e2ecc5195696.txt} (100%) rename allure-report/data/attachments/{3989d4323468e7bb.txt => 5da58154c309059a.txt} (100%) rename allure-report/data/attachments/{a5c2a655acda438b.txt => 5e405ef5b3f740d5.txt} (100%) rename allure-report/data/attachments/{ad904e4dff4eacf0.txt => 5e9be09b414388f9.txt} (100%) rename allure-report/data/attachments/{389b47ec7013850.txt => 5efed1b6b7f1c808.txt} (100%) rename allure-report/data/attachments/{34e25e08dcd9bfc5.txt => 5fc827b08877ee80.txt} (100%) rename allure-report/data/attachments/{e25ec87c38eb56d7.txt => 60434b32a4fa91ba.txt} (100%) rename allure-report/data/attachments/{bbdde990c6eec147.txt => 6062d7cf7b32bc2c.txt} (100%) rename allure-report/data/attachments/{9fa38c981635713c.txt => 6096f7399a313214.txt} (100%) rename allure-report/data/attachments/{d20f4b2271cbc6fa.txt => 60ce0e41b02093a3.txt} (100%) rename allure-report/data/attachments/{79af870721a1c097.txt => 616f142dc436d37a.txt} (100%) rename allure-report/data/attachments/{c5e4c41a6f3733c3.txt => 62a27b454b36563d.txt} (100%) rename allure-report/data/attachments/{ff19f958435ebad0.txt => 62bd346b3a261fc6.txt} (100%) rename allure-report/data/attachments/{50518c3041d69a65.txt => 62e987f3927afd7c.txt} (100%) rename allure-report/data/attachments/{20504931bd72ff66.txt => 6344061f744d93d.txt} (100%) rename allure-report/data/attachments/{adfb8d457e08492a.txt => 634594d507e663ad.txt} (100%) rename allure-report/data/attachments/{6ab893879ec80255.txt => 63766a355340dea4.txt} (100%) rename allure-report/data/attachments/{b5edf03f6f69fd7.txt => 6431ac3684ba417d.txt} (100%) rename allure-report/data/attachments/{777a522aaa0b36d6.txt => 6570d6c473e55397.txt} (100%) rename allure-report/data/attachments/{c8353335fdb63078.txt => 6681f7087b7f0e75.txt} (100%) rename allure-report/data/attachments/{4f667b9e1153821e.txt => 672a2772e24fdc9b.txt} (100%) rename allure-report/data/attachments/{314ae6d54cae55b6.txt => 676a2b28cd4ab614.txt} (100%) rename allure-report/data/attachments/{be12a7ae2303d05.txt => 67735b58dfb8e3b0.txt} (100%) rename allure-report/data/attachments/{56bfa93ef6d7d13e.txt => 678b686f33957e9f.txt} (100%) rename allure-report/data/attachments/{6dd7f32db32388b4.txt => 6833583f4e17d4b6.txt} (100%) rename allure-report/data/attachments/{3db52e49cbd26e06.txt => 6886fc4b238144c3.txt} (100%) rename allure-report/data/attachments/{76ccf3919bc3e5ff.txt => 6968a83bd2f66f6.txt} (100%) rename allure-report/data/attachments/{c34ac517b9df672f.txt => 698bafa9b89cd763.txt} (100%) rename allure-report/data/attachments/{ea3af59eb83f9741.txt => 6a878131575ef850.txt} (100%) rename allure-report/data/attachments/{2a9b6a8a1ba7c33d.txt => 6b2bb00f201470b4.txt} (100%) rename allure-report/data/attachments/{cc5f43f6454a1720.txt => 6b3bb7e070cc7a5c.txt} (100%) rename allure-report/data/attachments/{c18cfc939d43f91f.txt => 6bbd8e6923c5cdcc.txt} (100%) rename allure-report/data/attachments/{572cb30872911938.txt => 6c919aa9e8f6951e.txt} (100%) rename allure-report/data/attachments/{1f77a5204398ee70.txt => 6cceaf28d236f584.txt} (100%) rename allure-report/data/attachments/{16493fa2e59b881f.txt => 6ce0e167f1507713.txt} (100%) rename allure-report/data/attachments/{46d0fbec2255f23d.txt => 6e31fbe4dea71ee0.txt} (100%) rename allure-report/data/attachments/{bd3f1d26bd9a423c.txt => 6e51aca385250e4.txt} (100%) rename allure-report/data/attachments/{d015bd8e99b083ac.txt => 6f54ca69ed4a797e.txt} (100%) rename allure-report/data/attachments/{e09ff6118121df43.txt => 7030d405852b736e.txt} (100%) rename allure-report/data/attachments/{42d0476a0c6524cb.txt => 70b6cf48eb9066a3.txt} (100%) rename allure-report/data/attachments/{1a416aa1f8f49132.txt => 715d12e01ffe8bd2.txt} (100%) rename allure-report/data/attachments/{cf1c2ed826ee28d4.txt => 7177fb466625b3ce.txt} (100%) rename allure-report/data/attachments/{bafac05e5cdca73e.txt => 719718f24c29d8b6.txt} (100%) rename allure-report/data/attachments/{a5cb0f1347c132fe.txt => 71aab19d1a615a57.txt} (100%) rename allure-report/data/attachments/{409128bc00470776.txt => 72d1d4db3cffe73b.txt} (100%) rename allure-report/data/attachments/{48a054aaded1508.txt => 72f410625d43ac82.txt} (100%) rename allure-report/data/attachments/{636289116dbc88a1.txt => 737d6b3bd85f76bf.txt} (100%) rename allure-report/data/attachments/{ee5461145584dca2.txt => 737f4d50843fbb5.txt} (100%) rename allure-report/data/attachments/{34ddd4abd2f8dc67.txt => 747e90cc8dad54fd.txt} (100%) rename allure-report/data/attachments/{9d4907fb8e8c491a.txt => 7517e0fe4fd38ce3.txt} (100%) rename allure-report/data/attachments/{9ad11c0bf2af69dd.txt => 754273bb670e7e63.txt} (100%) rename allure-report/data/attachments/{86763b8490ff9e1a.txt => 75b9c5da68ec52a2.txt} (100%) rename allure-report/data/attachments/{ad5cb658d7b3a6f1.txt => 763794db833f43e6.txt} (100%) rename allure-report/data/attachments/{f69de901ccccedd4.txt => 7716f7bce2ac3794.txt} (100%) rename allure-report/data/attachments/{8201c952fac9b91.txt => 77f74c85e8c0841a.txt} (100%) rename allure-report/data/attachments/{260e3d617394daf9.txt => 7829271a783962e0.txt} (100%) rename allure-report/data/attachments/{b4b3b9029fd263e4.txt => 78984c686d4aec41.txt} (100%) rename allure-report/data/attachments/{41d72e951bcc6869.txt => 78b71274c888e77b.txt} (100%) rename allure-report/data/attachments/{f220cca72eddc4b9.txt => 7941ce7b9fdf9a23.txt} (100%) rename allure-report/data/attachments/{c9bdbc88a29a3828.txt => 79650f7b74d71675.txt} (100%) rename allure-report/data/attachments/{d97724b3c30f749b.txt => 7dbffa484c49e1de.txt} (100%) rename allure-report/data/attachments/{82626f88e303aee4.txt => 7e0d861d218b6b53.txt} (100%) rename allure-report/data/attachments/{78dec26e63ca72b.txt => 7efcea1d1ffd3662.txt} (100%) rename allure-report/data/attachments/{61d7cf4a7f7609fa.txt => 7f080e317c4cdc0d.txt} (100%) rename allure-report/data/attachments/{afd9bf5ba31b7f2c.txt => 7f52a9aa50bef455.txt} (100%) rename allure-report/data/attachments/{20413926fc466813.txt => 7f7258c787806381.txt} (100%) rename allure-report/data/attachments/{c1042cf050bb287f.txt => 825e5ff6c26dfc23.txt} (100%) rename allure-report/data/attachments/{77d89c40af0bf20.txt => 837e80b6f559a9c2.txt} (100%) rename allure-report/data/attachments/{aa2e305576d932cc.txt => 838e96495b7301c2.txt} (100%) rename allure-report/data/attachments/{edfc621ad66d7630.txt => 839567f1e1e69ee5.txt} (100%) rename allure-report/data/attachments/{524678a9109bb789.txt => 839e0167efc9a3e5.txt} (100%) rename allure-report/data/attachments/{8c7dbf4edab807e9.txt => 8418aaca0f21809c.txt} (100%) rename allure-report/data/attachments/{922ae39708baa025.txt => 841a9d92019cea7.txt} (100%) rename allure-report/data/attachments/{3a3d2d13f3e8d074.txt => 8433939b2e0016e1.txt} (100%) rename allure-report/data/attachments/{d5f66b749f49be9c.txt => 84bdcd72726e2c84.txt} (100%) rename allure-report/data/attachments/{751c423a8c519ee0.txt => 84cd17876f4516cf.txt} (100%) rename allure-report/data/attachments/{ed807b9aabc03ce3.txt => 84f9893956705e3c.txt} (100%) rename allure-report/data/attachments/{d4bf4df7343a141f.txt => 85aa32b5caa3d259.txt} (100%) rename allure-report/data/attachments/{abfce931e4a4e183.txt => 868a8a8788cc39fc.txt} (100%) rename allure-report/data/attachments/{3ca7170537d4b92b.txt => 87f777895eba7eaf.txt} (100%) rename allure-report/data/attachments/{113db4f6bd21cad6.txt => 88f8e3a1f8c2be2b.txt} (100%) rename allure-report/data/attachments/{9378bde66fa0c099.txt => 894de7f1e428d962.txt} (100%) rename allure-report/data/attachments/{cbe62037cd68092f.txt => 8b00f3eb19799549.txt} (100%) rename allure-report/data/attachments/{4ec4b9e8092c85e0.txt => 8da729485857d70b.txt} (100%) rename allure-report/data/attachments/{c3b009b2f078b1df.txt => 8e2411421a238415.txt} (100%) rename allure-report/data/attachments/{18e589c7521ffb38.txt => 8e6997f43eb72f85.txt} (100%) rename allure-report/data/attachments/{1a238f13b61d4440.txt => 8f40a615942b6a99.txt} (100%) rename allure-report/data/attachments/{919f00271c0b6744.txt => 8f8b0aa6406d8405.txt} (100%) rename allure-report/data/attachments/{1ac173a13e0da0bb.txt => 90811aa4d663c1f1.txt} (100%) rename allure-report/data/attachments/{bc5d49dc5212bf5e.txt => 90ef8c17370e6610.txt} (100%) rename allure-report/data/attachments/{603967bf708ac2d5.txt => 90fac117ed2f5b2c.txt} (100%) rename allure-report/data/attachments/{b3fc81b6d668011d.txt => 9185450f0b6d0b62.txt} (100%) rename allure-report/data/attachments/{cd4290234370c8e2.txt => 91c5a91c91d3cce8.txt} (100%) rename allure-report/data/attachments/{c57066a5ba7cb3b6.txt => 920856e6e183642.txt} (100%) rename allure-report/data/attachments/{6e85f6f8a1949219.txt => 9221a1b722d3e57e.txt} (100%) rename allure-report/data/attachments/{4762790d78a26553.txt => 92552b4b1fe49529.txt} (100%) rename allure-report/data/attachments/{114c74c53ed8174f.txt => 92abbc4fad82e6db.txt} (100%) rename allure-report/data/attachments/{9e259e1fbcfa5f37.txt => 92e60d573610c20c.txt} (100%) rename allure-report/data/attachments/{b965bcb2e6dc29da.txt => 93547fa89048aa2f.txt} (100%) rename allure-report/data/attachments/{ff5bcd4167469499.txt => 940a8818c4ee9f6a.txt} (100%) rename allure-report/data/attachments/{889d21b9a71df26a.txt => 951e88f3edc608ae.txt} (100%) rename allure-report/data/attachments/{826e1d893c73077a.txt => 95eee5a3754aa8a2.txt} (100%) rename allure-report/data/attachments/{17c76024ab075e9a.txt => 981d1c1e601a3a5b.txt} (100%) rename allure-report/data/attachments/{bad36bad780dde2b.txt => 986dcde2e02037cb.txt} (100%) rename allure-report/data/attachments/{30bb93915ba589e1.txt => 99fbed72185a436d.txt} (100%) rename allure-report/data/attachments/{de5056f652a803a9.txt => 9aa90db0f884f6f0.txt} (100%) rename allure-report/data/attachments/{917768a471c3713a.txt => 9d173a5e0d4bb0c8.txt} (100%) rename allure-report/data/attachments/{9a6a869c56ca7757.txt => 9e063e588b090ea7.txt} (100%) rename allure-report/data/attachments/{c6f68f6f0d4b074f.txt => a140c6342ce1ee58.txt} (100%) rename allure-report/data/attachments/{300059081fd8f1bb.txt => a1cb38196225980f.txt} (100%) rename allure-report/data/attachments/{2ab5d05911fa6e28.txt => a2b0f0b93e0e2887.txt} (100%) rename allure-report/data/attachments/{5491995ca08b8bb7.txt => a4db6f7d6cd87570.txt} (100%) rename allure-report/data/attachments/{88865904ee358dea.txt => a54c971159a9735d.txt} (100%) rename allure-report/data/attachments/{d1cc8240eecf71ad.txt => a5a1e9dabd89620f.txt} (100%) rename allure-report/data/attachments/{ac4bcaa809c6d1fd.txt => a5b9b2f5d2166132.txt} (100%) rename allure-report/data/attachments/{710515c8ae418cf7.txt => a5cbeea06209bb6e.txt} (100%) rename allure-report/data/attachments/{a0d4534146449bf1.txt => a73c95935cebe487.txt} (100%) rename allure-report/data/attachments/{70a62533038d97f8.txt => a8cdc7c5d92ea524.txt} (100%) rename allure-report/data/attachments/{bf32cb10b99852f.txt => a8f23a9981f406ff.txt} (100%) rename allure-report/data/attachments/{e0896f1244645b9.txt => a9033f7cad83170f.txt} (100%) rename allure-report/data/attachments/{d0350a898056fbe2.txt => aa35c4221cf1383d.txt} (100%) rename allure-report/data/attachments/{518fb893ba3ae3ec.txt => abb69032ea61f29c.txt} (100%) rename allure-report/data/attachments/{f2763bf761fdda50.txt => ac514e66507a8175.txt} (100%) rename allure-report/data/attachments/{eb842e833e18e0a2.txt => ac68097df5e78e9a.txt} (100%) rename allure-report/data/attachments/{9bb6819321100dff.txt => ad7db611240dcbc0.txt} (100%) rename allure-report/data/attachments/{16514ad99c38029.txt => ae1ab7427cab55e0.txt} (100%) rename allure-report/data/attachments/{d95c404945ad5b7e.txt => b013d563709aaa2b.txt} (100%) rename allure-report/data/attachments/{ce02051636b52745.txt => b34610167fe8aa65.txt} (100%) rename allure-report/data/attachments/{fa72b6c6dff59425.txt => b43989c1fe59fe7e.txt} (100%) rename allure-report/data/attachments/{6caa4cb1d46acc21.txt => b4f27bd29772e298.txt} (100%) rename allure-report/data/attachments/{5b3d8d390aff60c1.txt => b5130ca9dc47578e.txt} (100%) rename allure-report/data/attachments/{d497c1182dc91a88.txt => b55ce2a23080a57e.txt} (100%) rename allure-report/data/attachments/{86ab33dc86ae86c3.txt => b63774e9e6663cf7.txt} (100%) rename allure-report/data/attachments/{29a496fd36abeefa.txt => b653a3e02677ec62.txt} (100%) rename allure-report/data/attachments/{b9d1131297f0da2f.txt => b7bfbf78e894e0ca.txt} (100%) rename allure-report/data/attachments/{94a514fff914ffad.txt => b8036761eae2b6cd.txt} (100%) rename allure-report/data/attachments/{f56caa49d4564a64.txt => b8749033ef3225ff.txt} (100%) rename allure-report/data/attachments/{74ca61632d7aba21.txt => b87eb62b93596729.txt} (100%) rename allure-report/data/attachments/{cae9efbee6f5aead.txt => b8fb66a095ff9819.txt} (100%) rename allure-report/data/attachments/{80387d9cf50add05.txt => b9b05bf139af2d32.txt} (100%) rename allure-report/data/attachments/{142bd0c9522a1b66.txt => ba01f85fc1c9de89.txt} (100%) rename allure-report/data/attachments/{75c4275b899037f8.txt => ba17606ecf187aae.txt} (100%) rename allure-report/data/attachments/{10c5a7daf7553683.txt => ba387d8fdc4ccb3b.txt} (100%) rename allure-report/data/attachments/{e80aece0ccab9b6b.txt => c013aca8f3f007b8.txt} (100%) rename allure-report/data/attachments/{9cc4cc662dcb9dfc.txt => c1146e7ec026151e.txt} (100%) rename allure-report/data/attachments/{658b23666826b836.txt => c126cf9c398e7752.txt} (100%) rename allure-report/data/attachments/{9cd6a45eab59a36a.txt => c12b7919feb22bf.txt} (100%) rename allure-report/data/attachments/{b953c5b7701746a6.txt => c144733a0318ce29.txt} (100%) rename allure-report/data/attachments/{ebf0cbf302079de1.txt => c3d16eb9cb3b239c.txt} (100%) rename allure-report/data/attachments/{c243a724cee6015a.txt => c60a729cdea9a7d9.txt} (100%) rename allure-report/data/attachments/{e0460595a654ff1f.txt => c6d99744fc651725.txt} (100%) rename allure-report/data/attachments/{aad817c6a7654978.txt => c72469286db7525d.txt} (100%) rename allure-report/data/attachments/{5d807bd45470dc9b.txt => c72b6aed91bdc6cb.txt} (100%) rename allure-report/data/attachments/{5f55b46f1adbac58.txt => c7c3f41b6f879f22.txt} (100%) rename allure-report/data/attachments/{ae06587a78bdd6d0.txt => c88c8283826150a7.txt} (100%) rename allure-report/data/attachments/{3438c05e0b734e.txt => c8970b155f88dd79.txt} (100%) rename allure-report/data/attachments/{77d84c2ff475cafc.txt => c931c8cfab53b972.txt} (100%) rename allure-report/data/attachments/{1ae03ec55e1d110.txt => c954d80fa61d867d.txt} (100%) rename allure-report/data/attachments/{53524752e4f404ea.txt => c9a3c6ad41839ce3.txt} (100%) rename allure-report/data/attachments/{3b4c07500e73b2e1.txt => caa5a9b030d38c.txt} (100%) rename allure-report/data/attachments/{51d402aefb9d5a50.txt => cab012145f3c31e.txt} (100%) rename allure-report/data/attachments/{c5c7618408ea03e4.txt => caf6549170870e9e.txt} (100%) rename allure-report/data/attachments/{c5ab42561d9470dc.txt => cb5281dd2f2e56c3.txt} (100%) rename allure-report/data/attachments/{dc793fb42851981e.txt => cc97e34ff385a06.txt} (100%) rename allure-report/data/attachments/{f0f7c752081290ad.txt => cd9f556fe34434c9.txt} (100%) rename allure-report/data/attachments/{3113bb39449ddf28.txt => cf2100e65e09b423.txt} (100%) rename allure-report/data/attachments/{6e07492df16f7840.txt => cfb7ba55710ea734.txt} (100%) rename allure-report/data/attachments/{4d46a258151a8eec.txt => d032b19c209c380e.txt} (100%) rename allure-report/data/attachments/{e1e2028306699105.txt => d071752d20b95de3.txt} (100%) rename allure-report/data/attachments/{b6c4fbc0a7fcea99.txt => d0ae6f01edd6f40b.txt} (100%) rename allure-report/data/attachments/{ce9018a625502a4f.txt => d1528cec1dd8dea3.txt} (100%) rename allure-report/data/attachments/{5f33ac63c02af5a3.txt => d17644d369f719b5.txt} (100%) rename allure-report/data/attachments/{c678f64458ff79c1.txt => d19d47ecb32ff1a.txt} (100%) rename allure-report/data/attachments/{e94d8c1e516fca3a.txt => d27167744db90954.txt} (100%) rename allure-report/data/attachments/{bfa138ce1d41528.txt => d279b3f66291ee3.txt} (100%) rename allure-report/data/attachments/{a094172377fbc2e7.txt => d352d3b8134952ea.txt} (100%) rename allure-report/data/attachments/{2835a835dfc96c0c.txt => d406966fbaffbd00.txt} (100%) rename allure-report/data/attachments/{74e435a54cfbfd93.txt => d499b60fd50eab17.txt} (100%) rename allure-report/data/attachments/{4d5c4bbf86727665.txt => d4d0d11b46cc8eb0.txt} (100%) rename allure-report/data/attachments/{f0db32efa6426426.txt => d544fbd4d09ad0f7.txt} (100%) rename allure-report/data/attachments/{2e5c8918aed39603.txt => d5adffae1b4c5d49.txt} (100%) rename allure-report/data/attachments/{64e75cae3405924b.txt => d682c96b1e76edae.txt} (100%) rename allure-report/data/attachments/{8c8aa30f0d3e03ac.txt => d6a0933efaeb03c.txt} (100%) rename allure-report/data/attachments/{87531b32bbe9613e.txt => d700c3a94542cad8.txt} (100%) rename allure-report/data/attachments/{f061bc52b29fdec3.txt => d789b0e2f7ac3471.txt} (100%) rename allure-report/data/attachments/{b2f6f360d1ace914.txt => d7e0ef7caf28d559.txt} (100%) rename allure-report/data/attachments/{cfd735e1e281b0c2.txt => d86f11066e8eb2f7.txt} (100%) rename allure-report/data/attachments/{7aad212f16ce4ea2.txt => d920f200ffe2c729.txt} (100%) rename allure-report/data/attachments/{9eb9cb7b27cc62e1.txt => d9e1cc8a9d47ef26.txt} (100%) rename allure-report/data/attachments/{99c79ea3adfa82ee.txt => da9065dd6d539fab.txt} (100%) rename allure-report/data/attachments/{b8231a3e84d54eef.txt => db0dfa2ecde82e2a.txt} (100%) rename allure-report/data/attachments/{5a6a1d1be82c27c9.txt => db194e9e67e4f8fb.txt} (100%) rename allure-report/data/attachments/{d2f0b70b32be23e6.txt => db7ce475c42c1e48.txt} (100%) rename allure-report/data/attachments/{a0b2ebd9f3514d62.txt => dc00b83d62a7bfbf.txt} (100%) rename allure-report/data/attachments/{c2efa1b50e5fd149.txt => dd3f4f217e87fedc.txt} (100%) rename allure-report/data/attachments/{34940f05851678f8.txt => dd62b896cd445c4.txt} (100%) rename allure-report/data/attachments/{5f71f9eaace164be.txt => ddae89531089be3f.txt} (100%) rename allure-report/data/attachments/{2a834f90f4db7120.txt => e0ce3a7d48216112.txt} (100%) rename allure-report/data/attachments/{afa5523631c32cdd.txt => e11ad2661eb07ca9.txt} (100%) rename allure-report/data/attachments/{6e926e3f96426662.txt => e19fa4140ca62ee4.txt} (100%) rename allure-report/data/attachments/{e45f83b71ba0db05.txt => e20f82a8bca3f91b.txt} (100%) rename allure-report/data/attachments/{2648dfeb91d0b6ab.txt => e36f2ac65e2625af.txt} (100%) rename allure-report/data/attachments/{e13312b12957bd2f.txt => e3861efa7e547869.txt} (100%) rename allure-report/data/attachments/{a1fb723ed6209615.txt => e3d1c47094969219.txt} (100%) rename allure-report/data/attachments/{cff3f59db3a9bd3d.txt => e3e4221321612bf1.txt} (100%) rename allure-report/data/attachments/{5ba35f69345b3378.txt => e423707f4478eb49.txt} (100%) rename allure-report/data/attachments/{e7956391f1917fb4.txt => e46ecdc21febfa2d.txt} (100%) rename allure-report/data/attachments/{45fa6f11637998ca.txt => e497f0d93067cd8e.txt} (100%) rename allure-report/data/attachments/{c19e93a1a848049d.txt => e5b745fd985bd7ab.txt} (100%) rename allure-report/data/attachments/{6b092f3996f587d0.txt => e6170073182411e7.txt} (100%) rename allure-report/data/attachments/{2ee2228a3a71cd4e.txt => e67bc3e5b3334332.txt} (100%) rename allure-report/data/attachments/{659fcb73d39cab15.txt => e6af0cabbf264491.txt} (100%) rename allure-report/data/attachments/{fdf2076e64b836.txt => e747e2d69cfbefdf.txt} (100%) rename allure-report/data/attachments/{d3b2cac4981701e4.txt => e89406beb8fb490f.txt} (100%) rename allure-report/data/attachments/{af3aa1dfbb9be751.txt => e8c4247db1945485.txt} (100%) rename allure-report/data/attachments/{fab45acdd775eb62.txt => e9ba7465215b13fc.txt} (100%) rename allure-report/data/attachments/{8b39f53200712f62.txt => ea676dbf2861ab6b.txt} (100%) rename allure-report/data/attachments/{f242bfa987012064.txt => ea7fb2d8338c4ae8.txt} (100%) rename allure-report/data/attachments/{9ef5d72a43416890.txt => eb9dc4155dddb919.txt} (100%) rename allure-report/data/attachments/{5fc6cabc1aa63064.txt => eba58defe547aa99.txt} (100%) rename allure-report/data/attachments/{d19c441db40a3cac.txt => ebee3405e01a539f.txt} (100%) rename allure-report/data/attachments/{a45633f3542e88e2.txt => eceb81b9185d8ebf.txt} (100%) rename allure-report/data/attachments/{e563acaa0f865561.txt => edbe93ce737c702f.txt} (100%) rename allure-report/data/attachments/{628a7fe95e3c81cb.txt => ee2fa2d0000577e9.txt} (100%) rename allure-report/data/attachments/{9fc84a1435124a1a.txt => f1276b53d50f9117.txt} (100%) rename allure-report/data/attachments/{66ad4b11c0086ef7.txt => f1386283fe3a63a2.txt} (100%) rename allure-report/data/attachments/{1aaba40705e2fc47.txt => f18b0e548340aa4f.txt} (100%) rename allure-report/data/attachments/{bd42675a360dbc62.txt => f1f91f89a689bba4.txt} (100%) rename allure-report/data/attachments/{d42f3c0595488474.txt => f200722e18d9d59a.txt} (100%) rename allure-report/data/attachments/{ee54cc9a323ef73f.txt => f25bb18adfb0c750.txt} (100%) rename allure-report/data/attachments/{c91447e2ab5b5752.txt => f26281521e32f10c.txt} (100%) rename allure-report/data/attachments/{ad1ea44cc626928f.txt => f29437b097cf88b9.txt} (100%) rename allure-report/data/attachments/{bdc74086212add1b.txt => f457bf5da9408839.txt} (100%) rename allure-report/data/attachments/{c794d6c4e5eeb4af.txt => f522ce9854634cf6.txt} (100%) rename allure-report/data/attachments/{792a133ebed89ed0.txt => f69b6836dc35d93.txt} (100%) rename allure-report/data/attachments/{751c11b33d3f5691.txt => f753b26a6d68bf5b.txt} (100%) rename allure-report/data/attachments/{395fe2fe4ac3b196.txt => f79ef762befefc39.txt} (100%) rename allure-report/data/attachments/{fdeff84d2ee8d5a7.txt => f8b4598a501c7d27.txt} (100%) rename allure-report/data/attachments/{7a2a4c86abf39025.txt => f8c0f6bed7a29f7c.txt} (100%) rename allure-report/data/attachments/{f359371e55578388.txt => f93ff3c1bc3ca41c.txt} (100%) rename allure-report/data/attachments/{b1d7cd63e86f3101.txt => faca10a249542315.txt} (100%) rename allure-report/data/attachments/{d9deb17ebdcc9231.txt => faf563094f59ca6b.txt} (100%) rename allure-report/data/attachments/{bddb4d20a85ffa0.txt => fb14be3959747375.txt} (100%) rename allure-report/data/attachments/{9f427722b0cc833f.txt => fb2891f4860c316.txt} (100%) rename allure-report/data/attachments/{482dd2a19da8e0f3.txt => fb7e53ff5946a92d.txt} (100%) rename allure-report/data/attachments/{bf26048e33b52cf9.txt => fcab257bac252f0f.txt} (100%) rename allure-report/data/attachments/{e71976337c3f0f2c.txt => fcb85638cafa3b09.txt} (100%) rename allure-report/data/attachments/{4450ee3f66285b1.txt => fcbbb87dd9240b08.txt} (100%) rename allure-report/data/attachments/{fe1be9ee27fc2e73.txt => fcdb96625b1e26db.txt} (100%) rename allure-report/data/attachments/{995455f4d59eea4c.txt => fd4f4028774f914d.txt} (100%) rename allure-report/data/attachments/{eaa824bd6b5ae161.txt => fde614c2efca69df.txt} (100%) rename allure-report/data/attachments/{f04c5edec457b138.txt => fec67c535945138b.txt} (100%) rename allure-report/data/attachments/{969369ae06b01d8f.txt => feeed58e51d5c7a.txt} (100%) rename allure-report/data/attachments/{93cd2d5c953cd624.txt => ff4563a6816a8fb1.txt} (100%) rename allure-report/data/test-cases/{6cc55bf9ac4c61ba.json => 103efa7b767774fa.json} (57%) rename allure-report/data/test-cases/{cbc7a26721b4acfd.json => 1073662453fffbc9.json} (63%) create mode 100644 allure-report/data/test-cases/108c2723377a98c0.json rename allure-report/data/test-cases/{8a5c8b47c2adbbcb.json => 10b94291a50321ec.json} (69%) rename allure-report/data/test-cases/{3d238edf9c2316ff.json => 1188dda60b67ea96.json} (63%) rename allure-report/data/test-cases/{12359602ca4ac006.json => 11b0f4fd11e05b10.json} (71%) rename allure-report/data/test-cases/{b54ad09f549aa423.json => 11b4e7794c00f220.json} (71%) rename allure-report/data/test-cases/{e650d3e05f6d005c.json => 11b652a05502070f.json} (68%) create mode 100644 allure-report/data/test-cases/11ee5493e293e3de.json create mode 100644 allure-report/data/test-cases/12ce3777e030dbb5.json rename allure-report/data/test-cases/{62692a0c3dd76e6c.json => 130e4ffebf4e47af.json} (59%) rename allure-report/data/test-cases/{6fbcaa806475fb37.json => 1319e1ae94efdc02.json} (76%) rename allure-report/data/test-cases/{aad768e2b1065e77.json => 133341d40af1e905.json} (77%) rename allure-report/data/test-cases/{7f23a2b3d247ad31.json => 139c28ca38674b14.json} (71%) delete mode 100644 allure-report/data/test-cases/13ca9b99f559671b.json rename allure-report/data/test-cases/{dbbed5b9582868fd.json => 13e77cd2d97ddcd8.json} (61%) rename allure-report/data/test-cases/{65073b7edfec4e6b.json => 1467bda4d9665eda.json} (79%) rename allure-report/data/test-cases/{a42793a5da57f5c7.json => 148a22b7e430194f.json} (56%) rename allure-report/data/test-cases/{8a85b974bace8b60.json => 14d00f76e0b4f9e4.json} (61%) rename allure-report/data/test-cases/{e943739be0c776f3.json => 14d24a2946d66b00.json} (58%) create mode 100644 allure-report/data/test-cases/15008ede7bd87a18.json delete mode 100644 allure-report/data/test-cases/16026a681cee6bae.json rename allure-report/data/test-cases/{66511dda8143933e.json => 1719ddf6913445c8.json} (68%) rename allure-report/data/test-cases/{d611744698a52752.json => 1728ec761d912068.json} (73%) rename allure-report/data/test-cases/{f98184cdb1c288eb.json => 17d8ff61005bb0bc.json} (68%) rename allure-report/data/test-cases/{e321a1f70ebe865a.json => 17f807e7e2cad355.json} (71%) rename allure-report/data/test-cases/{46a578b6417fd35d.json => 19146436627ee869.json} (73%) rename allure-report/data/test-cases/{6b49391a0624f51c.json => 19910c11538825d6.json} (58%) rename allure-report/data/test-cases/{27844b15371870f6.json => 1b018537831100fb.json} (74%) rename allure-report/data/test-cases/{2030ea00b6998f67.json => 1b3bd0a5ea1aa072.json} (65%) rename allure-report/data/test-cases/{a5efb61e311267c0.json => 1b8dc3acaf7dd027.json} (72%) rename allure-report/data/test-cases/{3f5cda838e1e2c35.json => 1bbe34ba42279f71.json} (72%) rename allure-report/data/test-cases/{dea681370cee7fa1.json => 1c0de6c68e45d781.json} (72%) rename allure-report/data/test-cases/{4516d446aa99f6ae.json => 1c454649db0c0ed2.json} (67%) rename allure-report/data/test-cases/{fed28c7a9755def6.json => 1c922c5f58027b49.json} (63%) rename allure-report/data/test-cases/{e5ac2209dd79eabb.json => 1dee8c06fd165199.json} (81%) rename allure-report/data/test-cases/{fe9e7cd98fc040fc.json => 1dfdd5c5551a6420.json} (63%) rename allure-report/data/test-cases/{fa56d75fd8c33c3c.json => 1e3570598c901af4.json} (64%) create mode 100644 allure-report/data/test-cases/1e52950a202e2f6f.json rename allure-report/data/test-cases/{f0c848519588d2dc.json => 1ece392343bb9b12.json} (64%) rename allure-report/data/test-cases/{9257abb983650c85.json => 1edd352618c6aa2b.json} (92%) rename allure-report/data/test-cases/{6af8370630444180.json => 1efaf2ab015adde4.json} (65%) rename allure-report/data/test-cases/{742a65a772f90af2.json => 1f991ba5bad9e7e9.json} (61%) rename allure-report/data/test-cases/{eb2c31b2b7e0b335.json => 20308d2341c6b899.json} (94%) rename allure-report/data/test-cases/{e0604dcf0c194a67.json => 204251456ada0752.json} (72%) rename allure-report/data/test-cases/{78e4d411e3c9974d.json => 2077f18aded36c8a.json} (72%) rename allure-report/data/test-cases/{9130d2ce9d2203c6.json => 22fcf1edf8ebf197.json} (93%) rename allure-report/data/test-cases/{ffa8274e0de065ab.json => 2348115dae27ed81.json} (71%) rename allure-report/data/test-cases/{9c8287ca55a94ba5.json => 23b523b580f78123.json} (56%) rename allure-report/data/test-cases/{e09cd6c2a9399b84.json => 23cc390416e7aa52.json} (65%) delete mode 100644 allure-report/data/test-cases/23d2f8eb0089d9c.json rename allure-report/data/test-cases/{afdaa298aab7eba8.json => 2460353038ce1955.json} (61%) rename allure-report/data/test-cases/{c16d54e01aa089ec.json => 2512233f29820ca9.json} (65%) rename allure-report/data/test-cases/{b93db50e25bdce85.json => 252f381a068f762f.json} (71%) rename allure-report/data/test-cases/{9e49aa125a2c6746.json => 25be1d40d6774add.json} (66%) create mode 100644 allure-report/data/test-cases/266702a52edb0749.json create mode 100644 allure-report/data/test-cases/26cf86ca9eda4b5.json rename allure-report/data/test-cases/{b04dd834a1d39093.json => 270b5395a9143b9c.json} (71%) rename allure-report/data/test-cases/{f80f9bf6821c7c25.json => 280a7287fd39d5a9.json} (62%) delete mode 100644 allure-report/data/test-cases/29266ed99d46b2a.json rename allure-report/data/test-cases/{be5a8376fdcba717.json => 2965d2d3db0ea08e.json} (70%) rename allure-report/data/test-cases/{fb3ce43e36479ba0.json => 2aa3a63b6fff605a.json} (55%) rename allure-report/data/test-cases/{b843b5b7994550ed.json => 2acb560e089cb7c8.json} (63%) create mode 100644 allure-report/data/test-cases/2b38fe6b8a5a46.json delete mode 100644 allure-report/data/test-cases/2b3e2264864275ed.json rename allure-report/data/test-cases/{a8ada246e9141e4e.json => 2b7f0b03733442e8.json} (64%) rename allure-report/data/test-cases/{f09191f837671677.json => 2b9309fd398214a5.json} (67%) delete mode 100644 allure-report/data/test-cases/2b9e2e21ff531ae4.json create mode 100644 allure-report/data/test-cases/2c78d4954ac14f9e.json rename allure-report/data/test-cases/{c2e82f2f4bdc38ce.json => 2cfa19c331ab824b.json} (68%) create mode 100644 allure-report/data/test-cases/2d25cb87282ab722.json create mode 100644 allure-report/data/test-cases/2d35bd18d5e6ee6b.json delete mode 100644 allure-report/data/test-cases/30cacf1f2fb31f20.json rename allure-report/data/test-cases/{df06e2a5507646ca.json => 30fbee992b0ca53e.json} (74%) rename allure-report/data/test-cases/{d9a0350697dd0c07.json => 311e6a6343f5272c.json} (92%) rename allure-report/data/test-cases/{74afb414b6e0cabc.json => 31b67858aaa81503.json} (73%) rename allure-report/data/test-cases/{1ef3e1da7f90eb82.json => 31cd5c9e8017f83c.json} (64%) rename allure-report/data/test-cases/{cdb5c235f1a637f6.json => 31f6e05cb2bf8e17.json} (76%) rename allure-report/data/test-cases/{c301f45b01d7d10f.json => 327fbdea3443aca5.json} (67%) create mode 100644 allure-report/data/test-cases/337891d8027fbc46.json rename allure-report/data/test-cases/{1ef1cf7383671b63.json => 33b81b348332f41f.json} (50%) delete mode 100644 allure-report/data/test-cases/34febd97f08d8df7.json rename allure-report/data/test-cases/{928532982127bba0.json => 35cf25b9e515e00d.json} (65%) rename allure-report/data/test-cases/{2c4e292a782b80e3.json => 369d691aa58bf89d.json} (66%) rename allure-report/data/test-cases/{57bbb6ca73efd1b4.json => 371888dd705cab28.json} (60%) create mode 100644 allure-report/data/test-cases/37b95a78feb35857.json rename allure-report/data/test-cases/{cf2235e5886d8954.json => 38639b46d1e381a9.json} (70%) rename allure-report/data/test-cases/{c322e80c6cd8da83.json => 39245131d70863d6.json} (72%) delete mode 100644 allure-report/data/test-cases/396df158495e2556.json rename allure-report/data/test-cases/{df9e62f886d5e100.json => 398c0a461bbe2313.json} (75%) rename allure-report/data/test-cases/{256e8daa91edbaa5.json => 39ba63dd42027b29.json} (74%) rename allure-report/data/test-cases/{a14fdddc74cd287e.json => 39c69409f76377e7.json} (59%) rename allure-report/data/test-cases/{682a94239c4fcbde.json => 3a2392b112899a67.json} (61%) delete mode 100644 allure-report/data/test-cases/3cad1df85b3a49c.json rename allure-report/data/test-cases/{42d91b41703125e1.json => 3ceac2ca244e095b.json} (74%) rename allure-report/data/test-cases/{f0e71551541527fc.json => 3cf8d83dbb2d66b5.json} (65%) create mode 100644 allure-report/data/test-cases/3e354a7b4ef8aa9f.json rename allure-report/data/test-cases/{f98898530a5ace8b.json => 3f3af6e95d4ded07.json} (75%) rename allure-report/data/test-cases/{83454665affcf957.json => 3fab8ff7d7139e20.json} (71%) rename allure-report/data/test-cases/{f91cfc098c0e7678.json => 4041d4d534df9c91.json} (62%) delete mode 100644 allure-report/data/test-cases/40b6991ee66facde.json delete mode 100644 allure-report/data/test-cases/40cf8e66ad985f0e.json rename allure-report/data/test-cases/{501c2967d3373bac.json => 41ca81ef54591f7f.json} (70%) create mode 100644 allure-report/data/test-cases/41efd0d786aed73.json create mode 100644 allure-report/data/test-cases/42383b817b641e4e.json delete mode 100644 allure-report/data/test-cases/4260c429366ea20f.json rename allure-report/data/test-cases/{41a3f66c1c393960.json => 42bb8c96d4cb1bcf.json} (70%) rename allure-report/data/test-cases/{1f1607dce833287a.json => 431c7499a8a042ca.json} (63%) rename allure-report/data/test-cases/{d8970eab34dca31f.json => 4458ac38c6c9a97c.json} (72%) delete mode 100644 allure-report/data/test-cases/44708af2bbd77aa6.json rename allure-report/data/test-cases/{73a0aa79bef78acd.json => 449aa1de0e8221e9.json} (61%) rename allure-report/data/test-cases/{8c7b1cf8369a95ff.json => 458ee4cae9834334.json} (73%) delete mode 100644 allure-report/data/test-cases/45ec56dab60499e.json create mode 100644 allure-report/data/test-cases/462e434377d791a9.json delete mode 100644 allure-report/data/test-cases/46f01e6c3f72b063.json rename allure-report/data/test-cases/{fc816863f78bcd65.json => 474af6c568bdf675.json} (65%) rename allure-report/data/test-cases/{a1830f831e47cf3a.json => 4783529dae6eb3af.json} (79%) rename allure-report/data/test-cases/{af2006fa8ad3035d.json => 47a613697aa0c71f.json} (93%) rename allure-report/data/test-cases/{409595d25cc5d60c.json => 47f8df09a84d8337.json} (66%) rename allure-report/data/test-cases/{7f4f9e94ec6d4f1e.json => 490cf50ddd5cff83.json} (60%) rename allure-report/data/test-cases/{cf2907457d950935.json => 4979ee3063a87441.json} (72%) rename allure-report/data/test-cases/{281344c06cab651e.json => 49aa5cc4276ca55b.json} (66%) delete mode 100644 allure-report/data/test-cases/4bb5c832e26c3df6.json delete mode 100644 allure-report/data/test-cases/4bdc75ea73bb042.json delete mode 100644 allure-report/data/test-cases/4c1cbf2e97bf2e3a.json rename allure-report/data/test-cases/{9ecd11ec04bbfe07.json => 4d0514d90adb5feb.json} (67%) rename allure-report/data/test-cases/{7d710406d5c624ab.json => 4df49eaeb4ea4daa.json} (66%) delete mode 100644 allure-report/data/test-cases/4e7abb728f95d63f.json create mode 100644 allure-report/data/test-cases/4ecd1e835300dbcf.json create mode 100644 allure-report/data/test-cases/4f85a4b1698202d.json rename allure-report/data/test-cases/{cee46a1116cde2e1.json => 4fb2a019463cdbdf.json} (66%) rename allure-report/data/test-cases/{f27c61d350b9fa85.json => 500c62fc4806377c.json} (75%) create mode 100644 allure-report/data/test-cases/504baf7c4d256536.json create mode 100644 allure-report/data/test-cases/51971bf7ad109ed2.json rename allure-report/data/test-cases/{43c0068fe0a1265e.json => 51a9aec46de8d878.json} (56%) rename allure-report/data/test-cases/{de314943cf5bdd10.json => 52187b3daff300ae.json} (59%) rename allure-report/data/test-cases/{8ded43d0fdf317ac.json => 52715db4a1ce5955.json} (65%) rename allure-report/data/test-cases/{9b43d122708c0be8.json => 5274eeeb29391ba1.json} (70%) rename allure-report/data/test-cases/{c8b2e451486f6a25.json => 52dd320a58bdb229.json} (65%) rename allure-report/data/test-cases/{a6832cf487834f3e.json => 5320007ca0191a21.json} (70%) rename allure-report/data/test-cases/{a1f79415804ea08d.json => 5321a1bb93b59f1e.json} (69%) rename allure-report/data/test-cases/{73ae2edd756c4a04.json => 535d557e01267994.json} (70%) create mode 100644 allure-report/data/test-cases/536deebe5c2f9229.json rename allure-report/data/test-cases/{f3b283ff21d85aec.json => 54942c51ed88331c.json} (76%) rename allure-report/data/test-cases/{77d55c76ce916d94.json => 55d1d73293e16236.json} (65%) delete mode 100644 allure-report/data/test-cases/5653676293d9b683.json create mode 100644 allure-report/data/test-cases/56a28cc490d83b65.json rename allure-report/data/test-cases/{9bfdccd510532417.json => 571c043aeb64d363.json} (70%) rename allure-report/data/test-cases/{c56dac6db0d4b2a0.json => 5740cd94d023a2bf.json} (71%) rename allure-report/data/test-cases/{e8f6c075972e7fae.json => 5781ea9a417efe48.json} (52%) delete mode 100644 allure-report/data/test-cases/578c3a6cd3e7e40f.json rename allure-report/data/test-cases/{84ae1ddd95d9c6d3.json => 57efbea0ccf3907a.json} (66%) rename allure-report/data/test-cases/{66f1b8d1e5ed1dbe.json => 585949d19b46a5d2.json} (65%) rename allure-report/data/test-cases/{9bf22c06763280e5.json => 587ebae959bb9619.json} (72%) rename allure-report/data/test-cases/{828252a14a7968ec.json => 58ec93395b112a8f.json} (63%) create mode 100644 allure-report/data/test-cases/59863a86bad45fb3.json rename allure-report/data/test-cases/{8366dd539f3f636c.json => 59ab6d9b07f441c0.json} (67%) create mode 100644 allure-report/data/test-cases/59ff5157ed7e9ae.json rename allure-report/data/test-cases/{9275e1d85a023003.json => 5a22d7a269c3ca06.json} (55%) rename allure-report/data/test-cases/{5ef0ca25b0e8e9c5.json => 5a941d3b90762a67.json} (55%) delete mode 100644 allure-report/data/test-cases/5ae2799c264c377c.json rename allure-report/data/test-cases/{8b31152bd581baeb.json => 5b9aa5357d8d514d.json} (70%) rename allure-report/data/test-cases/{af8e91d1ccf7bcca.json => 5baa430d724786c4.json} (76%) delete mode 100644 allure-report/data/test-cases/5c281d5272513bfd.json rename allure-report/data/test-cases/{673535ed619b4051.json => 5d080f15b08c0b4f.json} (56%) delete mode 100644 allure-report/data/test-cases/5d312c5161e8ccab.json rename allure-report/data/test-cases/{36b9e5073b489f49.json => 5dad026541a05e65.json} (61%) rename allure-report/data/test-cases/{4ab943002f86b4e6.json => 5de6808258f0151f.json} (71%) rename allure-report/data/test-cases/{46081367fb92978f.json => 5e4b4c0a3aeae99e.json} (71%) rename allure-report/data/test-cases/{d65c16a1b47d468e.json => 5e6aa533c6c0fafa.json} (74%) delete mode 100644 allure-report/data/test-cases/5e8c0121e99e8c0.json delete mode 100644 allure-report/data/test-cases/5ecfe278b9d03b10.json rename allure-report/data/test-cases/{5dea07a70915ceac.json => 5fa0c36654622313.json} (73%) rename allure-report/data/test-cases/{94af406790439c52.json => 6022cdc8b5145e28.json} (78%) rename allure-report/data/test-cases/{f3ceb22d74ae937b.json => 613579922cc04140.json} (75%) rename allure-report/data/test-cases/{e798d2f5cc38e024.json => 614b9e2de4457676.json} (66%) rename allure-report/data/test-cases/{7ba8a4247f4c6307.json => 616180d049b16d1d.json} (58%) rename allure-report/data/test-cases/{d8e9539521c4ca00.json => 627da61e5891aa44.json} (63%) delete mode 100644 allure-report/data/test-cases/62e4f6698c2439c.json rename allure-report/data/test-cases/{d8848c3e22df5008.json => 63bb569f11b7f542.json} (61%) rename allure-report/data/test-cases/{34569132e9551c33.json => 645c6c05562d2f01.json} (70%) rename allure-report/data/test-cases/{8fac702aa93d2093.json => 64a44b1c9018ad85.json} (58%) rename allure-report/data/test-cases/{ebad35c5d56f477f.json => 650faaf602cc8f99.json} (59%) rename allure-report/data/test-cases/{2fc3a43f4af43f00.json => 6566b62febd2f997.json} (72%) rename allure-report/data/test-cases/{5cbeef874f8f5965.json => 673ecd99dac0c86e.json} (65%) rename allure-report/data/test-cases/{c1f2317d20109e13.json => 675849fee1009391.json} (63%) create mode 100644 allure-report/data/test-cases/68c4a39d8a6017b.json create mode 100644 allure-report/data/test-cases/693c5b2693478689.json rename allure-report/data/test-cases/{5e4b0e05a0862f7e.json => 69f65011f131e2b6.json} (65%) create mode 100644 allure-report/data/test-cases/6a1d96979e635e7f.json delete mode 100644 allure-report/data/test-cases/6a770856a19e186.json rename allure-report/data/test-cases/{9bb9bf100d008741.json => 6a793815cad01bd2.json} (62%) rename allure-report/data/test-cases/{ccf5a8c46639d0ec.json => 6ab6caccad49b468.json} (64%) rename allure-report/data/test-cases/{73e2d6b3532a4935.json => 6af8fedb1f0ef3c6.json} (72%) rename allure-report/data/test-cases/{918346e849cd43c1.json => 6b00dc7a9142ab25.json} (85%) rename allure-report/data/test-cases/{a83637127d81f7d9.json => 6c1504a4fcfadf69.json} (57%) delete mode 100644 allure-report/data/test-cases/6c5d99461aa2603.json delete mode 100644 allure-report/data/test-cases/6c6b3f6be4f1b963.json rename allure-report/data/test-cases/{63cbfe00daba1c69.json => 6cad203fab564c60.json} (63%) rename allure-report/data/test-cases/{1e32519d766f390f.json => 6d22e154a5a83d80.json} (71%) rename allure-report/data/test-cases/{a20677ca4b1de4b9.json => 6d9270ca3330737a.json} (71%) create mode 100644 allure-report/data/test-cases/6d9afe9fda19581e.json rename allure-report/data/test-cases/{6b9974e5ba1b9bbc.json => 6e797d850b813669.json} (65%) rename allure-report/data/test-cases/{127152ed6f6510da.json => 6e940c353ac4ade9.json} (91%) rename allure-report/data/test-cases/{564be6d750e08ee1.json => 6ea719d6e8a376fb.json} (61%) rename allure-report/data/test-cases/{960c8899017a5d3c.json => 6fce95111dc1cc14.json} (63%) rename allure-report/data/test-cases/{a5e3b3442b4ab9dd.json => 70085274c959a3cb.json} (61%) rename allure-report/data/test-cases/{e160d8cbf25955af.json => 7028cdfd068e31be.json} (76%) rename allure-report/data/test-cases/{469371686ca36a1e.json => 704aacac2db91585.json} (67%) delete mode 100644 allure-report/data/test-cases/70e9bff1f7e13160.json rename allure-report/data/test-cases/{f921307aa8b56caa.json => 715edf62d220bc66.json} (57%) rename allure-report/data/test-cases/{3151ebffdc64c952.json => 71d876f4d19ecd67.json} (64%) rename allure-report/data/test-cases/{b8d68faa427e9f9d.json => 72010ab4f2692ae4.json} (52%) rename allure-report/data/test-cases/{654b50568a4f83a1.json => 743e871493ba28b4.json} (69%) rename allure-report/data/test-cases/{3a99d84c035d8b08.json => 7511d5ab976a748a.json} (61%) create mode 100644 allure-report/data/test-cases/761811e55728ed74.json rename allure-report/data/test-cases/{8fbe4fcea83005e2.json => 7637c123d5cf58af.json} (70%) rename allure-report/data/test-cases/{fb032b53923bc0e9.json => 76548c4669002681.json} (55%) rename allure-report/data/test-cases/{69f91e5f44fcbcaa.json => 76f8c586f8a804f0.json} (64%) create mode 100644 allure-report/data/test-cases/776765eba79884f4.json rename allure-report/data/test-cases/{498024d219d443a4.json => 78957f7729625c40.json} (63%) delete mode 100644 allure-report/data/test-cases/79e609aaa466cdf.json rename allure-report/data/test-cases/{1c92b73c681a87bf.json => 7a1019ba1beb3118.json} (62%) delete mode 100644 allure-report/data/test-cases/7a2bcbeb9bd4f3cc.json rename allure-report/data/test-cases/{3be027c950740ddd.json => 7ac9af93b3d2f297.json} (59%) rename allure-report/data/test-cases/{db7b4c897ddcf1a6.json => 7b2352a8e3675c67.json} (67%) rename allure-report/data/test-cases/{ad991ec2a2bdb70.json => 7b9876690035f17.json} (68%) rename allure-report/data/test-cases/{85d9d1820cce2f7e.json => 7c2750d825fae93b.json} (67%) rename allure-report/data/test-cases/{2fba83a53ac553ac.json => 7c3ec7eab2e0be6d.json} (67%) delete mode 100644 allure-report/data/test-cases/7d6f39edb784ab0.json rename allure-report/data/test-cases/{2d65aaadaa20d5c2.json => 7e0d94f0ee4e397d.json} (62%) delete mode 100644 allure-report/data/test-cases/7f2ec06c200d3086.json rename allure-report/data/test-cases/{a921030da8c9a520.json => 7f90afc62f8400f4.json} (52%) delete mode 100644 allure-report/data/test-cases/7fad3735c185529a.json rename allure-report/data/test-cases/{60f5877935ced5c5.json => 7fd5632b0213855d.json} (60%) rename allure-report/data/test-cases/{92b17e5074e54ef7.json => 801bdccb4e1aa824.json} (76%) rename allure-report/data/test-cases/{1f92252f389b32f9.json => 808471d4cfeae814.json} (67%) create mode 100644 allure-report/data/test-cases/80dd204b4961834.json rename allure-report/data/test-cases/{521b14729542d5c4.json => 82619e3fb0e84d4d.json} (67%) rename allure-report/data/test-cases/{4359475f5ec554bd.json => 826a0963540c6e75.json} (59%) rename allure-report/data/test-cases/{f39f65fd61fb96b1.json => 8271021679b0cc06.json} (76%) rename allure-report/data/test-cases/{742f26c42b460eb3.json => 82e3ff5b5bd4ac62.json} (68%) rename allure-report/data/test-cases/{7cef5a6f9a11a927.json => 83105e24306c53ac.json} (60%) rename allure-report/data/test-cases/{691795f9ff7d7473.json => 83f04a2f029479df.json} (75%) rename allure-report/data/test-cases/{a3beec2fa9a311c4.json => 8427b8f31ff35d6c.json} (69%) create mode 100644 allure-report/data/test-cases/8451096f3488e82.json rename allure-report/data/test-cases/{b44596de448230b8.json => 84aa3b23910872ae.json} (68%) rename allure-report/data/test-cases/{324c41918ed3c26a.json => 84f17449b7b13451.json} (68%) rename allure-report/data/test-cases/{62bf772c3a2aa5d2.json => 84fd4c67efee5295.json} (77%) rename allure-report/data/test-cases/{b6d72f7fe7ecd8e2.json => 85cc51a7df0f4a6c.json} (72%) create mode 100644 allure-report/data/test-cases/8655885cb5db7a58.json rename allure-report/data/test-cases/{ce5b44ba32daaf31.json => 874b39a75ad8fa3b.json} (58%) rename allure-report/data/test-cases/{a064a48d91c28f13.json => 87acfa055dcbe26a.json} (72%) rename allure-report/data/test-cases/{f6952117a88e4fd1.json => 87be1c294a496f4a.json} (77%) rename allure-report/data/test-cases/{dba3101c45ee1611.json => 884c8d1f852cc3dc.json} (57%) rename allure-report/data/test-cases/{620b2589fb870406.json => 88c7e92ae3f035ea.json} (72%) rename allure-report/data/test-cases/{f3421cdd7cb94a40.json => 895ce9b19a080b91.json} (77%) rename allure-report/data/test-cases/{c4e7b8420f6ec93b.json => 89c677f035513057.json} (72%) delete mode 100644 allure-report/data/test-cases/89ceeba296a3ea3.json rename allure-report/data/test-cases/{c7f51c235702ff2b.json => 8a0dfae45b96d6a4.json} (65%) rename allure-report/data/test-cases/{3fa15071b1bee987.json => 8a76fd0002a5824c.json} (60%) rename allure-report/data/test-cases/{831a4a72cd312e40.json => 8af4ebd0495f0e70.json} (72%) rename allure-report/data/test-cases/{8108c5f5e7aa4e08.json => 8baea38a8fa67e7e.json} (76%) rename allure-report/data/test-cases/{834db107455b4f48.json => 8c975897c57d974e.json} (69%) rename allure-report/data/test-cases/{cc10d0b4585e5c2e.json => 8d05bbd591902299.json} (92%) rename allure-report/data/test-cases/{451dd55d479da390.json => 8f884e4fa29bb7d4.json} (72%) rename allure-report/data/test-cases/{2993b93df714aac2.json => 9035abe5e1151932.json} (53%) rename allure-report/data/test-cases/{f5b1db39220bbcf9.json => 9098856200f13690.json} (54%) rename allure-report/data/test-cases/{7954a467ea4b79e1.json => 90a114379d845ff7.json} (68%) create mode 100644 allure-report/data/test-cases/90a24ba96aea3cfc.json rename allure-report/data/test-cases/{c0e2de6ef36ce602.json => 90eee3ddc83b1454.json} (68%) rename allure-report/data/test-cases/{bbfb47c5ac3f243c.json => 91e2410535ccc997.json} (64%) rename allure-report/data/test-cases/{2b5b6c744b764be6.json => 91ed862dacbec840.json} (93%) rename allure-report/data/test-cases/{3ea60f3a146e3d51.json => 92083f552ecb72c4.json} (62%) create mode 100644 allure-report/data/test-cases/92297f3cbdd8ad78.json create mode 100644 allure-report/data/test-cases/922eccc2ca8ed714.json create mode 100644 allure-report/data/test-cases/9393151991be7f33.json delete mode 100644 allure-report/data/test-cases/93b3042e12ae0dc2.json rename allure-report/data/test-cases/{f8cfd8001c2b32fd.json => 95011c2c3c205658.json} (61%) create mode 100644 allure-report/data/test-cases/95172229a5a9ad6.json rename allure-report/data/test-cases/{aee4538f6230f980.json => 9519f48ec729ba4c.json} (64%) rename allure-report/data/test-cases/{de3c176bdacd6cb0.json => 9525e56c1666fc0f.json} (60%) create mode 100644 allure-report/data/test-cases/95ddc175910ea52.json create mode 100644 allure-report/data/test-cases/95e612b16602c749.json create mode 100644 allure-report/data/test-cases/964ad50f448ed64d.json rename allure-report/data/test-cases/{83e3620464a462e0.json => 96bc84b88ae05ea5.json} (92%) delete mode 100644 allure-report/data/test-cases/9710b9a44c2e3c82.json rename allure-report/data/test-cases/{2c2a3e42bb3933c8.json => 972d0622d29729c4.json} (72%) create mode 100644 allure-report/data/test-cases/98200e3d5ae32ca.json rename allure-report/data/test-cases/{df3147d31fee6968.json => 98d0f495e6dcba7e.json} (63%) delete mode 100644 allure-report/data/test-cases/990d1d89497fbcc.json rename allure-report/data/test-cases/{611b4f8cf836294a.json => 996165a0ada95681.json} (68%) rename allure-report/data/test-cases/{a33fb2570aec1823.json => 99a050e28b9f808c.json} (60%) rename allure-report/data/test-cases/{d837297408a13c1e.json => 9a325845218dd6ae.json} (59%) rename allure-report/data/test-cases/{3e7b87e8229dd1a3.json => 9a93b35004a87c6a.json} (94%) rename allure-report/data/test-cases/{402ddb0b000d2943.json => 9b0990a97652b0f6.json} (52%) rename allure-report/data/test-cases/{1fa9af8d7ed67798.json => 9b4ada0bf1630c0a.json} (64%) rename allure-report/data/test-cases/{4c3877c30e625752.json => 9b82a842fdc9b867.json} (69%) rename allure-report/data/test-cases/{6bb1a909958ad3a2.json => 9c38060cc376f686.json} (61%) rename allure-report/data/test-cases/{2ed8dfd7ca5a3d13.json => 9cb8749ab5d5d5c7.json} (70%) rename allure-report/data/test-cases/{39e365f7b1aa879c.json => 9cc84b4c3c851a20.json} (71%) delete mode 100644 allure-report/data/test-cases/9d396e0b9ed83131.json rename allure-report/data/test-cases/{93145ed3e3e64e21.json => 9d8518015a2b07b6.json} (78%) rename allure-report/data/test-cases/{c0ff31e127206139.json => 9e5b993187ac8b27.json} (67%) rename allure-report/data/test-cases/{e13311d47c82f25c.json => 9f6955234023cbe8.json} (64%) rename allure-report/data/test-cases/{cd298347a8b67e93.json => 9f7fc4731241a976.json} (63%) rename allure-report/data/test-cases/{e4e2296a825eac3f.json => a08dd22616aac704.json} (94%) create mode 100644 allure-report/data/test-cases/a10d36c92cf89a63.json rename allure-report/data/test-cases/{14b78fc9da736d87.json => a1571db34190da47.json} (73%) delete mode 100644 allure-report/data/test-cases/a2776f2124bd86f4.json delete mode 100644 allure-report/data/test-cases/a2cb5446a34df86.json rename allure-report/data/test-cases/{6e0cb0022d9ce284.json => a2fbd8f640be4431.json} (73%) rename allure-report/data/test-cases/{bf1274fce77ea3c3.json => a381266642fdbdd2.json} (73%) rename allure-report/data/test-cases/{c11bd2bbb0f17cd9.json => a492d74df14be54a.json} (63%) create mode 100644 allure-report/data/test-cases/a4b7cb6ba7726224.json create mode 100644 allure-report/data/test-cases/a4f7c6dc4c7e84.json rename allure-report/data/test-cases/{8a609bc5e3d23df9.json => a50af3a4d2a7afb5.json} (66%) rename allure-report/data/test-cases/{cb14dd2e679669bc.json => a51a382d521d00cc.json} (51%) rename allure-report/data/test-cases/{e66c4d32858afd04.json => a54c934450b934d7.json} (81%) rename allure-report/data/test-cases/{f8abc15630ec06cb.json => a5f55a655c70213f.json} (67%) create mode 100644 allure-report/data/test-cases/a60fe7d0456e1873.json rename allure-report/data/test-cases/{c3671be37bb5a0b6.json => a6a0450be3f30fe6.json} (64%) rename allure-report/data/test-cases/{6827fd264cb4d263.json => a6bf4a932c1ec147.json} (72%) rename allure-report/data/test-cases/{9864dd17c374a4d8.json => a70604cd2465a183.json} (76%) rename allure-report/data/test-cases/{291bd12f30edb56f.json => a70ffb4d0a92e5c8.json} (64%) rename allure-report/data/test-cases/{9f56f65d85b3cd20.json => a90fdb1fb3683308.json} (62%) rename allure-report/data/test-cases/{8fbff2bb58c8a587.json => a93bd997ced3859a.json} (62%) rename allure-report/data/test-cases/{12da189269ca1ca6.json => a96041a690fcc058.json} (72%) rename allure-report/data/test-cases/{502fa7fe3b72cd9a.json => a97caba53074497b.json} (54%) create mode 100644 allure-report/data/test-cases/a9f33e581ec48813.json delete mode 100644 allure-report/data/test-cases/a9fa2bf5091c83a.json delete mode 100644 allure-report/data/test-cases/aac9dbbaca38b054.json create mode 100644 allure-report/data/test-cases/aacbcab78401e86c.json delete mode 100644 allure-report/data/test-cases/ab402f3759df06f.json rename allure-report/data/test-cases/{6400e4ce63a07c82.json => ab4f4753656b93ab.json} (69%) rename allure-report/data/test-cases/{da73571dee0329e4.json => ab70ba446dcfc9e3.json} (70%) rename allure-report/data/test-cases/{9835bf28bd7241b2.json => abba91be3722688b.json} (71%) rename allure-report/data/test-cases/{390f34682d25d573.json => ac127c4c71bf788d.json} (70%) rename allure-report/data/test-cases/{aca9d99cb0e5842e.json => ace382695affabdf.json} (68%) rename allure-report/data/test-cases/{781079de643a720d.json => ae7d3fce45bf33fb.json} (63%) create mode 100644 allure-report/data/test-cases/aefb4681bbbff0c9.json rename allure-report/data/test-cases/{224cd2efeafa2904.json => af543ced061d8858.json} (72%) rename allure-report/data/test-cases/{ffc3f48cf5f0bf9f.json => af580569ddf3e366.json} (68%) rename allure-report/data/test-cases/{627a7fd2fe38a284.json => afae2f3faef55f2b.json} (69%) rename allure-report/data/test-cases/{b14acb4de8eb0e3a.json => afce902b58f1520a.json} (68%) rename allure-report/data/test-cases/{913459f449cde9ee.json => b01fd4e8d095b60f.json} (63%) rename allure-report/data/test-cases/{3e075566662ada8b.json => b0f9b8de2eb00fed.json} (50%) rename allure-report/data/test-cases/{27163d5f2266ba73.json => b0ff51cf7a3c2781.json} (68%) rename allure-report/data/test-cases/{204a2114486cc2f9.json => b1c2f2381b1441f6.json} (67%) rename allure-report/data/test-cases/{3ac1ab4d60441085.json => b1ce4d34a0cdd5eb.json} (64%) rename allure-report/data/test-cases/{164087ecc666d9a0.json => b1d54b76165521a0.json} (59%) rename allure-report/data/test-cases/{d8f6e0603b79e82b.json => b29b4bc1c1fe7917.json} (70%) create mode 100644 allure-report/data/test-cases/b3223ce64ed8bee2.json delete mode 100644 allure-report/data/test-cases/b3ab40391b5da28d.json rename allure-report/data/test-cases/{acc544bb5166af1c.json => b48a50dffbb61197.json} (70%) rename allure-report/data/test-cases/{656902c8b3d6796a.json => b4fb6cdf4d1895f5.json} (73%) rename allure-report/data/test-cases/{7f890ca68cdfc481.json => b5a45493f51c1d67.json} (58%) rename allure-report/data/test-cases/{cf4cdc94d1e2968c.json => b5f6e3f148925a4f.json} (71%) create mode 100644 allure-report/data/test-cases/b6301a55868859d.json rename allure-report/data/test-cases/{900ed6bd99df3d56.json => b72d4e8ad3288d1b.json} (73%) rename allure-report/data/test-cases/{9efe2e125f6b46a3.json => b8a68af9dbc0f892.json} (62%) rename allure-report/data/test-cases/{b864bfcb14132f63.json => b8b1a20b1ac22e64.json} (61%) rename allure-report/data/test-cases/{af5a357d104e13f2.json => b96004f0b179053d.json} (63%) rename allure-report/data/test-cases/{73d92f8f0c07772d.json => b97e3a9bf54f17f3.json} (65%) rename allure-report/data/test-cases/{79507cba518971f8.json => b99ca9a8ecf19524.json} (65%) create mode 100644 allure-report/data/test-cases/b9d7d0d5afb8734c.json rename allure-report/data/test-cases/{55df1ff2977881cd.json => bb0af84ecb430495.json} (78%) delete mode 100644 allure-report/data/test-cases/bb5e32abc058341d.json delete mode 100644 allure-report/data/test-cases/bc3230f80ad8864d.json rename allure-report/data/test-cases/{b7aabddcd2b39bc4.json => bc5cb7d257f882a1.json} (94%) rename allure-report/data/test-cases/{ab9ac5c7ad2aba25.json => bd5d964c0a6197cf.json} (71%) delete mode 100644 allure-report/data/test-cases/bd89dc29359aa359.json delete mode 100644 allure-report/data/test-cases/bdcb772653d8aad.json rename allure-report/data/test-cases/{4a249bbc39e29652.json => be5b8c63ffdd840d.json} (72%) rename allure-report/data/test-cases/{35d53e86a3d51a7b.json => bf3022b66d91aba7.json} (68%) rename allure-report/data/test-cases/{b5e325c82192cbb2.json => bfd2093ec920e131.json} (71%) rename allure-report/data/test-cases/{966dbbb37b9c251e.json => bfe92f9ff640a644.json} (67%) rename allure-report/data/test-cases/{c1ed75effe27f7a1.json => c1d9afec6278b1a8.json} (64%) rename allure-report/data/test-cases/{b3f7088fed8dedd7.json => c1e0648976f6a694.json} (60%) rename allure-report/data/test-cases/{9592efbcf8c301ec.json => c1ea0a3d5ef9530e.json} (67%) rename allure-report/data/test-cases/{a4c528481d776554.json => c2776ae7e29336e9.json} (65%) delete mode 100644 allure-report/data/test-cases/c28b7a3b6367ab64.json create mode 100644 allure-report/data/test-cases/c35da98b55fb5e6b.json rename allure-report/data/test-cases/{257a5ad111bd69a7.json => c37dfc82a096ec09.json} (81%) delete mode 100644 allure-report/data/test-cases/c462a5b80d49c98b.json rename allure-report/data/test-cases/{164c80d8543f0b6f.json => c707b9e0a465edac.json} (74%) delete mode 100644 allure-report/data/test-cases/c7101c0acde15873.json rename allure-report/data/test-cases/{af191d67a3f53ad3.json => c799982c38b97fcc.json} (53%) rename allure-report/data/test-cases/{647dfe698e2a6fdb.json => c7c7f21adbc73706.json} (56%) delete mode 100644 allure-report/data/test-cases/c8a6a3e5884b319c.json rename allure-report/data/test-cases/{5d71d9a7614d7699.json => c8be7042d182d7bb.json} (70%) create mode 100644 allure-report/data/test-cases/ca423ea5ac901436.json rename allure-report/data/test-cases/{47c7c905d0e48c01.json => cabe377ec9af3c98.json} (68%) create mode 100644 allure-report/data/test-cases/cb5c8ea3b9796931.json create mode 100644 allure-report/data/test-cases/cc5bed1d964110c.json delete mode 100644 allure-report/data/test-cases/ccc9716a60da4021.json rename allure-report/data/test-cases/{3bd61bc704b417e2.json => cd862d92408a60a2.json} (60%) rename allure-report/data/test-cases/{56ca3efbcb176750.json => cdb95614a08f7813.json} (65%) rename allure-report/data/test-cases/{f5a3f0d4d035c3a4.json => cde5d1b46b10d7ac.json} (71%) rename allure-report/data/test-cases/{7d1621a20d6f8fe7.json => cdfe495bc85470d2.json} (64%) rename allure-report/data/test-cases/{fcb7b98557709e7f.json => ce00ffd36d904f61.json} (75%) rename allure-report/data/test-cases/{f4c5ff18f0370583.json => cf3552eb00513a1a.json} (72%) rename allure-report/data/test-cases/{53d75ff9d73daf75.json => d0862b5213f7938f.json} (64%) delete mode 100644 allure-report/data/test-cases/d1585e7c78fd8d06.json create mode 100644 allure-report/data/test-cases/d1a80d9f422182d.json rename allure-report/data/test-cases/{fbbb69f84c1b433f.json => d1aabae67bc18ba0.json} (66%) rename allure-report/data/test-cases/{1d2c6842ef40288f.json => d3037fd25424c6f3.json} (59%) rename allure-report/data/test-cases/{5ecd182a341dd7b4.json => d4c41912963969d7.json} (68%) rename allure-report/data/test-cases/{6ce4bba2ff4664c2.json => d558fd9b3bcee4ae.json} (65%) create mode 100644 allure-report/data/test-cases/d57f06aa2f911f40.json rename allure-report/data/test-cases/{9f53adfade05c52d.json => d5804044d1767680.json} (68%) rename allure-report/data/test-cases/{5329936079819472.json => d5a389260d41a743.json} (61%) rename allure-report/data/test-cases/{e1e70dabc7dad91e.json => d5ae1235bc27ccba.json} (64%) rename allure-report/data/test-cases/{51e59668932e1548.json => d5eb9c17e95fe424.json} (79%) rename allure-report/data/test-cases/{838103f8c8d195b2.json => d62d5681db1186b9.json} (80%) delete mode 100644 allure-report/data/test-cases/d6d06cbc227917e.json rename allure-report/data/test-cases/{ad08cb0fb6eef203.json => d6d51bdb700f78e3.json} (72%) rename allure-report/data/test-cases/{af3c309699fc2b8b.json => d6e4ebd44034ff08.json} (74%) rename allure-report/data/test-cases/{6881087bd4c8b374.json => d6e6e46de805754f.json} (61%) rename allure-report/data/test-cases/{57946e73be805e2a.json => d7357eaa8c15ec47.json} (67%) rename allure-report/data/test-cases/{2f476988eff12f93.json => d757011cc42c205e.json} (50%) rename allure-report/data/test-cases/{a80b9adf611eb67d.json => d7c1fb6f236110ca.json} (64%) rename allure-report/data/test-cases/{9032085b91ce5826.json => d880bf6ff390f682.json} (76%) create mode 100644 allure-report/data/test-cases/d8d5d2ee94f4b051.json rename allure-report/data/test-cases/{863d982a547ab48a.json => d9458c8615b9e985.json} (69%) rename allure-report/data/test-cases/{e885db3276511b9a.json => d946600dafcc1f6d.json} (60%) rename allure-report/data/test-cases/{7e0e76f32ac7ce4e.json => d9a6d590487a20fd.json} (56%) rename allure-report/data/test-cases/{b867e5092f796e5b.json => da49bdf1737798b8.json} (71%) rename allure-report/data/test-cases/{1c1ac4b8936ce5ba.json => db267da7b8a1b004.json} (61%) rename allure-report/data/test-cases/{5e662d87bdd84a50.json => dbd8c0e7d9b1bcd0.json} (74%) rename allure-report/data/test-cases/{f52a489cb0add672.json => dc29e000a4adcd25.json} (58%) rename allure-report/data/test-cases/{abf7d26758417bf9.json => dcb40cbe5ee38417.json} (67%) rename allure-report/data/test-cases/{a37b17c93d1df521.json => dcfefe9c10c1f5d2.json} (61%) rename allure-report/data/test-cases/{4738c72e7ac209e4.json => ddd327d6f403c655.json} (74%) rename allure-report/data/test-cases/{6af4bd9ac0e81498.json => ddf52bfae3cd34f4.json} (74%) rename allure-report/data/test-cases/{3d3e842542b066f3.json => de04793abb90de01.json} (69%) rename allure-report/data/test-cases/{91ff78dc5a767b91.json => dead64fe3d4f484d.json} (56%) create mode 100644 allure-report/data/test-cases/debf2b82465b0240.json rename allure-report/data/test-cases/{1c8034b1a6365fc2.json => dee0416f79d22a0d.json} (72%) rename allure-report/data/test-cases/{1152e12f582a6d83.json => deed80da6e08bd69.json} (62%) rename allure-report/data/test-cases/{c7106989a12e3c0a.json => df0c490941a6877a.json} (65%) rename allure-report/data/test-cases/{62ca3121cbd75dda.json => df0cebb647c4d6ba.json} (69%) rename allure-report/data/test-cases/{d8b0041f6b0bb073.json => df11ad8a9930a85d.json} (62%) delete mode 100644 allure-report/data/test-cases/dfb4af6de633e98.json rename allure-report/data/test-cases/{acc95e26a53d92ff.json => e03974f538ea8ee6.json} (55%) rename allure-report/data/test-cases/{776a48c95cfacbf7.json => e0851c0ba53ec6a9.json} (69%) rename allure-report/data/test-cases/{a7151a5672bbc2f6.json => e0d5281d75a0b4df.json} (63%) create mode 100644 allure-report/data/test-cases/e0e034728609b0e2.json rename allure-report/data/test-cases/{2cbc31ebfbb61905.json => e10517b1ea4eb479.json} (63%) rename allure-report/data/test-cases/{380e12b965b39180.json => e1471afe863c97c8.json} (65%) rename allure-report/data/test-cases/{ea06cb7ae28c8945.json => e21dc9fd5c9ffdad.json} (59%) delete mode 100644 allure-report/data/test-cases/e2620475a1119269.json rename allure-report/data/test-cases/{886067e282725f43.json => e2d8966b9a0500aa.json} (66%) rename allure-report/data/test-cases/{77e7a047aea456b4.json => e41551e078ed42ea.json} (69%) delete mode 100644 allure-report/data/test-cases/e5822ae7754d2e8.json rename allure-report/data/test-cases/{547f04beeb8e83b4.json => e5ae32dea8d8e5c3.json} (71%) rename allure-report/data/test-cases/{b78c37ec3b0f496f.json => e6a3da330525d2f4.json} (59%) create mode 100644 allure-report/data/test-cases/e6d62aae7d602336.json rename allure-report/data/test-cases/{682fdddcf91d8640.json => e722b9059cce92a0.json} (68%) rename allure-report/data/test-cases/{c63189b867db5809.json => e738d6d09d0feb9e.json} (79%) create mode 100644 allure-report/data/test-cases/e7c5e93321efe39.json create mode 100644 allure-report/data/test-cases/e7eaed29fbceb75.json rename allure-report/data/test-cases/{e858a30a444a5013.json => e7f4165c790464aa.json} (61%) delete mode 100644 allure-report/data/test-cases/e9046461411ed99f.json rename allure-report/data/test-cases/{ce50dc4c6a1469d8.json => e99ff83f7419b047.json} (73%) rename allure-report/data/test-cases/{55242408764fe7c9.json => e9a0c341753d9526.json} (72%) rename allure-report/data/test-cases/{a0cc441d7d4eb4dd.json => e9aaea22e808b4eb.json} (65%) create mode 100644 allure-report/data/test-cases/eb3e9f6b3780b454.json rename allure-report/data/test-cases/{35dde5e5df78aa3f.json => ec6e703f7fb1f8f7.json} (78%) delete mode 100644 allure-report/data/test-cases/ecd029e0f98c606.json rename allure-report/data/test-cases/{b2086dbec02630b0.json => ecfcf126e0555bf0.json} (62%) rename allure-report/data/test-cases/{2f09ef1a750aec43.json => ed30e8563a89229a.json} (68%) rename allure-report/data/test-cases/{eafa77373a5f8e86.json => ed37a80783d347db.json} (68%) rename allure-report/data/test-cases/{c08b2480b8f26290.json => ed5fbc4b14885f68.json} (71%) rename allure-report/data/test-cases/{8772a5f624316184.json => edde73c32cfd2214.json} (66%) rename allure-report/data/test-cases/{b32352034ba0a692.json => ede582dcc2b34bf3.json} (65%) rename allure-report/data/test-cases/{91e3c1348f0cd9d2.json => ee325afc05dcb3e8.json} (72%) rename allure-report/data/test-cases/{3edaeb1c9114b312.json => ee4f0501c1152713.json} (76%) rename allure-report/data/test-cases/{1585a2916e07d272.json => ef7cb2e79441187e.json} (65%) rename allure-report/data/test-cases/{14e29fc6b385d9d8.json => ef7e94367cfcafa4.json} (62%) delete mode 100644 allure-report/data/test-cases/f0d79dba84dbdf82.json rename allure-report/data/test-cases/{9d90f23892be7ac3.json => f1ac1e81621379df.json} (63%) delete mode 100644 allure-report/data/test-cases/f1acd3007b7873ed.json delete mode 100644 allure-report/data/test-cases/f1c4cfcd59974ea.json rename allure-report/data/test-cases/{c32d359a7c2bd36e.json => f3ffd9201b6a1ce3.json} (69%) rename allure-report/data/test-cases/{8316509a5b8b5aee.json => f4ad45627654b5fc.json} (93%) create mode 100644 allure-report/data/test-cases/f50d911c93ffbcb0.json rename allure-report/data/test-cases/{5414177affd6f821.json => f534ec218cc4d08d.json} (53%) rename allure-report/data/test-cases/{d28ad8f6f2d47ab4.json => f5c85086c052dc96.json} (73%) delete mode 100644 allure-report/data/test-cases/f5da6537a014533.json rename allure-report/data/test-cases/{eff82dffd26d2650.json => f5f1282b0eb8a484.json} (70%) rename allure-report/data/test-cases/{f7dd3a91cc990f40.json => f6e7e7d9161dd5e2.json} (53%) rename allure-report/data/test-cases/{5c64823a2a73f974.json => f711bbcd16ab2119.json} (68%) rename allure-report/data/test-cases/{dabab8081cda2c59.json => f72e37459a6b99ff.json} (73%) rename allure-report/data/test-cases/{5021f02eb7703e13.json => f7ad7c048e8324d3.json} (76%) rename allure-report/data/test-cases/{99f691b62c390084.json => f80099cf6c294d2b.json} (67%) rename allure-report/data/test-cases/{28404a37037093b2.json => f81d7a6e8f8b1259.json} (74%) rename allure-report/data/test-cases/{8b0e9e4ff2cb0b57.json => f8800adc39df0e11.json} (66%) create mode 100644 allure-report/data/test-cases/f8cc7e1ba1a4852f.json rename allure-report/data/test-cases/{ffd2584e60c021f7.json => f90c5e53432ea6c2.json} (66%) rename allure-report/data/test-cases/{b98125cb150cd794.json => fa5b03edd274b2cd.json} (57%) rename allure-report/data/test-cases/{c54f5aa2ef47fd1b.json => fa7d64e0658fe1a2.json} (68%) rename allure-report/data/test-cases/{bdc34fe177dff4e3.json => fabe21d8eab469bd.json} (72%) rename allure-report/data/test-cases/{af6e405f57c78056.json => fbd4191028146e80.json} (73%) rename allure-report/data/test-cases/{79e39b6957e2fa23.json => fc2c5a5df6e26162.json} (64%) delete mode 100644 allure-report/data/test-cases/fca0a479e6a9caa.json rename allure-report/data/test-cases/{d3cdbdd9e8f95c74.json => fcd8cc6f9f4777c4.json} (74%) rename allure-report/data/test-cases/{ad12195e4f930686.json => fd395297ed368b03.json} (65%) rename allure-report/data/test-cases/{689de206e9df0991.json => fd4d83368b6d5d5e.json} (75%) create mode 100644 allure-report/data/test-cases/fdff4b964fae0427.json diff --git a/allure-report/data/attachments/688ad3759760cab8.txt b/allure-report/data/attachments/108fa13d4dc4aeec.txt similarity index 100% rename from allure-report/data/attachments/688ad3759760cab8.txt rename to allure-report/data/attachments/108fa13d4dc4aeec.txt diff --git a/allure-report/data/attachments/2ec0e0654514a566.txt b/allure-report/data/attachments/10bda13bc4365ba8.txt similarity index 100% rename from allure-report/data/attachments/2ec0e0654514a566.txt rename to allure-report/data/attachments/10bda13bc4365ba8.txt diff --git a/allure-report/data/attachments/4519d4a3b473573d.txt b/allure-report/data/attachments/1124405dfe872592.txt similarity index 100% rename from allure-report/data/attachments/4519d4a3b473573d.txt rename to allure-report/data/attachments/1124405dfe872592.txt diff --git a/allure-report/data/attachments/5beccad181be3c1.txt b/allure-report/data/attachments/11a60e97d1d843b1.txt similarity index 100% rename from allure-report/data/attachments/5beccad181be3c1.txt rename to allure-report/data/attachments/11a60e97d1d843b1.txt diff --git a/allure-report/data/attachments/5e9de29522b3bca9.txt b/allure-report/data/attachments/1200393e54a2122a.txt similarity index 100% rename from allure-report/data/attachments/5e9de29522b3bca9.txt rename to allure-report/data/attachments/1200393e54a2122a.txt diff --git a/allure-report/data/attachments/204dbc79412a1f1a.txt b/allure-report/data/attachments/120b1ea05b87d5bf.txt similarity index 100% rename from allure-report/data/attachments/204dbc79412a1f1a.txt rename to allure-report/data/attachments/120b1ea05b87d5bf.txt diff --git a/allure-report/data/attachments/bb19908fee85e940.txt b/allure-report/data/attachments/121911719c53624e.txt similarity index 100% rename from allure-report/data/attachments/bb19908fee85e940.txt rename to allure-report/data/attachments/121911719c53624e.txt diff --git a/allure-report/data/attachments/1f59d384f3f447d6.txt b/allure-report/data/attachments/13b8ab05fc59b31a.txt similarity index 100% rename from allure-report/data/attachments/1f59d384f3f447d6.txt rename to allure-report/data/attachments/13b8ab05fc59b31a.txt diff --git a/allure-report/data/attachments/e7d480a17e666525.txt b/allure-report/data/attachments/143162d049c6ebb2.txt similarity index 100% rename from allure-report/data/attachments/e7d480a17e666525.txt rename to allure-report/data/attachments/143162d049c6ebb2.txt diff --git a/allure-report/data/attachments/985fda141a79d4a4.txt b/allure-report/data/attachments/15329bd7c41462e0.txt similarity index 100% rename from allure-report/data/attachments/985fda141a79d4a4.txt rename to allure-report/data/attachments/15329bd7c41462e0.txt diff --git a/allure-report/data/attachments/66a01ccf7a5d5fb.txt b/allure-report/data/attachments/1569f62e2424ff1a.txt similarity index 100% rename from allure-report/data/attachments/66a01ccf7a5d5fb.txt rename to allure-report/data/attachments/1569f62e2424ff1a.txt diff --git a/allure-report/data/attachments/33f2d7a8f9aae90.txt b/allure-report/data/attachments/15c99b80ae7e843e.txt similarity index 100% rename from allure-report/data/attachments/33f2d7a8f9aae90.txt rename to allure-report/data/attachments/15c99b80ae7e843e.txt diff --git a/allure-report/data/attachments/761f3173e0272363.txt b/allure-report/data/attachments/17deef7e1cb66e60.txt similarity index 100% rename from allure-report/data/attachments/761f3173e0272363.txt rename to allure-report/data/attachments/17deef7e1cb66e60.txt diff --git a/allure-report/data/attachments/1720cf64cd92fe35.txt b/allure-report/data/attachments/187a7b2783fd6cca.txt similarity index 100% rename from allure-report/data/attachments/1720cf64cd92fe35.txt rename to allure-report/data/attachments/187a7b2783fd6cca.txt diff --git a/allure-report/data/attachments/69eb503d0999422e.txt b/allure-report/data/attachments/189c0101c5666165.txt similarity index 100% rename from allure-report/data/attachments/69eb503d0999422e.txt rename to allure-report/data/attachments/189c0101c5666165.txt diff --git a/allure-report/data/attachments/6da8b20d7eb3affa.txt b/allure-report/data/attachments/18b79283e1874d20.txt similarity index 100% rename from allure-report/data/attachments/6da8b20d7eb3affa.txt rename to allure-report/data/attachments/18b79283e1874d20.txt diff --git a/allure-report/data/attachments/34df9b6773cb0004.txt b/allure-report/data/attachments/1a0603f4ec8cac73.txt similarity index 100% rename from allure-report/data/attachments/34df9b6773cb0004.txt rename to allure-report/data/attachments/1a0603f4ec8cac73.txt diff --git a/allure-report/data/attachments/4617a41c1cef3094.txt b/allure-report/data/attachments/1a6c1f836394adf7.txt similarity index 100% rename from allure-report/data/attachments/4617a41c1cef3094.txt rename to allure-report/data/attachments/1a6c1f836394adf7.txt diff --git a/allure-report/data/attachments/2e869ed25c4100a9.txt b/allure-report/data/attachments/1a8cbd3585c92133.txt similarity index 100% rename from allure-report/data/attachments/2e869ed25c4100a9.txt rename to allure-report/data/attachments/1a8cbd3585c92133.txt diff --git a/allure-report/data/attachments/22a1c98a4ff92571.txt b/allure-report/data/attachments/1ae3e81e546a5a71.txt similarity index 100% rename from allure-report/data/attachments/22a1c98a4ff92571.txt rename to allure-report/data/attachments/1ae3e81e546a5a71.txt diff --git a/allure-report/data/attachments/1a1ef79b357be404.txt b/allure-report/data/attachments/1c3dfeaa04fe2908.txt similarity index 100% rename from allure-report/data/attachments/1a1ef79b357be404.txt rename to allure-report/data/attachments/1c3dfeaa04fe2908.txt diff --git a/allure-report/data/attachments/a541c471a2ff7ad0.txt b/allure-report/data/attachments/1c3fe0844baefb8c.txt similarity index 100% rename from allure-report/data/attachments/a541c471a2ff7ad0.txt rename to allure-report/data/attachments/1c3fe0844baefb8c.txt diff --git a/allure-report/data/attachments/1dd67237b9ff3f68.txt b/allure-report/data/attachments/1c7070c159aacf2e.txt similarity index 100% rename from allure-report/data/attachments/1dd67237b9ff3f68.txt rename to allure-report/data/attachments/1c7070c159aacf2e.txt diff --git a/allure-report/data/attachments/8b0a6143164600f.txt b/allure-report/data/attachments/1e9020a1f427ff16.txt similarity index 100% rename from allure-report/data/attachments/8b0a6143164600f.txt rename to allure-report/data/attachments/1e9020a1f427ff16.txt diff --git a/allure-report/data/attachments/2d2ee55342013cf8.txt b/allure-report/data/attachments/1fb0e4eb0d1b73ee.txt similarity index 100% rename from allure-report/data/attachments/2d2ee55342013cf8.txt rename to allure-report/data/attachments/1fb0e4eb0d1b73ee.txt diff --git a/allure-report/data/attachments/38a17c1a51c46902.txt b/allure-report/data/attachments/1fc52e2c49c9d723.txt similarity index 100% rename from allure-report/data/attachments/38a17c1a51c46902.txt rename to allure-report/data/attachments/1fc52e2c49c9d723.txt diff --git a/allure-report/data/attachments/aa0f072266b0c8b.txt b/allure-report/data/attachments/1ffc7fe5a8d7f425.txt similarity index 100% rename from allure-report/data/attachments/aa0f072266b0c8b.txt rename to allure-report/data/attachments/1ffc7fe5a8d7f425.txt diff --git a/allure-report/data/attachments/f74825a6f4542c1b.txt b/allure-report/data/attachments/207d1fd44f82d410.txt similarity index 100% rename from allure-report/data/attachments/f74825a6f4542c1b.txt rename to allure-report/data/attachments/207d1fd44f82d410.txt diff --git a/allure-report/data/attachments/167e62bfea691dff.txt b/allure-report/data/attachments/2143b544775b35fe.txt similarity index 100% rename from allure-report/data/attachments/167e62bfea691dff.txt rename to allure-report/data/attachments/2143b544775b35fe.txt diff --git a/allure-report/data/attachments/57e5598cd8b8ad42.txt b/allure-report/data/attachments/218f40b324526f4d.txt similarity index 100% rename from allure-report/data/attachments/57e5598cd8b8ad42.txt rename to allure-report/data/attachments/218f40b324526f4d.txt diff --git a/allure-report/data/attachments/3a5fe84144db5541.txt b/allure-report/data/attachments/22862af9bcf091d4.txt similarity index 100% rename from allure-report/data/attachments/3a5fe84144db5541.txt rename to allure-report/data/attachments/22862af9bcf091d4.txt diff --git a/allure-report/data/attachments/d25c0f30c04fe1a7.txt b/allure-report/data/attachments/22f31b147f604ade.txt similarity index 100% rename from allure-report/data/attachments/d25c0f30c04fe1a7.txt rename to allure-report/data/attachments/22f31b147f604ade.txt diff --git a/allure-report/data/attachments/178127e0b150af3e.txt b/allure-report/data/attachments/251428633abf607e.txt similarity index 100% rename from allure-report/data/attachments/178127e0b150af3e.txt rename to allure-report/data/attachments/251428633abf607e.txt diff --git a/allure-report/data/attachments/b3ed0c860ff49ada.txt b/allure-report/data/attachments/257782fa3edc8402.txt similarity index 100% rename from allure-report/data/attachments/b3ed0c860ff49ada.txt rename to allure-report/data/attachments/257782fa3edc8402.txt diff --git a/allure-report/data/attachments/70c3d96b077c7c36.txt b/allure-report/data/attachments/25c7546e6e88bf29.txt similarity index 100% rename from allure-report/data/attachments/70c3d96b077c7c36.txt rename to allure-report/data/attachments/25c7546e6e88bf29.txt diff --git a/allure-report/data/attachments/9e2bb4472566335f.txt b/allure-report/data/attachments/2613f5d1bde5e090.txt similarity index 100% rename from allure-report/data/attachments/9e2bb4472566335f.txt rename to allure-report/data/attachments/2613f5d1bde5e090.txt diff --git a/allure-report/data/attachments/82b07dc960eb0dfb.txt b/allure-report/data/attachments/26c574f777b434b5.txt similarity index 100% rename from allure-report/data/attachments/82b07dc960eb0dfb.txt rename to allure-report/data/attachments/26c574f777b434b5.txt diff --git a/allure-report/data/attachments/bb5b7ec371919319.txt b/allure-report/data/attachments/2704cebfbdb23ee9.txt similarity index 100% rename from allure-report/data/attachments/bb5b7ec371919319.txt rename to allure-report/data/attachments/2704cebfbdb23ee9.txt diff --git a/allure-report/data/attachments/79e843dd93b69bc1.txt b/allure-report/data/attachments/270cdfea12dfee25.txt similarity index 100% rename from allure-report/data/attachments/79e843dd93b69bc1.txt rename to allure-report/data/attachments/270cdfea12dfee25.txt diff --git a/allure-report/data/attachments/93af2f644721a146.txt b/allure-report/data/attachments/27155577e4b86a95.txt similarity index 100% rename from allure-report/data/attachments/93af2f644721a146.txt rename to allure-report/data/attachments/27155577e4b86a95.txt diff --git a/allure-report/data/attachments/5ee29d280ede2dce.txt b/allure-report/data/attachments/272f73f71ea0c103.txt similarity index 100% rename from allure-report/data/attachments/5ee29d280ede2dce.txt rename to allure-report/data/attachments/272f73f71ea0c103.txt diff --git a/allure-report/data/attachments/67a6b516dff28930.txt b/allure-report/data/attachments/2738d7f17afba1b9.txt similarity index 100% rename from allure-report/data/attachments/67a6b516dff28930.txt rename to allure-report/data/attachments/2738d7f17afba1b9.txt diff --git a/allure-report/data/attachments/46bb9498c70949de.txt b/allure-report/data/attachments/27add2ef21833533.txt similarity index 100% rename from allure-report/data/attachments/46bb9498c70949de.txt rename to allure-report/data/attachments/27add2ef21833533.txt diff --git a/allure-report/data/attachments/7e868f0d93022512.txt b/allure-report/data/attachments/292d200c224939da.txt similarity index 100% rename from allure-report/data/attachments/7e868f0d93022512.txt rename to allure-report/data/attachments/292d200c224939da.txt diff --git a/allure-report/data/attachments/a41b5cadf707dc0f.txt b/allure-report/data/attachments/29ea9005f7d14049.txt similarity index 100% rename from allure-report/data/attachments/a41b5cadf707dc0f.txt rename to allure-report/data/attachments/29ea9005f7d14049.txt diff --git a/allure-report/data/attachments/1652eb7ad7f7ffae.txt b/allure-report/data/attachments/29f64ed4da9c0ecc.txt similarity index 100% rename from allure-report/data/attachments/1652eb7ad7f7ffae.txt rename to allure-report/data/attachments/29f64ed4da9c0ecc.txt diff --git a/allure-report/data/attachments/61a0c4c44acfdb4d.txt b/allure-report/data/attachments/2a724e02684b391.txt similarity index 100% rename from allure-report/data/attachments/61a0c4c44acfdb4d.txt rename to allure-report/data/attachments/2a724e02684b391.txt diff --git a/allure-report/data/attachments/9ef446de5bdc3b2.txt b/allure-report/data/attachments/2a9f69c076428754.txt similarity index 100% rename from allure-report/data/attachments/9ef446de5bdc3b2.txt rename to allure-report/data/attachments/2a9f69c076428754.txt diff --git a/allure-report/data/attachments/461c8c952ae09079.txt b/allure-report/data/attachments/2c0b65a9daada0df.txt similarity index 100% rename from allure-report/data/attachments/461c8c952ae09079.txt rename to allure-report/data/attachments/2c0b65a9daada0df.txt diff --git a/allure-report/data/attachments/51125223dfac2107.txt b/allure-report/data/attachments/2dcda4c0465e81d2.txt similarity index 100% rename from allure-report/data/attachments/51125223dfac2107.txt rename to allure-report/data/attachments/2dcda4c0465e81d2.txt diff --git a/allure-report/data/attachments/1b3f240af350b21a.txt b/allure-report/data/attachments/2f602fdb5599f0ec.txt similarity index 100% rename from allure-report/data/attachments/1b3f240af350b21a.txt rename to allure-report/data/attachments/2f602fdb5599f0ec.txt diff --git a/allure-report/data/attachments/a22ae5e3f6546093.txt b/allure-report/data/attachments/2fa0f7a126ad592b.txt similarity index 100% rename from allure-report/data/attachments/a22ae5e3f6546093.txt rename to allure-report/data/attachments/2fa0f7a126ad592b.txt diff --git a/allure-report/data/attachments/d0b51033cb9da8c3.txt b/allure-report/data/attachments/30383d555cbdd5c6.txt similarity index 100% rename from allure-report/data/attachments/d0b51033cb9da8c3.txt rename to allure-report/data/attachments/30383d555cbdd5c6.txt diff --git a/allure-report/data/attachments/3b422b59c38b206.txt b/allure-report/data/attachments/30d5c7b600785dbe.txt similarity index 100% rename from allure-report/data/attachments/3b422b59c38b206.txt rename to allure-report/data/attachments/30d5c7b600785dbe.txt diff --git a/allure-report/data/attachments/24af3f1690a1750.txt b/allure-report/data/attachments/32d8e8facf5868da.txt similarity index 100% rename from allure-report/data/attachments/24af3f1690a1750.txt rename to allure-report/data/attachments/32d8e8facf5868da.txt diff --git a/allure-report/data/attachments/2b46e4c3602d8a1.txt b/allure-report/data/attachments/336614ff4bde976d.txt similarity index 100% rename from allure-report/data/attachments/2b46e4c3602d8a1.txt rename to allure-report/data/attachments/336614ff4bde976d.txt diff --git a/allure-report/data/attachments/146ba33ea5b8b774.txt b/allure-report/data/attachments/33928ceb3bfb16f9.txt similarity index 100% rename from allure-report/data/attachments/146ba33ea5b8b774.txt rename to allure-report/data/attachments/33928ceb3bfb16f9.txt diff --git a/allure-report/data/attachments/55c2dc25f3aca2ef.txt b/allure-report/data/attachments/34ee6a50b9a56e7d.txt similarity index 100% rename from allure-report/data/attachments/55c2dc25f3aca2ef.txt rename to allure-report/data/attachments/34ee6a50b9a56e7d.txt diff --git a/allure-report/data/attachments/8ec04fa99fe20225.txt b/allure-report/data/attachments/35b0040677726bbd.txt similarity index 100% rename from allure-report/data/attachments/8ec04fa99fe20225.txt rename to allure-report/data/attachments/35b0040677726bbd.txt diff --git a/allure-report/data/attachments/c76ccd6ee86418bf.txt b/allure-report/data/attachments/362de8ecec922d6a.txt similarity index 100% rename from allure-report/data/attachments/c76ccd6ee86418bf.txt rename to allure-report/data/attachments/362de8ecec922d6a.txt diff --git a/allure-report/data/attachments/19eb43b014d8e007.txt b/allure-report/data/attachments/36b72f15ac4ac48f.txt similarity index 100% rename from allure-report/data/attachments/19eb43b014d8e007.txt rename to allure-report/data/attachments/36b72f15ac4ac48f.txt diff --git a/allure-report/data/attachments/d4c1b8030852d43f.txt b/allure-report/data/attachments/3714b6ca536dc4d2.txt similarity index 100% rename from allure-report/data/attachments/d4c1b8030852d43f.txt rename to allure-report/data/attachments/3714b6ca536dc4d2.txt diff --git a/allure-report/data/attachments/37493fb00e3c01f4.txt b/allure-report/data/attachments/396239392c64a388.txt similarity index 100% rename from allure-report/data/attachments/37493fb00e3c01f4.txt rename to allure-report/data/attachments/396239392c64a388.txt diff --git a/allure-report/data/attachments/c30d75bb7c349fc2.txt b/allure-report/data/attachments/398543e2b30d0b75.txt similarity index 100% rename from allure-report/data/attachments/c30d75bb7c349fc2.txt rename to allure-report/data/attachments/398543e2b30d0b75.txt diff --git a/allure-report/data/attachments/402ca4d0fca525c3.txt b/allure-report/data/attachments/3a93f15f0e448e53.txt similarity index 100% rename from allure-report/data/attachments/402ca4d0fca525c3.txt rename to allure-report/data/attachments/3a93f15f0e448e53.txt diff --git a/allure-report/data/attachments/95ff64e2c1a83a10.txt b/allure-report/data/attachments/3a9eebe7718e7480.txt similarity index 100% rename from allure-report/data/attachments/95ff64e2c1a83a10.txt rename to allure-report/data/attachments/3a9eebe7718e7480.txt diff --git a/allure-report/data/attachments/3c56e003ef1a2db2.txt b/allure-report/data/attachments/3b3328f837a21f35.txt similarity index 100% rename from allure-report/data/attachments/3c56e003ef1a2db2.txt rename to allure-report/data/attachments/3b3328f837a21f35.txt diff --git a/allure-report/data/attachments/bf66b96af215b9a3.txt b/allure-report/data/attachments/3b4c7e69e73ca20.txt similarity index 100% rename from allure-report/data/attachments/bf66b96af215b9a3.txt rename to allure-report/data/attachments/3b4c7e69e73ca20.txt diff --git a/allure-report/data/attachments/7564cea1d0950828.txt b/allure-report/data/attachments/3b770734c2a5e83b.txt similarity index 100% rename from allure-report/data/attachments/7564cea1d0950828.txt rename to allure-report/data/attachments/3b770734c2a5e83b.txt diff --git a/allure-report/data/attachments/96eee8345f947a69.txt b/allure-report/data/attachments/3c5d6a8306713e1a.txt similarity index 100% rename from allure-report/data/attachments/96eee8345f947a69.txt rename to allure-report/data/attachments/3c5d6a8306713e1a.txt diff --git a/allure-report/data/attachments/422dba3ada60a54e.txt b/allure-report/data/attachments/3c7f9bf2787b94f7.txt similarity index 100% rename from allure-report/data/attachments/422dba3ada60a54e.txt rename to allure-report/data/attachments/3c7f9bf2787b94f7.txt diff --git a/allure-report/data/attachments/6f22d94f06ac3a09.txt b/allure-report/data/attachments/3d05ca7bd9d20192.txt similarity index 100% rename from allure-report/data/attachments/6f22d94f06ac3a09.txt rename to allure-report/data/attachments/3d05ca7bd9d20192.txt diff --git a/allure-report/data/attachments/d2acfc856d6695aa.txt b/allure-report/data/attachments/3d08be5d3c35bf84.txt similarity index 100% rename from allure-report/data/attachments/d2acfc856d6695aa.txt rename to allure-report/data/attachments/3d08be5d3c35bf84.txt diff --git a/allure-report/data/attachments/4a6abb90a321cb9c.txt b/allure-report/data/attachments/3db726a85ec26b65.txt similarity index 100% rename from allure-report/data/attachments/4a6abb90a321cb9c.txt rename to allure-report/data/attachments/3db726a85ec26b65.txt diff --git a/allure-report/data/attachments/65e8f59235ab8ed3.txt b/allure-report/data/attachments/3dc83265322e5aba.txt similarity index 100% rename from allure-report/data/attachments/65e8f59235ab8ed3.txt rename to allure-report/data/attachments/3dc83265322e5aba.txt diff --git a/allure-report/data/attachments/48d50f93d41108b9.txt b/allure-report/data/attachments/3de7bb1aa01966ff.txt similarity index 100% rename from allure-report/data/attachments/48d50f93d41108b9.txt rename to allure-report/data/attachments/3de7bb1aa01966ff.txt diff --git a/allure-report/data/attachments/36bee03d6cf0b073.txt b/allure-report/data/attachments/3e00d2a8f3aaa1eb.txt similarity index 100% rename from allure-report/data/attachments/36bee03d6cf0b073.txt rename to allure-report/data/attachments/3e00d2a8f3aaa1eb.txt diff --git a/allure-report/data/attachments/79495ef6842bbd0.txt b/allure-report/data/attachments/3e1cb74f119a5c14.txt similarity index 100% rename from allure-report/data/attachments/79495ef6842bbd0.txt rename to allure-report/data/attachments/3e1cb74f119a5c14.txt diff --git a/allure-report/data/attachments/4abc13d212d8a981.txt b/allure-report/data/attachments/3ea6423e21d6d262.txt similarity index 100% rename from allure-report/data/attachments/4abc13d212d8a981.txt rename to allure-report/data/attachments/3ea6423e21d6d262.txt diff --git a/allure-report/data/attachments/3dc4bd0471b5b6f6.txt b/allure-report/data/attachments/4144b9b4343fdd9e.txt similarity index 100% rename from allure-report/data/attachments/3dc4bd0471b5b6f6.txt rename to allure-report/data/attachments/4144b9b4343fdd9e.txt diff --git a/allure-report/data/attachments/15675e98e5c4a9b8.txt b/allure-report/data/attachments/4158b1e0c4f5a122.txt similarity index 100% rename from allure-report/data/attachments/15675e98e5c4a9b8.txt rename to allure-report/data/attachments/4158b1e0c4f5a122.txt diff --git a/allure-report/data/attachments/f64884da2dda6a3c.txt b/allure-report/data/attachments/41c90fa760e8d420.txt similarity index 100% rename from allure-report/data/attachments/f64884da2dda6a3c.txt rename to allure-report/data/attachments/41c90fa760e8d420.txt diff --git a/allure-report/data/attachments/58afed2a90df0f51.txt b/allure-report/data/attachments/41eff5539d108708.txt similarity index 100% rename from allure-report/data/attachments/58afed2a90df0f51.txt rename to allure-report/data/attachments/41eff5539d108708.txt diff --git a/allure-report/data/attachments/249c9a1d1088ee7f.txt b/allure-report/data/attachments/41f5ec6cee6b6454.txt similarity index 100% rename from allure-report/data/attachments/249c9a1d1088ee7f.txt rename to allure-report/data/attachments/41f5ec6cee6b6454.txt diff --git a/allure-report/data/attachments/7009434379983da3.txt b/allure-report/data/attachments/41f66f3f97e3d4e4.txt similarity index 100% rename from allure-report/data/attachments/7009434379983da3.txt rename to allure-report/data/attachments/41f66f3f97e3d4e4.txt diff --git a/allure-report/data/attachments/b3933c8513b435f2.txt b/allure-report/data/attachments/4273c801c4c75440.txt similarity index 100% rename from allure-report/data/attachments/b3933c8513b435f2.txt rename to allure-report/data/attachments/4273c801c4c75440.txt diff --git a/allure-report/data/attachments/baef923daaeaa1ca.txt b/allure-report/data/attachments/4277e39e2fd03a2.txt similarity index 100% rename from allure-report/data/attachments/baef923daaeaa1ca.txt rename to allure-report/data/attachments/4277e39e2fd03a2.txt diff --git a/allure-report/data/attachments/cd12a6124ae0828b.txt b/allure-report/data/attachments/45411ab5eb543e75.txt similarity index 100% rename from allure-report/data/attachments/cd12a6124ae0828b.txt rename to allure-report/data/attachments/45411ab5eb543e75.txt diff --git a/allure-report/data/attachments/25c4d55846b6e292.txt b/allure-report/data/attachments/4646d812c4a39ce.txt similarity index 100% rename from allure-report/data/attachments/25c4d55846b6e292.txt rename to allure-report/data/attachments/4646d812c4a39ce.txt diff --git a/allure-report/data/attachments/7e845202c63af573.txt b/allure-report/data/attachments/47bd852e88dda4bd.txt similarity index 100% rename from allure-report/data/attachments/7e845202c63af573.txt rename to allure-report/data/attachments/47bd852e88dda4bd.txt diff --git a/allure-report/data/attachments/593c0c1fd5b8ed77.txt b/allure-report/data/attachments/47cde424bd281215.txt similarity index 100% rename from allure-report/data/attachments/593c0c1fd5b8ed77.txt rename to allure-report/data/attachments/47cde424bd281215.txt diff --git a/allure-report/data/attachments/dc6fc560f92c35a2.txt b/allure-report/data/attachments/47de92a1be75c8fa.txt similarity index 100% rename from allure-report/data/attachments/dc6fc560f92c35a2.txt rename to allure-report/data/attachments/47de92a1be75c8fa.txt diff --git a/allure-report/data/attachments/c1b206842b9d15e3.txt b/allure-report/data/attachments/47eb10d648ead31b.txt similarity index 100% rename from allure-report/data/attachments/c1b206842b9d15e3.txt rename to allure-report/data/attachments/47eb10d648ead31b.txt diff --git a/allure-report/data/attachments/223102ee65639b46.txt b/allure-report/data/attachments/4a5ff4e66314365b.txt similarity index 100% rename from allure-report/data/attachments/223102ee65639b46.txt rename to allure-report/data/attachments/4a5ff4e66314365b.txt diff --git a/allure-report/data/attachments/1a418dd5b9f09793.txt b/allure-report/data/attachments/4b46eca85ecd31e8.txt similarity index 100% rename from allure-report/data/attachments/1a418dd5b9f09793.txt rename to allure-report/data/attachments/4b46eca85ecd31e8.txt diff --git a/allure-report/data/attachments/5084a50ffeae5e8e.txt b/allure-report/data/attachments/4cd1e84a01209f22.txt similarity index 100% rename from allure-report/data/attachments/5084a50ffeae5e8e.txt rename to allure-report/data/attachments/4cd1e84a01209f22.txt diff --git a/allure-report/data/attachments/52487ab63cfc7fc2.txt b/allure-report/data/attachments/4cfe45f98e3a162.txt similarity index 100% rename from allure-report/data/attachments/52487ab63cfc7fc2.txt rename to allure-report/data/attachments/4cfe45f98e3a162.txt diff --git a/allure-report/data/attachments/e3e63b4b3901e4cf.txt b/allure-report/data/attachments/4d1c728cd3990d41.txt similarity index 100% rename from allure-report/data/attachments/e3e63b4b3901e4cf.txt rename to allure-report/data/attachments/4d1c728cd3990d41.txt diff --git a/allure-report/data/attachments/a0aae731f70e5cc0.txt b/allure-report/data/attachments/4d3f39137718ed9c.txt similarity index 100% rename from allure-report/data/attachments/a0aae731f70e5cc0.txt rename to allure-report/data/attachments/4d3f39137718ed9c.txt diff --git a/allure-report/data/attachments/eea6ab4a75a4141f.txt b/allure-report/data/attachments/4e2e1868fac6f5c2.txt similarity index 100% rename from allure-report/data/attachments/eea6ab4a75a4141f.txt rename to allure-report/data/attachments/4e2e1868fac6f5c2.txt diff --git a/allure-report/data/attachments/5a9323196c3e301a.txt b/allure-report/data/attachments/4e5a0ef8eae5b1f5.txt similarity index 100% rename from allure-report/data/attachments/5a9323196c3e301a.txt rename to allure-report/data/attachments/4e5a0ef8eae5b1f5.txt diff --git a/allure-report/data/attachments/f7d99aafcc4f7095.txt b/allure-report/data/attachments/4ee69d91518c273c.txt similarity index 100% rename from allure-report/data/attachments/f7d99aafcc4f7095.txt rename to allure-report/data/attachments/4ee69d91518c273c.txt diff --git a/allure-report/data/attachments/1193ec856aedeb02.txt b/allure-report/data/attachments/4f8b5b6368092f66.txt similarity index 100% rename from allure-report/data/attachments/1193ec856aedeb02.txt rename to allure-report/data/attachments/4f8b5b6368092f66.txt diff --git a/allure-report/data/attachments/b50e795eadf52633.txt b/allure-report/data/attachments/4faf6d536992c308.txt similarity index 100% rename from allure-report/data/attachments/b50e795eadf52633.txt rename to allure-report/data/attachments/4faf6d536992c308.txt diff --git a/allure-report/data/attachments/ba1dc1bb275f3b43.txt b/allure-report/data/attachments/51a4e96e6102d985.txt similarity index 100% rename from allure-report/data/attachments/ba1dc1bb275f3b43.txt rename to allure-report/data/attachments/51a4e96e6102d985.txt diff --git a/allure-report/data/attachments/c28669c80cc4b641.txt b/allure-report/data/attachments/52b7eb4ac34d1a3f.txt similarity index 100% rename from allure-report/data/attachments/c28669c80cc4b641.txt rename to allure-report/data/attachments/52b7eb4ac34d1a3f.txt diff --git a/allure-report/data/attachments/262bbed0c4f1b31e.txt b/allure-report/data/attachments/52c3b8574c415b89.txt similarity index 100% rename from allure-report/data/attachments/262bbed0c4f1b31e.txt rename to allure-report/data/attachments/52c3b8574c415b89.txt diff --git a/allure-report/data/attachments/20ec3b37f02414c6.txt b/allure-report/data/attachments/54973229fb9bb954.txt similarity index 100% rename from allure-report/data/attachments/20ec3b37f02414c6.txt rename to allure-report/data/attachments/54973229fb9bb954.txt diff --git a/allure-report/data/attachments/2d6b522e7a7ff120.txt b/allure-report/data/attachments/55424ab646409d91.txt similarity index 100% rename from allure-report/data/attachments/2d6b522e7a7ff120.txt rename to allure-report/data/attachments/55424ab646409d91.txt diff --git a/allure-report/data/attachments/85584e5ea4131ab.txt b/allure-report/data/attachments/56a8d88c2e7e082f.txt similarity index 100% rename from allure-report/data/attachments/85584e5ea4131ab.txt rename to allure-report/data/attachments/56a8d88c2e7e082f.txt diff --git a/allure-report/data/attachments/723bbdd3ff9c847b.txt b/allure-report/data/attachments/56f4811665ed892a.txt similarity index 100% rename from allure-report/data/attachments/723bbdd3ff9c847b.txt rename to allure-report/data/attachments/56f4811665ed892a.txt diff --git a/allure-report/data/attachments/a048397ca4ccbb02.txt b/allure-report/data/attachments/5705204dae406a16.txt similarity index 100% rename from allure-report/data/attachments/a048397ca4ccbb02.txt rename to allure-report/data/attachments/5705204dae406a16.txt diff --git a/allure-report/data/attachments/2d914c949df5ab84.txt b/allure-report/data/attachments/5763b31517fb1cf6.txt similarity index 100% rename from allure-report/data/attachments/2d914c949df5ab84.txt rename to allure-report/data/attachments/5763b31517fb1cf6.txt diff --git a/allure-report/data/attachments/ebe19d7db75ba582.txt b/allure-report/data/attachments/5767980cac6ccce8.txt similarity index 100% rename from allure-report/data/attachments/ebe19d7db75ba582.txt rename to allure-report/data/attachments/5767980cac6ccce8.txt diff --git a/allure-report/data/attachments/d55f5479718ea061.txt b/allure-report/data/attachments/57be236067b41f3e.txt similarity index 100% rename from allure-report/data/attachments/d55f5479718ea061.txt rename to allure-report/data/attachments/57be236067b41f3e.txt diff --git a/allure-report/data/attachments/1a80ac27e17ecc55.txt b/allure-report/data/attachments/59e7a80b454faae7.txt similarity index 100% rename from allure-report/data/attachments/1a80ac27e17ecc55.txt rename to allure-report/data/attachments/59e7a80b454faae7.txt diff --git a/allure-report/data/attachments/44675768f78eee8a.txt b/allure-report/data/attachments/5a6636ef2e259cf6.txt similarity index 100% rename from allure-report/data/attachments/44675768f78eee8a.txt rename to allure-report/data/attachments/5a6636ef2e259cf6.txt diff --git a/allure-report/data/attachments/ca755456b7a7b1c7.txt b/allure-report/data/attachments/5a779afadfd77377.txt similarity index 100% rename from allure-report/data/attachments/ca755456b7a7b1c7.txt rename to allure-report/data/attachments/5a779afadfd77377.txt diff --git a/allure-report/data/attachments/6e5f2c0cf3da9e17.txt b/allure-report/data/attachments/5a8f2e8a8daac7d4.txt similarity index 100% rename from allure-report/data/attachments/6e5f2c0cf3da9e17.txt rename to allure-report/data/attachments/5a8f2e8a8daac7d4.txt diff --git a/allure-report/data/attachments/628f2fd7fd45644d.txt b/allure-report/data/attachments/5a90b58ce6e21a4f.txt similarity index 100% rename from allure-report/data/attachments/628f2fd7fd45644d.txt rename to allure-report/data/attachments/5a90b58ce6e21a4f.txt diff --git a/allure-report/data/attachments/e7476696af18d9ef.txt b/allure-report/data/attachments/5b1486b52334c41e.txt similarity index 100% rename from allure-report/data/attachments/e7476696af18d9ef.txt rename to allure-report/data/attachments/5b1486b52334c41e.txt diff --git a/allure-report/data/attachments/a05108cbbea40a77.txt b/allure-report/data/attachments/5ba70b78893a0ae6.txt similarity index 100% rename from allure-report/data/attachments/a05108cbbea40a77.txt rename to allure-report/data/attachments/5ba70b78893a0ae6.txt diff --git a/allure-report/data/attachments/2563dd25f9db8ef8.txt b/allure-report/data/attachments/5bb3529b62d1131a.txt similarity index 100% rename from allure-report/data/attachments/2563dd25f9db8ef8.txt rename to allure-report/data/attachments/5bb3529b62d1131a.txt diff --git a/allure-report/data/attachments/67250f10970b9ec2.txt b/allure-report/data/attachments/5c0575d9cafe6cf6.txt similarity index 100% rename from allure-report/data/attachments/67250f10970b9ec2.txt rename to allure-report/data/attachments/5c0575d9cafe6cf6.txt diff --git a/allure-report/data/attachments/ab818dba8f721c82.txt b/allure-report/data/attachments/5c7638f94c1897db.txt similarity index 100% rename from allure-report/data/attachments/ab818dba8f721c82.txt rename to allure-report/data/attachments/5c7638f94c1897db.txt diff --git a/allure-report/data/attachments/4606180442c9597a.txt b/allure-report/data/attachments/5d46e2ecc5195696.txt similarity index 100% rename from allure-report/data/attachments/4606180442c9597a.txt rename to allure-report/data/attachments/5d46e2ecc5195696.txt diff --git a/allure-report/data/attachments/3989d4323468e7bb.txt b/allure-report/data/attachments/5da58154c309059a.txt similarity index 100% rename from allure-report/data/attachments/3989d4323468e7bb.txt rename to allure-report/data/attachments/5da58154c309059a.txt diff --git a/allure-report/data/attachments/a5c2a655acda438b.txt b/allure-report/data/attachments/5e405ef5b3f740d5.txt similarity index 100% rename from allure-report/data/attachments/a5c2a655acda438b.txt rename to allure-report/data/attachments/5e405ef5b3f740d5.txt diff --git a/allure-report/data/attachments/ad904e4dff4eacf0.txt b/allure-report/data/attachments/5e9be09b414388f9.txt similarity index 100% rename from allure-report/data/attachments/ad904e4dff4eacf0.txt rename to allure-report/data/attachments/5e9be09b414388f9.txt diff --git a/allure-report/data/attachments/389b47ec7013850.txt b/allure-report/data/attachments/5efed1b6b7f1c808.txt similarity index 100% rename from allure-report/data/attachments/389b47ec7013850.txt rename to allure-report/data/attachments/5efed1b6b7f1c808.txt diff --git a/allure-report/data/attachments/34e25e08dcd9bfc5.txt b/allure-report/data/attachments/5fc827b08877ee80.txt similarity index 100% rename from allure-report/data/attachments/34e25e08dcd9bfc5.txt rename to allure-report/data/attachments/5fc827b08877ee80.txt diff --git a/allure-report/data/attachments/e25ec87c38eb56d7.txt b/allure-report/data/attachments/60434b32a4fa91ba.txt similarity index 100% rename from allure-report/data/attachments/e25ec87c38eb56d7.txt rename to allure-report/data/attachments/60434b32a4fa91ba.txt diff --git a/allure-report/data/attachments/bbdde990c6eec147.txt b/allure-report/data/attachments/6062d7cf7b32bc2c.txt similarity index 100% rename from allure-report/data/attachments/bbdde990c6eec147.txt rename to allure-report/data/attachments/6062d7cf7b32bc2c.txt diff --git a/allure-report/data/attachments/9fa38c981635713c.txt b/allure-report/data/attachments/6096f7399a313214.txt similarity index 100% rename from allure-report/data/attachments/9fa38c981635713c.txt rename to allure-report/data/attachments/6096f7399a313214.txt diff --git a/allure-report/data/attachments/d20f4b2271cbc6fa.txt b/allure-report/data/attachments/60ce0e41b02093a3.txt similarity index 100% rename from allure-report/data/attachments/d20f4b2271cbc6fa.txt rename to allure-report/data/attachments/60ce0e41b02093a3.txt diff --git a/allure-report/data/attachments/79af870721a1c097.txt b/allure-report/data/attachments/616f142dc436d37a.txt similarity index 100% rename from allure-report/data/attachments/79af870721a1c097.txt rename to allure-report/data/attachments/616f142dc436d37a.txt diff --git a/allure-report/data/attachments/c5e4c41a6f3733c3.txt b/allure-report/data/attachments/62a27b454b36563d.txt similarity index 100% rename from allure-report/data/attachments/c5e4c41a6f3733c3.txt rename to allure-report/data/attachments/62a27b454b36563d.txt diff --git a/allure-report/data/attachments/ff19f958435ebad0.txt b/allure-report/data/attachments/62bd346b3a261fc6.txt similarity index 100% rename from allure-report/data/attachments/ff19f958435ebad0.txt rename to allure-report/data/attachments/62bd346b3a261fc6.txt diff --git a/allure-report/data/attachments/50518c3041d69a65.txt b/allure-report/data/attachments/62e987f3927afd7c.txt similarity index 100% rename from allure-report/data/attachments/50518c3041d69a65.txt rename to allure-report/data/attachments/62e987f3927afd7c.txt diff --git a/allure-report/data/attachments/20504931bd72ff66.txt b/allure-report/data/attachments/6344061f744d93d.txt similarity index 100% rename from allure-report/data/attachments/20504931bd72ff66.txt rename to allure-report/data/attachments/6344061f744d93d.txt diff --git a/allure-report/data/attachments/adfb8d457e08492a.txt b/allure-report/data/attachments/634594d507e663ad.txt similarity index 100% rename from allure-report/data/attachments/adfb8d457e08492a.txt rename to allure-report/data/attachments/634594d507e663ad.txt diff --git a/allure-report/data/attachments/6ab893879ec80255.txt b/allure-report/data/attachments/63766a355340dea4.txt similarity index 100% rename from allure-report/data/attachments/6ab893879ec80255.txt rename to allure-report/data/attachments/63766a355340dea4.txt diff --git a/allure-report/data/attachments/b5edf03f6f69fd7.txt b/allure-report/data/attachments/6431ac3684ba417d.txt similarity index 100% rename from allure-report/data/attachments/b5edf03f6f69fd7.txt rename to allure-report/data/attachments/6431ac3684ba417d.txt diff --git a/allure-report/data/attachments/777a522aaa0b36d6.txt b/allure-report/data/attachments/6570d6c473e55397.txt similarity index 100% rename from allure-report/data/attachments/777a522aaa0b36d6.txt rename to allure-report/data/attachments/6570d6c473e55397.txt diff --git a/allure-report/data/attachments/c8353335fdb63078.txt b/allure-report/data/attachments/6681f7087b7f0e75.txt similarity index 100% rename from allure-report/data/attachments/c8353335fdb63078.txt rename to allure-report/data/attachments/6681f7087b7f0e75.txt diff --git a/allure-report/data/attachments/4f667b9e1153821e.txt b/allure-report/data/attachments/672a2772e24fdc9b.txt similarity index 100% rename from allure-report/data/attachments/4f667b9e1153821e.txt rename to allure-report/data/attachments/672a2772e24fdc9b.txt diff --git a/allure-report/data/attachments/314ae6d54cae55b6.txt b/allure-report/data/attachments/676a2b28cd4ab614.txt similarity index 100% rename from allure-report/data/attachments/314ae6d54cae55b6.txt rename to allure-report/data/attachments/676a2b28cd4ab614.txt diff --git a/allure-report/data/attachments/be12a7ae2303d05.txt b/allure-report/data/attachments/67735b58dfb8e3b0.txt similarity index 100% rename from allure-report/data/attachments/be12a7ae2303d05.txt rename to allure-report/data/attachments/67735b58dfb8e3b0.txt diff --git a/allure-report/data/attachments/56bfa93ef6d7d13e.txt b/allure-report/data/attachments/678b686f33957e9f.txt similarity index 100% rename from allure-report/data/attachments/56bfa93ef6d7d13e.txt rename to allure-report/data/attachments/678b686f33957e9f.txt diff --git a/allure-report/data/attachments/6dd7f32db32388b4.txt b/allure-report/data/attachments/6833583f4e17d4b6.txt similarity index 100% rename from allure-report/data/attachments/6dd7f32db32388b4.txt rename to allure-report/data/attachments/6833583f4e17d4b6.txt diff --git a/allure-report/data/attachments/3db52e49cbd26e06.txt b/allure-report/data/attachments/6886fc4b238144c3.txt similarity index 100% rename from allure-report/data/attachments/3db52e49cbd26e06.txt rename to allure-report/data/attachments/6886fc4b238144c3.txt diff --git a/allure-report/data/attachments/76ccf3919bc3e5ff.txt b/allure-report/data/attachments/6968a83bd2f66f6.txt similarity index 100% rename from allure-report/data/attachments/76ccf3919bc3e5ff.txt rename to allure-report/data/attachments/6968a83bd2f66f6.txt diff --git a/allure-report/data/attachments/c34ac517b9df672f.txt b/allure-report/data/attachments/698bafa9b89cd763.txt similarity index 100% rename from allure-report/data/attachments/c34ac517b9df672f.txt rename to allure-report/data/attachments/698bafa9b89cd763.txt diff --git a/allure-report/data/attachments/ea3af59eb83f9741.txt b/allure-report/data/attachments/6a878131575ef850.txt similarity index 100% rename from allure-report/data/attachments/ea3af59eb83f9741.txt rename to allure-report/data/attachments/6a878131575ef850.txt diff --git a/allure-report/data/attachments/2a9b6a8a1ba7c33d.txt b/allure-report/data/attachments/6b2bb00f201470b4.txt similarity index 100% rename from allure-report/data/attachments/2a9b6a8a1ba7c33d.txt rename to allure-report/data/attachments/6b2bb00f201470b4.txt diff --git a/allure-report/data/attachments/cc5f43f6454a1720.txt b/allure-report/data/attachments/6b3bb7e070cc7a5c.txt similarity index 100% rename from allure-report/data/attachments/cc5f43f6454a1720.txt rename to allure-report/data/attachments/6b3bb7e070cc7a5c.txt diff --git a/allure-report/data/attachments/c18cfc939d43f91f.txt b/allure-report/data/attachments/6bbd8e6923c5cdcc.txt similarity index 100% rename from allure-report/data/attachments/c18cfc939d43f91f.txt rename to allure-report/data/attachments/6bbd8e6923c5cdcc.txt diff --git a/allure-report/data/attachments/572cb30872911938.txt b/allure-report/data/attachments/6c919aa9e8f6951e.txt similarity index 100% rename from allure-report/data/attachments/572cb30872911938.txt rename to allure-report/data/attachments/6c919aa9e8f6951e.txt diff --git a/allure-report/data/attachments/1f77a5204398ee70.txt b/allure-report/data/attachments/6cceaf28d236f584.txt similarity index 100% rename from allure-report/data/attachments/1f77a5204398ee70.txt rename to allure-report/data/attachments/6cceaf28d236f584.txt diff --git a/allure-report/data/attachments/16493fa2e59b881f.txt b/allure-report/data/attachments/6ce0e167f1507713.txt similarity index 100% rename from allure-report/data/attachments/16493fa2e59b881f.txt rename to allure-report/data/attachments/6ce0e167f1507713.txt diff --git a/allure-report/data/attachments/46d0fbec2255f23d.txt b/allure-report/data/attachments/6e31fbe4dea71ee0.txt similarity index 100% rename from allure-report/data/attachments/46d0fbec2255f23d.txt rename to allure-report/data/attachments/6e31fbe4dea71ee0.txt diff --git a/allure-report/data/attachments/bd3f1d26bd9a423c.txt b/allure-report/data/attachments/6e51aca385250e4.txt similarity index 100% rename from allure-report/data/attachments/bd3f1d26bd9a423c.txt rename to allure-report/data/attachments/6e51aca385250e4.txt diff --git a/allure-report/data/attachments/d015bd8e99b083ac.txt b/allure-report/data/attachments/6f54ca69ed4a797e.txt similarity index 100% rename from allure-report/data/attachments/d015bd8e99b083ac.txt rename to allure-report/data/attachments/6f54ca69ed4a797e.txt diff --git a/allure-report/data/attachments/e09ff6118121df43.txt b/allure-report/data/attachments/7030d405852b736e.txt similarity index 100% rename from allure-report/data/attachments/e09ff6118121df43.txt rename to allure-report/data/attachments/7030d405852b736e.txt diff --git a/allure-report/data/attachments/42d0476a0c6524cb.txt b/allure-report/data/attachments/70b6cf48eb9066a3.txt similarity index 100% rename from allure-report/data/attachments/42d0476a0c6524cb.txt rename to allure-report/data/attachments/70b6cf48eb9066a3.txt diff --git a/allure-report/data/attachments/1a416aa1f8f49132.txt b/allure-report/data/attachments/715d12e01ffe8bd2.txt similarity index 100% rename from allure-report/data/attachments/1a416aa1f8f49132.txt rename to allure-report/data/attachments/715d12e01ffe8bd2.txt diff --git a/allure-report/data/attachments/cf1c2ed826ee28d4.txt b/allure-report/data/attachments/7177fb466625b3ce.txt similarity index 100% rename from allure-report/data/attachments/cf1c2ed826ee28d4.txt rename to allure-report/data/attachments/7177fb466625b3ce.txt diff --git a/allure-report/data/attachments/bafac05e5cdca73e.txt b/allure-report/data/attachments/719718f24c29d8b6.txt similarity index 100% rename from allure-report/data/attachments/bafac05e5cdca73e.txt rename to allure-report/data/attachments/719718f24c29d8b6.txt diff --git a/allure-report/data/attachments/a5cb0f1347c132fe.txt b/allure-report/data/attachments/71aab19d1a615a57.txt similarity index 100% rename from allure-report/data/attachments/a5cb0f1347c132fe.txt rename to allure-report/data/attachments/71aab19d1a615a57.txt diff --git a/allure-report/data/attachments/409128bc00470776.txt b/allure-report/data/attachments/72d1d4db3cffe73b.txt similarity index 100% rename from allure-report/data/attachments/409128bc00470776.txt rename to allure-report/data/attachments/72d1d4db3cffe73b.txt diff --git a/allure-report/data/attachments/48a054aaded1508.txt b/allure-report/data/attachments/72f410625d43ac82.txt similarity index 100% rename from allure-report/data/attachments/48a054aaded1508.txt rename to allure-report/data/attachments/72f410625d43ac82.txt diff --git a/allure-report/data/attachments/636289116dbc88a1.txt b/allure-report/data/attachments/737d6b3bd85f76bf.txt similarity index 100% rename from allure-report/data/attachments/636289116dbc88a1.txt rename to allure-report/data/attachments/737d6b3bd85f76bf.txt diff --git a/allure-report/data/attachments/ee5461145584dca2.txt b/allure-report/data/attachments/737f4d50843fbb5.txt similarity index 100% rename from allure-report/data/attachments/ee5461145584dca2.txt rename to allure-report/data/attachments/737f4d50843fbb5.txt diff --git a/allure-report/data/attachments/34ddd4abd2f8dc67.txt b/allure-report/data/attachments/747e90cc8dad54fd.txt similarity index 100% rename from allure-report/data/attachments/34ddd4abd2f8dc67.txt rename to allure-report/data/attachments/747e90cc8dad54fd.txt diff --git a/allure-report/data/attachments/9d4907fb8e8c491a.txt b/allure-report/data/attachments/7517e0fe4fd38ce3.txt similarity index 100% rename from allure-report/data/attachments/9d4907fb8e8c491a.txt rename to allure-report/data/attachments/7517e0fe4fd38ce3.txt diff --git a/allure-report/data/attachments/9ad11c0bf2af69dd.txt b/allure-report/data/attachments/754273bb670e7e63.txt similarity index 100% rename from allure-report/data/attachments/9ad11c0bf2af69dd.txt rename to allure-report/data/attachments/754273bb670e7e63.txt diff --git a/allure-report/data/attachments/86763b8490ff9e1a.txt b/allure-report/data/attachments/75b9c5da68ec52a2.txt similarity index 100% rename from allure-report/data/attachments/86763b8490ff9e1a.txt rename to allure-report/data/attachments/75b9c5da68ec52a2.txt diff --git a/allure-report/data/attachments/ad5cb658d7b3a6f1.txt b/allure-report/data/attachments/763794db833f43e6.txt similarity index 100% rename from allure-report/data/attachments/ad5cb658d7b3a6f1.txt rename to allure-report/data/attachments/763794db833f43e6.txt diff --git a/allure-report/data/attachments/f69de901ccccedd4.txt b/allure-report/data/attachments/7716f7bce2ac3794.txt similarity index 100% rename from allure-report/data/attachments/f69de901ccccedd4.txt rename to allure-report/data/attachments/7716f7bce2ac3794.txt diff --git a/allure-report/data/attachments/8201c952fac9b91.txt b/allure-report/data/attachments/77f74c85e8c0841a.txt similarity index 100% rename from allure-report/data/attachments/8201c952fac9b91.txt rename to allure-report/data/attachments/77f74c85e8c0841a.txt diff --git a/allure-report/data/attachments/260e3d617394daf9.txt b/allure-report/data/attachments/7829271a783962e0.txt similarity index 100% rename from allure-report/data/attachments/260e3d617394daf9.txt rename to allure-report/data/attachments/7829271a783962e0.txt diff --git a/allure-report/data/attachments/b4b3b9029fd263e4.txt b/allure-report/data/attachments/78984c686d4aec41.txt similarity index 100% rename from allure-report/data/attachments/b4b3b9029fd263e4.txt rename to allure-report/data/attachments/78984c686d4aec41.txt diff --git a/allure-report/data/attachments/41d72e951bcc6869.txt b/allure-report/data/attachments/78b71274c888e77b.txt similarity index 100% rename from allure-report/data/attachments/41d72e951bcc6869.txt rename to allure-report/data/attachments/78b71274c888e77b.txt diff --git a/allure-report/data/attachments/f220cca72eddc4b9.txt b/allure-report/data/attachments/7941ce7b9fdf9a23.txt similarity index 100% rename from allure-report/data/attachments/f220cca72eddc4b9.txt rename to allure-report/data/attachments/7941ce7b9fdf9a23.txt diff --git a/allure-report/data/attachments/c9bdbc88a29a3828.txt b/allure-report/data/attachments/79650f7b74d71675.txt similarity index 100% rename from allure-report/data/attachments/c9bdbc88a29a3828.txt rename to allure-report/data/attachments/79650f7b74d71675.txt diff --git a/allure-report/data/attachments/d97724b3c30f749b.txt b/allure-report/data/attachments/7dbffa484c49e1de.txt similarity index 100% rename from allure-report/data/attachments/d97724b3c30f749b.txt rename to allure-report/data/attachments/7dbffa484c49e1de.txt diff --git a/allure-report/data/attachments/82626f88e303aee4.txt b/allure-report/data/attachments/7e0d861d218b6b53.txt similarity index 100% rename from allure-report/data/attachments/82626f88e303aee4.txt rename to allure-report/data/attachments/7e0d861d218b6b53.txt diff --git a/allure-report/data/attachments/78dec26e63ca72b.txt b/allure-report/data/attachments/7efcea1d1ffd3662.txt similarity index 100% rename from allure-report/data/attachments/78dec26e63ca72b.txt rename to allure-report/data/attachments/7efcea1d1ffd3662.txt diff --git a/allure-report/data/attachments/61d7cf4a7f7609fa.txt b/allure-report/data/attachments/7f080e317c4cdc0d.txt similarity index 100% rename from allure-report/data/attachments/61d7cf4a7f7609fa.txt rename to allure-report/data/attachments/7f080e317c4cdc0d.txt diff --git a/allure-report/data/attachments/afd9bf5ba31b7f2c.txt b/allure-report/data/attachments/7f52a9aa50bef455.txt similarity index 100% rename from allure-report/data/attachments/afd9bf5ba31b7f2c.txt rename to allure-report/data/attachments/7f52a9aa50bef455.txt diff --git a/allure-report/data/attachments/20413926fc466813.txt b/allure-report/data/attachments/7f7258c787806381.txt similarity index 100% rename from allure-report/data/attachments/20413926fc466813.txt rename to allure-report/data/attachments/7f7258c787806381.txt diff --git a/allure-report/data/attachments/c1042cf050bb287f.txt b/allure-report/data/attachments/825e5ff6c26dfc23.txt similarity index 100% rename from allure-report/data/attachments/c1042cf050bb287f.txt rename to allure-report/data/attachments/825e5ff6c26dfc23.txt diff --git a/allure-report/data/attachments/77d89c40af0bf20.txt b/allure-report/data/attachments/837e80b6f559a9c2.txt similarity index 100% rename from allure-report/data/attachments/77d89c40af0bf20.txt rename to allure-report/data/attachments/837e80b6f559a9c2.txt diff --git a/allure-report/data/attachments/aa2e305576d932cc.txt b/allure-report/data/attachments/838e96495b7301c2.txt similarity index 100% rename from allure-report/data/attachments/aa2e305576d932cc.txt rename to allure-report/data/attachments/838e96495b7301c2.txt diff --git a/allure-report/data/attachments/edfc621ad66d7630.txt b/allure-report/data/attachments/839567f1e1e69ee5.txt similarity index 100% rename from allure-report/data/attachments/edfc621ad66d7630.txt rename to allure-report/data/attachments/839567f1e1e69ee5.txt diff --git a/allure-report/data/attachments/524678a9109bb789.txt b/allure-report/data/attachments/839e0167efc9a3e5.txt similarity index 100% rename from allure-report/data/attachments/524678a9109bb789.txt rename to allure-report/data/attachments/839e0167efc9a3e5.txt diff --git a/allure-report/data/attachments/8c7dbf4edab807e9.txt b/allure-report/data/attachments/8418aaca0f21809c.txt similarity index 100% rename from allure-report/data/attachments/8c7dbf4edab807e9.txt rename to allure-report/data/attachments/8418aaca0f21809c.txt diff --git a/allure-report/data/attachments/922ae39708baa025.txt b/allure-report/data/attachments/841a9d92019cea7.txt similarity index 100% rename from allure-report/data/attachments/922ae39708baa025.txt rename to allure-report/data/attachments/841a9d92019cea7.txt diff --git a/allure-report/data/attachments/3a3d2d13f3e8d074.txt b/allure-report/data/attachments/8433939b2e0016e1.txt similarity index 100% rename from allure-report/data/attachments/3a3d2d13f3e8d074.txt rename to allure-report/data/attachments/8433939b2e0016e1.txt diff --git a/allure-report/data/attachments/d5f66b749f49be9c.txt b/allure-report/data/attachments/84bdcd72726e2c84.txt similarity index 100% rename from allure-report/data/attachments/d5f66b749f49be9c.txt rename to allure-report/data/attachments/84bdcd72726e2c84.txt diff --git a/allure-report/data/attachments/751c423a8c519ee0.txt b/allure-report/data/attachments/84cd17876f4516cf.txt similarity index 100% rename from allure-report/data/attachments/751c423a8c519ee0.txt rename to allure-report/data/attachments/84cd17876f4516cf.txt diff --git a/allure-report/data/attachments/ed807b9aabc03ce3.txt b/allure-report/data/attachments/84f9893956705e3c.txt similarity index 100% rename from allure-report/data/attachments/ed807b9aabc03ce3.txt rename to allure-report/data/attachments/84f9893956705e3c.txt diff --git a/allure-report/data/attachments/d4bf4df7343a141f.txt b/allure-report/data/attachments/85aa32b5caa3d259.txt similarity index 100% rename from allure-report/data/attachments/d4bf4df7343a141f.txt rename to allure-report/data/attachments/85aa32b5caa3d259.txt diff --git a/allure-report/data/attachments/abfce931e4a4e183.txt b/allure-report/data/attachments/868a8a8788cc39fc.txt similarity index 100% rename from allure-report/data/attachments/abfce931e4a4e183.txt rename to allure-report/data/attachments/868a8a8788cc39fc.txt diff --git a/allure-report/data/attachments/3ca7170537d4b92b.txt b/allure-report/data/attachments/87f777895eba7eaf.txt similarity index 100% rename from allure-report/data/attachments/3ca7170537d4b92b.txt rename to allure-report/data/attachments/87f777895eba7eaf.txt diff --git a/allure-report/data/attachments/113db4f6bd21cad6.txt b/allure-report/data/attachments/88f8e3a1f8c2be2b.txt similarity index 100% rename from allure-report/data/attachments/113db4f6bd21cad6.txt rename to allure-report/data/attachments/88f8e3a1f8c2be2b.txt diff --git a/allure-report/data/attachments/9378bde66fa0c099.txt b/allure-report/data/attachments/894de7f1e428d962.txt similarity index 100% rename from allure-report/data/attachments/9378bde66fa0c099.txt rename to allure-report/data/attachments/894de7f1e428d962.txt diff --git a/allure-report/data/attachments/cbe62037cd68092f.txt b/allure-report/data/attachments/8b00f3eb19799549.txt similarity index 100% rename from allure-report/data/attachments/cbe62037cd68092f.txt rename to allure-report/data/attachments/8b00f3eb19799549.txt diff --git a/allure-report/data/attachments/4ec4b9e8092c85e0.txt b/allure-report/data/attachments/8da729485857d70b.txt similarity index 100% rename from allure-report/data/attachments/4ec4b9e8092c85e0.txt rename to allure-report/data/attachments/8da729485857d70b.txt diff --git a/allure-report/data/attachments/c3b009b2f078b1df.txt b/allure-report/data/attachments/8e2411421a238415.txt similarity index 100% rename from allure-report/data/attachments/c3b009b2f078b1df.txt rename to allure-report/data/attachments/8e2411421a238415.txt diff --git a/allure-report/data/attachments/18e589c7521ffb38.txt b/allure-report/data/attachments/8e6997f43eb72f85.txt similarity index 100% rename from allure-report/data/attachments/18e589c7521ffb38.txt rename to allure-report/data/attachments/8e6997f43eb72f85.txt diff --git a/allure-report/data/attachments/1a238f13b61d4440.txt b/allure-report/data/attachments/8f40a615942b6a99.txt similarity index 100% rename from allure-report/data/attachments/1a238f13b61d4440.txt rename to allure-report/data/attachments/8f40a615942b6a99.txt diff --git a/allure-report/data/attachments/919f00271c0b6744.txt b/allure-report/data/attachments/8f8b0aa6406d8405.txt similarity index 100% rename from allure-report/data/attachments/919f00271c0b6744.txt rename to allure-report/data/attachments/8f8b0aa6406d8405.txt diff --git a/allure-report/data/attachments/1ac173a13e0da0bb.txt b/allure-report/data/attachments/90811aa4d663c1f1.txt similarity index 100% rename from allure-report/data/attachments/1ac173a13e0da0bb.txt rename to allure-report/data/attachments/90811aa4d663c1f1.txt diff --git a/allure-report/data/attachments/bc5d49dc5212bf5e.txt b/allure-report/data/attachments/90ef8c17370e6610.txt similarity index 100% rename from allure-report/data/attachments/bc5d49dc5212bf5e.txt rename to allure-report/data/attachments/90ef8c17370e6610.txt diff --git a/allure-report/data/attachments/603967bf708ac2d5.txt b/allure-report/data/attachments/90fac117ed2f5b2c.txt similarity index 100% rename from allure-report/data/attachments/603967bf708ac2d5.txt rename to allure-report/data/attachments/90fac117ed2f5b2c.txt diff --git a/allure-report/data/attachments/b3fc81b6d668011d.txt b/allure-report/data/attachments/9185450f0b6d0b62.txt similarity index 100% rename from allure-report/data/attachments/b3fc81b6d668011d.txt rename to allure-report/data/attachments/9185450f0b6d0b62.txt diff --git a/allure-report/data/attachments/cd4290234370c8e2.txt b/allure-report/data/attachments/91c5a91c91d3cce8.txt similarity index 100% rename from allure-report/data/attachments/cd4290234370c8e2.txt rename to allure-report/data/attachments/91c5a91c91d3cce8.txt diff --git a/allure-report/data/attachments/c57066a5ba7cb3b6.txt b/allure-report/data/attachments/920856e6e183642.txt similarity index 100% rename from allure-report/data/attachments/c57066a5ba7cb3b6.txt rename to allure-report/data/attachments/920856e6e183642.txt diff --git a/allure-report/data/attachments/6e85f6f8a1949219.txt b/allure-report/data/attachments/9221a1b722d3e57e.txt similarity index 100% rename from allure-report/data/attachments/6e85f6f8a1949219.txt rename to allure-report/data/attachments/9221a1b722d3e57e.txt diff --git a/allure-report/data/attachments/4762790d78a26553.txt b/allure-report/data/attachments/92552b4b1fe49529.txt similarity index 100% rename from allure-report/data/attachments/4762790d78a26553.txt rename to allure-report/data/attachments/92552b4b1fe49529.txt diff --git a/allure-report/data/attachments/114c74c53ed8174f.txt b/allure-report/data/attachments/92abbc4fad82e6db.txt similarity index 100% rename from allure-report/data/attachments/114c74c53ed8174f.txt rename to allure-report/data/attachments/92abbc4fad82e6db.txt diff --git a/allure-report/data/attachments/9e259e1fbcfa5f37.txt b/allure-report/data/attachments/92e60d573610c20c.txt similarity index 100% rename from allure-report/data/attachments/9e259e1fbcfa5f37.txt rename to allure-report/data/attachments/92e60d573610c20c.txt diff --git a/allure-report/data/attachments/b965bcb2e6dc29da.txt b/allure-report/data/attachments/93547fa89048aa2f.txt similarity index 100% rename from allure-report/data/attachments/b965bcb2e6dc29da.txt rename to allure-report/data/attachments/93547fa89048aa2f.txt diff --git a/allure-report/data/attachments/ff5bcd4167469499.txt b/allure-report/data/attachments/940a8818c4ee9f6a.txt similarity index 100% rename from allure-report/data/attachments/ff5bcd4167469499.txt rename to allure-report/data/attachments/940a8818c4ee9f6a.txt diff --git a/allure-report/data/attachments/889d21b9a71df26a.txt b/allure-report/data/attachments/951e88f3edc608ae.txt similarity index 100% rename from allure-report/data/attachments/889d21b9a71df26a.txt rename to allure-report/data/attachments/951e88f3edc608ae.txt diff --git a/allure-report/data/attachments/826e1d893c73077a.txt b/allure-report/data/attachments/95eee5a3754aa8a2.txt similarity index 100% rename from allure-report/data/attachments/826e1d893c73077a.txt rename to allure-report/data/attachments/95eee5a3754aa8a2.txt diff --git a/allure-report/data/attachments/17c76024ab075e9a.txt b/allure-report/data/attachments/981d1c1e601a3a5b.txt similarity index 100% rename from allure-report/data/attachments/17c76024ab075e9a.txt rename to allure-report/data/attachments/981d1c1e601a3a5b.txt diff --git a/allure-report/data/attachments/bad36bad780dde2b.txt b/allure-report/data/attachments/986dcde2e02037cb.txt similarity index 100% rename from allure-report/data/attachments/bad36bad780dde2b.txt rename to allure-report/data/attachments/986dcde2e02037cb.txt diff --git a/allure-report/data/attachments/30bb93915ba589e1.txt b/allure-report/data/attachments/99fbed72185a436d.txt similarity index 100% rename from allure-report/data/attachments/30bb93915ba589e1.txt rename to allure-report/data/attachments/99fbed72185a436d.txt diff --git a/allure-report/data/attachments/de5056f652a803a9.txt b/allure-report/data/attachments/9aa90db0f884f6f0.txt similarity index 100% rename from allure-report/data/attachments/de5056f652a803a9.txt rename to allure-report/data/attachments/9aa90db0f884f6f0.txt diff --git a/allure-report/data/attachments/917768a471c3713a.txt b/allure-report/data/attachments/9d173a5e0d4bb0c8.txt similarity index 100% rename from allure-report/data/attachments/917768a471c3713a.txt rename to allure-report/data/attachments/9d173a5e0d4bb0c8.txt diff --git a/allure-report/data/attachments/9a6a869c56ca7757.txt b/allure-report/data/attachments/9e063e588b090ea7.txt similarity index 100% rename from allure-report/data/attachments/9a6a869c56ca7757.txt rename to allure-report/data/attachments/9e063e588b090ea7.txt diff --git a/allure-report/data/attachments/c6f68f6f0d4b074f.txt b/allure-report/data/attachments/a140c6342ce1ee58.txt similarity index 100% rename from allure-report/data/attachments/c6f68f6f0d4b074f.txt rename to allure-report/data/attachments/a140c6342ce1ee58.txt diff --git a/allure-report/data/attachments/300059081fd8f1bb.txt b/allure-report/data/attachments/a1cb38196225980f.txt similarity index 100% rename from allure-report/data/attachments/300059081fd8f1bb.txt rename to allure-report/data/attachments/a1cb38196225980f.txt diff --git a/allure-report/data/attachments/2ab5d05911fa6e28.txt b/allure-report/data/attachments/a2b0f0b93e0e2887.txt similarity index 100% rename from allure-report/data/attachments/2ab5d05911fa6e28.txt rename to allure-report/data/attachments/a2b0f0b93e0e2887.txt diff --git a/allure-report/data/attachments/5491995ca08b8bb7.txt b/allure-report/data/attachments/a4db6f7d6cd87570.txt similarity index 100% rename from allure-report/data/attachments/5491995ca08b8bb7.txt rename to allure-report/data/attachments/a4db6f7d6cd87570.txt diff --git a/allure-report/data/attachments/88865904ee358dea.txt b/allure-report/data/attachments/a54c971159a9735d.txt similarity index 100% rename from allure-report/data/attachments/88865904ee358dea.txt rename to allure-report/data/attachments/a54c971159a9735d.txt diff --git a/allure-report/data/attachments/d1cc8240eecf71ad.txt b/allure-report/data/attachments/a5a1e9dabd89620f.txt similarity index 100% rename from allure-report/data/attachments/d1cc8240eecf71ad.txt rename to allure-report/data/attachments/a5a1e9dabd89620f.txt diff --git a/allure-report/data/attachments/ac4bcaa809c6d1fd.txt b/allure-report/data/attachments/a5b9b2f5d2166132.txt similarity index 100% rename from allure-report/data/attachments/ac4bcaa809c6d1fd.txt rename to allure-report/data/attachments/a5b9b2f5d2166132.txt diff --git a/allure-report/data/attachments/710515c8ae418cf7.txt b/allure-report/data/attachments/a5cbeea06209bb6e.txt similarity index 100% rename from allure-report/data/attachments/710515c8ae418cf7.txt rename to allure-report/data/attachments/a5cbeea06209bb6e.txt diff --git a/allure-report/data/attachments/a0d4534146449bf1.txt b/allure-report/data/attachments/a73c95935cebe487.txt similarity index 100% rename from allure-report/data/attachments/a0d4534146449bf1.txt rename to allure-report/data/attachments/a73c95935cebe487.txt diff --git a/allure-report/data/attachments/70a62533038d97f8.txt b/allure-report/data/attachments/a8cdc7c5d92ea524.txt similarity index 100% rename from allure-report/data/attachments/70a62533038d97f8.txt rename to allure-report/data/attachments/a8cdc7c5d92ea524.txt diff --git a/allure-report/data/attachments/bf32cb10b99852f.txt b/allure-report/data/attachments/a8f23a9981f406ff.txt similarity index 100% rename from allure-report/data/attachments/bf32cb10b99852f.txt rename to allure-report/data/attachments/a8f23a9981f406ff.txt diff --git a/allure-report/data/attachments/e0896f1244645b9.txt b/allure-report/data/attachments/a9033f7cad83170f.txt similarity index 100% rename from allure-report/data/attachments/e0896f1244645b9.txt rename to allure-report/data/attachments/a9033f7cad83170f.txt diff --git a/allure-report/data/attachments/d0350a898056fbe2.txt b/allure-report/data/attachments/aa35c4221cf1383d.txt similarity index 100% rename from allure-report/data/attachments/d0350a898056fbe2.txt rename to allure-report/data/attachments/aa35c4221cf1383d.txt diff --git a/allure-report/data/attachments/518fb893ba3ae3ec.txt b/allure-report/data/attachments/abb69032ea61f29c.txt similarity index 100% rename from allure-report/data/attachments/518fb893ba3ae3ec.txt rename to allure-report/data/attachments/abb69032ea61f29c.txt diff --git a/allure-report/data/attachments/f2763bf761fdda50.txt b/allure-report/data/attachments/ac514e66507a8175.txt similarity index 100% rename from allure-report/data/attachments/f2763bf761fdda50.txt rename to allure-report/data/attachments/ac514e66507a8175.txt diff --git a/allure-report/data/attachments/eb842e833e18e0a2.txt b/allure-report/data/attachments/ac68097df5e78e9a.txt similarity index 100% rename from allure-report/data/attachments/eb842e833e18e0a2.txt rename to allure-report/data/attachments/ac68097df5e78e9a.txt diff --git a/allure-report/data/attachments/9bb6819321100dff.txt b/allure-report/data/attachments/ad7db611240dcbc0.txt similarity index 100% rename from allure-report/data/attachments/9bb6819321100dff.txt rename to allure-report/data/attachments/ad7db611240dcbc0.txt diff --git a/allure-report/data/attachments/16514ad99c38029.txt b/allure-report/data/attachments/ae1ab7427cab55e0.txt similarity index 100% rename from allure-report/data/attachments/16514ad99c38029.txt rename to allure-report/data/attachments/ae1ab7427cab55e0.txt diff --git a/allure-report/data/attachments/d95c404945ad5b7e.txt b/allure-report/data/attachments/b013d563709aaa2b.txt similarity index 100% rename from allure-report/data/attachments/d95c404945ad5b7e.txt rename to allure-report/data/attachments/b013d563709aaa2b.txt diff --git a/allure-report/data/attachments/ce02051636b52745.txt b/allure-report/data/attachments/b34610167fe8aa65.txt similarity index 100% rename from allure-report/data/attachments/ce02051636b52745.txt rename to allure-report/data/attachments/b34610167fe8aa65.txt diff --git a/allure-report/data/attachments/fa72b6c6dff59425.txt b/allure-report/data/attachments/b43989c1fe59fe7e.txt similarity index 100% rename from allure-report/data/attachments/fa72b6c6dff59425.txt rename to allure-report/data/attachments/b43989c1fe59fe7e.txt diff --git a/allure-report/data/attachments/6caa4cb1d46acc21.txt b/allure-report/data/attachments/b4f27bd29772e298.txt similarity index 100% rename from allure-report/data/attachments/6caa4cb1d46acc21.txt rename to allure-report/data/attachments/b4f27bd29772e298.txt diff --git a/allure-report/data/attachments/5b3d8d390aff60c1.txt b/allure-report/data/attachments/b5130ca9dc47578e.txt similarity index 100% rename from allure-report/data/attachments/5b3d8d390aff60c1.txt rename to allure-report/data/attachments/b5130ca9dc47578e.txt diff --git a/allure-report/data/attachments/d497c1182dc91a88.txt b/allure-report/data/attachments/b55ce2a23080a57e.txt similarity index 100% rename from allure-report/data/attachments/d497c1182dc91a88.txt rename to allure-report/data/attachments/b55ce2a23080a57e.txt diff --git a/allure-report/data/attachments/86ab33dc86ae86c3.txt b/allure-report/data/attachments/b63774e9e6663cf7.txt similarity index 100% rename from allure-report/data/attachments/86ab33dc86ae86c3.txt rename to allure-report/data/attachments/b63774e9e6663cf7.txt diff --git a/allure-report/data/attachments/29a496fd36abeefa.txt b/allure-report/data/attachments/b653a3e02677ec62.txt similarity index 100% rename from allure-report/data/attachments/29a496fd36abeefa.txt rename to allure-report/data/attachments/b653a3e02677ec62.txt diff --git a/allure-report/data/attachments/b9d1131297f0da2f.txt b/allure-report/data/attachments/b7bfbf78e894e0ca.txt similarity index 100% rename from allure-report/data/attachments/b9d1131297f0da2f.txt rename to allure-report/data/attachments/b7bfbf78e894e0ca.txt diff --git a/allure-report/data/attachments/94a514fff914ffad.txt b/allure-report/data/attachments/b8036761eae2b6cd.txt similarity index 100% rename from allure-report/data/attachments/94a514fff914ffad.txt rename to allure-report/data/attachments/b8036761eae2b6cd.txt diff --git a/allure-report/data/attachments/f56caa49d4564a64.txt b/allure-report/data/attachments/b8749033ef3225ff.txt similarity index 100% rename from allure-report/data/attachments/f56caa49d4564a64.txt rename to allure-report/data/attachments/b8749033ef3225ff.txt diff --git a/allure-report/data/attachments/74ca61632d7aba21.txt b/allure-report/data/attachments/b87eb62b93596729.txt similarity index 100% rename from allure-report/data/attachments/74ca61632d7aba21.txt rename to allure-report/data/attachments/b87eb62b93596729.txt diff --git a/allure-report/data/attachments/cae9efbee6f5aead.txt b/allure-report/data/attachments/b8fb66a095ff9819.txt similarity index 100% rename from allure-report/data/attachments/cae9efbee6f5aead.txt rename to allure-report/data/attachments/b8fb66a095ff9819.txt diff --git a/allure-report/data/attachments/80387d9cf50add05.txt b/allure-report/data/attachments/b9b05bf139af2d32.txt similarity index 100% rename from allure-report/data/attachments/80387d9cf50add05.txt rename to allure-report/data/attachments/b9b05bf139af2d32.txt diff --git a/allure-report/data/attachments/142bd0c9522a1b66.txt b/allure-report/data/attachments/ba01f85fc1c9de89.txt similarity index 100% rename from allure-report/data/attachments/142bd0c9522a1b66.txt rename to allure-report/data/attachments/ba01f85fc1c9de89.txt diff --git a/allure-report/data/attachments/75c4275b899037f8.txt b/allure-report/data/attachments/ba17606ecf187aae.txt similarity index 100% rename from allure-report/data/attachments/75c4275b899037f8.txt rename to allure-report/data/attachments/ba17606ecf187aae.txt diff --git a/allure-report/data/attachments/10c5a7daf7553683.txt b/allure-report/data/attachments/ba387d8fdc4ccb3b.txt similarity index 100% rename from allure-report/data/attachments/10c5a7daf7553683.txt rename to allure-report/data/attachments/ba387d8fdc4ccb3b.txt diff --git a/allure-report/data/attachments/e80aece0ccab9b6b.txt b/allure-report/data/attachments/c013aca8f3f007b8.txt similarity index 100% rename from allure-report/data/attachments/e80aece0ccab9b6b.txt rename to allure-report/data/attachments/c013aca8f3f007b8.txt diff --git a/allure-report/data/attachments/9cc4cc662dcb9dfc.txt b/allure-report/data/attachments/c1146e7ec026151e.txt similarity index 100% rename from allure-report/data/attachments/9cc4cc662dcb9dfc.txt rename to allure-report/data/attachments/c1146e7ec026151e.txt diff --git a/allure-report/data/attachments/658b23666826b836.txt b/allure-report/data/attachments/c126cf9c398e7752.txt similarity index 100% rename from allure-report/data/attachments/658b23666826b836.txt rename to allure-report/data/attachments/c126cf9c398e7752.txt diff --git a/allure-report/data/attachments/9cd6a45eab59a36a.txt b/allure-report/data/attachments/c12b7919feb22bf.txt similarity index 100% rename from allure-report/data/attachments/9cd6a45eab59a36a.txt rename to allure-report/data/attachments/c12b7919feb22bf.txt diff --git a/allure-report/data/attachments/b953c5b7701746a6.txt b/allure-report/data/attachments/c144733a0318ce29.txt similarity index 100% rename from allure-report/data/attachments/b953c5b7701746a6.txt rename to allure-report/data/attachments/c144733a0318ce29.txt diff --git a/allure-report/data/attachments/ebf0cbf302079de1.txt b/allure-report/data/attachments/c3d16eb9cb3b239c.txt similarity index 100% rename from allure-report/data/attachments/ebf0cbf302079de1.txt rename to allure-report/data/attachments/c3d16eb9cb3b239c.txt diff --git a/allure-report/data/attachments/c243a724cee6015a.txt b/allure-report/data/attachments/c60a729cdea9a7d9.txt similarity index 100% rename from allure-report/data/attachments/c243a724cee6015a.txt rename to allure-report/data/attachments/c60a729cdea9a7d9.txt diff --git a/allure-report/data/attachments/e0460595a654ff1f.txt b/allure-report/data/attachments/c6d99744fc651725.txt similarity index 100% rename from allure-report/data/attachments/e0460595a654ff1f.txt rename to allure-report/data/attachments/c6d99744fc651725.txt diff --git a/allure-report/data/attachments/aad817c6a7654978.txt b/allure-report/data/attachments/c72469286db7525d.txt similarity index 100% rename from allure-report/data/attachments/aad817c6a7654978.txt rename to allure-report/data/attachments/c72469286db7525d.txt diff --git a/allure-report/data/attachments/5d807bd45470dc9b.txt b/allure-report/data/attachments/c72b6aed91bdc6cb.txt similarity index 100% rename from allure-report/data/attachments/5d807bd45470dc9b.txt rename to allure-report/data/attachments/c72b6aed91bdc6cb.txt diff --git a/allure-report/data/attachments/5f55b46f1adbac58.txt b/allure-report/data/attachments/c7c3f41b6f879f22.txt similarity index 100% rename from allure-report/data/attachments/5f55b46f1adbac58.txt rename to allure-report/data/attachments/c7c3f41b6f879f22.txt diff --git a/allure-report/data/attachments/ae06587a78bdd6d0.txt b/allure-report/data/attachments/c88c8283826150a7.txt similarity index 100% rename from allure-report/data/attachments/ae06587a78bdd6d0.txt rename to allure-report/data/attachments/c88c8283826150a7.txt diff --git a/allure-report/data/attachments/3438c05e0b734e.txt b/allure-report/data/attachments/c8970b155f88dd79.txt similarity index 100% rename from allure-report/data/attachments/3438c05e0b734e.txt rename to allure-report/data/attachments/c8970b155f88dd79.txt diff --git a/allure-report/data/attachments/77d84c2ff475cafc.txt b/allure-report/data/attachments/c931c8cfab53b972.txt similarity index 100% rename from allure-report/data/attachments/77d84c2ff475cafc.txt rename to allure-report/data/attachments/c931c8cfab53b972.txt diff --git a/allure-report/data/attachments/1ae03ec55e1d110.txt b/allure-report/data/attachments/c954d80fa61d867d.txt similarity index 100% rename from allure-report/data/attachments/1ae03ec55e1d110.txt rename to allure-report/data/attachments/c954d80fa61d867d.txt diff --git a/allure-report/data/attachments/53524752e4f404ea.txt b/allure-report/data/attachments/c9a3c6ad41839ce3.txt similarity index 100% rename from allure-report/data/attachments/53524752e4f404ea.txt rename to allure-report/data/attachments/c9a3c6ad41839ce3.txt diff --git a/allure-report/data/attachments/3b4c07500e73b2e1.txt b/allure-report/data/attachments/caa5a9b030d38c.txt similarity index 100% rename from allure-report/data/attachments/3b4c07500e73b2e1.txt rename to allure-report/data/attachments/caa5a9b030d38c.txt diff --git a/allure-report/data/attachments/51d402aefb9d5a50.txt b/allure-report/data/attachments/cab012145f3c31e.txt similarity index 100% rename from allure-report/data/attachments/51d402aefb9d5a50.txt rename to allure-report/data/attachments/cab012145f3c31e.txt diff --git a/allure-report/data/attachments/c5c7618408ea03e4.txt b/allure-report/data/attachments/caf6549170870e9e.txt similarity index 100% rename from allure-report/data/attachments/c5c7618408ea03e4.txt rename to allure-report/data/attachments/caf6549170870e9e.txt diff --git a/allure-report/data/attachments/c5ab42561d9470dc.txt b/allure-report/data/attachments/cb5281dd2f2e56c3.txt similarity index 100% rename from allure-report/data/attachments/c5ab42561d9470dc.txt rename to allure-report/data/attachments/cb5281dd2f2e56c3.txt diff --git a/allure-report/data/attachments/dc793fb42851981e.txt b/allure-report/data/attachments/cc97e34ff385a06.txt similarity index 100% rename from allure-report/data/attachments/dc793fb42851981e.txt rename to allure-report/data/attachments/cc97e34ff385a06.txt diff --git a/allure-report/data/attachments/f0f7c752081290ad.txt b/allure-report/data/attachments/cd9f556fe34434c9.txt similarity index 100% rename from allure-report/data/attachments/f0f7c752081290ad.txt rename to allure-report/data/attachments/cd9f556fe34434c9.txt diff --git a/allure-report/data/attachments/3113bb39449ddf28.txt b/allure-report/data/attachments/cf2100e65e09b423.txt similarity index 100% rename from allure-report/data/attachments/3113bb39449ddf28.txt rename to allure-report/data/attachments/cf2100e65e09b423.txt diff --git a/allure-report/data/attachments/6e07492df16f7840.txt b/allure-report/data/attachments/cfb7ba55710ea734.txt similarity index 100% rename from allure-report/data/attachments/6e07492df16f7840.txt rename to allure-report/data/attachments/cfb7ba55710ea734.txt diff --git a/allure-report/data/attachments/4d46a258151a8eec.txt b/allure-report/data/attachments/d032b19c209c380e.txt similarity index 100% rename from allure-report/data/attachments/4d46a258151a8eec.txt rename to allure-report/data/attachments/d032b19c209c380e.txt diff --git a/allure-report/data/attachments/e1e2028306699105.txt b/allure-report/data/attachments/d071752d20b95de3.txt similarity index 100% rename from allure-report/data/attachments/e1e2028306699105.txt rename to allure-report/data/attachments/d071752d20b95de3.txt diff --git a/allure-report/data/attachments/b6c4fbc0a7fcea99.txt b/allure-report/data/attachments/d0ae6f01edd6f40b.txt similarity index 100% rename from allure-report/data/attachments/b6c4fbc0a7fcea99.txt rename to allure-report/data/attachments/d0ae6f01edd6f40b.txt diff --git a/allure-report/data/attachments/ce9018a625502a4f.txt b/allure-report/data/attachments/d1528cec1dd8dea3.txt similarity index 100% rename from allure-report/data/attachments/ce9018a625502a4f.txt rename to allure-report/data/attachments/d1528cec1dd8dea3.txt diff --git a/allure-report/data/attachments/5f33ac63c02af5a3.txt b/allure-report/data/attachments/d17644d369f719b5.txt similarity index 100% rename from allure-report/data/attachments/5f33ac63c02af5a3.txt rename to allure-report/data/attachments/d17644d369f719b5.txt diff --git a/allure-report/data/attachments/c678f64458ff79c1.txt b/allure-report/data/attachments/d19d47ecb32ff1a.txt similarity index 100% rename from allure-report/data/attachments/c678f64458ff79c1.txt rename to allure-report/data/attachments/d19d47ecb32ff1a.txt diff --git a/allure-report/data/attachments/e94d8c1e516fca3a.txt b/allure-report/data/attachments/d27167744db90954.txt similarity index 100% rename from allure-report/data/attachments/e94d8c1e516fca3a.txt rename to allure-report/data/attachments/d27167744db90954.txt diff --git a/allure-report/data/attachments/bfa138ce1d41528.txt b/allure-report/data/attachments/d279b3f66291ee3.txt similarity index 100% rename from allure-report/data/attachments/bfa138ce1d41528.txt rename to allure-report/data/attachments/d279b3f66291ee3.txt diff --git a/allure-report/data/attachments/a094172377fbc2e7.txt b/allure-report/data/attachments/d352d3b8134952ea.txt similarity index 100% rename from allure-report/data/attachments/a094172377fbc2e7.txt rename to allure-report/data/attachments/d352d3b8134952ea.txt diff --git a/allure-report/data/attachments/2835a835dfc96c0c.txt b/allure-report/data/attachments/d406966fbaffbd00.txt similarity index 100% rename from allure-report/data/attachments/2835a835dfc96c0c.txt rename to allure-report/data/attachments/d406966fbaffbd00.txt diff --git a/allure-report/data/attachments/74e435a54cfbfd93.txt b/allure-report/data/attachments/d499b60fd50eab17.txt similarity index 100% rename from allure-report/data/attachments/74e435a54cfbfd93.txt rename to allure-report/data/attachments/d499b60fd50eab17.txt diff --git a/allure-report/data/attachments/4d5c4bbf86727665.txt b/allure-report/data/attachments/d4d0d11b46cc8eb0.txt similarity index 100% rename from allure-report/data/attachments/4d5c4bbf86727665.txt rename to allure-report/data/attachments/d4d0d11b46cc8eb0.txt diff --git a/allure-report/data/attachments/f0db32efa6426426.txt b/allure-report/data/attachments/d544fbd4d09ad0f7.txt similarity index 100% rename from allure-report/data/attachments/f0db32efa6426426.txt rename to allure-report/data/attachments/d544fbd4d09ad0f7.txt diff --git a/allure-report/data/attachments/2e5c8918aed39603.txt b/allure-report/data/attachments/d5adffae1b4c5d49.txt similarity index 100% rename from allure-report/data/attachments/2e5c8918aed39603.txt rename to allure-report/data/attachments/d5adffae1b4c5d49.txt diff --git a/allure-report/data/attachments/64e75cae3405924b.txt b/allure-report/data/attachments/d682c96b1e76edae.txt similarity index 100% rename from allure-report/data/attachments/64e75cae3405924b.txt rename to allure-report/data/attachments/d682c96b1e76edae.txt diff --git a/allure-report/data/attachments/8c8aa30f0d3e03ac.txt b/allure-report/data/attachments/d6a0933efaeb03c.txt similarity index 100% rename from allure-report/data/attachments/8c8aa30f0d3e03ac.txt rename to allure-report/data/attachments/d6a0933efaeb03c.txt diff --git a/allure-report/data/attachments/87531b32bbe9613e.txt b/allure-report/data/attachments/d700c3a94542cad8.txt similarity index 100% rename from allure-report/data/attachments/87531b32bbe9613e.txt rename to allure-report/data/attachments/d700c3a94542cad8.txt diff --git a/allure-report/data/attachments/f061bc52b29fdec3.txt b/allure-report/data/attachments/d789b0e2f7ac3471.txt similarity index 100% rename from allure-report/data/attachments/f061bc52b29fdec3.txt rename to allure-report/data/attachments/d789b0e2f7ac3471.txt diff --git a/allure-report/data/attachments/b2f6f360d1ace914.txt b/allure-report/data/attachments/d7e0ef7caf28d559.txt similarity index 100% rename from allure-report/data/attachments/b2f6f360d1ace914.txt rename to allure-report/data/attachments/d7e0ef7caf28d559.txt diff --git a/allure-report/data/attachments/cfd735e1e281b0c2.txt b/allure-report/data/attachments/d86f11066e8eb2f7.txt similarity index 100% rename from allure-report/data/attachments/cfd735e1e281b0c2.txt rename to allure-report/data/attachments/d86f11066e8eb2f7.txt diff --git a/allure-report/data/attachments/7aad212f16ce4ea2.txt b/allure-report/data/attachments/d920f200ffe2c729.txt similarity index 100% rename from allure-report/data/attachments/7aad212f16ce4ea2.txt rename to allure-report/data/attachments/d920f200ffe2c729.txt diff --git a/allure-report/data/attachments/9eb9cb7b27cc62e1.txt b/allure-report/data/attachments/d9e1cc8a9d47ef26.txt similarity index 100% rename from allure-report/data/attachments/9eb9cb7b27cc62e1.txt rename to allure-report/data/attachments/d9e1cc8a9d47ef26.txt diff --git a/allure-report/data/attachments/99c79ea3adfa82ee.txt b/allure-report/data/attachments/da9065dd6d539fab.txt similarity index 100% rename from allure-report/data/attachments/99c79ea3adfa82ee.txt rename to allure-report/data/attachments/da9065dd6d539fab.txt diff --git a/allure-report/data/attachments/b8231a3e84d54eef.txt b/allure-report/data/attachments/db0dfa2ecde82e2a.txt similarity index 100% rename from allure-report/data/attachments/b8231a3e84d54eef.txt rename to allure-report/data/attachments/db0dfa2ecde82e2a.txt diff --git a/allure-report/data/attachments/5a6a1d1be82c27c9.txt b/allure-report/data/attachments/db194e9e67e4f8fb.txt similarity index 100% rename from allure-report/data/attachments/5a6a1d1be82c27c9.txt rename to allure-report/data/attachments/db194e9e67e4f8fb.txt diff --git a/allure-report/data/attachments/d2f0b70b32be23e6.txt b/allure-report/data/attachments/db7ce475c42c1e48.txt similarity index 100% rename from allure-report/data/attachments/d2f0b70b32be23e6.txt rename to allure-report/data/attachments/db7ce475c42c1e48.txt diff --git a/allure-report/data/attachments/a0b2ebd9f3514d62.txt b/allure-report/data/attachments/dc00b83d62a7bfbf.txt similarity index 100% rename from allure-report/data/attachments/a0b2ebd9f3514d62.txt rename to allure-report/data/attachments/dc00b83d62a7bfbf.txt diff --git a/allure-report/data/attachments/c2efa1b50e5fd149.txt b/allure-report/data/attachments/dd3f4f217e87fedc.txt similarity index 100% rename from allure-report/data/attachments/c2efa1b50e5fd149.txt rename to allure-report/data/attachments/dd3f4f217e87fedc.txt diff --git a/allure-report/data/attachments/34940f05851678f8.txt b/allure-report/data/attachments/dd62b896cd445c4.txt similarity index 100% rename from allure-report/data/attachments/34940f05851678f8.txt rename to allure-report/data/attachments/dd62b896cd445c4.txt diff --git a/allure-report/data/attachments/5f71f9eaace164be.txt b/allure-report/data/attachments/ddae89531089be3f.txt similarity index 100% rename from allure-report/data/attachments/5f71f9eaace164be.txt rename to allure-report/data/attachments/ddae89531089be3f.txt diff --git a/allure-report/data/attachments/2a834f90f4db7120.txt b/allure-report/data/attachments/e0ce3a7d48216112.txt similarity index 100% rename from allure-report/data/attachments/2a834f90f4db7120.txt rename to allure-report/data/attachments/e0ce3a7d48216112.txt diff --git a/allure-report/data/attachments/afa5523631c32cdd.txt b/allure-report/data/attachments/e11ad2661eb07ca9.txt similarity index 100% rename from allure-report/data/attachments/afa5523631c32cdd.txt rename to allure-report/data/attachments/e11ad2661eb07ca9.txt diff --git a/allure-report/data/attachments/6e926e3f96426662.txt b/allure-report/data/attachments/e19fa4140ca62ee4.txt similarity index 100% rename from allure-report/data/attachments/6e926e3f96426662.txt rename to allure-report/data/attachments/e19fa4140ca62ee4.txt diff --git a/allure-report/data/attachments/e45f83b71ba0db05.txt b/allure-report/data/attachments/e20f82a8bca3f91b.txt similarity index 100% rename from allure-report/data/attachments/e45f83b71ba0db05.txt rename to allure-report/data/attachments/e20f82a8bca3f91b.txt diff --git a/allure-report/data/attachments/2648dfeb91d0b6ab.txt b/allure-report/data/attachments/e36f2ac65e2625af.txt similarity index 100% rename from allure-report/data/attachments/2648dfeb91d0b6ab.txt rename to allure-report/data/attachments/e36f2ac65e2625af.txt diff --git a/allure-report/data/attachments/e13312b12957bd2f.txt b/allure-report/data/attachments/e3861efa7e547869.txt similarity index 100% rename from allure-report/data/attachments/e13312b12957bd2f.txt rename to allure-report/data/attachments/e3861efa7e547869.txt diff --git a/allure-report/data/attachments/a1fb723ed6209615.txt b/allure-report/data/attachments/e3d1c47094969219.txt similarity index 100% rename from allure-report/data/attachments/a1fb723ed6209615.txt rename to allure-report/data/attachments/e3d1c47094969219.txt diff --git a/allure-report/data/attachments/cff3f59db3a9bd3d.txt b/allure-report/data/attachments/e3e4221321612bf1.txt similarity index 100% rename from allure-report/data/attachments/cff3f59db3a9bd3d.txt rename to allure-report/data/attachments/e3e4221321612bf1.txt diff --git a/allure-report/data/attachments/5ba35f69345b3378.txt b/allure-report/data/attachments/e423707f4478eb49.txt similarity index 100% rename from allure-report/data/attachments/5ba35f69345b3378.txt rename to allure-report/data/attachments/e423707f4478eb49.txt diff --git a/allure-report/data/attachments/e7956391f1917fb4.txt b/allure-report/data/attachments/e46ecdc21febfa2d.txt similarity index 100% rename from allure-report/data/attachments/e7956391f1917fb4.txt rename to allure-report/data/attachments/e46ecdc21febfa2d.txt diff --git a/allure-report/data/attachments/45fa6f11637998ca.txt b/allure-report/data/attachments/e497f0d93067cd8e.txt similarity index 100% rename from allure-report/data/attachments/45fa6f11637998ca.txt rename to allure-report/data/attachments/e497f0d93067cd8e.txt diff --git a/allure-report/data/attachments/c19e93a1a848049d.txt b/allure-report/data/attachments/e5b745fd985bd7ab.txt similarity index 100% rename from allure-report/data/attachments/c19e93a1a848049d.txt rename to allure-report/data/attachments/e5b745fd985bd7ab.txt diff --git a/allure-report/data/attachments/6b092f3996f587d0.txt b/allure-report/data/attachments/e6170073182411e7.txt similarity index 100% rename from allure-report/data/attachments/6b092f3996f587d0.txt rename to allure-report/data/attachments/e6170073182411e7.txt diff --git a/allure-report/data/attachments/2ee2228a3a71cd4e.txt b/allure-report/data/attachments/e67bc3e5b3334332.txt similarity index 100% rename from allure-report/data/attachments/2ee2228a3a71cd4e.txt rename to allure-report/data/attachments/e67bc3e5b3334332.txt diff --git a/allure-report/data/attachments/659fcb73d39cab15.txt b/allure-report/data/attachments/e6af0cabbf264491.txt similarity index 100% rename from allure-report/data/attachments/659fcb73d39cab15.txt rename to allure-report/data/attachments/e6af0cabbf264491.txt diff --git a/allure-report/data/attachments/fdf2076e64b836.txt b/allure-report/data/attachments/e747e2d69cfbefdf.txt similarity index 100% rename from allure-report/data/attachments/fdf2076e64b836.txt rename to allure-report/data/attachments/e747e2d69cfbefdf.txt diff --git a/allure-report/data/attachments/d3b2cac4981701e4.txt b/allure-report/data/attachments/e89406beb8fb490f.txt similarity index 100% rename from allure-report/data/attachments/d3b2cac4981701e4.txt rename to allure-report/data/attachments/e89406beb8fb490f.txt diff --git a/allure-report/data/attachments/af3aa1dfbb9be751.txt b/allure-report/data/attachments/e8c4247db1945485.txt similarity index 100% rename from allure-report/data/attachments/af3aa1dfbb9be751.txt rename to allure-report/data/attachments/e8c4247db1945485.txt diff --git a/allure-report/data/attachments/fab45acdd775eb62.txt b/allure-report/data/attachments/e9ba7465215b13fc.txt similarity index 100% rename from allure-report/data/attachments/fab45acdd775eb62.txt rename to allure-report/data/attachments/e9ba7465215b13fc.txt diff --git a/allure-report/data/attachments/8b39f53200712f62.txt b/allure-report/data/attachments/ea676dbf2861ab6b.txt similarity index 100% rename from allure-report/data/attachments/8b39f53200712f62.txt rename to allure-report/data/attachments/ea676dbf2861ab6b.txt diff --git a/allure-report/data/attachments/f242bfa987012064.txt b/allure-report/data/attachments/ea7fb2d8338c4ae8.txt similarity index 100% rename from allure-report/data/attachments/f242bfa987012064.txt rename to allure-report/data/attachments/ea7fb2d8338c4ae8.txt diff --git a/allure-report/data/attachments/9ef5d72a43416890.txt b/allure-report/data/attachments/eb9dc4155dddb919.txt similarity index 100% rename from allure-report/data/attachments/9ef5d72a43416890.txt rename to allure-report/data/attachments/eb9dc4155dddb919.txt diff --git a/allure-report/data/attachments/5fc6cabc1aa63064.txt b/allure-report/data/attachments/eba58defe547aa99.txt similarity index 100% rename from allure-report/data/attachments/5fc6cabc1aa63064.txt rename to allure-report/data/attachments/eba58defe547aa99.txt diff --git a/allure-report/data/attachments/d19c441db40a3cac.txt b/allure-report/data/attachments/ebee3405e01a539f.txt similarity index 100% rename from allure-report/data/attachments/d19c441db40a3cac.txt rename to allure-report/data/attachments/ebee3405e01a539f.txt diff --git a/allure-report/data/attachments/a45633f3542e88e2.txt b/allure-report/data/attachments/eceb81b9185d8ebf.txt similarity index 100% rename from allure-report/data/attachments/a45633f3542e88e2.txt rename to allure-report/data/attachments/eceb81b9185d8ebf.txt diff --git a/allure-report/data/attachments/e563acaa0f865561.txt b/allure-report/data/attachments/edbe93ce737c702f.txt similarity index 100% rename from allure-report/data/attachments/e563acaa0f865561.txt rename to allure-report/data/attachments/edbe93ce737c702f.txt diff --git a/allure-report/data/attachments/628a7fe95e3c81cb.txt b/allure-report/data/attachments/ee2fa2d0000577e9.txt similarity index 100% rename from allure-report/data/attachments/628a7fe95e3c81cb.txt rename to allure-report/data/attachments/ee2fa2d0000577e9.txt diff --git a/allure-report/data/attachments/9fc84a1435124a1a.txt b/allure-report/data/attachments/f1276b53d50f9117.txt similarity index 100% rename from allure-report/data/attachments/9fc84a1435124a1a.txt rename to allure-report/data/attachments/f1276b53d50f9117.txt diff --git a/allure-report/data/attachments/66ad4b11c0086ef7.txt b/allure-report/data/attachments/f1386283fe3a63a2.txt similarity index 100% rename from allure-report/data/attachments/66ad4b11c0086ef7.txt rename to allure-report/data/attachments/f1386283fe3a63a2.txt diff --git a/allure-report/data/attachments/1aaba40705e2fc47.txt b/allure-report/data/attachments/f18b0e548340aa4f.txt similarity index 100% rename from allure-report/data/attachments/1aaba40705e2fc47.txt rename to allure-report/data/attachments/f18b0e548340aa4f.txt diff --git a/allure-report/data/attachments/bd42675a360dbc62.txt b/allure-report/data/attachments/f1f91f89a689bba4.txt similarity index 100% rename from allure-report/data/attachments/bd42675a360dbc62.txt rename to allure-report/data/attachments/f1f91f89a689bba4.txt diff --git a/allure-report/data/attachments/d42f3c0595488474.txt b/allure-report/data/attachments/f200722e18d9d59a.txt similarity index 100% rename from allure-report/data/attachments/d42f3c0595488474.txt rename to allure-report/data/attachments/f200722e18d9d59a.txt diff --git a/allure-report/data/attachments/ee54cc9a323ef73f.txt b/allure-report/data/attachments/f25bb18adfb0c750.txt similarity index 100% rename from allure-report/data/attachments/ee54cc9a323ef73f.txt rename to allure-report/data/attachments/f25bb18adfb0c750.txt diff --git a/allure-report/data/attachments/c91447e2ab5b5752.txt b/allure-report/data/attachments/f26281521e32f10c.txt similarity index 100% rename from allure-report/data/attachments/c91447e2ab5b5752.txt rename to allure-report/data/attachments/f26281521e32f10c.txt diff --git a/allure-report/data/attachments/ad1ea44cc626928f.txt b/allure-report/data/attachments/f29437b097cf88b9.txt similarity index 100% rename from allure-report/data/attachments/ad1ea44cc626928f.txt rename to allure-report/data/attachments/f29437b097cf88b9.txt diff --git a/allure-report/data/attachments/bdc74086212add1b.txt b/allure-report/data/attachments/f457bf5da9408839.txt similarity index 100% rename from allure-report/data/attachments/bdc74086212add1b.txt rename to allure-report/data/attachments/f457bf5da9408839.txt diff --git a/allure-report/data/attachments/c794d6c4e5eeb4af.txt b/allure-report/data/attachments/f522ce9854634cf6.txt similarity index 100% rename from allure-report/data/attachments/c794d6c4e5eeb4af.txt rename to allure-report/data/attachments/f522ce9854634cf6.txt diff --git a/allure-report/data/attachments/792a133ebed89ed0.txt b/allure-report/data/attachments/f69b6836dc35d93.txt similarity index 100% rename from allure-report/data/attachments/792a133ebed89ed0.txt rename to allure-report/data/attachments/f69b6836dc35d93.txt diff --git a/allure-report/data/attachments/751c11b33d3f5691.txt b/allure-report/data/attachments/f753b26a6d68bf5b.txt similarity index 100% rename from allure-report/data/attachments/751c11b33d3f5691.txt rename to allure-report/data/attachments/f753b26a6d68bf5b.txt diff --git a/allure-report/data/attachments/395fe2fe4ac3b196.txt b/allure-report/data/attachments/f79ef762befefc39.txt similarity index 100% rename from allure-report/data/attachments/395fe2fe4ac3b196.txt rename to allure-report/data/attachments/f79ef762befefc39.txt diff --git a/allure-report/data/attachments/fdeff84d2ee8d5a7.txt b/allure-report/data/attachments/f8b4598a501c7d27.txt similarity index 100% rename from allure-report/data/attachments/fdeff84d2ee8d5a7.txt rename to allure-report/data/attachments/f8b4598a501c7d27.txt diff --git a/allure-report/data/attachments/7a2a4c86abf39025.txt b/allure-report/data/attachments/f8c0f6bed7a29f7c.txt similarity index 100% rename from allure-report/data/attachments/7a2a4c86abf39025.txt rename to allure-report/data/attachments/f8c0f6bed7a29f7c.txt diff --git a/allure-report/data/attachments/f359371e55578388.txt b/allure-report/data/attachments/f93ff3c1bc3ca41c.txt similarity index 100% rename from allure-report/data/attachments/f359371e55578388.txt rename to allure-report/data/attachments/f93ff3c1bc3ca41c.txt diff --git a/allure-report/data/attachments/b1d7cd63e86f3101.txt b/allure-report/data/attachments/faca10a249542315.txt similarity index 100% rename from allure-report/data/attachments/b1d7cd63e86f3101.txt rename to allure-report/data/attachments/faca10a249542315.txt diff --git a/allure-report/data/attachments/d9deb17ebdcc9231.txt b/allure-report/data/attachments/faf563094f59ca6b.txt similarity index 100% rename from allure-report/data/attachments/d9deb17ebdcc9231.txt rename to allure-report/data/attachments/faf563094f59ca6b.txt diff --git a/allure-report/data/attachments/bddb4d20a85ffa0.txt b/allure-report/data/attachments/fb14be3959747375.txt similarity index 100% rename from allure-report/data/attachments/bddb4d20a85ffa0.txt rename to allure-report/data/attachments/fb14be3959747375.txt diff --git a/allure-report/data/attachments/9f427722b0cc833f.txt b/allure-report/data/attachments/fb2891f4860c316.txt similarity index 100% rename from allure-report/data/attachments/9f427722b0cc833f.txt rename to allure-report/data/attachments/fb2891f4860c316.txt diff --git a/allure-report/data/attachments/482dd2a19da8e0f3.txt b/allure-report/data/attachments/fb7e53ff5946a92d.txt similarity index 100% rename from allure-report/data/attachments/482dd2a19da8e0f3.txt rename to allure-report/data/attachments/fb7e53ff5946a92d.txt diff --git a/allure-report/data/attachments/bf26048e33b52cf9.txt b/allure-report/data/attachments/fcab257bac252f0f.txt similarity index 100% rename from allure-report/data/attachments/bf26048e33b52cf9.txt rename to allure-report/data/attachments/fcab257bac252f0f.txt diff --git a/allure-report/data/attachments/e71976337c3f0f2c.txt b/allure-report/data/attachments/fcb85638cafa3b09.txt similarity index 100% rename from allure-report/data/attachments/e71976337c3f0f2c.txt rename to allure-report/data/attachments/fcb85638cafa3b09.txt diff --git a/allure-report/data/attachments/4450ee3f66285b1.txt b/allure-report/data/attachments/fcbbb87dd9240b08.txt similarity index 100% rename from allure-report/data/attachments/4450ee3f66285b1.txt rename to allure-report/data/attachments/fcbbb87dd9240b08.txt diff --git a/allure-report/data/attachments/fe1be9ee27fc2e73.txt b/allure-report/data/attachments/fcdb96625b1e26db.txt similarity index 100% rename from allure-report/data/attachments/fe1be9ee27fc2e73.txt rename to allure-report/data/attachments/fcdb96625b1e26db.txt diff --git a/allure-report/data/attachments/995455f4d59eea4c.txt b/allure-report/data/attachments/fd4f4028774f914d.txt similarity index 100% rename from allure-report/data/attachments/995455f4d59eea4c.txt rename to allure-report/data/attachments/fd4f4028774f914d.txt diff --git a/allure-report/data/attachments/eaa824bd6b5ae161.txt b/allure-report/data/attachments/fde614c2efca69df.txt similarity index 100% rename from allure-report/data/attachments/eaa824bd6b5ae161.txt rename to allure-report/data/attachments/fde614c2efca69df.txt diff --git a/allure-report/data/attachments/f04c5edec457b138.txt b/allure-report/data/attachments/fec67c535945138b.txt similarity index 100% rename from allure-report/data/attachments/f04c5edec457b138.txt rename to allure-report/data/attachments/fec67c535945138b.txt diff --git a/allure-report/data/attachments/969369ae06b01d8f.txt b/allure-report/data/attachments/feeed58e51d5c7a.txt similarity index 100% rename from allure-report/data/attachments/969369ae06b01d8f.txt rename to allure-report/data/attachments/feeed58e51d5c7a.txt diff --git a/allure-report/data/attachments/93cd2d5c953cd624.txt b/allure-report/data/attachments/ff4563a6816a8fb1.txt similarity index 100% rename from allure-report/data/attachments/93cd2d5c953cd624.txt rename to allure-report/data/attachments/ff4563a6816a8fb1.txt diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index 21fc605670d..812fc7276d3 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,155 +1,155 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" +"0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" +"0","4 kyu","0","String","1","0","Strings Mix","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","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" +"0","7 kyu","0","Math","3","0","Easy Line","0" +"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" +"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" +"0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" +"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" +"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" +"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" +"0","7 kyu","0","String","1","0","V A P O R C O D E","0" +"0","5 kyu","0","String","0","1","Count IP Addresses","0" +"0","3 kyu","0","String","0","4","Line Safari - Is that a line?","0" +"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" +"0","6 kyu","0","Factorial","1","0","Color Choice","0" +"0","7 kyu","0","String","1","0","Password validator","0" "0","6 kyu","0","String","3","0","Permute a Palindrome","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","8 kyu","0","Lists","1","0","Convert a string to an array","0" +"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" +"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" +"0","6 kyu","0","String","1","0","Count letters in string","0" +"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" +"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" +"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" +"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" +"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" +"0","4 kyu","0","Lists","1","0","Sum by Factors","0" +"0","5 kyu","0","String","1","0","First non-repeating character","0" +"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" +"0","7 kyu","0","Square Calculation","6","0","You're a square","0" +"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" +"0","6 kyu","0","Algorithms","1","0","Decipher this!","0" +"0","No kyu","0","Utils","2","0","Testing gen_primes util","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","Lists","3","0","Logical Calculator","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","7 kyu","0","String","2","0","Jaden Casing Strings","0" -"0","4 kyu","0","String","1","0","Next smaller number with the same digits","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","Lists","3","0","Logical Calculator","0" +"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" +"0","No kyu","0","Utils","2","0","Testing is_prime util","0" "0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" -"0","8 kyu","0","Multiplication","1","0","Multiply","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","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" +"0","6 kyu","0","String","6","0","First character that repeats","0" +"0","4 kyu","0","String","1","0","Range Extraction","0" +"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" +"0","5 kyu","0","Lists","1","0","Sports League Table Ranking","0" +"0","6 kyu","0","String","3","0","Character frequency","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","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","Lists","4","0","Find the first non-consecutive number","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","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" +"0","7 kyu","0","String","1","0","Pull your words together, man!","0" +"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" "0","8 kyu","0","String","1","0","Remove First and Last Character","0" +"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" +"0","3 kyu","0","String","1","0","Calculator","0" +"0","8 kyu","0","String","3","0","Reversed Strings","0" +"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" +"0","8 kyu","0","Lists","4","0","Counting sheep...","0" +"0","6 kyu","0","Lists","1","0","Sort the odd","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","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","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","7 kyu","0","String","1","0","Isograms","0" +"0","7 kyu","0","Lists","1","0","Always perfect","0" +"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" +"0","8 kyu","0","Lists","1","0","Swap Values","0" +"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" "0","5 kyu","0","Math","1","0","Human Readable Time","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","6 kyu","0","String","1","0","String subpattern recognition III","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","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","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","6 kyu","0","Algorithms","1","0","Potion Class 101","0" +"0","6 kyu","0","Math","1","0","Disease Spread","0" +"0","8 kyu","0","String","1","0","Remove String Spaces","0" +"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" +"0","4 kyu","0","Classes","3","0","The Greatest Warrior","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","5 kyu","0","Math","0","1","Josephus Survivor","0" +"0","6 kyu","0","Lists","1","0","Find the odd int","0" +"0","5 kyu","0","Validation","1","0","Valid Parentheses","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","Lists","1","0","Pyramid Array","0" +"0","7 kyu","0","String","1","0","Find the longest gap!","0" +"0","4 kyu","0","String","0","1","Permutations","0" +"0","8 kyu","0","Lists","1","0","Check the exam","0" +"0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" +"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","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","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","2 kyu","0","String","1","0","Evaluate mathematical expression","0" +"0","6 kyu","0","String","1","0","Who likes it?","0" +"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" +"0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" +"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","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","6 kyu","0","String","1","0","Duplicate Encoder","0" +"0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" +"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","6 kyu","0","Lists","1","0","Array to HTML table","0" +"0","3 kyu","0","Lists","1","0","Make a spiral","0" +"0","6 kyu","0","String","1","0","Your order, please","0" +"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" +"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" "0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" +"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" +"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" +"0","4 kyu","0","String","1","0","Human readable duration format","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","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","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","Numericals of a String","0" +"0","5 kyu","0","String","1","0","Simple Pig Latin","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","6 kyu","0","Algorithms","1","0","Unique In Order","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","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" +"0","5 kyu","0","String","1","0","Where my anagrams at?","0" +"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" +"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" +"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" +"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" +"0","8 kyu","0","String","1","0","MakeUpperCase","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","String subpattern recognition III","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","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","Algorithms","1","0","Decipher this!","0" -"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" +"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" +"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" +"0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" +"0","5 kyu","0","String","1","0","Not very secure","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","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" +"0","5 kyu","0","Lists","0","1","Find the smallest","0" +"0","6 kyu","0","String","1","0","String subpattern recognition I","0" "0","7 kyu","0","Lists","2","0","Fun with lists: length","0" +"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" +"0","7 kyu","0","Formatting","1","0","Formatting decimal places #1","0" +"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" +"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" +"0","7 kyu","0","Classes","1","0","Make Class","0" +"0","4 kyu","0","Lists","1","0","Snail","0" +"0","8 kyu","0","String","1","0","Is it a palindrome?","0" +"0","8 kyu","0","Addition","1","0","Messi goals function","0" +"0","5 kyu","0","Lists","1","0","Directions Reduction","0" +"0","4 kyu","0","String","1","0","Strip Comments","0" +"0","6 kyu","0","String","1","0","String transformer","0" +"0","7 kyu","0","String","1","0","Significant Figures","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","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","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" -"0","6 kyu","0","Lists","1","0","Pyramid Array","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","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" +"0","5 kyu","0","Lists","1","0","flatten()","0" +"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" +"0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" +"0","6 kyu","0","Lists","1","0","Array.diff","0" +"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" +"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" +"0","8 kyu","0","Multiplication","1","0","Multiply","0" +"0","8 kyu","0","Math","1","0","Century From Year","0" diff --git a/allure-report/data/behaviors.json b/allure-report/data/behaviors.json index 72ea920dd97..c41d4a5b2fb 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"7e0d94f0ee4e397d","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":"fbd4191028146e80","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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":"eb3e9f6b3780b454","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":"b1c2f2381b1441f6","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"2d35bd18d5e6ee6b","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":"fd395297ed368b03","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":"e5ae32dea8d8e5c3","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":"92083f552ecb72c4","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":"490cf50ddd5cff83","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":"fdff4b964fae0427","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":"e0851c0ba53ec6a9","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":"a492d74df14be54a","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":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"cd862d92408a60a2","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":"9519f48ec729ba4c","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":"2b9309fd398214a5","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":"d7c1fb6f236110ca","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":"d1aabae67bc18ba0","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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 or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"33b81b348332f41f","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"884c8d1f852cc3dc","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":"9a325845218dd6ae","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"996165a0ada95681","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":"e738d6d09d0feb9e","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":"4ecd1e835300dbcf","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":"dead64fe3d4f484d","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":"b96004f0b179053d","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":"70085274c959a3cb","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"693c5b2693478689","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":"String","children":[{"name":"Calculator","children":[{"name":"Testing Calculator class","uid":"371888dd705cab28","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_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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_negatives","uid":"801bdccb4e1aa824","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":"ee4f0501c1152713","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":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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"},{"name":"Lists","children":[{"name":"Battleship field validator","children":[{"name":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"b1d54b76165521a0","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"}],"uid":"956182e9935ac64fc0622b60cfe4823a"},{"name":"4 kyu","children":[{"name":"String","children":[{"name":"Most frequently used words in a text","children":[{"name":"Testing top_3_words function","uid":"c7c7f21adbc73706","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":"Human readable duration format","children":[{"name":"Testing format_duration","uid":"47f8df09a84d8337","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":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"Range Extraction","children":[{"name":"Testing solution function","uid":"f80099cf6c294d2b","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":"Permutations","children":[{"name":"test_permutations","uid":"1319e1ae94efdc02","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":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"2460353038ce1955","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":"f711bbcd16ab2119","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":"95ddc175910ea52","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":"82619e3fb0e84d4d","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":"d6e4ebd44034ff08","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":"e03974f538ea8ee6","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"7f90afc62f8400f4","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":"ace382695affabdf","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":"1dee8c06fd165199","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":"627da61e5891aa44","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":"fd4d83368b6d5d5e","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":"42bb8c96d4cb1bcf","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":"11b652a05502070f","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":"148a22b7e430194f","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":"14d24a2946d66b00","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":"31b67858aaa81503","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":"98d0f495e6dcba7e","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":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"cb5c8ea3b9796931","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":"84fd4c67efee5295","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":"369d691aa58bf89d","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":"5e6aa533c6c0fafa","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":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"d4c41912963969d7","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 safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"Find the smallest","children":[{"name":"test_smallest","uid":"c37dfc82a096ec09","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":"57efbea0ccf3907a","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":"b9d7d0d5afb8734c","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":"38639b46d1e381a9","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":"6cad203fab564c60","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":"7fd5632b0213855d","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":"ed30e8563a89229a","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":"2965d2d3db0ea08e","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":"b29b4bc1c1fe7917","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":"Math","children":[{"name":"A Rule of Divisibility by 13","children":[{"name":"Testing 'thirt' function","uid":"585949d19b46a5d2","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":"41efd0d786aed73","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":"c1e0648976f6a694","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":"Number Zoo Patrol","children":[{"name":"Testing the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"b72d4e8ad3288d1b","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":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"debf2b82465b0240","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":"Lists","children":[{"name":"Array.diff","children":[{"name":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"e6a3da330525d2f4","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":"6ab6caccad49b468","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":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"31cd5c9e8017f83c","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":"String","children":[{"name":"Binary to Text (ASCII) Conversion","children":[{"name":"Testing binary_to_string function","uid":"2b38fe6b8a5a46","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":"d5ae1235bc27ccba","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 lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"616180d049b16d1d","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":"2b7f0b03733442e8","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":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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":"b8b1a20b1ac22e64","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":"d57f06aa2f911f40","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":"d9458c8615b9e985","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":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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 II","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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 I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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 III","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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":"704aacac2db91585","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":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"de04793abb90de01","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":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"3a2392b112899a67","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"1719ddf6913445c8","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":"84f17449b7b13451","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":"cdfe495bc85470d2","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":"9b82a842fdc9b867","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":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"dee0416f79d22a0d","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"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"15008ede7bd87a18","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"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"8451096f3488e82","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":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"76f8c586f8a804f0","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":"ae7d3fce45bf33fb","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":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"54942c51ed88331c","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":"d3037fd25424c6f3","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":"afae2f3faef55f2b","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"83105e24306c53ac","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"9f7fc4731241a976","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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"]}],"uid":"1d6c3f09e5599bcec1677f346a53fd07"},{"name":"My head is at the wrong end!","children":[{"name":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"874b39a75ad8fa3b","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 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"90eee3ddc83b1454","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":"6d9afe9fda19581e","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":"afce902b58f1520a","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":"71d876f4d19ecd67","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":"9c38060cc376f686","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":"6ea719d6e8a376fb","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":"af580569ddf3e366","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":"d1a80d9f422182d","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"1073662453fffbc9","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":"139c28ca38674b14","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":"327fbdea3443aca5","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":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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":"1efaf2ab015adde4","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":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"ed5fbc4b14885f68","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"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"9525e56c1666fc0f","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"}],"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":"69f65011f131e2b6","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":"35cf25b9e515e00d","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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 diff --git a/allure-report/data/packages.json b/allure-report/data/packages.json index 19d3bb8ec64..3002ee1a856 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"7e0d94f0ee4e397d","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":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"fbd4191028146e80","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":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"490cf50ddd5cff83","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":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"fdff4b964fae0427","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"33b81b348332f41f","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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":"e0851c0ba53ec6a9","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":"fun_with_lists_length.test_length","children":[{"name":"Testing length function","uid":"eb3e9f6b3780b454","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":"b1c2f2381b1441f6","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":"formatting_decimal_places_1.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"996165a0ada95681","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":"help_bob_count_letters_and_digits.test_count_letters_and_digits","children":[{"name":"Testing count_letters_and_digits function","uid":"a492d74df14be54a","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":"growing_plant.test_growing_plant","children":[{"name":"Testing growing_plant function","uid":"e738d6d09d0feb9e","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":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"cd862d92408a60a2","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":"dead64fe3d4f484d","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":"9519f48ec729ba4c","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":"b96004f0b179053d","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":"2b9309fd398214a5","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":"70085274c959a3cb","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"884c8d1f852cc3dc","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":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"2d35bd18d5e6ee6b","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":"fd395297ed368b03","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":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"d7c1fb6f236110ca","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":"sort_out_the_men_from_boys.test_men_from_boys","children":[{"name":"Testing men_from_boys function","uid":"e5ae32dea8d8e5c3","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":"9a325845218dd6ae","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":"d1aabae67bc18ba0","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":"4ecd1e835300dbcf","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"92083f552ecb72c4","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"693c5b2693478689","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":"calculator.test_calculator","children":[{"name":"Testing Calculator class","uid":"371888dd705cab28","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":"battleship_field_validator.test_battleship_validator","children":[{"name":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"line_safari_is_that_a_line","children":[{"name":"test_line_negative","children":[{"name":"test_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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"},{"name":"test_walker","children":[{"name":"test_starting_position_from_negatives","uid":"801bdccb4e1aa824","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":"ee4f0501c1152713","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"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"b1d54b76165521a0","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":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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":"most_frequently_used_words.test_top_3_words","children":[{"name":"Testing top_3_words function","uid":"c7c7f21adbc73706","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":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"47f8df09a84d8337","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":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"range_extraction.test_solution","children":[{"name":"Testing solution function","uid":"f80099cf6c294d2b","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":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"1319e1ae94efdc02","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":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"95ddc175910ea52","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":"2460353038ce1955","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":"f711bbcd16ab2119","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":"d6e4ebd44034ff08","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":"82619e3fb0e84d4d","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":"e03974f538ea8ee6","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"7f90afc62f8400f4","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":"ace382695affabdf","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":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"1dee8c06fd165199","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":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"98d0f495e6dcba7e","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":"diophantine_equation.test_solution","children":[{"name":"test_solution_big","uid":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"5e6aa533c6c0fafa","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":"627da61e5891aa44","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":"fibonacci_streaming.test_all_fibonacci_numbers","children":[{"name":"Testing all_fibonacci_numbers function","uid":"d4c41912963969d7","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_safest_places_in_town.test_advice","children":[{"name":"Testing agents_cleanup function","uid":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"c37dfc82a096ec09","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":"fd4d83368b6d5d5e","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":"57efbea0ccf3907a","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":"cb5c8ea3b9796931","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":"7fd5632b0213855d","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":"josephus_survivor.test_josephus_survivor","children":[{"name":"test_josephus_survivor","uid":"84fd4c67efee5295","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":"master_your_primes_sieve_with_memoization.test_primes","children":[{"name":"Testing is_prime function","uid":"ed30e8563a89229a","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":"moving_zeros_to_the_end.test_move_zeros","children":[{"name":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"number_of_trailing_zeros_of_n.test_zeros","children":[{"name":"Testing zeros function","uid":"369d691aa58bf89d","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":"not_very_secure.test_alphanumeric","children":[{"name":"Testing alphanumeric function","uid":"42bb8c96d4cb1bcf","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":"simple_pig_latin.test_pig_it","children":[{"name":"Testing pig_it function","uid":"11b652a05502070f","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":"38639b46d1e381a9","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":"148a22b7e430194f","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":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"2965d2d3db0ea08e","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":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"14d24a2946d66b00","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":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"b29b4bc1c1fe7917","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":"6cad203fab564c60","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":"31b67858aaa81503","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":"a_rule_of_divisibility_by_13.test_thirt","children":[{"name":"Testing 'thirt' function","uid":"585949d19b46a5d2","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_diff.test_array_diff","children":[{"name":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"array_to_html_table.test_list_to_html_table","children":[{"name":"Testing to_table function","uid":"e6a3da330525d2f4","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":"2b38fe6b8a5a46","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":"casino_chips.test_solve","children":[{"name":"Testing solve function","uid":"41efd0d786aed73","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":"character_frequency.test_character_frequency","children":[{"name":"All chars are in upper case","uid":"d5ae1235bc27ccba","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 lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"de04793abb90de01","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":"616180d049b16d1d","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":"decipher_this.test_decipher_this","children":[{"name":"Testing decipher_this function","uid":"3a2392b112899a67","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":"default_list.test_default_list","children":[{"name":"Testing 'DefaultList' class: append","uid":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"c1e0648976f6a694","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":"2b7f0b03733442e8","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"6ab6caccad49b468","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":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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":"b8b1a20b1ac22e64","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":"format_string_of_names.test_namelist","children":[{"name":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"1719ddf6913445c8","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":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"d57f06aa2f911f40","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":"number_zoo_patrol.test_find_missing_number","children":[{"name":"Testing the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"no_arithmetic_progressions.test_sequence","children":[{"name":"test_sequence","uid":"b72d4e8ad3288d1b","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":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"84f17449b7b13451","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":"numericals_of_string.test_numericals","children":[{"name":"Testing 'numericals' function","uid":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"cdfe495bc85470d2","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":"rotate_the_letters_of_each_element.test_group_cities","children":[{"name":"Testing the 'group_cities' function","uid":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"9b82a842fdc9b867","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":"31cd5c9e8017f83c","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_2.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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_1.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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_3.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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":"debf2b82465b0240","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":"704aacac2db91585","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":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"dee0416f79d22a0d","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":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"15008ede7bd87a18","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":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"8451096f3488e82","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":"d3037fd25424c6f3","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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":"count_the_monkeys.test_monkey_count","children":[{"name":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"counting_sheep.test_counting_sheep","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"find_the_first_non_consecutive_number.test_first_non_consecutive","children":[{"name":"Large lists","uid":"83105e24306c53ac","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"9f7fc4731241a976","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":"90eee3ddc83b1454","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":"6d9afe9fda19581e","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":"afce902b58f1520a","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":"d1a80d9f422182d","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"holiday_vi_shark_pontoon.test_shark","children":[{"name":"Testing shark function (positive)","uid":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"327fbdea3443aca5","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":"is_it_a_palindrome.test_is_palindrome","children":[{"name":"Testing is_palindrome function","uid":"76f8c586f8a804f0","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":"is_your_period_late.test_is_your_period_late","children":[{"name":"Testing period_is_late function (negative)","uid":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"71d876f4d19ecd67","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":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"1073662453fffbc9","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":"139c28ca38674b14","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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"]}],"uid":"logical_calculator.test_logical_calculator"},{"name":"make_upper_case.test_make_upper_case","children":[{"name":"Testing make_upper_case function","uid":"ae7d3fce45bf33fb","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":"my_head_is_at_the_wrong_end.test_fix_the_meerkat","children":[{"name":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"1efaf2ab015adde4","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":"remove_first_and_last_character.test_remove_char","children":[{"name":"Testing remove_char function","uid":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"ed5fbc4b14885f68","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":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"9525e56c1666fc0f","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":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"874b39a75ad8fa3b","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":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"9c38060cc376f686","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":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"54942c51ed88331c","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":"third_angle_of_triangle.test_third_angle_of_triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"6ea719d6e8a376fb","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":"well_of_ideas_easy_version.test_well_of_ideas_easy_version","children":[{"name":"Should return 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"af580569ddf3e366","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":"afae2f3faef55f2b","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"69f65011f131e2b6","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":"35cf25b9e515e00d","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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 diff --git a/allure-report/data/suites.csv b/allure-report/data/suites.csv index 3f62094c018..9bdc976232a 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,151 +1,143 @@ "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 - :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","","" " - Testing alphabet_war function - - 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. - - Task - Write a function that accepts battlefield string - and returns letters that survived the nuclear strike. + Testing tickets function with various test inputs. - 1. The battlefield string consists of only small letters, #,[ and ]. + 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. - 2. The nuclear shelter is represented by square brackets []. - The letters inside the square brackets represent letters - inside the shelter. + Vasya is currently working as a clerk. + He wants to sell a ticket to every single person + in this line. - 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 ). + 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? - 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. + 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: - ","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 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","","" " - Test a function which formats a duration, - given as a number of seconds, in a human-friendly way. + Testing 'mix' 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. - :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","","" + 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","","" " - Testing 'DefaultList' class: remove + If there are no good ideas, + as is often the case, return 'Fail!'. :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","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","","" " - 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","","" + 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","Testing 'factorial' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" " The function powers takes a single parameter, the number n, and should return an array of unique numbers. :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 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","","" " - Testing is_palindrome function - with various test inputs + Testing 'sum_triangular_numbers' function + with negative numbers + :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","","" +" + Testing 'sum_pairs' function - 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","","" + 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","","" " - Testing duplicate_encode function + Testing summation function with various test inputs :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","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","","" " - 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 - + The string ""This website is for losers LOL!"" + should become ""Ths wbst s fr lsrs LL!"" :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","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","","" " - Testing solution function - - If we list all the natural numbers below 10 - that are multiples of 3 or 5, we get 3, 5, 6 and 9. - The sum of these multiples is 23. - - Finish the solution so that it returns the sum of - all the multiples of 3 or 5 below the number passed in. - - 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","","" + 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","","" " - 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. - - For example: + 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. - anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa'] - anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer'] - anagrams('laser', ['lazing', 'lazy', 'lacer']) => [] :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","","" + ","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","","" " - Large lists + Testing 'vaporcode' function :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 'vaporcode' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" " - Simple negative test + Testing ips_between function + + Testing a function that receives two IPv4 addresses, + and returns the number of addresses between them + (including the first one, excluding the last one). + + 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 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","test_ips_between","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 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","","" + 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","","" " - Testing next_smaller function - - You have to test a function that takes a positive integer number - and returns the next smaller number formed by the same digits: + Testing monkey_count function - 21 ==> 12 - 531 ==> 513 - 2071 ==> 2017 + You take your son to the forest to see the monkeys. + You know that there are a certain number there (n), + but your son is too young to just appreciate the full + number, he has to start counting them from 1. - 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","","" + As a good parent, you will sit and count with him. + Given the number (n), populate an array with all + 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","","" " - Testing gap function with various test inputs - - A binary gap within a positive number num is - any sequence of consecutive zeros that is - surrounded by ones at both ends in the binary - representation of num. - - The gap function should return the length of - its longest binary gap. + 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. - The function should return 0 if num doesn't - contain a binary gap. + 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 password function with various test inputs :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 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 permute_a_palindrome function + :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","","" " Testing string_to_array function. @@ -153,123 +145,169 @@ convert it into an array of words. :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","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","","" " - Testing two_decimal_places function - with various test inputs. + 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","","" +" + Testing max_multiple function with + various test data - 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 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 max_multiple function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" " - Verify that multiply function - returns correct result + Testing 'letter_count' 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 '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 easy_diagonal function - :param self: + 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. + + 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: - ","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","","" + ","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","","" " - Testing letter_frequency function - where all chars are in mixed case + Testing to_alternating_case function :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","","" -" - Test an algorithm that takes an array and moves all of the - zeros to the end, preserving the order of the other elements. + ","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 odd_row function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Performance","","" +"","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","","" +" + Testing set_alarm function with various test inputs. + + The function should return true if you are employed + and not on vacation (because these are the circumstances + under which you need to set an alarm). It should return + false otherwise. + + Examples: + + setAlarm(true, true) -> false + setAlarm(false, true) -> false + setAlarm(false, false) -> false + setAlarm(true, false) -> true :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 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","","" " - Advanced/random test case + Testing sum_for_list function :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","","" + ","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","","" " - Testing 'snail' function + 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. - 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","","" + 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","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - In this kata, you must create a digital root function. + Testing all_fibonacci_numbers function - 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. + You're going to provide a needy programmer a + utility method that generates an infinite sized, + sequential IntStream (in Python generator) + which contains all the numbers in a fibonacci + sequence. + + A fibonacci sequence starts with two 1s. + Every element afterwards is the sum of + the two previous elements. :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 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","","" " - Testing 'vaporcode' function + 0 is a square number :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","Zero","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" " - Testing 'sum_triangular_numbers' function - with negative numbers + a an b are positive numbers :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","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","test_sequence","Novice","Mon Aug 26 22:05:28 PDT 2024","skipped","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" " - -1: Negative numbers cannot be square numbers + Testing decipher_this function + :param self: :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 decipher_this function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" " - Assert that 'domain_name' function - returns domain name from given URL string. - + Negative test cases for gen_primes function testing :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","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","","" " - Test that 'remove_char' function - removes the first and - last characters of a string. + Testing 'DefaultList' class: extend :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","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","","" " - Testing share_price function - with multiple test inputs + Simple negative test :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 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","","" " - 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. + In logic and mathematics, or is the + truth-functional operator of (inclusive) + disjunction, also known as alternation. - Examples + 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 - ""()"" => true - "")(()))"" => false - ""("" => false - ""(())((()())())"" => true :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","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","'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","","" " - non-consecutive is a negative number. + 25 is a square number :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","Square numbers (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" " - 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. + Negative test cases for is_prime function testing + :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","","" +" + Testing two_decimal_places function + with various test inputs. - 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","","" + 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 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","","" +" + 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","","" +" + 26 is not a square number + :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","","" +" + Advanced/random test case + :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","","" " Testing 'DefaultList' class: __getitem__ @@ -281,86 +319,183 @@ :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","","" " - Testing 'sum_triangular_numbers' function - with positive numbers - :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","","" -" - Testing calc class + Testing 'save' function: positive - 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","","" + 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","","" " - Negative test cases for gen_primes function testing + Test string with no duplicate chars :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","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","","" " - 26 is not a square number + 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 shark function -> positive :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 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 two_decimal_places function - with various test inputs - - Each floating-point number should be - formatted that only the first two - decimal places are returned. - - You don't need to check whether the input - is a valid number because only valid numbers - are used in the tests. + 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: - Don't round the numbers! Just cut them - after two decimal places! + - Points + - Scoring differential (the difference between goals scored and those conceded) + - Goals scored :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 compute_ranks","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - 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 letter_frequency function + where all chars are in lower case + :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","test_solution_big","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Testing summation function - with various test inputs + 4 is a square number :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","Square numbers (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 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 + And (∧) is the truth-functional + operator of logical conjunction - 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 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","test_smallest","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing sum_for_list function + 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: - ","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","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","","" " - If there are one or two good ideas, - return 'Publish!', + Testing 'DefaultList' class: remove :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","","" + ","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 is a square number + Testing 'sum_triangular_numbers' function + with big number as an input :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 '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 zero_fuel function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" " - Testing 'factorial' function + 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 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. + 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 '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. - 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","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","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","Testing 'thirt' function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" +" + Test that 'remove_char' function + removes the first and + last characters of a string. + :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","","" +" + 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","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" +" + Large lists + :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","","" +" + 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 + ","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","","" +" + Test with empty string + :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 stock_list function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" +" + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like mixed list + :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","","" +" + The 'sort_array' function. + + The task is to sort ascending odd numbers but + even numbers must be on their places. + + Zero isn't an odd number and you don't need to + move it. If you have an empty array, you need + 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 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","","" +" + Testing share_price function + with multiple test inputs + :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","","" +" + 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","","" +" + Testing check_root function with various test inputs + + 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","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" +"","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","","" +" + 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 '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","","" +" + 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","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" " Testing make_readable function @@ -376,69 +511,100 @@ :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","","" " - Testing permute_a_palindrome function + Test string with mixed type of chars :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","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","","" " - 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. + Use conditionals to to verify that greet + function returns the proper message. :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","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 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. + Simple Fun #152: Invite More Women? + Testing invite_more_women function (negative) + :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","","" +" + Verify that 'has_subpattern' function - 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'. + 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 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. - If a string contains all repeating characters, it should - return an empty string ("""") or None -- see sample tests. + The function should return a list of coordinates that are the furthest + away (by Manhattan distance) from all agents. :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","","" + ","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","","" " - Exclusive or or exclusive disjunction is a - logical operation that outputs true only when - inputs differ (one is true, the other is false). + Testing solution function - XOR outputs true whenever the inputs differ: + If we list all the natural numbers below 10 + that are multiples of 3 or 5, we get 3, 5, 6 and 9. + The sum of these multiples is 23. - Source: - https://en.wikipedia.org/wiki/Exclusive_or + Finish the solution so that it returns the sum of + all the multiples of 3 or 5 below the number passed in. + + Note: If the number is a multiple of both 3 and 5, + only count it once. :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","","" + ","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","","" " - 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 'DefaultList' class: insert :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","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","","" " Testing greek_comparator function with various test inputs :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","","" " - Test string with no alphabet chars + Positive test cases for is_prime function testing :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","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","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","test_solution_empty","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Testing encrypt_this function - :param self: + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :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","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 epidemic function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" +" + Test that no_space function removes the spaces + from the string, then return the resultant string. + :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","","" +" + 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","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 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","","" +" + non-consecutive is a negative number. + :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","","" +" + 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","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","","" " Testing sum_of_intervals function @@ -456,230 +622,188 @@ :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","","" " - 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","","" + Repeating char is a space + :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","","" " - Testing the 'unique_in_order' function - with various test data + In this kata you have to correctly return who + is the ""survivor"", ie: the last element of a + Josephus permutation. :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","test_josephus_survivor","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - 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 + Sample testing. + Expected result is 5 :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","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","","" " - Testing Battleship field validator - - 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 or b is negative :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","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","","" " - a an b are positive numbers + Testing 'sum_triangular_numbers' function + with positive numbers :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 '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","","" " - 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. + 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. - The board is always 9 cells by 9 cells, and every - cell only contains integers from 0 to 9. + Examples + + ""()"" => true + "")(()))"" => false + ""("" => false + ""(())((()())())"" => true :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 valid_parentheses 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 mixed list + Basic test case :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","test_triangle","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" " - String subpattern recognition I + Testing Battleship field validator - 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","","" + 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","","" " - Test with empty list + The 'pyramid' function should return + an Array of ascending length subarrays. + + Note: the subarrays should be filled with 1s. :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","","" + ","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","","" " - Test namelist + 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","","" +" + Testing gap function with various test inputs - Given: - an array containing hashes of names + A binary gap within a positive number num is + any sequence of consecutive zeros that is + surrounded by ones at both ends in the binary + representation of num. - 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. + The gap function should return the length of + its longest binary gap. + The function should return 0 if num doesn't + contain a binary gap. :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","","" + ","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","","" " - 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. + Testing permutations function - 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","","" + 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","","" " - 25 is a square number + Testing 'sum_triangular_numbers' function + with zero as an input :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","","" -" - 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","","" + ","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","","" " - Testing 'sum_triangular_numbers' function - with big number as an input + Testing shark function -> negative :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","","" + ","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 'sentencify' function. - - The function should: + Testing check_exam function - 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. + 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). :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","","" -" - Testing largestPower function - :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","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","","" " - If the whole array is consecutive then return - null or Nothing or None. + Basic test case :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","test_basic","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" " - The string ""This website is for losers LOL!"" - should become ""Ths wbst s fr lsrs LL!"" + 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","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 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","","" " - Simple positive test + 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!' :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 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 check_root function with various test inputs + Test namelist - 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. + Given: + an array containing hashes of names - If string contains other characters than number or - it has more or less than 4 numbers separated by comma - function returns ""incorrect input"". + 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. - If string contains 4 numbers but not consecutive it - returns ""not consecutive"". :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","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 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. + Testing calc class - The function should return a list of coordinates that are the furthest - away (by Manhattan distance) from all agents. - :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","","" + 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","","" +"","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","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","","" " - 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. + Testing shark function -> positive :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","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","","" " - The 'sort_array' function. - - The task is to sort ascending odd numbers but - even numbers must be on their places. - - Zero isn't an odd number and you don't need to - move it. If you have an empty array, you need - to return it. - + Test with empty list :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","'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 string with alphabet chars only :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","","" " - You are given two angles (in degrees) of a triangle. - Find the 3rd. - :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","","" -" - Testing string_transformer function - with multiple test data. + Testing men_from_boys function with + various test inputs - Given a string, return a new string that has - transformed based on the input: + Scenario + Now that the competition gets tough it + will Sort out the men from the boys . - 1. Change case of every character, ie. lower - case to upper case, upper case to lower case. + Men are the Even numbers and Boys are + the odd !alt !alt - 2. Reverse the order of words from the input. + 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 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","","" + ","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","","" " Testing a function that checks if a given number n is a prime looping through it and, possibly, expanding the array/list of @@ -690,120 +814,125 @@ :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","","" " - Verify that the function returns Messi's - total number of goals in all three leagues. - :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","","" -" - Testing 'letter_count' function + Testing duplicate_encode function + with various test inputs :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","","" + ","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","","" " - Testing next_bigger function + Testing next_smaller function - You have to test a function that takes a positive integer - number and returns the next bigger number formed by the same digits: + You have to test a function that takes a positive integer number + and returns the next smaller number formed by the same digits: - 12 ==> 21 - 513 ==> 531 - 2017 ==> 2071 + 21 ==> 12 + 531 ==> 513 + 2071 ==> 2017 - 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","","" + 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","","" " - 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. - - 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. + Returns a list that misses only one element :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","'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","","" " - Testing number_of_sigfigs function - with various test inputs + Negative tests :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","","" + ","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","","" " - 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","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + 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","","" +"","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","","" " - Positive test cases for is_prime function testing + Returns [] if list has only one element :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","'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","","" " - Testing check_for_factor function. + 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","","" +" + Your task is to verify that 'order' function + sorts a given string by following rules: - This function should test if the - factor is a factor of base. + 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 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","","" + ","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","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + 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","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 'longest_repetition' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" " - 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. + Testing get_size function with various inputs :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","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","","" " - 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. + Testing hoop_count function - The following are examples of how this function would be - used and what the expected results would be: + 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 + + - 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"". - 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","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","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","","" +"","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","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) + 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","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","","" + ","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","","" " - Basic test case + Testing litres function with various test inputs :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","","" + ","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","","" " - If there are no good ideas, - as is often the case, return 'Fail!'. + 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","","" +" + 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 with one char only :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","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","","" " - Testing 'save' function: positive - - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + if there are more than 2 return + 'I smell a series!'. :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","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","","" +" + 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","","" " Testing 'count_sheeps' function Consider an array of sheep where some sheep @@ -815,17 +944,31 @@ :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","","" " - Testing litres function with various test inputs + 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 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","","" + ","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","","" " - Basic test case + 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. :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 format_duration","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - 4 is a square number + Testing letter_frequency function + where all chars are in mixed case :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","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","","" " Testing Sudoku class @@ -834,162 +977,140 @@ :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","","" " - Testing 'save' function: negative - - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + Testing 'numericals' function :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 'numericals' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 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. + Testing pig_it function - For empty string return: ('', 0) + 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","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","","" -" - 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","","" + ","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","","" " - Sample Tests for make_upper_case 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. + + 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 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","","" + ","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","","" " - Test sum_two_smallest_numbers function - The function should return the sum of - the two lowest positive numbers + Testing the 'unique_in_order' function + with various test data :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","","" + ","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","","" " - Testing list_squared function - + Simple Fun #152: Invite More Women? + Testing invite_more_women function (positive) :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","","" + ","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","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","","" " - 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 'solution' function. + The should return a formatted string. + The return value should equal ""Value is VALUE"" + where value is a 5 digit padded number. :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","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","","" " - Test that no_space function removes the spaces - from the string, then return the resultant string. + If the whole array is consecutive then return + null or Nothing or None. :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","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","","" " - Testing 'solution' function. + 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. - The should return a formatted string. - The return value should equal ""Value is VALUE"" - where value is a 5 digit padded number. + For example: + + anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa'] + anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer'] + anagrams('laser', ['lazing', 'lazy', 'lacer']) => [] :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 anagrams function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Testing make_class function + Testing easy_diagonal function + :param self: :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","","" + ","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","","" +"","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 easy_line function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" " - Positive test cases for gen_primes function testing + Testing 'save' function: negative + + The function should determine how many + files of the copy queue you will be able + to save into your Hard Disk Drive. :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","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","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + If there are one or two good ideas, + return 'Publish!', :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","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","","" " - 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. + Testing list_squared function - The Rust version takes a slice of enum Direction - {NORTH, SOUTH, EAST, WEST}. :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","","" + ","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","","" " - Test with empty string - :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","","" + 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","","" " - Testing permutations function + Assert that 'domain_name' function + returns domain name from given URL string. - 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","","" + :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","","" " - 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 'DefaultList' class: pop + :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","","" " - Testing 'solution' function + 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 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","","" + The board is always 9 cells by 9 cells, and every + cell only contains integers from 0 to 9. + :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","","" " - 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. + Test string with no alphabet chars :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","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","","" " - 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. + Simple positive test :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 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","","" " - 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 - - Write a program where Alex can input (n) how many times - the hoop goes round and it will return him an encouraging message - - - 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"". - + Sample Tests for make_upper_case function :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","","" + ","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","","" " - Testing letter_frequency function - where all chars are in upper case + Test lists with multiple digits :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","","" + ","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","","" " - if there are more than 2 return - 'I smell a series!'. + -1: Negative numbers cannot be square numbers :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","Negative numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" +" + 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 growing_plant function @@ -1031,182 +1152,90 @@ 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","","" +"","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 '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","","" -" - Verify that 'has_subpattern' function + Testing alphabet_war function - 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 + 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. - 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. - :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","","" -" - Testing check_exam function + Task + Write a function that accepts battlefield string + and returns letters that survived the nuclear strike. - 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). + 1. The battlefield string consists of only small letters, #,[ and ]. + 2. The nuclear shelter is represented by square brackets []. + The letters inside the square brackets represent letters + inside the shelter. + + 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","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","","" -" - 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","","" -"","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","","" -" - Testing 'DefaultList' class: pop - :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","","" -" - 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 'DefaultList' class: append - :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","","" -" - Returns a list that misses only one element - :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","","" + ","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","","" " - a and b are equal + Testing encrypt_this function + :param self: :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 encrypt_this function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" " - 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. + Testing alphanumeric function with + various test inputs - Vasya is currently working as a clerk. - He wants to sell a ticket to every single person - in this line. + The string has the following conditions + to be alphanumeric only - 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? + 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 - 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","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" -" - Test with regular 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","","" -" - 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","","" + :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","","" " - Testing to_alternating_case function + In this kata, you must create a digital root function. + + 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: - ","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 digital_root function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" " Testing a function named increment_string :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","","" " - Testing 'sum_triangular_numbers' function - with zero as an input - :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","","" -" - 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. + 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 function should remove all agents that are outside of the city boundaries. :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_smallest","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 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 + String subpattern recognition I - 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. + 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 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 '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","","" " Testing length function @@ -1214,245 +1243,216 @@ (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","","" -" - 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 - :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","","" +"","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","","" " - Testing alphanumeric function with - various test inputs - - The string has the following conditions - to be alphanumeric only + Testing two_decimal_places function + with various test inputs - 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 + Each floating-point number should be + formatted that only the first two + decimal places are returned. - :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","","" -" - Testing ips_between function + You don't need to check whether the input + is a valid number because only valid numbers + are used in the tests. - Testing a function that receives two IPv4 addresses, - and returns the number of addresses between them - (including the first one, excluding the last one). + Don't round the numbers! Just cut them + after two decimal places! - 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","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 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","","" " - Testing all_fibonacci_numbers function - - You're going to provide a needy programmer a - utility method that generates an infinite sized, - sequential IntStream (in Python generator) - which contains all the numbers in a fibonacci - sequence. - - A fibonacci sequence starts with two 1s. - Every element afterwards is the sum of - the two previous elements. + Testing first_non_repeated function :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","","" + ","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","","" " - Testing check_for_factor function. + Testing is_solved function - This function should test if the - factor is a factor of base. + The function should return whether the + board's current state is solved. - Return false if it is not a factor. + 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","","" +" + Positive tests :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","","" + ","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","","" " - 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","","" + Positive test cases for gen_primes function testing + :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","","" " - Testing get_size function with various inputs + Testing make_class function :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 make_class function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","OOP","","" " - Testing 'sum_pairs' function + Testing 'snail' 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","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","","" + 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","","" " - 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 is_palindrome function + with various test inputs - :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","","" + 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","","" " - Negative tests + Verify that the function returns Messi's + total number of goals in all three leagues. :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","goals function verification","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" " - Testing set_alarm function with various test inputs. + 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 function should return true if you are employed - and not on vacation (because these are the circumstances - under which you need to set an alarm). It should return - false otherwise. + The Haskell version takes a list of directions with + data Direction = North | East | West | South. - Examples: + The Clojure version returns nil when the path is + reduced to nothing. - setAlarm(true, true) -> false - setAlarm(false, true) -> false - setAlarm(false, false) -> false - setAlarm(true, false) -> true + The Rust version takes a slice of enum Direction + {NORTH, SOUTH, EAST, WEST}. :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 dirReduc function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - The 'pyramid' function should return - an Array of ascending length subarrays. + Testing 'solution' function - Note: the subarrays should be filled with 1s. - :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","","" + 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 Calculator class - A simple calculator that given a string of operators '()', '+', '-', '*', '/' - and numbers separated by spaces will return the value of that expression + 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: 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","","" -" - 3 is not a square number - :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","","" -" - Repeating char is a space :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 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","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing number_of_sigfigs function + with various test inputs :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 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","","" +"","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","","" +"","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","","" " - Testing length function - where head = None + 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 method length, which accepts a linked list - (head), and returns the length of the list. + 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'] :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 flatten function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Positive tests + Testing largestPower function :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","Testing largestPower function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" " - Testing letter_frequency function - where all chars are in lower case + 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","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","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","","" " - 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","","" + a and b are equal + :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","","" " - Sample testing. - Expected result is 5 + You are given two angles (in degrees) of a triangle. + Find the 3rd. :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","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","","" " - Testing 'DefaultList' class: insert + Testing 'DefaultList' class: append :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","","" + ","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","","" " - 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. + Testing check_for_factor function. - Source: - https://en.wikipedia.org/wiki/Logical_disjunction + This function should test if the + factor is a factor of base. + Return false if it is not a factor. :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 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","","" " - Negative test cases for is_prime function testing + Testing letter_frequency function + where all chars are in upper case :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","","" + ","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","","" " - Testing monkey_count function - - You take your son to the forest to see the monkeys. - You know that there are a certain number there (n), - but your son is too young to just appreciate the full - number, he has to start counting them from 1. + Test with regular 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","","" +"","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","","" +" + The player rolls the dice and moves the number + of spaces indicated by the dice two times. - As a good parent, you will sit and count with him. - Given the number (n), populate an array with all - numbers up to and including that number, but excluding - zero. + Pass position and roll and compare the output + to the expected result :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","move function tests","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" " - a or b is negative + 3 is not a square number :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","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 take function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" " - 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. - + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :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","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","","" " - Testing max_multiple function with - various test data + Verify that multiply function + returns correct result + :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","","" +" + 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 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 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","","" " - 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","","" + 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","","" " - Test lists with multiple digits + 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 'count_sheeps' function + Hint: Don't forget to check for + bad values like null/undefined :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","","" + ","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","","" diff --git a/allure-report/data/suites.json b/allure-report/data/suites.json index f43b93143ec..f31b3493c3d 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"fbd4191028146e80","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":"7e0d94f0ee4e397d","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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 length function","uid":"eb3e9f6b3780b454","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 two_decimal_places function","uid":"996165a0ada95681","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":"b1c2f2381b1441f6","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":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"9519f48ec729ba4c","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":"2b9309fd398214a5","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"2d35bd18d5e6ee6b","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 men_from_boys function","uid":"e5ae32dea8d8e5c3","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 invite_more_women function (positive)","uid":"fd395297ed368b03","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":"9a325845218dd6ae","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":"d1aabae67bc18ba0","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":"92083f552ecb72c4","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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":"8451096f3488e82","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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 monkey_count function","uid":"5b9aa5357d8d514d","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: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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 'count_sheeps' function: mixed list","uid":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"83105e24306c53ac","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":"9f7fc4731241a976","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"90eee3ddc83b1454","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":"76f8c586f8a804f0","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":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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":"Testing make_upper_case function","uid":"ae7d3fce45bf33fb","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":"deed80da6e08bd69","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":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"ed5fbc4b14885f68","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":"874b39a75ad8fa3b","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":"54942c51ed88331c","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 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"490cf50ddd5cff83","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"a492d74df14be54a","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":"cd862d92408a60a2","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":"327fbdea3443aca5","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":"1073662453fffbc9","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":"139c28ca38674b14","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 or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"33b81b348332f41f","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":"e738d6d09d0feb9e","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":"b96004f0b179053d","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":"70085274c959a3cb","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":"884c8d1f852cc3dc","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":"d7c1fb6f236110ca","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":"4ecd1e835300dbcf","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"afae2f3faef55f2b","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":"fdff4b964fae0427","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":"e0851c0ba53ec6a9","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":"dead64fe3d4f484d","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"6d9afe9fda19581e","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":"Testing check_for_factor function: positive flow","uid":"afce902b58f1520a","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":"goals function verification","uid":"d1a80d9f422182d","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 shark function (positive)","uid":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"71d876f4d19ecd67","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":"1efaf2ab015adde4","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":"9525e56c1666fc0f","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":"9c38060cc376f686","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":"6ea719d6e8a376fb","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":"af580569ddf3e366","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":"d3037fd25424c6f3","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"693c5b2693478689","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 Calculator class","uid":"371888dd705cab28","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":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"test_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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_starting_position_from_negatives","uid":"801bdccb4e1aa824","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_starting_position_from_positives","uid":"ee4f0501c1152713","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 spiralize function","uid":"b1d54b76165521a0","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":"Testing Encoding functionality","uid":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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 top_3_words function","uid":"c7c7f21adbc73706","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 format_duration","uid":"47f8df09a84d8337","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 next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"Testing solution function","uid":"f80099cf6c294d2b","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":"test_permutations","uid":"1319e1ae94efdc02","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 'snail' function","uid":"95ddc175910ea52","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":"f711bbcd16ab2119","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":"d6e4ebd44034ff08","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":"82619e3fb0e84d4d","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":"e03974f538ea8ee6","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":"7f90afc62f8400f4","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":"2460353038ce1955","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"ace382695affabdf","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":"42bb8c96d4cb1bcf","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 2) function","uid":"9e5b993187ac8b27","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 1) function","uid":"98200e3d5ae32ca","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 3) function","uid":"59863a86bad45fb3","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 tickets function","uid":"dee0416f79d22a0d","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 the 'unique_in_order' function","uid":"15008ede7bd87a18","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":"test_ips_between","uid":"1dee8c06fd165199","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":"Testing done_or_not function","uid":"98d0f495e6dcba7e","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_solution_big","uid":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"5e6aa533c6c0fafa","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":"627da61e5891aa44","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 all_fibonacci_numbers function","uid":"d4c41912963969d7","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":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"c37dfc82a096ec09","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":"fd4d83368b6d5d5e","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":"57efbea0ccf3907a","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":"cb5c8ea3b9796931","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":"7fd5632b0213855d","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":"test_josephus_survivor","uid":"84fd4c67efee5295","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 is_prime function","uid":"ed30e8563a89229a","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":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"369d691aa58bf89d","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":"11b652a05502070f","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":"38639b46d1e381a9","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":"148a22b7e430194f","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 done_or_not function","uid":"2965d2d3db0ea08e","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 'generate_hashtag' function","uid":"14d24a2946d66b00","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 valid_parentheses function","uid":"b29b4bc1c1fe7917","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":"6cad203fab564c60","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":"31b67858aaa81503","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":"Testing solve function","uid":"41efd0d786aed73","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 upper case","uid":"d5ae1235bc27ccba","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":"All chars are in lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"2b7f0b03733442e8","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":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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 alphabet chars and spaces","uid":"b8b1a20b1ac22e64","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":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"Testing 'longest_repetition' function","uid":"d57f06aa2f911f40","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 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"test_sequence","uid":"b72d4e8ad3288d1b","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 'solution' function","uid":"84f17449b7b13451","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":"Testing 'numericals' function","uid":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"31cd5c9e8017f83c","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":"debf2b82465b0240","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 'thirt' function","uid":"585949d19b46a5d2","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 array_diff function","uid":"dc29e000a4adcd25","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 to_table function","uid":"e6a3da330525d2f4","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":"de04793abb90de01","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":"3a2392b112899a67","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":"c1e0648976f6a694","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"1719ddf6913445c8","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":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"2b38fe6b8a5a46","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":"616180d049b16d1d","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":"6ab6caccad49b468","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":"704aacac2db91585","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":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"cdfe495bc85470d2","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":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"9b82a842fdc9b867","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":"69f65011f131e2b6","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":"b97e3a9bf54f17f3","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":"1b3bd0a5ea1aa072","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":"35cf25b9e515e00d","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 diff --git a/allure-report/data/test-cases/6cc55bf9ac4c61ba.json b/allure-report/data/test-cases/103efa7b767774fa.json similarity index 57% rename from allure-report/data/test-cases/6cc55bf9ac4c61ba.json rename to allure-report/data/test-cases/103efa7b767774fa.json index 81e8903f2e0..83a565835db 100644 --- a/allure-report/data/test-cases/6cc55bf9ac4c61ba.json +++ b/allure-report/data/test-cases/103efa7b767774fa.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e09ff6118121df43","name":"stdout","source":"e09ff6118121df43.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::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":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"6cc55bf9ac4c61ba.json","parameterValues":[]} \ No newline at end of file +{"uid":"103efa7b767774fa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"737f4d50843fbb5","name":"stdout","source":"737f4d50843fbb5.txt","type":"text/plain","size":392}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"103efa7b767774fa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cbc7a26721b4acfd.json b/allure-report/data/test-cases/1073662453fffbc9.json similarity index 63% rename from allure-report/data/test-cases/cbc7a26721b4acfd.json rename to allure-report/data/test-cases/1073662453fffbc9.json index cee0fb59035..9995afddadd 100644 --- a/allure-report/data/test-cases/cbc7a26721b4acfd.json +++ b/allure-report/data/test-cases/1073662453fffbc9.json @@ -1 +1 @@ -{"uid":"cbc7a26721b4acfd","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a41b5cadf707dc0f","name":"stdout","source":"a41b5cadf707dc0f.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c32d359a7c2bd36e","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"cbc7a26721b4acfd.json","parameterValues":[]} \ No newline at end of file +{"uid":"1073662453fffbc9","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"caf6549170870e9e","name":"stdout","source":"caf6549170870e9e.txt","type":"text/plain","size":53}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3ffd9201b6a1ce3","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"1073662453fffbc9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/108c2723377a98c0.json b/allure-report/data/test-cases/108c2723377a98c0.json new file mode 100644 index 00000000000..f68580f346f --- /dev/null +++ b/allure-report/data/test-cases/108c2723377a98c0.json @@ -0,0 +1 @@ +{"uid":"108c2723377a98c0","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a2b0f0b93e0e2887","name":"stdout","source":"a2b0f0b93e0e2887.txt","type":"text/plain","size":453}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"108c2723377a98c0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a5c8b47c2adbbcb.json b/allure-report/data/test-cases/10b94291a50321ec.json similarity index 69% rename from allure-report/data/test-cases/8a5c8b47c2adbbcb.json rename to allure-report/data/test-cases/10b94291a50321ec.json index d3ccc95be39..1454aaeb074 100644 --- a/allure-report/data/test-cases/8a5c8b47c2adbbcb.json +++ b/allure-report/data/test-cases/10b94291a50321ec.json @@ -1 +1 @@ -{"uid":"8a5c8b47c2adbbcb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e3e63b4b3901e4cf","name":"stdout","source":"e3e63b4b3901e4cf.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8a5c8b47c2adbbcb.json","parameterValues":[]} \ No newline at end of file +{"uid":"10b94291a50321ec","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d1c728cd3990d41","name":"stdout","source":"4d1c728cd3990d41.txt","type":"text/plain","size":41}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"10b94291a50321ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d238edf9c2316ff.json b/allure-report/data/test-cases/1188dda60b67ea96.json similarity index 63% rename from allure-report/data/test-cases/3d238edf9c2316ff.json rename to allure-report/data/test-cases/1188dda60b67ea96.json index c3c4daf0262..773ac471a31 100644 --- a/allure-report/data/test-cases/3d238edf9c2316ff.json +++ b/allure-report/data/test-cases/1188dda60b67ea96.json @@ -1 +1 @@ -{"uid":"3d238edf9c2316ff","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cf1c2ed826ee28d4","name":"stdout","source":"cf1c2ed826ee28d4.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"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":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4516d446aa99f6ae","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"3d238edf9c2316ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"1188dda60b67ea96","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7177fb466625b3ce","name":"stdout","source":"7177fb466625b3ce.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c454649db0c0ed2","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"1188dda60b67ea96.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12359602ca4ac006.json b/allure-report/data/test-cases/11b0f4fd11e05b10.json similarity index 71% rename from allure-report/data/test-cases/12359602ca4ac006.json rename to allure-report/data/test-cases/11b0f4fd11e05b10.json index d7f18f20caf..7e46fe7efc4 100644 --- a/allure-report/data/test-cases/12359602ca4ac006.json +++ b/allure-report/data/test-cases/11b0f4fd11e05b10.json @@ -1 +1 @@ -{"uid":"12359602ca4ac006","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d9deb17ebdcc9231","name":"stdout","source":"d9deb17ebdcc9231.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"12359602ca4ac006.json","parameterValues":[]} \ No newline at end of file +{"uid":"11b0f4fd11e05b10","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4273c801c4c75440","name":"stdout","source":"4273c801c4c75440.txt","type":"text/plain","size":72}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"11b0f4fd11e05b10.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b54ad09f549aa423.json b/allure-report/data/test-cases/11b4e7794c00f220.json similarity index 71% rename from allure-report/data/test-cases/b54ad09f549aa423.json rename to allure-report/data/test-cases/11b4e7794c00f220.json index b48eab40299..42a47eb2c94 100644 --- a/allure-report/data/test-cases/b54ad09f549aa423.json +++ b/allure-report/data/test-cases/11b4e7794c00f220.json @@ -1 +1 @@ -{"uid":"b54ad09f549aa423","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"11b4e7794c00f220","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c931c8cfab53b972","name":"stdout","source":"c931c8cfab53b972.txt","type":"text/plain","size":243}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"11b4e7794c00f220.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e650d3e05f6d005c.json b/allure-report/data/test-cases/11b652a05502070f.json similarity index 68% rename from allure-report/data/test-cases/e650d3e05f6d005c.json rename to allure-report/data/test-cases/11b652a05502070f.json index 0bb950bc84c..e6d484e06b1 100644 --- a/allure-report/data/test-cases/e650d3e05f6d005c.json +++ b/allure-report/data/test-cases/11b652a05502070f.json @@ -1 +1 @@ -{"uid":"e650d3e05f6d005c","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eaa824bd6b5ae161","name":"stdout","source":"eaa824bd6b5ae161.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"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":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"28404a37037093b2","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"tags":["ALGORITHMS"]},"source":"e650d3e05f6d005c.json","parameterValues":[]} \ No newline at end of file +{"uid":"11b652a05502070f","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3de7bb1aa01966ff","name":"stdout","source":"3de7bb1aa01966ff.txt","type":"text/plain","size":272}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f81d7a6e8f8b1259","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"11b652a05502070f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11ee5493e293e3de.json b/allure-report/data/test-cases/11ee5493e293e3de.json new file mode 100644 index 00000000000..d6846566ab1 --- /dev/null +++ b/allure-report/data/test-cases/11ee5493e293e3de.json @@ -0,0 +1 @@ +{"uid":"11ee5493e293e3de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6431ac3684ba417d","name":"stdout","source":"6431ac3684ba417d.txt","type":"text/plain","size":793}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"11ee5493e293e3de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12ce3777e030dbb5.json b/allure-report/data/test-cases/12ce3777e030dbb5.json new file mode 100644 index 00000000000..7956fbaf5f6 --- /dev/null +++ b/allure-report/data/test-cases/12ce3777e030dbb5.json @@ -0,0 +1 @@ +{"uid":"12ce3777e030dbb5","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"715d12e01ffe8bd2","name":"stdout","source":"715d12e01ffe8bd2.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"12ce3777e030dbb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62692a0c3dd76e6c.json b/allure-report/data/test-cases/130e4ffebf4e47af.json similarity index 59% rename from allure-report/data/test-cases/62692a0c3dd76e6c.json rename to allure-report/data/test-cases/130e4ffebf4e47af.json index 24925a88cc3..4be0f7c1ab1 100644 --- a/allure-report/data/test-cases/62692a0c3dd76e6c.json +++ b/allure-report/data/test-cases/130e4ffebf4e47af.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"422dba3ada60a54e","name":"stdout","source":"422dba3ada60a54e.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"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":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ac1ab4d60441085","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"62692a0c3dd76e6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"130e4ffebf4e47af","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba17606ecf187aae","name":"stdout","source":"ba17606ecf187aae.txt","type":"text/plain","size":353}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b1ce4d34a0cdd5eb","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"130e4ffebf4e47af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6fbcaa806475fb37.json b/allure-report/data/test-cases/1319e1ae94efdc02.json similarity index 76% rename from allure-report/data/test-cases/6fbcaa806475fb37.json rename to allure-report/data/test-cases/1319e1ae94efdc02.json index 002e601b53e..76915efc38e 100644 --- a/allure-report/data/test-cases/6fbcaa806475fb37.json +++ b/allure-report/data/test-cases/1319e1ae94efdc02.json @@ -1 +1 @@ -{"uid":"6fbcaa806475fb37","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":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 +{"uid":"1319e1ae94efdc02","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":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":"a08dd22616aac704","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"1319e1ae94efdc02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aad768e2b1065e77.json b/allure-report/data/test-cases/133341d40af1e905.json similarity index 77% rename from allure-report/data/test-cases/aad768e2b1065e77.json rename to allure-report/data/test-cases/133341d40af1e905.json index f5e8ccac8c0..626e3693e30 100644 --- a/allure-report/data/test-cases/aad768e2b1065e77.json +++ b/allure-report/data/test-cases/133341d40af1e905.json @@ -1 +1 @@ -{"uid":"aad768e2b1065e77","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"133341d40af1e905","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b4f27bd29772e298","name":"stdout","source":"b4f27bd29772e298.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"133341d40af1e905.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f23a2b3d247ad31.json b/allure-report/data/test-cases/139c28ca38674b14.json similarity index 71% rename from allure-report/data/test-cases/7f23a2b3d247ad31.json rename to allure-report/data/test-cases/139c28ca38674b14.json index fcbbffa436f..8ada559e423 100644 --- a/allure-report/data/test-cases/7f23a2b3d247ad31.json +++ b/allure-report/data/test-cases/139c28ca38674b14.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c8aa30f0d3e03ac","name":"stdout","source":"8c8aa30f0d3e03ac.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7dd3a91cc990f40","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"7f23a2b3d247ad31.json","parameterValues":[]} \ No newline at end of file +{"uid":"139c28ca38674b14","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4a5ff4e66314365b","name":"stdout","source":"4a5ff4e66314365b.txt","type":"text/plain","size":55}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6e7e7d9161dd5e2","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"139c28ca38674b14.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13ca9b99f559671b.json b/allure-report/data/test-cases/13ca9b99f559671b.json deleted file mode 100644 index 9e9d4c794bd..00000000000 --- a/allure-report/data/test-cases/13ca9b99f559671b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"13ca9b99f559671b","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"792a133ebed89ed0","name":"stdout","source":"792a133ebed89ed0.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"13ca9b99f559671b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dbbed5b9582868fd.json b/allure-report/data/test-cases/13e77cd2d97ddcd8.json similarity index 61% rename from allure-report/data/test-cases/dbbed5b9582868fd.json rename to allure-report/data/test-cases/13e77cd2d97ddcd8.json index 63e6a7f0ab3..2e9eaa7b524 100644 --- a/allure-report/data/test-cases/dbbed5b9582868fd.json +++ b/allure-report/data/test-cases/13e77cd2d97ddcd8.json @@ -1 +1 @@ -{"uid":"dbbed5b9582868fd","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f74825a6f4542c1b","name":"stdout","source":"f74825a6f4542c1b.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"dbbed5b9582868fd.json","parameterValues":[]} \ No newline at end of file +{"uid":"13e77cd2d97ddcd8","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"940a8818c4ee9f6a","name":"stdout","source":"940a8818c4ee9f6a.txt","type":"text/plain","size":1367}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"13e77cd2d97ddcd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65073b7edfec4e6b.json b/allure-report/data/test-cases/1467bda4d9665eda.json similarity index 79% rename from allure-report/data/test-cases/65073b7edfec4e6b.json rename to allure-report/data/test-cases/1467bda4d9665eda.json index 39375b6d0db..f8505cbe76f 100644 --- a/allure-report/data/test-cases/65073b7edfec4e6b.json +++ b/allure-report/data/test-cases/1467bda4d9665eda.json @@ -1 +1 @@ -{"uid":"65073b7edfec4e6b","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1467bda4d9665eda","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1467bda4d9665eda.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a42793a5da57f5c7.json b/allure-report/data/test-cases/148a22b7e430194f.json similarity index 56% rename from allure-report/data/test-cases/a42793a5da57f5c7.json rename to allure-report/data/test-cases/148a22b7e430194f.json index 96f5961315d..143681d5c32 100644 --- a/allure-report/data/test-cases/a42793a5da57f5c7.json +++ b/allure-report/data/test-cases/148a22b7e430194f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b39f53200712f62","name":"stdout","source":"8b39f53200712f62.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"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":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3a99d84c035d8b08","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"a42793a5da57f5c7.json","parameterValues":[]} \ No newline at end of file +{"uid":"148a22b7e430194f","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f7258c787806381","name":"stdout","source":"7f7258c787806381.txt","type":"text/plain","size":531}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7511d5ab976a748a","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"148a22b7e430194f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a85b974bace8b60.json b/allure-report/data/test-cases/14d00f76e0b4f9e4.json similarity index 61% rename from allure-report/data/test-cases/8a85b974bace8b60.json rename to allure-report/data/test-cases/14d00f76e0b4f9e4.json index 283a157ff8e..0c46f03d915 100644 --- a/allure-report/data/test-cases/8a85b974bace8b60.json +++ b/allure-report/data/test-cases/14d00f76e0b4f9e4.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"78e4d411e3c9974d","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"8a85b974bace8b60.json","parameterValues":[]} \ No newline at end of file +{"uid":"14d00f76e0b4f9e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2077f18aded36c8a","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"14d00f76e0b4f9e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e943739be0c776f3.json b/allure-report/data/test-cases/14d24a2946d66b00.json similarity index 58% rename from allure-report/data/test-cases/e943739be0c776f3.json rename to allure-report/data/test-cases/14d24a2946d66b00.json index e3dcc335c19..1b3f7969c12 100644 --- a/allure-report/data/test-cases/e943739be0c776f3.json +++ b/allure-report/data/test-cases/14d24a2946d66b00.json @@ -1 +1 @@ -{"uid":"e943739be0c776f3","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","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 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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":"ff5bcd4167469499","name":"stdout","source":"ff5bcd4167469499.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::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":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dbbed5b9582868fd","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"e943739be0c776f3.json","parameterValues":[]} \ No newline at end of file +{"uid":"14d24a2946d66b00","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"207d1fd44f82d410","name":"stdout","source":"207d1fd44f82d410.txt","type":"text/plain","size":1367}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13e77cd2d97ddcd8","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["SORTING","ALGORITHMS"]},"source":"14d24a2946d66b00.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15008ede7bd87a18.json b/allure-report/data/test-cases/15008ede7bd87a18.json new file mode 100644 index 00000000000..bc081686813 --- /dev/null +++ b/allure-report/data/test-cases/15008ede7bd87a18.json @@ -0,0 +1 @@ +{"uid":"15008ede7bd87a18","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"920856e6e183642","name":"stdout","source":"920856e6e183642.txt","type":"text/plain","size":202}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e52950a202e2f6f","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":[]},"source":"15008ede7bd87a18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/16026a681cee6bae.json b/allure-report/data/test-cases/16026a681cee6bae.json deleted file mode 100644 index 28745259949..00000000000 --- a/allure-report/data/test-cases/16026a681cee6bae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"16026a681cee6bae","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/66511dda8143933e.json b/allure-report/data/test-cases/1719ddf6913445c8.json similarity index 68% rename from allure-report/data/test-cases/66511dda8143933e.json rename to allure-report/data/test-cases/1719ddf6913445c8.json index 49c5254cd05..e81e1adbeb3 100644 --- a/allure-report/data/test-cases/66511dda8143933e.json +++ b/allure-report/data/test-cases/1719ddf6913445c8.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1719ddf6913445c8","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8cdc7c5d92ea524","name":"stdout","source":"a8cdc7c5d92ea524.txt","type":"text/plain","size":1127}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"abba91be3722688b","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"66511dda8143933e","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"1719ddf6913445c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d611744698a52752.json b/allure-report/data/test-cases/1728ec761d912068.json similarity index 73% rename from allure-report/data/test-cases/d611744698a52752.json rename to allure-report/data/test-cases/1728ec761d912068.json index e9dba6c2817..9497f693287 100644 --- a/allure-report/data/test-cases/d611744698a52752.json +++ b/allure-report/data/test-cases/1728ec761d912068.json @@ -1 +1 @@ -{"uid":"d611744698a52752","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1728ec761d912068","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e2411421a238415","name":"stdout","source":"8e2411421a238415.txt","type":"text/plain","size":639}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1728ec761d912068.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f98184cdb1c288eb.json b/allure-report/data/test-cases/17d8ff61005bb0bc.json similarity index 68% rename from allure-report/data/test-cases/f98184cdb1c288eb.json rename to allure-report/data/test-cases/17d8ff61005bb0bc.json index b75f9ba6bf9..538524e9b35 100644 --- a/allure-report/data/test-cases/f98184cdb1c288eb.json +++ b/allure-report/data/test-cases/17d8ff61005bb0bc.json @@ -1 +1 @@ -{"uid":"f98184cdb1c288eb","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f98184cdb1c288eb.json","parameterValues":[]} \ No newline at end of file +{"uid":"17d8ff61005bb0bc","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"17d8ff61005bb0bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e321a1f70ebe865a.json b/allure-report/data/test-cases/17f807e7e2cad355.json similarity index 71% rename from allure-report/data/test-cases/e321a1f70ebe865a.json rename to allure-report/data/test-cases/17f807e7e2cad355.json index 6acc3e1dbb4..92b0a9b2109 100644 --- a/allure-report/data/test-cases/e321a1f70ebe865a.json +++ b/allure-report/data/test-cases/17f807e7e2cad355.json @@ -1 +1 @@ -{"uid":"e321a1f70ebe865a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c678f64458ff79c1","name":"stdout","source":"c678f64458ff79c1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e321a1f70ebe865a.json","parameterValues":[]} \ No newline at end of file +{"uid":"17f807e7e2cad355","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1124405dfe872592","name":"stdout","source":"1124405dfe872592.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"17f807e7e2cad355.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46a578b6417fd35d.json b/allure-report/data/test-cases/19146436627ee869.json similarity index 73% rename from allure-report/data/test-cases/46a578b6417fd35d.json rename to allure-report/data/test-cases/19146436627ee869.json index a28c584a54d..96b10678aa6 100644 --- a/allure-report/data/test-cases/46a578b6417fd35d.json +++ b/allure-report/data/test-cases/19146436627ee869.json @@ -1 +1 @@ -{"uid":"46a578b6417fd35d","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ed807b9aabc03ce3","name":"stdout","source":"ed807b9aabc03ce3.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"46a578b6417fd35d.json","parameterValues":[]} \ No newline at end of file +{"uid":"19146436627ee869","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"84f9893956705e3c","name":"stdout","source":"84f9893956705e3c.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"19146436627ee869.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6b49391a0624f51c.json b/allure-report/data/test-cases/19910c11538825d6.json similarity index 58% rename from allure-report/data/test-cases/6b49391a0624f51c.json rename to allure-report/data/test-cases/19910c11538825d6.json index fbac414a4ab..ecb7f21cbf3 100644 --- a/allure-report/data/test-cases/6b49391a0624f51c.json +++ b/allure-report/data/test-cases/19910c11538825d6.json @@ -1 +1 @@ -{"uid":"6b49391a0624f51c","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c19e93a1a848049d","name":"stdout","source":"c19e93a1a848049d.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"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":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1fa9af8d7ed67798","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"6b49391a0624f51c.json","parameterValues":[]} \ No newline at end of file +{"uid":"19910c11538825d6","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e5b745fd985bd7ab","name":"stdout","source":"e5b745fd985bd7ab.txt","type":"text/plain","size":1088}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b4ada0bf1630c0a","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"19910c11538825d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27844b15371870f6.json b/allure-report/data/test-cases/1b018537831100fb.json similarity index 74% rename from allure-report/data/test-cases/27844b15371870f6.json rename to allure-report/data/test-cases/1b018537831100fb.json index 4ec8ad9fecf..e53f32a32c3 100644 --- a/allure-report/data/test-cases/27844b15371870f6.json +++ b/allure-report/data/test-cases/1b018537831100fb.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"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_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"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":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"27844b15371870f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b018537831100fb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b018537831100fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2030ea00b6998f67.json b/allure-report/data/test-cases/1b3bd0a5ea1aa072.json similarity index 65% rename from allure-report/data/test-cases/2030ea00b6998f67.json rename to allure-report/data/test-cases/1b3bd0a5ea1aa072.json index 525b23a7009..9be4f3ee3f5 100644 --- a/allure-report/data/test-cases/2030ea00b6998f67.json +++ b/allure-report/data/test-cases/1b3bd0a5ea1aa072.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1b3bd0a5ea1aa072","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"35b0040677726bbd","name":"stdout","source":"35b0040677726bbd.txt","type":"text/plain","size":22}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"a381266642fdbdd2","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2030ea00b6998f67","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"1b3bd0a5ea1aa072.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5efb61e311267c0.json b/allure-report/data/test-cases/1b8dc3acaf7dd027.json similarity index 72% rename from allure-report/data/test-cases/a5efb61e311267c0.json rename to allure-report/data/test-cases/1b8dc3acaf7dd027.json index d83b2563d80..7518cc12392 100644 --- a/allure-report/data/test-cases/a5efb61e311267c0.json +++ b/allure-report/data/test-cases/1b8dc3acaf7dd027.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d4bf4df7343a141f","name":"stdout","source":"d4bf4df7343a141f.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a5efb61e311267c0.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b8dc3acaf7dd027","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3d08be5d3c35bf84","name":"stdout","source":"3d08be5d3c35bf84.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b8dc3acaf7dd027.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f5cda838e1e2c35.json b/allure-report/data/test-cases/1bbe34ba42279f71.json similarity index 72% rename from allure-report/data/test-cases/3f5cda838e1e2c35.json rename to allure-report/data/test-cases/1bbe34ba42279f71.json index 3814a78195c..a0d77b23299 100644 --- a/allure-report/data/test-cases/3f5cda838e1e2c35.json +++ b/allure-report/data/test-cases/1bbe34ba42279f71.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1bbe34ba42279f71","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1fc52e2c49c9d723","name":"stdout","source":"1fc52e2c49c9d723.txt","type":"text/plain","size":225}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1bbe34ba42279f71.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dea681370cee7fa1.json b/allure-report/data/test-cases/1c0de6c68e45d781.json similarity index 72% rename from allure-report/data/test-cases/dea681370cee7fa1.json rename to allure-report/data/test-cases/1c0de6c68e45d781.json index aa0e315e37a..89bfe0d1ed2 100644 --- a/allure-report/data/test-cases/dea681370cee7fa1.json +++ b/allure-report/data/test-cases/1c0de6c68e45d781.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":[{"uid":"abfce931e4a4e183","name":"stdout","source":"abfce931e4a4e183.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"dea681370cee7fa1.json","parameterValues":[]} \ No newline at end of file +{"uid":"1c0de6c68e45d781","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5ba70b78893a0ae6","name":"stdout","source":"5ba70b78893a0ae6.txt","type":"text/plain","size":556}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1c0de6c68e45d781.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4516d446aa99f6ae.json b/allure-report/data/test-cases/1c454649db0c0ed2.json similarity index 67% rename from allure-report/data/test-cases/4516d446aa99f6ae.json rename to allure-report/data/test-cases/1c454649db0c0ed2.json index 068e2f1f8cd..17dd77d9cc6 100644 --- a/allure-report/data/test-cases/4516d446aa99f6ae.json +++ b/allure-report/data/test-cases/1c454649db0c0ed2.json @@ -1 +1 @@ -{"uid":"4516d446aa99f6ae","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"178127e0b150af3e","name":"stdout","source":"178127e0b150af3e.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"4516d446aa99f6ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"1c454649db0c0ed2","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"251428633abf607e","name":"stdout","source":"251428633abf607e.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"1c454649db0c0ed2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fed28c7a9755def6.json b/allure-report/data/test-cases/1c922c5f58027b49.json similarity index 63% rename from allure-report/data/test-cases/fed28c7a9755def6.json rename to allure-report/data/test-cases/1c922c5f58027b49.json index 966fe7c59ef..47e56281e5e 100644 --- a/allure-report/data/test-cases/fed28c7a9755def6.json +++ b/allure-report/data/test-cases/1c922c5f58027b49.json @@ -1 +1 @@ -{"uid":"fed28c7a9755def6","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"51d402aefb9d5a50","name":"stdout","source":"51d402aefb9d5a50.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4bb5c832e26c3df6","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"fed28c7a9755def6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1c922c5f58027b49","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba01f85fc1c9de89","name":"stdout","source":"ba01f85fc1c9de89.txt","type":"text/plain","size":96}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e354a7b4ef8aa9f","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1c922c5f58027b49.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5ac2209dd79eabb.json b/allure-report/data/test-cases/1dee8c06fd165199.json similarity index 81% rename from allure-report/data/test-cases/e5ac2209dd79eabb.json rename to allure-report/data/test-cases/1dee8c06fd165199.json index 77e72aff325..cba837c33ba 100644 --- a/allure-report/data/test-cases/e5ac2209dd79eabb.json +++ b/allure-report/data/test-cases/1dee8c06fd165199.json @@ -1 +1 @@ -{"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 +{"uid":"1dee8c06fd165199","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":"9a93b35004a87c6a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"1dee8c06fd165199.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fe9e7cd98fc040fc.json b/allure-report/data/test-cases/1dfdd5c5551a6420.json similarity index 63% rename from allure-report/data/test-cases/fe9e7cd98fc040fc.json rename to allure-report/data/test-cases/1dfdd5c5551a6420.json index 41659fd58e9..8c836bbb2bc 100644 --- a/allure-report/data/test-cases/fe9e7cd98fc040fc.json +++ b/allure-report/data/test-cases/1dfdd5c5551a6420.json @@ -1 +1 @@ -{"uid":"fe9e7cd98fc040fc","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1dfdd5c5551a6420","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dc00b83d62a7bfbf","name":"stdout","source":"dc00b83d62a7bfbf.txt","type":"text/plain","size":401}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1dfdd5c5551a6420.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa56d75fd8c33c3c.json b/allure-report/data/test-cases/1e3570598c901af4.json similarity index 64% rename from allure-report/data/test-cases/fa56d75fd8c33c3c.json rename to allure-report/data/test-cases/1e3570598c901af4.json index edb6ef2cd7d..b1b686f948c 100644 --- a/allure-report/data/test-cases/fa56d75fd8c33c3c.json +++ b/allure-report/data/test-cases/1e3570598c901af4.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"1e3570598c901af4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4158b1e0c4f5a122","name":"stdout","source":"4158b1e0c4f5a122.txt","type":"text/plain","size":1865}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1e3570598c901af4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e52950a202e2f6f.json b/allure-report/data/test-cases/1e52950a202e2f6f.json new file mode 100644 index 00000000000..08a22eb5f4b --- /dev/null +++ b/allure-report/data/test-cases/1e52950a202e2f6f.json @@ -0,0 +1 @@ +{"uid":"1e52950a202e2f6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ffc7fe5a8d7f425","name":"stdout","source":"1ffc7fe5a8d7f425.txt","type":"text/plain","size":202}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1e52950a202e2f6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0c848519588d2dc.json b/allure-report/data/test-cases/1ece392343bb9b12.json similarity index 64% rename from allure-report/data/test-cases/f0c848519588d2dc.json rename to allure-report/data/test-cases/1ece392343bb9b12.json index 7d4dd1bd3f9..8425360bd69 100644 --- a/allure-report/data/test-cases/f0c848519588d2dc.json +++ b/allure-report/data/test-cases/1ece392343bb9b12.json @@ -1 +1 @@ -{"uid":"f0c848519588d2dc","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d2acfc856d6695aa","name":"stdout","source":"d2acfc856d6695aa.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a5efb61e311267c0","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"tags":[]},"source":"f0c848519588d2dc.json","parameterValues":[]} \ No newline at end of file +{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85aa32b5caa3d259","name":"stdout","source":"85aa32b5caa3d259.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b8dc3acaf7dd027","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":[]},"source":"1ece392343bb9b12.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9257abb983650c85.json b/allure-report/data/test-cases/1edd352618c6aa2b.json similarity index 92% rename from allure-report/data/test-cases/9257abb983650c85.json rename to allure-report/data/test-cases/1edd352618c6aa2b.json index ca20a2af699..772fb6750df 100644 --- a/allure-report/data/test-cases/9257abb983650c85.json +++ b/allure-report/data/test-cases/1edd352618c6aa2b.json @@ -1 +1 @@ -{"uid":"9257abb983650c85","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"9257abb983650c85.json","parameterValues":[]} \ No newline at end of file +{"uid":"1edd352618c6aa2b","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"1edd352618c6aa2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6af8370630444180.json b/allure-report/data/test-cases/1efaf2ab015adde4.json similarity index 65% rename from allure-report/data/test-cases/6af8370630444180.json rename to allure-report/data/test-cases/1efaf2ab015adde4.json index 99d73a0440f..95782a96472 100644 --- a/allure-report/data/test-cases/6af8370630444180.json +++ b/allure-report/data/test-cases/1efaf2ab015adde4.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b6c4fbc0a7fcea99","name":"stdout","source":"b6c4fbc0a7fcea99.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::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":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"da73571dee0329e4","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"6af8370630444180.json","parameterValues":[]} \ No newline at end of file +{"uid":"1efaf2ab015adde4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e9be09b414388f9","name":"stdout","source":"5e9be09b414388f9.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab70ba446dcfc9e3","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"1efaf2ab015adde4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/742a65a772f90af2.json b/allure-report/data/test-cases/1f991ba5bad9e7e9.json similarity index 61% rename from allure-report/data/test-cases/742a65a772f90af2.json rename to allure-report/data/test-cases/1f991ba5bad9e7e9.json index d9b674ebfae..72c41a1984b 100644 --- a/allure-report/data/test-cases/742a65a772f90af2.json +++ b/allure-report/data/test-cases/1f991ba5bad9e7e9.json @@ -1 +1 @@ -{"uid":"742a65a772f90af2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"35d53e86a3d51a7b","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"tags":[]},"source":"742a65a772f90af2.json","parameterValues":[]} \ No newline at end of file +{"uid":"1f991ba5bad9e7e9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf3022b66d91aba7","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"1f991ba5bad9e7e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb2c31b2b7e0b335.json b/allure-report/data/test-cases/20308d2341c6b899.json similarity index 94% rename from allure-report/data/test-cases/eb2c31b2b7e0b335.json rename to allure-report/data/test-cases/20308d2341c6b899.json index 8b591f68c07..35c5835e4bb 100644 --- a/allure-report/data/test-cases/eb2c31b2b7e0b335.json +++ b/allure-report/data/test-cases/20308d2341c6b899.json @@ -1 +1 @@ -{"uid":"eb2c31b2b7e0b335","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":"eb2c31b2b7e0b335.json","parameterValues":[]} \ No newline at end of file +{"uid":"20308d2341c6b899","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":"20308d2341c6b899.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0604dcf0c194a67.json b/allure-report/data/test-cases/204251456ada0752.json similarity index 72% rename from allure-report/data/test-cases/e0604dcf0c194a67.json rename to allure-report/data/test-cases/204251456ada0752.json index 6cfafe4c208..0fa4d6760b9 100644 --- a/allure-report/data/test-cases/e0604dcf0c194a67.json +++ b/allure-report/data/test-cases/204251456ada0752.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"204251456ada0752","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2dcda4c0465e81d2","name":"stdout","source":"2dcda4c0465e81d2.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"204251456ada0752.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78e4d411e3c9974d.json b/allure-report/data/test-cases/2077f18aded36c8a.json similarity index 72% rename from allure-report/data/test-cases/78e4d411e3c9974d.json rename to allure-report/data/test-cases/2077f18aded36c8a.json index 4237fafe32c..3623bd44c77 100644 --- a/allure-report/data/test-cases/78e4d411e3c9974d.json +++ b/allure-report/data/test-cases/2077f18aded36c8a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"78e4d411e3c9974d.json","parameterValues":[]} \ No newline at end of file +{"uid":"2077f18aded36c8a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"2077f18aded36c8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9130d2ce9d2203c6.json b/allure-report/data/test-cases/22fcf1edf8ebf197.json similarity index 93% rename from allure-report/data/test-cases/9130d2ce9d2203c6.json rename to allure-report/data/test-cases/22fcf1edf8ebf197.json index 75884fe747e..eff5e852cd0 100644 --- a/allure-report/data/test-cases/9130d2ce9d2203c6.json +++ b/allure-report/data/test-cases/22fcf1edf8ebf197.json @@ -1 +1 @@ -{"uid":"9130d2ce9d2203c6","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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 +{"uid":"22fcf1edf8ebf197","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"22fcf1edf8ebf197.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffa8274e0de065ab.json b/allure-report/data/test-cases/2348115dae27ed81.json similarity index 71% rename from allure-report/data/test-cases/ffa8274e0de065ab.json rename to allure-report/data/test-cases/2348115dae27ed81.json index fb97251d5fd..62b34295e68 100644 --- a/allure-report/data/test-cases/ffa8274e0de065ab.json +++ b/allure-report/data/test-cases/2348115dae27ed81.json @@ -1 +1 @@ -{"uid":"ffa8274e0de065ab","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2348115dae27ed81","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cf2100e65e09b423","name":"stdout","source":"cf2100e65e09b423.txt","type":"text/plain","size":908}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":14,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2348115dae27ed81.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c8287ca55a94ba5.json b/allure-report/data/test-cases/23b523b580f78123.json similarity index 56% rename from allure-report/data/test-cases/9c8287ca55a94ba5.json rename to allure-report/data/test-cases/23b523b580f78123.json index 9d88de626be..6883b226109 100644 --- a/allure-report/data/test-cases/9c8287ca55a94ba5.json +++ b/allure-report/data/test-cases/23b523b580f78123.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fdf2076e64b836","name":"stdout","source":"fdf2076e64b836.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::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":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9c8287ca55a94ba5.json","parameterValues":[]} \ No newline at end of file +{"uid":"23b523b580f78123","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e747e2d69cfbefdf","name":"stdout","source":"e747e2d69cfbefdf.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23b523b580f78123.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e09cd6c2a9399b84.json b/allure-report/data/test-cases/23cc390416e7aa52.json similarity index 65% rename from allure-report/data/test-cases/e09cd6c2a9399b84.json rename to allure-report/data/test-cases/23cc390416e7aa52.json index 4a938d5ed28..2f58852879a 100644 --- a/allure-report/data/test-cases/e09cd6c2a9399b84.json +++ b/allure-report/data/test-cases/23cc390416e7aa52.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1652eb7ad7f7ffae","name":"stdout","source":"1652eb7ad7f7ffae.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"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":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e09cd6c2a9399b84.json","parameterValues":[]} \ No newline at end of file +{"uid":"23cc390416e7aa52","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e67bc3e5b3334332","name":"stdout","source":"e67bc3e5b3334332.txt","type":"text/plain","size":298}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23cc390416e7aa52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23d2f8eb0089d9c.json b/allure-report/data/test-cases/23d2f8eb0089d9c.json deleted file mode 100644 index f9d20386b30..00000000000 --- a/allure-report/data/test-cases/23d2f8eb0089d9c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"23d2f8eb0089d9c","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/afdaa298aab7eba8.json b/allure-report/data/test-cases/2460353038ce1955.json similarity index 61% rename from allure-report/data/test-cases/afdaa298aab7eba8.json rename to allure-report/data/test-cases/2460353038ce1955.json index b2e72df2e4e..fb5f844f441 100644 --- a/allure-report/data/test-cases/afdaa298aab7eba8.json +++ b/allure-report/data/test-cases/2460353038ce1955.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2460353038ce1955","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b7bfbf78e894e0ca","name":"stdout","source":"b7bfbf78e894e0ca.txt","type":"text/plain","size":882}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55d1d73293e16236","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"afdaa298aab7eba8","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"2460353038ce1955.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c16d54e01aa089ec.json b/allure-report/data/test-cases/2512233f29820ca9.json similarity index 65% rename from allure-report/data/test-cases/c16d54e01aa089ec.json rename to allure-report/data/test-cases/2512233f29820ca9.json index 16c68578316..9e056a3a634 100644 --- a/allure-report/data/test-cases/c16d54e01aa089ec.json +++ b/allure-report/data/test-cases/2512233f29820ca9.json @@ -1 +1 @@ -{"uid":"c16d54e01aa089ec","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2512233f29820ca9","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472843,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472843,"stop":1724733472890,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472890,"stop":1724733472921,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4cd1e84a01209f22","name":"stdout","source":"4cd1e84a01209f22.txt","type":"text/plain","size":932}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2512233f29820ca9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b93db50e25bdce85.json b/allure-report/data/test-cases/252f381a068f762f.json similarity index 71% rename from allure-report/data/test-cases/b93db50e25bdce85.json rename to allure-report/data/test-cases/252f381a068f762f.json index faf6d0347f9..2b63931f001 100644 --- a/allure-report/data/test-cases/b93db50e25bdce85.json +++ b/allure-report/data/test-cases/252f381a068f762f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"252f381a068f762f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6062d7cf7b32bc2c","name":"stdout","source":"6062d7cf7b32bc2c.txt","type":"text/plain","size":676}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"252f381a068f762f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e49aa125a2c6746.json b/allure-report/data/test-cases/25be1d40d6774add.json similarity index 66% rename from allure-report/data/test-cases/9e49aa125a2c6746.json rename to allure-report/data/test-cases/25be1d40d6774add.json index 7dfc602b3b7..6dc91fdcbcf 100644 --- a/allure-report/data/test-cases/9e49aa125a2c6746.json +++ b/allure-report/data/test-cases/25be1d40d6774add.json @@ -1 +1 @@ -{"uid":"9e49aa125a2c6746","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"94a514fff914ffad","name":"stdout","source":"94a514fff914ffad.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"9e49aa125a2c6746.json","parameterValues":[]} \ No newline at end of file +{"uid":"25be1d40d6774add","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8036761eae2b6cd","name":"stdout","source":"b8036761eae2b6cd.txt","type":"text/plain","size":196}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"25be1d40d6774add.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/266702a52edb0749.json b/allure-report/data/test-cases/266702a52edb0749.json new file mode 100644 index 00000000000..d100cfb227d --- /dev/null +++ b/allure-report/data/test-cases/266702a52edb0749.json @@ -0,0 +1 @@ +{"uid":"266702a52edb0749","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cb5281dd2f2e56c3","name":"stdout","source":"cb5281dd2f2e56c3.txt","type":"text/plain","size":27}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"266702a52edb0749.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26cf86ca9eda4b5.json b/allure-report/data/test-cases/26cf86ca9eda4b5.json new file mode 100644 index 00000000000..de4d2af0ed4 --- /dev/null +++ b/allure-report/data/test-cases/26cf86ca9eda4b5.json @@ -0,0 +1 @@ +{"uid":"26cf86ca9eda4b5","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5eb9c17e95fe424","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"26cf86ca9eda4b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b04dd834a1d39093.json b/allure-report/data/test-cases/270b5395a9143b9c.json similarity index 71% rename from allure-report/data/test-cases/b04dd834a1d39093.json rename to allure-report/data/test-cases/270b5395a9143b9c.json index 545a5003bc6..145be627c57 100644 --- a/allure-report/data/test-cases/b04dd834a1d39093.json +++ b/allure-report/data/test-cases/270b5395a9143b9c.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"19eb43b014d8e007","name":"stdout","source":"19eb43b014d8e007.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b04dd834a1d39093.json","parameterValues":[]} \ No newline at end of file +{"uid":"270b5395a9143b9c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f457bf5da9408839","name":"stdout","source":"f457bf5da9408839.txt","type":"text/plain","size":36}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"270b5395a9143b9c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f80f9bf6821c7c25.json b/allure-report/data/test-cases/280a7287fd39d5a9.json similarity index 62% rename from allure-report/data/test-cases/f80f9bf6821c7c25.json rename to allure-report/data/test-cases/280a7287fd39d5a9.json index b56b02af0e7..8410d1ee7e5 100644 --- a/allure-report/data/test-cases/f80f9bf6821c7c25.json +++ b/allure-report/data/test-cases/280a7287fd39d5a9.json @@ -1 +1 @@ -{"uid":"f80f9bf6821c7c25","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":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 +{"uid":"280a7287fd39d5a9","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5b1486b52334c41e","name":"stdout","source":"5b1486b52334c41e.txt","type":"text/plain","size":222}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":2,"unknown":0,"total":2},"items":[{"uid":"f80f9bf6821c7c25","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"280a7287fd39d5a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/29266ed99d46b2a.json b/allure-report/data/test-cases/29266ed99d46b2a.json deleted file mode 100644 index d3f0ef0d54f..00000000000 --- a/allure-report/data/test-cases/29266ed99d46b2a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"29266ed99d46b2a","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3989d4323468e7bb","name":"stdout","source":"3989d4323468e7bb.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"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":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"838103f8c8d195b2","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"29266ed99d46b2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be5a8376fdcba717.json b/allure-report/data/test-cases/2965d2d3db0ea08e.json similarity index 70% rename from allure-report/data/test-cases/be5a8376fdcba717.json rename to allure-report/data/test-cases/2965d2d3db0ea08e.json index 88d07823ae4..4918d27313a 100644 --- a/allure-report/data/test-cases/be5a8376fdcba717.json +++ b/allure-report/data/test-cases/2965d2d3db0ea08e.json @@ -1 +1 @@ -{"uid":"be5a8376fdcba717","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6f54ca69ed4a797e","name":"stdout","source":"6f54ca69ed4a797e.txt","type":"text/plain","size":931}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"895ce9b19a080b91","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"be5a8376fdcba717","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"2965d2d3db0ea08e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb3ce43e36479ba0.json b/allure-report/data/test-cases/2aa3a63b6fff605a.json similarity index 55% rename from allure-report/data/test-cases/fb3ce43e36479ba0.json rename to allure-report/data/test-cases/2aa3a63b6fff605a.json index d7d2d9c5a89..a6af894e487 100644 --- a/allure-report/data/test-cases/fb3ce43e36479ba0.json +++ b/allure-report/data/test-cases/2aa3a63b6fff605a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2aa3a63b6fff605a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47bd852e88dda4bd","name":"stdout","source":"47bd852e88dda4bd.txt","type":"text/plain","size":554}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8cc7e1ba1a4852f","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fb3ce43e36479ba0","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2aa3a63b6fff605a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b843b5b7994550ed.json b/allure-report/data/test-cases/2acb560e089cb7c8.json similarity index 63% rename from allure-report/data/test-cases/b843b5b7994550ed.json rename to allure-report/data/test-cases/2acb560e089cb7c8.json index dac93562f2b..6749e4af168 100644 --- a/allure-report/data/test-cases/b843b5b7994550ed.json +++ b/allure-report/data/test-cases/2acb560e089cb7c8.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c34ac517b9df672f","name":"stdout","source":"c34ac517b9df672f.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b44596de448230b8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"b843b5b7994550ed.json","parameterValues":[]} \ No newline at end of file +{"uid":"2acb560e089cb7c8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"698bafa9b89cd763","name":"stdout","source":"698bafa9b89cd763.txt","type":"text/plain","size":32}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84aa3b23910872ae","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"2acb560e089cb7c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b38fe6b8a5a46.json b/allure-report/data/test-cases/2b38fe6b8a5a46.json new file mode 100644 index 00000000000..70db00d2a78 --- /dev/null +++ b/allure-report/data/test-cases/2b38fe6b8a5a46.json @@ -0,0 +1 @@ +{"uid":"2b38fe6b8a5a46","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6cceaf28d236f584","name":"stdout","source":"6cceaf28d236f584.txt","type":"text/plain","size":1380}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9cc84b4c3c851a20","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"2b38fe6b8a5a46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b3e2264864275ed.json b/allure-report/data/test-cases/2b3e2264864275ed.json deleted file mode 100644 index 596e514c09c..00000000000 --- a/allure-report/data/test-cases/2b3e2264864275ed.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2b3e2264864275ed","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"66a01ccf7a5d5fb","name":"stdout","source":"66a01ccf7a5d5fb.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2b3e2264864275ed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8ada246e9141e4e.json b/allure-report/data/test-cases/2b7f0b03733442e8.json similarity index 64% rename from allure-report/data/test-cases/a8ada246e9141e4e.json rename to allure-report/data/test-cases/2b7f0b03733442e8.json index 458420cded3..e1bdb50698c 100644 --- a/allure-report/data/test-cases/a8ada246e9141e4e.json +++ b/allure-report/data/test-cases/2b7f0b03733442e8.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","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 duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"636289116dbc88a1","name":"stdout","source":"636289116dbc88a1.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"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":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c56dac6db0d4b2a0","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"tags":[]},"source":"a8ada246e9141e4e.json","parameterValues":[]} \ No newline at end of file +{"uid":"2b7f0b03733442e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"737d6b3bd85f76bf","name":"stdout","source":"737d6b3bd85f76bf.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5740cd94d023a2bf","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"tags":[]},"source":"2b7f0b03733442e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f09191f837671677.json b/allure-report/data/test-cases/2b9309fd398214a5.json similarity index 67% rename from allure-report/data/test-cases/f09191f837671677.json rename to allure-report/data/test-cases/2b9309fd398214a5.json index 8a36bf1a73b..72d4199f7da 100644 --- a/allure-report/data/test-cases/f09191f837671677.json +++ b/allure-report/data/test-cases/2b9309fd398214a5.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9ad11c0bf2af69dd","name":"stdout","source":"9ad11c0bf2af69dd.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df06e2a5507646ca","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"tags":[]},"source":"f09191f837671677.json","parameterValues":[]} \ No newline at end of file +{"uid":"2b9309fd398214a5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"754273bb670e7e63","name":"stdout","source":"754273bb670e7e63.txt","type":"text/plain","size":336}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"30fbee992b0ca53e","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":[]},"source":"2b9309fd398214a5.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"baef923daaeaa1ca","name":"stdout","source":"baef923daaeaa1ca.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2b9e2e21ff531ae4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c78d4954ac14f9e.json b/allure-report/data/test-cases/2c78d4954ac14f9e.json new file mode 100644 index 00000000000..9df8d71c9a9 --- /dev/null +++ b/allure-report/data/test-cases/2c78d4954ac14f9e.json @@ -0,0 +1 @@ +{"uid":"2c78d4954ac14f9e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6344061f744d93d","name":"stdout","source":"6344061f744d93d.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"474af6c568bdf675","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"93b3042e12ae0dc2","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"2c78d4954ac14f9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c2e82f2f4bdc38ce.json b/allure-report/data/test-cases/2cfa19c331ab824b.json similarity index 68% rename from allure-report/data/test-cases/c2e82f2f4bdc38ce.json rename to allure-report/data/test-cases/2cfa19c331ab824b.json index 2bc77f94a00..298b3e9df8a 100644 --- a/allure-report/data/test-cases/c2e82f2f4bdc38ce.json +++ b/allure-report/data/test-cases/2cfa19c331ab824b.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"2cfa19c331ab824b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f25bb18adfb0c750","name":"stdout","source":"f25bb18adfb0c750.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2cfa19c331ab824b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d25cb87282ab722.json b/allure-report/data/test-cases/2d25cb87282ab722.json new file mode 100644 index 00000000000..78b7ee8c639 --- /dev/null +++ b/allure-report/data/test-cases/2d25cb87282ab722.json @@ -0,0 +1 @@ +{"uid":"2d25cb87282ab722","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4277e39e2fd03a2","name":"stdout","source":"4277e39e2fd03a2.txt","type":"text/plain","size":37}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2d25cb87282ab722.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d35bd18d5e6ee6b.json b/allure-report/data/test-cases/2d35bd18d5e6ee6b.json new file mode 100644 index 00000000000..7fdd1d1b667 --- /dev/null +++ b/allure-report/data/test-cases/2d35bd18d5e6ee6b.json @@ -0,0 +1 @@ +{"uid":"2d35bd18d5e6ee6b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d700c3a94542cad8","name":"stdout","source":"d700c3a94542cad8.txt","type":"text/plain","size":81}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"571c043aeb64d363","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":[]},"source":"2d35bd18d5e6ee6b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30cacf1f2fb31f20.json b/allure-report/data/test-cases/30cacf1f2fb31f20.json deleted file mode 100644 index 25c53e9a114..00000000000 --- a/allure-report/data/test-cases/30cacf1f2fb31f20.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"30cacf1f2fb31f20","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1a416aa1f8f49132","name":"stdout","source":"1a416aa1f8f49132.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7d6f39edb784ab0","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"tags":[]},"source":"30cacf1f2fb31f20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df06e2a5507646ca.json b/allure-report/data/test-cases/30fbee992b0ca53e.json similarity index 74% rename from allure-report/data/test-cases/df06e2a5507646ca.json rename to allure-report/data/test-cases/30fbee992b0ca53e.json index fcdbcf790a6..b7ecabc632f 100644 --- a/allure-report/data/test-cases/df06e2a5507646ca.json +++ b/allure-report/data/test-cases/30fbee992b0ca53e.json @@ -1 +1 @@ -{"uid":"df06e2a5507646ca","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"46d0fbec2255f23d","name":"stdout","source":"46d0fbec2255f23d.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"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":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df06e2a5507646ca.json","parameterValues":[]} \ No newline at end of file +{"uid":"30fbee992b0ca53e","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e31fbe4dea71ee0","name":"stdout","source":"6e31fbe4dea71ee0.txt","type":"text/plain","size":336}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30fbee992b0ca53e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9a0350697dd0c07.json b/allure-report/data/test-cases/311e6a6343f5272c.json similarity index 92% rename from allure-report/data/test-cases/d9a0350697dd0c07.json rename to allure-report/data/test-cases/311e6a6343f5272c.json index d739701b70d..1c6cd98b7cb 100644 --- a/allure-report/data/test-cases/d9a0350697dd0c07.json +++ b/allure-report/data/test-cases/311e6a6343f5272c.json @@ -1 +1 @@ -{"uid":"d9a0350697dd0c07","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"d9a0350697dd0c07.json","parameterValues":[]} \ No newline at end of file +{"uid":"311e6a6343f5272c","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"311e6a6343f5272c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74afb414b6e0cabc.json b/allure-report/data/test-cases/31b67858aaa81503.json similarity index 73% rename from allure-report/data/test-cases/74afb414b6e0cabc.json rename to allure-report/data/test-cases/31b67858aaa81503.json index 02652d7d8ae..69aeea90bcf 100644 --- a/allure-report/data/test-cases/74afb414b6e0cabc.json +++ b/allure-report/data/test-cases/31b67858aaa81503.json @@ -1 +1 @@ -{"uid":"74afb414b6e0cabc","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5f55b46f1adbac58","name":"stdout","source":"5f55b46f1adbac58.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"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":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4c1cbf2e97bf2e3a","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"74afb414b6e0cabc.json","parameterValues":[]} \ No newline at end of file +{"uid":"31b67858aaa81503","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c7c3f41b6f879f22","name":"stdout","source":"c7c3f41b6f879f22.txt","type":"text/plain","size":170}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f85a4b1698202d","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"31b67858aaa81503.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ef3e1da7f90eb82.json b/allure-report/data/test-cases/31cd5c9e8017f83c.json similarity index 64% rename from allure-report/data/test-cases/1ef3e1da7f90eb82.json rename to allure-report/data/test-cases/31cd5c9e8017f83c.json index b5d639dfb26..79846050be2 100644 --- a/allure-report/data/test-cases/1ef3e1da7f90eb82.json +++ b/allure-report/data/test-cases/31cd5c9e8017f83c.json @@ -1 +1 @@ -{"uid":"1ef3e1da7f90eb82","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"31cd5c9e8017f83c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92abbc4fad82e6db","name":"stdout","source":"92abbc4fad82e6db.txt","type":"text/plain","size":243}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11b4e7794c00f220","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1ef3e1da7f90eb82","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"31cd5c9e8017f83c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cdb5c235f1a637f6.json b/allure-report/data/test-cases/31f6e05cb2bf8e17.json similarity index 76% rename from allure-report/data/test-cases/cdb5c235f1a637f6.json rename to allure-report/data/test-cases/31f6e05cb2bf8e17.json index 6c5617b10ea..15b597f1218 100644 --- a/allure-report/data/test-cases/cdb5c235f1a637f6.json +++ b/allure-report/data/test-cases/31f6e05cb2bf8e17.json @@ -1 +1 @@ -{"uid":"cdb5c235f1a637f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f0f7c752081290ad","name":"stdout","source":"f0f7c752081290ad.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::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":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"cdb5c235f1a637f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"31f6e05cb2bf8e17","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3ea6423e21d6d262","name":"stdout","source":"3ea6423e21d6d262.txt","type":"text/plain","size":142}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"31f6e05cb2bf8e17.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c301f45b01d7d10f.json b/allure-report/data/test-cases/327fbdea3443aca5.json similarity index 67% rename from allure-report/data/test-cases/c301f45b01d7d10f.json rename to allure-report/data/test-cases/327fbdea3443aca5.json index 04e9a29bfed..af90a5bdf75 100644 --- a/allure-report/data/test-cases/c301f45b01d7d10f.json +++ b/allure-report/data/test-cases/327fbdea3443aca5.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"327fbdea3443aca5","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7dbffa484c49e1de","name":"stdout","source":"7dbffa484c49e1de.txt","type":"text/plain","size":230}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0f9b8de2eb00fed","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c301f45b01d7d10f","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"327fbdea3443aca5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/337891d8027fbc46.json b/allure-report/data/test-cases/337891d8027fbc46.json new file mode 100644 index 00000000000..cab89a7138e --- /dev/null +++ b/allure-report/data/test-cases/337891d8027fbc46.json @@ -0,0 +1 @@ +{"uid":"337891d8027fbc46","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15c99b80ae7e843e","name":"stdout","source":"15c99b80ae7e843e.txt","type":"text/plain","size":76}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab4f4753656b93ab","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"337891d8027fbc46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ef1cf7383671b63.json b/allure-report/data/test-cases/33b81b348332f41f.json similarity index 50% rename from allure-report/data/test-cases/1ef1cf7383671b63.json rename to allure-report/data/test-cases/33b81b348332f41f.json index 97e2c7604c9..5a47ce2e400 100644 --- a/allure-report/data/test-cases/1ef1cf7383671b63.json +++ b/allure-report/data/test-cases/33b81b348332f41f.json @@ -1 +1 @@ -{"uid":"1ef1cf7383671b63","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"969369ae06b01d8f","name":"stdout","source":"969369ae06b01d8f.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e160d8cbf25955af","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"tags":[]},"source":"1ef1cf7383671b63.json","parameterValues":[]} \ No newline at end of file +{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"feeed58e51d5c7a","name":"stdout","source":"feeed58e51d5c7a.txt","type":"text/plain","size":216}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7028cdfd068e31be","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":[]},"source":"33b81b348332f41f.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/928532982127bba0.json b/allure-report/data/test-cases/35cf25b9e515e00d.json similarity index 65% rename from allure-report/data/test-cases/928532982127bba0.json rename to allure-report/data/test-cases/35cf25b9e515e00d.json index 2c403b33c72..0ec20ef317a 100644 --- a/allure-report/data/test-cases/928532982127bba0.json +++ b/allure-report/data/test-cases/35cf25b9e515e00d.json @@ -1 +1 @@ -{"uid":"928532982127bba0","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"839e0167efc9a3e5","name":"stdout","source":"839e0167efc9a3e5.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"204251456ada0752","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"928532982127bba0","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"35cf25b9e515e00d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c4e292a782b80e3.json b/allure-report/data/test-cases/369d691aa58bf89d.json similarity index 66% rename from allure-report/data/test-cases/2c4e292a782b80e3.json rename to allure-report/data/test-cases/369d691aa58bf89d.json index d971983cd0f..3da71cf73a6 100644 --- a/allure-report/data/test-cases/2c4e292a782b80e3.json +++ b/allure-report/data/test-cases/369d691aa58bf89d.json @@ -1 +1 @@ -{"uid":"2c4e292a782b80e3","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4606180442c9597a","name":"stdout","source":"4606180442c9597a.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4738c72e7ac209e4","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"2c4e292a782b80e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"369d691aa58bf89d","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"894de7f1e428d962","name":"stdout","source":"894de7f1e428d962.txt","type":"text/plain","size":311}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddd327d6f403c655","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"369d691aa58bf89d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57bbb6ca73efd1b4.json b/allure-report/data/test-cases/371888dd705cab28.json similarity index 60% rename from allure-report/data/test-cases/57bbb6ca73efd1b4.json rename to allure-report/data/test-cases/371888dd705cab28.json index 3e44eb56be9..ebb0ec167c8 100644 --- a/allure-report/data/test-cases/57bbb6ca73efd1b4.json +++ b/allure-report/data/test-cases/371888dd705cab28.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","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 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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9cd6a45eab59a36a","name":"stdout","source":"9cd6a45eab59a36a.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c28b7a3b6367ab64","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"57bbb6ca73efd1b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"371888dd705cab28","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b2bb00f201470b4","name":"stdout","source":"6b2bb00f201470b4.txt","type":"text/plain","size":896}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95e612b16602c749","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"371888dd705cab28.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37b95a78feb35857.json b/allure-report/data/test-cases/37b95a78feb35857.json new file mode 100644 index 00000000000..7c7d402b6ff --- /dev/null +++ b/allure-report/data/test-cases/37b95a78feb35857.json @@ -0,0 +1 @@ +{"uid":"37b95a78feb35857","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47eb10d648ead31b","name":"stdout","source":"47eb10d648ead31b.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":12,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"72010ab4f2692ae4","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bc3230f80ad8864d","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"37b95a78feb35857.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf2235e5886d8954.json b/allure-report/data/test-cases/38639b46d1e381a9.json similarity index 70% rename from allure-report/data/test-cases/cf2235e5886d8954.json rename to allure-report/data/test-cases/38639b46d1e381a9.json index b765eb39752..0fa38574851 100644 --- a/allure-report/data/test-cases/cf2235e5886d8954.json +++ b/allure-report/data/test-cases/38639b46d1e381a9.json @@ -1 +1 @@ -{"uid":"cf2235e5886d8954","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bb19908fee85e940","name":"stdout","source":"bb19908fee85e940.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e662d87bdd84a50","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"cf2235e5886d8954.json","parameterValues":[]} \ No newline at end of file +{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"121911719c53624e","name":"stdout","source":"121911719c53624e.txt","type":"text/plain","size":772}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dbd8c0e7d9b1bcd0","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"38639b46d1e381a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c322e80c6cd8da83.json b/allure-report/data/test-cases/39245131d70863d6.json similarity index 72% rename from allure-report/data/test-cases/c322e80c6cd8da83.json rename to allure-report/data/test-cases/39245131d70863d6.json index 4a8f3c2ecc4..967e7e696b0 100644 --- a/allure-report/data/test-cases/c322e80c6cd8da83.json +++ b/allure-report/data/test-cases/39245131d70863d6.json @@ -1 +1 @@ -{"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 +{"uid":"39245131d70863d6","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":"8d05bbd591902299","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"39245131d70863d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/396df158495e2556.json b/allure-report/data/test-cases/396df158495e2556.json deleted file mode 100644 index 533619b0396..00000000000 --- a/allure-report/data/test-cases/396df158495e2556.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"396df158495e2556","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/df9e62f886d5e100.json b/allure-report/data/test-cases/398c0a461bbe2313.json similarity index 75% rename from allure-report/data/test-cases/df9e62f886d5e100.json rename to allure-report/data/test-cases/398c0a461bbe2313.json index 167ababd9cb..c41953b2747 100644 --- a/allure-report/data/test-cases/df9e62f886d5e100.json +++ b/allure-report/data/test-cases/398c0a461bbe2313.json @@ -1 +1 @@ -{"uid":"df9e62f886d5e100","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d95c404945ad5b7e","name":"stdout","source":"d95c404945ad5b7e.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"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 Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df9e62f886d5e100.json","parameterValues":[]} \ No newline at end of file +{"uid":"398c0a461bbe2313","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b013d563709aaa2b","name":"stdout","source":"b013d563709aaa2b.txt","type":"text/plain","size":150}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"398c0a461bbe2313.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/256e8daa91edbaa5.json b/allure-report/data/test-cases/39ba63dd42027b29.json similarity index 74% rename from allure-report/data/test-cases/256e8daa91edbaa5.json rename to allure-report/data/test-cases/39ba63dd42027b29.json index d89da6f1486..4de8f3c0ec9 100644 --- a/allure-report/data/test-cases/256e8daa91edbaa5.json +++ b/allure-report/data/test-cases/39ba63dd42027b29.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2835a835dfc96c0c","name":"stdout","source":"2835a835dfc96c0c.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"256e8daa91edbaa5.json","parameterValues":[]} \ No newline at end of file +{"uid":"39ba63dd42027b29","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d499b60fd50eab17","name":"stdout","source":"d499b60fd50eab17.txt","type":"text/plain","size":1649}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"39ba63dd42027b29.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a14fdddc74cd287e.json b/allure-report/data/test-cases/39c69409f76377e7.json similarity index 59% rename from allure-report/data/test-cases/a14fdddc74cd287e.json rename to allure-report/data/test-cases/39c69409f76377e7.json index f721383af97..25faabb0870 100644 --- a/allure-report/data/test-cases/a14fdddc74cd287e.json +++ b/allure-report/data/test-cases/39c69409f76377e7.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c5ab42561d9470dc","name":"stdout","source":"c5ab42561d9470dc.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b3e2264864275ed","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"tags":[]},"source":"a14fdddc74cd287e.json","parameterValues":[]} \ No newline at end of file +{"uid":"39c69409f76377e7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1569f62e2424ff1a","name":"stdout","source":"1569f62e2424ff1a.txt","type":"text/plain","size":27}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"266702a52edb0749","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":[]},"source":"39c69409f76377e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/682a94239c4fcbde.json b/allure-report/data/test-cases/3a2392b112899a67.json similarity index 61% rename from allure-report/data/test-cases/682a94239c4fcbde.json rename to allure-report/data/test-cases/3a2392b112899a67.json index b42d29cac75..9511b5de9d9 100644 --- a/allure-report/data/test-cases/682a94239c4fcbde.json +++ b/allure-report/data/test-cases/3a2392b112899a67.json @@ -1 +1 @@ -{"uid":"682a94239c4fcbde","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","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 decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d497c1182dc91a88","name":"stdout","source":"d497c1182dc91a88.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"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":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8772a5f624316184","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"682a94239c4fcbde.json","parameterValues":[]} \ No newline at end of file +{"uid":"3a2392b112899a67","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"33928ceb3bfb16f9","name":"stdout","source":"33928ceb3bfb16f9.txt","type":"text/plain","size":992}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"edde73c32cfd2214","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"3a2392b112899a67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3cad1df85b3a49c.json b/allure-report/data/test-cases/3cad1df85b3a49c.json deleted file mode 100644 index ca7daeaf4ca..00000000000 --- a/allure-report/data/test-cases/3cad1df85b3a49c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3cad1df85b3a49c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e71976337c3f0f2c","name":"stdout","source":"e71976337c3f0f2c.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13ca9b99f559671b","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"3cad1df85b3a49c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/42d91b41703125e1.json b/allure-report/data/test-cases/3ceac2ca244e095b.json similarity index 74% rename from allure-report/data/test-cases/42d91b41703125e1.json rename to allure-report/data/test-cases/3ceac2ca244e095b.json index 51ce2d665d2..a422b1bcb88 100644 --- a/allure-report/data/test-cases/42d91b41703125e1.json +++ b/allure-report/data/test-cases/3ceac2ca244e095b.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"3ceac2ca244e095b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"3ceac2ca244e095b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0e71551541527fc.json b/allure-report/data/test-cases/3cf8d83dbb2d66b5.json similarity index 65% rename from allure-report/data/test-cases/f0e71551541527fc.json rename to allure-report/data/test-cases/3cf8d83dbb2d66b5.json index 02d7cb27d8f..741a7dc5422 100644 --- a/allure-report/data/test-cases/f0e71551541527fc.json +++ b/allure-report/data/test-cases/3cf8d83dbb2d66b5.json @@ -1 +1 @@ -{"uid":"f0e71551541527fc","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"3cf8d83dbb2d66b5","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"839567f1e1e69ee5","name":"stdout","source":"839567f1e1e69ee5.txt","type":"text/plain","size":2621}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"41ca81ef54591f7f","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0e71551541527fc","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}}]},"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"3cf8d83dbb2d66b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e354a7b4ef8aa9f.json b/allure-report/data/test-cases/3e354a7b4ef8aa9f.json new file mode 100644 index 00000000000..7f5807bdeab --- /dev/null +++ b/allure-report/data/test-cases/3e354a7b4ef8aa9f.json @@ -0,0 +1 @@ +{"uid":"3e354a7b4ef8aa9f","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cab012145f3c31e","name":"stdout","source":"cab012145f3c31e.txt","type":"text/plain","size":96}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3e354a7b4ef8aa9f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f98898530a5ace8b.json b/allure-report/data/test-cases/3f3af6e95d4ded07.json similarity index 75% rename from allure-report/data/test-cases/f98898530a5ace8b.json rename to allure-report/data/test-cases/3f3af6e95d4ded07.json index f7085ef07b5..a2cbdf58425 100644 --- a/allure-report/data/test-cases/f98898530a5ace8b.json +++ b/allure-report/data/test-cases/3f3af6e95d4ded07.json @@ -1 +1 @@ -{"uid":"f98898530a5ace8b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ebe19d7db75ba582","name":"stdout","source":"ebe19d7db75ba582.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f98898530a5ace8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"3f3af6e95d4ded07","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5767980cac6ccce8","name":"stdout","source":"5767980cac6ccce8.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f3af6e95d4ded07.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83454665affcf957.json b/allure-report/data/test-cases/3fab8ff7d7139e20.json similarity index 71% rename from allure-report/data/test-cases/83454665affcf957.json rename to allure-report/data/test-cases/3fab8ff7d7139e20.json index e4a33d5c675..3f331acaa98 100644 --- a/allure-report/data/test-cases/83454665affcf957.json +++ b/allure-report/data/test-cases/3fab8ff7d7139e20.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dc6fc560f92c35a2","name":"stdout","source":"dc6fc560f92c35a2.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"83454665affcf957.json","parameterValues":[]} \ No newline at end of file +{"uid":"3fab8ff7d7139e20","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a8cbd3585c92133","name":"stdout","source":"1a8cbd3585c92133.txt","type":"text/plain","size":59}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3fab8ff7d7139e20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f91cfc098c0e7678.json b/allure-report/data/test-cases/4041d4d534df9c91.json similarity index 62% rename from allure-report/data/test-cases/f91cfc098c0e7678.json rename to allure-report/data/test-cases/4041d4d534df9c91.json index b31f40f64a2..ddc69c17814 100644 --- a/allure-report/data/test-cases/f91cfc098c0e7678.json +++ b/allure-report/data/test-cases/4041d4d534df9c91.json @@ -1 +1 @@ -{"uid":"f91cfc098c0e7678","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"93cd2d5c953cd624","name":"stdout","source":"93cd2d5c953cd624.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"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":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f91cfc098c0e7678.json","parameterValues":[]} \ No newline at end of file +{"uid":"4041d4d534df9c91","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ff4563a6816a8fb1","name":"stdout","source":"ff4563a6816a8fb1.txt","type":"text/plain","size":316}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4041d4d534df9c91.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/40cf8e66ad985f0e.json b/allure-report/data/test-cases/40cf8e66ad985f0e.json deleted file mode 100644 index ffdea66b1ad..00000000000 --- a/allure-report/data/test-cases/40cf8e66ad985f0e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"40cf8e66ad985f0e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/501c2967d3373bac.json b/allure-report/data/test-cases/41ca81ef54591f7f.json similarity index 70% rename from allure-report/data/test-cases/501c2967d3373bac.json rename to allure-report/data/test-cases/41ca81ef54591f7f.json index 8c98ff4e151..89f6940f240 100644 --- a/allure-report/data/test-cases/501c2967d3373bac.json +++ b/allure-report/data/test-cases/41ca81ef54591f7f.json @@ -1 +1 @@ -{"uid":"501c2967d3373bac","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"41ca81ef54591f7f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3a9eebe7718e7480","name":"stdout","source":"3a9eebe7718e7480.txt","type":"text/plain","size":2621}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"41ca81ef54591f7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41efd0d786aed73.json b/allure-report/data/test-cases/41efd0d786aed73.json new file mode 100644 index 00000000000..33731f93b64 --- /dev/null +++ b/allure-report/data/test-cases/41efd0d786aed73.json @@ -0,0 +1 @@ +{"uid":"41efd0d786aed73","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90ef8c17370e6610","name":"stdout","source":"90ef8c17370e6610.txt","type":"text/plain","size":640}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"650faaf602cc8f99","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d1585e7c78fd8d06","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"41efd0d786aed73.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/42383b817b641e4e.json b/allure-report/data/test-cases/42383b817b641e4e.json new file mode 100644 index 00000000000..689d097f597 --- /dev/null +++ b/allure-report/data/test-cases/42383b817b641e4e.json @@ -0,0 +1 @@ +{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb2891f4860c316","name":"stdout","source":"fb2891f4860c316.txt","type":"text/plain","size":299}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a93bd997ced3859a","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"tags":[]},"source":"42383b817b641e4e.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"33f2d7a8f9aae90","name":"stdout","source":"33f2d7a8f9aae90.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6400e4ce63a07c82","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"tags":[]},"source":"4260c429366ea20f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41a3f66c1c393960.json b/allure-report/data/test-cases/42bb8c96d4cb1bcf.json similarity index 70% rename from allure-report/data/test-cases/41a3f66c1c393960.json rename to allure-report/data/test-cases/42bb8c96d4cb1bcf.json index 3cb00d8a9b0..6742861f026 100644 --- a/allure-report/data/test-cases/41a3f66c1c393960.json +++ b/allure-report/data/test-cases/42bb8c96d4cb1bcf.json @@ -1 +1 @@ -{"uid":"41a3f66c1c393960","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"55c2dc25f3aca2ef","name":"stdout","source":"55c2dc25f3aca2ef.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"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":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8108c5f5e7aa4e08","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"41a3f66c1c393960.json","parameterValues":[]} \ No newline at end of file +{"uid":"42bb8c96d4cb1bcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9221a1b722d3e57e","name":"stdout","source":"9221a1b722d3e57e.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8baea38a8fa67e7e","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"42bb8c96d4cb1bcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f1607dce833287a.json b/allure-report/data/test-cases/431c7499a8a042ca.json similarity index 63% rename from allure-report/data/test-cases/1f1607dce833287a.json rename to allure-report/data/test-cases/431c7499a8a042ca.json index fa990655516..1fe440f8c3f 100644 --- a/allure-report/data/test-cases/1f1607dce833287a.json +++ b/allure-report/data/test-cases/431c7499a8a042ca.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"431c7499a8a042ca","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8749033ef3225ff","name":"stdout","source":"b8749033ef3225ff.txt","type":"text/plain","size":524}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"431c7499a8a042ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8970eab34dca31f.json b/allure-report/data/test-cases/4458ac38c6c9a97c.json similarity index 72% rename from allure-report/data/test-cases/d8970eab34dca31f.json rename to allure-report/data/test-cases/4458ac38c6c9a97c.json index 02bbcf72937..8e93c966d10 100644 --- a/allure-report/data/test-cases/d8970eab34dca31f.json +++ b/allure-report/data/test-cases/4458ac38c6c9a97c.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"d8970eab34dca31f.json","parameterValues":[]} \ No newline at end of file +{"uid":"4458ac38c6c9a97c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4458ac38c6c9a97c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44708af2bbd77aa6.json b/allure-report/data/test-cases/44708af2bbd77aa6.json deleted file mode 100644 index 7da2f62648c..00000000000 --- a/allure-report/data/test-cases/44708af2bbd77aa6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"44708af2bbd77aa6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b0a6143164600f","name":"stdout","source":"8b0a6143164600f.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"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":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"44708af2bbd77aa6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73a0aa79bef78acd.json b/allure-report/data/test-cases/449aa1de0e8221e9.json similarity index 61% rename from allure-report/data/test-cases/73a0aa79bef78acd.json rename to allure-report/data/test-cases/449aa1de0e8221e9.json index 8d98f8c0451..af98564cdbd 100644 --- a/allure-report/data/test-cases/73a0aa79bef78acd.json +++ b/allure-report/data/test-cases/449aa1de0e8221e9.json @@ -1 +1 @@ -{"uid":"73a0aa79bef78acd","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3db52e49cbd26e06","name":"stdout","source":"3db52e49cbd26e06.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9046461411ed99f","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"73a0aa79bef78acd.json","parameterValues":[]} \ No newline at end of file +{"uid":"449aa1de0e8221e9","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6886fc4b238144c3","name":"stdout","source":"6886fc4b238144c3.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"80dd204b4961834","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"449aa1de0e8221e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c7b1cf8369a95ff.json b/allure-report/data/test-cases/458ee4cae9834334.json similarity index 73% rename from allure-report/data/test-cases/8c7b1cf8369a95ff.json rename to allure-report/data/test-cases/458ee4cae9834334.json index c27258e7866..deefd5f1ee7 100644 --- a/allure-report/data/test-cases/8c7b1cf8369a95ff.json +++ b/allure-report/data/test-cases/458ee4cae9834334.json @@ -1 +1 @@ -{"uid":"8c7b1cf8369a95ff","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"889d21b9a71df26a","name":"stdout","source":"889d21b9a71df26a.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8c7b1cf8369a95ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"458ee4cae9834334","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"986dcde2e02037cb","name":"stdout","source":"986dcde2e02037cb.txt","type":"text/plain","size":411}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"458ee4cae9834334.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/45ec56dab60499e.json b/allure-report/data/test-cases/45ec56dab60499e.json deleted file mode 100644 index bc7ff1884a9..00000000000 --- a/allure-report/data/test-cases/45ec56dab60499e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"45ec56dab60499e","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"603967bf708ac2d5","name":"stdout","source":"603967bf708ac2d5.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"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":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"45ec56dab60499e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/462e434377d791a9.json b/allure-report/data/test-cases/462e434377d791a9.json new file mode 100644 index 00000000000..a05788fa1ab --- /dev/null +++ b/allure-report/data/test-cases/462e434377d791a9.json @@ -0,0 +1 @@ +{"uid":"462e434377d791a9","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90fac117ed2f5b2c","name":"stdout","source":"90fac117ed2f5b2c.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"462e434377d791a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46f01e6c3f72b063.json b/allure-report/data/test-cases/46f01e6c3f72b063.json deleted file mode 100644 index 410e27f75af..00000000000 --- a/allure-report/data/test-cases/46f01e6c3f72b063.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"46f01e6c3f72b063","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"389b47ec7013850","name":"stdout","source":"389b47ec7013850.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7a2bcbeb9bd4f3cc","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"tags":[]},"source":"46f01e6c3f72b063.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc816863f78bcd65.json b/allure-report/data/test-cases/474af6c568bdf675.json similarity index 65% rename from allure-report/data/test-cases/fc816863f78bcd65.json rename to allure-report/data/test-cases/474af6c568bdf675.json index 00aa539f9b3..ab9df8f38fb 100644 --- a/allure-report/data/test-cases/fc816863f78bcd65.json +++ b/allure-report/data/test-cases/474af6c568bdf675.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"474af6c568bdf675","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41c90fa760e8d420","name":"stdout","source":"41c90fa760e8d420.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"474af6c568bdf675.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1830f831e47cf3a.json b/allure-report/data/test-cases/4783529dae6eb3af.json similarity index 79% rename from allure-report/data/test-cases/a1830f831e47cf3a.json rename to allure-report/data/test-cases/4783529dae6eb3af.json index d3a4eb91fea..10f2226ddf1 100644 --- a/allure-report/data/test-cases/a1830f831e47cf3a.json +++ b/allure-report/data/test-cases/4783529dae6eb3af.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"4783529dae6eb3af","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"4783529dae6eb3af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af2006fa8ad3035d.json b/allure-report/data/test-cases/47a613697aa0c71f.json similarity index 93% rename from allure-report/data/test-cases/af2006fa8ad3035d.json rename to allure-report/data/test-cases/47a613697aa0c71f.json index 3030fe2230f..88a7296e1d0 100644 --- a/allure-report/data/test-cases/af2006fa8ad3035d.json +++ b/allure-report/data/test-cases/47a613697aa0c71f.json @@ -1 +1 @@ -{"uid":"af2006fa8ad3035d","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":1724733472327,"stop":1724733472327,"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":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 +{"uid":"47a613697aa0c71f","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":1724733472327,"stop":1724733472327,"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":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":"47a613697aa0c71f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/409595d25cc5d60c.json b/allure-report/data/test-cases/47f8df09a84d8337.json similarity index 66% rename from allure-report/data/test-cases/409595d25cc5d60c.json rename to allure-report/data/test-cases/47f8df09a84d8337.json index 722c3db5c45..f7a836a8cc2 100644 --- a/allure-report/data/test-cases/409595d25cc5d60c.json +++ b/allure-report/data/test-cases/47f8df09a84d8337.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"47f8df09a84d8337","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6c919aa9e8f6951e","name":"stdout","source":"6c919aa9e8f6951e.txt","type":"text/plain","size":1515}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5804044d1767680","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"47f8df09a84d8337.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f4f9e94ec6d4f1e.json b/allure-report/data/test-cases/490cf50ddd5cff83.json similarity index 60% rename from allure-report/data/test-cases/7f4f9e94ec6d4f1e.json rename to allure-report/data/test-cases/490cf50ddd5cff83.json index 10ff6cb5c83..5f0007be280 100644 --- a/allure-report/data/test-cases/7f4f9e94ec6d4f1e.json +++ b/allure-report/data/test-cases/490cf50ddd5cff83.json @@ -1 +1 @@ -{"uid":"7f4f9e94ec6d4f1e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"490cf50ddd5cff83","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d789b0e2f7ac3471","name":"stdout","source":"d789b0e2f7ac3471.txt","type":"text/plain","size":167}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"91e2410535ccc997","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f4f9e94ec6d4f1e","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"490cf50ddd5cff83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf2907457d950935.json b/allure-report/data/test-cases/4979ee3063a87441.json similarity index 72% rename from allure-report/data/test-cases/cf2907457d950935.json rename to allure-report/data/test-cases/4979ee3063a87441.json index c450f0d52f4..73027ab3a02 100644 --- a/allure-report/data/test-cases/cf2907457d950935.json +++ b/allure-report/data/test-cases/4979ee3063a87441.json @@ -1 +1 @@ -{"uid":"cf2907457d950935","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"4979ee3063a87441","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db194e9e67e4f8fb","name":"stdout","source":"db194e9e67e4f8fb.txt","type":"text/plain","size":428}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"4979ee3063a87441.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/281344c06cab651e.json b/allure-report/data/test-cases/49aa5cc4276ca55b.json similarity index 66% rename from allure-report/data/test-cases/281344c06cab651e.json rename to allure-report/data/test-cases/49aa5cc4276ca55b.json index 4996c72852f..f4858a7f4ea 100644 --- a/allure-report/data/test-cases/281344c06cab651e.json +++ b/allure-report/data/test-cases/49aa5cc4276ca55b.json @@ -1 +1 @@ -{"uid":"281344c06cab651e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2e869ed25c4100a9","name":"stdout","source":"2e869ed25c4100a9.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83454665affcf957","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"tags":[]},"source":"281344c06cab651e.json","parameterValues":[]} \ No newline at end of file +{"uid":"49aa5cc4276ca55b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47de92a1be75c8fa","name":"stdout","source":"47de92a1be75c8fa.txt","type":"text/plain","size":59}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3fab8ff7d7139e20","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"49aa5cc4276ca55b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4bb5c832e26c3df6.json b/allure-report/data/test-cases/4bb5c832e26c3df6.json deleted file mode 100644 index c793a0ea966..00000000000 --- a/allure-report/data/test-cases/4bb5c832e26c3df6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4bb5c832e26c3df6","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"142bd0c9522a1b66","name":"stdout","source":"142bd0c9522a1b66.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4bb5c832e26c3df6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4bdc75ea73bb042.json b/allure-report/data/test-cases/4bdc75ea73bb042.json deleted file mode 100644 index fb697d168a0..00000000000 --- a/allure-report/data/test-cases/4bdc75ea73bb042.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4bdc75ea73bb042","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4519d4a3b473573d","name":"stdout","source":"4519d4a3b473573d.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e321a1f70ebe865a","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"tags":[]},"source":"4bdc75ea73bb042.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c1cbf2e97bf2e3a.json b/allure-report/data/test-cases/4c1cbf2e97bf2e3a.json deleted file mode 100644 index d9d38f04f0b..00000000000 --- a/allure-report/data/test-cases/4c1cbf2e97bf2e3a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4c1cbf2e97bf2e3a","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5b3d8d390aff60c1","name":"stdout","source":"5b3d8d390aff60c1.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"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":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"4c1cbf2e97bf2e3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ecd11ec04bbfe07.json b/allure-report/data/test-cases/4d0514d90adb5feb.json similarity index 67% rename from allure-report/data/test-cases/9ecd11ec04bbfe07.json rename to allure-report/data/test-cases/4d0514d90adb5feb.json index 3a99ad2f698..b97bd7b6c81 100644 --- a/allure-report/data/test-cases/9ecd11ec04bbfe07.json +++ b/allure-report/data/test-cases/4d0514d90adb5feb.json @@ -1 +1 @@ -{"uid":"9ecd11ec04bbfe07","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e5f2c0cf3da9e17","name":"stdout","source":"6e5f2c0cf3da9e17.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"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":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9ecd11ec04bbfe07.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d0514d90adb5feb","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6bbd8e6923c5cdcc","name":"stdout","source":"6bbd8e6923c5cdcc.txt","type":"text/plain","size":130}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4d0514d90adb5feb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d710406d5c624ab.json b/allure-report/data/test-cases/4df49eaeb4ea4daa.json similarity index 66% rename from allure-report/data/test-cases/7d710406d5c624ab.json rename to allure-report/data/test-cases/4df49eaeb4ea4daa.json index 32a81ee7381..47234275d4f 100644 --- a/allure-report/data/test-cases/7d710406d5c624ab.json +++ b/allure-report/data/test-cases/4df49eaeb4ea4daa.json @@ -1 +1 @@ -{"uid":"7d710406d5c624ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"50518c3041d69a65","name":"stdout","source":"50518c3041d69a65.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"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":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"7d710406d5c624ab.json","parameterValues":[]} \ No newline at end of file +{"uid":"4df49eaeb4ea4daa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e19fa4140ca62ee4","name":"stdout","source":"e19fa4140ca62ee4.txt","type":"text/plain","size":232}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"4df49eaeb4ea4daa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e7abb728f95d63f.json b/allure-report/data/test-cases/4e7abb728f95d63f.json deleted file mode 100644 index 458b4f02861..00000000000 --- a/allure-report/data/test-cases/4e7abb728f95d63f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4e7abb728f95d63f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number 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}],"attachments":[{"uid":"3b422b59c38b206","name":"stdout","source":"3b422b59c38b206.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"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":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55df1ff2977881cd","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"4e7abb728f95d63f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ecd1e835300dbcf.json b/allure-report/data/test-cases/4ecd1e835300dbcf.json new file mode 100644 index 00000000000..212527de533 --- /dev/null +++ b/allure-report/data/test-cases/4ecd1e835300dbcf.json @@ -0,0 +1 @@ +{"uid":"4ecd1e835300dbcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"120b1ea05b87d5bf","name":"stdout","source":"120b1ea05b87d5bf.txt","type":"text/plain","size":1195}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":16,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5781ea9a417efe48","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"tags":[]},"source":"4ecd1e835300dbcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f85a4b1698202d.json b/allure-report/data/test-cases/4f85a4b1698202d.json new file mode 100644 index 00000000000..7eb911cb98d --- /dev/null +++ b/allure-report/data/test-cases/4f85a4b1698202d.json @@ -0,0 +1 @@ +{"uid":"4f85a4b1698202d","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b5130ca9dc47578e","name":"stdout","source":"b5130ca9dc47578e.txt","type":"text/plain","size":170}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"4f85a4b1698202d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cee46a1116cde2e1.json b/allure-report/data/test-cases/4fb2a019463cdbdf.json similarity index 66% rename from allure-report/data/test-cases/cee46a1116cde2e1.json rename to allure-report/data/test-cases/4fb2a019463cdbdf.json index ddc3c750bb1..163f62b5344 100644 --- a/allure-report/data/test-cases/cee46a1116cde2e1.json +++ b/allure-report/data/test-cases/4fb2a019463cdbdf.json @@ -1 +1 @@ -{"uid":"cee46a1116cde2e1","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bb5b7ec371919319","name":"stdout","source":"bb5b7ec371919319.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a20677ca4b1de4b9","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cee46a1116cde2e1.json","parameterValues":[]} \ No newline at end of file +{"uid":"4fb2a019463cdbdf","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aa35c4221cf1383d","name":"stdout","source":"aa35c4221cf1383d.txt","type":"text/plain","size":560}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d9270ca3330737a","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4fb2a019463cdbdf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f27c61d350b9fa85.json b/allure-report/data/test-cases/500c62fc4806377c.json similarity index 75% rename from allure-report/data/test-cases/f27c61d350b9fa85.json rename to allure-report/data/test-cases/500c62fc4806377c.json index 48866a692c2..7e61853e0c9 100644 --- a/allure-report/data/test-cases/f27c61d350b9fa85.json +++ b/allure-report/data/test-cases/500c62fc4806377c.json @@ -1 +1 @@ -{"uid":"f27c61d350b9fa85","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"c30d75bb7c349fc2","name":"stdout","source":"c30d75bb7c349fc2.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f27c61d350b9fa85.json","parameterValues":[]} \ No newline at end of file +{"uid":"500c62fc4806377c","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"270cdfea12dfee25","name":"stdout","source":"270cdfea12dfee25.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"500c62fc4806377c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/504baf7c4d256536.json b/allure-report/data/test-cases/504baf7c4d256536.json new file mode 100644 index 00000000000..a9ac3625783 --- /dev/null +++ b/allure-report/data/test-cases/504baf7c4d256536.json @@ -0,0 +1 @@ +{"uid":"504baf7c4d256536","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cc97e34ff385a06","name":"stdout","source":"cc97e34ff385a06.txt","type":"text/plain","size":48}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4fb6cdf4d1895f5","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"504baf7c4d256536.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51971bf7ad109ed2.json b/allure-report/data/test-cases/51971bf7ad109ed2.json new file mode 100644 index 00000000000..c1f85f88618 --- /dev/null +++ b/allure-report/data/test-cases/51971bf7ad109ed2.json @@ -0,0 +1 @@ +{"uid":"51971bf7ad109ed2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd62b896cd445c4","name":"stdout","source":"dd62b896cd445c4.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12ce3777e030dbb5","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"51971bf7ad109ed2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43c0068fe0a1265e.json b/allure-report/data/test-cases/51a9aec46de8d878.json similarity index 56% rename from allure-report/data/test-cases/43c0068fe0a1265e.json rename to allure-report/data/test-cases/51a9aec46de8d878.json index 107f03ea1f1..11399b7df03 100644 --- a/allure-report/data/test-cases/43c0068fe0a1265e.json +++ b/allure-report/data/test-cases/51a9aec46de8d878.json @@ -1 +1 @@ -{"uid":"43c0068fe0a1265e","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c3d16eb9cb3b239c","name":"stdout","source":"c3d16eb9cb3b239c.txt","type":"text/plain","size":254}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a4b7cb6ba7726224","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"43c0068fe0a1265e","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"51a9aec46de8d878.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de314943cf5bdd10.json b/allure-report/data/test-cases/52187b3daff300ae.json similarity index 59% rename from allure-report/data/test-cases/de314943cf5bdd10.json rename to allure-report/data/test-cases/52187b3daff300ae.json index cf0717327ea..f65cc4e16cb 100644 --- a/allure-report/data/test-cases/de314943cf5bdd10.json +++ b/allure-report/data/test-cases/52187b3daff300ae.json @@ -1 +1 @@ -{"uid":"de314943cf5bdd10","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fe1be9ee27fc2e73","name":"stdout","source":"fe1be9ee27fc2e73.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9efe2e125f6b46a3","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"de314943cf5bdd10.json","parameterValues":[]} \ No newline at end of file +{"uid":"52187b3daff300ae","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcdb96625b1e26db","name":"stdout","source":"fcdb96625b1e26db.txt","type":"text/plain","size":637}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b8a68af9dbc0f892","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"52187b3daff300ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ded43d0fdf317ac.json b/allure-report/data/test-cases/52715db4a1ce5955.json similarity index 65% rename from allure-report/data/test-cases/8ded43d0fdf317ac.json rename to allure-report/data/test-cases/52715db4a1ce5955.json index 72ae5777ec2..c3b6d5bb9b1 100644 --- a/allure-report/data/test-cases/8ded43d0fdf317ac.json +++ b/allure-report/data/test-cases/52715db4a1ce5955.json @@ -1 +1 @@ -{"uid":"8ded43d0fdf317ac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"113db4f6bd21cad6","name":"stdout","source":"113db4f6bd21cad6.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"831a4a72cd312e40","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8ded43d0fdf317ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"52715db4a1ce5955","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"88f8e3a1f8c2be2b","name":"stdout","source":"88f8e3a1f8c2be2b.txt","type":"text/plain","size":288}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8af4ebd0495f0e70","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"52715db4a1ce5955.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b43d122708c0be8.json b/allure-report/data/test-cases/5274eeeb29391ba1.json similarity index 70% rename from allure-report/data/test-cases/9b43d122708c0be8.json rename to allure-report/data/test-cases/5274eeeb29391ba1.json index 66284777a5b..22b8cac48c9 100644 --- a/allure-report/data/test-cases/9b43d122708c0be8.json +++ b/allure-report/data/test-cases/5274eeeb29391ba1.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c8353335fdb63078","name":"stdout","source":"c8353335fdb63078.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9b43d122708c0be8.json","parameterValues":[]} \ No newline at end of file +{"uid":"5274eeeb29391ba1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f93ff3c1bc3ca41c","name":"stdout","source":"f93ff3c1bc3ca41c.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5274eeeb29391ba1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8b2e451486f6a25.json b/allure-report/data/test-cases/52dd320a58bdb229.json similarity index 65% rename from allure-report/data/test-cases/c8b2e451486f6a25.json rename to allure-report/data/test-cases/52dd320a58bdb229.json index 10c6f298c03..5a657c2b600 100644 --- a/allure-report/data/test-cases/c8b2e451486f6a25.json +++ b/allure-report/data/test-cases/52dd320a58bdb229.json @@ -1 +1 @@ -{"uid":"c8b2e451486f6a25","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"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_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4a249bbc39e29652","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"tags":[]},"source":"c8b2e451486f6a25.json","parameterValues":[]} \ No newline at end of file +{"uid":"52dd320a58bdb229","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"be5b8c63ffdd840d","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"52dd320a58bdb229.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6832cf487834f3e.json b/allure-report/data/test-cases/5320007ca0191a21.json similarity index 70% rename from allure-report/data/test-cases/a6832cf487834f3e.json rename to allure-report/data/test-cases/5320007ca0191a21.json index c7379a65720..8b6d39775de 100644 --- a/allure-report/data/test-cases/a6832cf487834f3e.json +++ b/allure-report/data/test-cases/5320007ca0191a21.json @@ -1 +1 @@ -{"uid":"a6832cf487834f3e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"300059081fd8f1bb","name":"stdout","source":"300059081fd8f1bb.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"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":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a6832cf487834f3e.json","parameterValues":[]} \ No newline at end of file +{"uid":"5320007ca0191a21","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d544fbd4d09ad0f7","name":"stdout","source":"d544fbd4d09ad0f7.txt","type":"text/plain","size":487}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5320007ca0191a21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1f79415804ea08d.json b/allure-report/data/test-cases/5321a1bb93b59f1e.json similarity index 69% rename from allure-report/data/test-cases/a1f79415804ea08d.json rename to allure-report/data/test-cases/5321a1bb93b59f1e.json index fd4af702806..cc5711b1d10 100644 --- a/allure-report/data/test-cases/a1f79415804ea08d.json +++ b/allure-report/data/test-cases/5321a1bb93b59f1e.json @@ -1 +1 @@ -{"uid":"a1f79415804ea08d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3dc4bd0471b5b6f6","name":"stdout","source":"3dc4bd0471b5b6f6.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a1f79415804ea08d.json","parameterValues":[]} \ No newline at end of file +{"uid":"5321a1bb93b59f1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c1146e7ec026151e","name":"stdout","source":"c1146e7ec026151e.txt","type":"text/plain","size":302}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5321a1bb93b59f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73ae2edd756c4a04.json b/allure-report/data/test-cases/535d557e01267994.json similarity index 70% rename from allure-report/data/test-cases/73ae2edd756c4a04.json rename to allure-report/data/test-cases/535d557e01267994.json index d763ad64aaf..f5633a74230 100644 --- a/allure-report/data/test-cases/73ae2edd756c4a04.json +++ b/allure-report/data/test-cases/535d557e01267994.json @@ -1 +1 @@ -{"uid":"73ae2edd756c4a04","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9e2bb4472566335f","name":"stdout","source":"9e2bb4472566335f.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"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":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"73ae2edd756c4a04.json","parameterValues":[]} \ No newline at end of file +{"uid":"535d557e01267994","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2613f5d1bde5e090","name":"stdout","source":"2613f5d1bde5e090.txt","type":"text/plain","size":97}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"535d557e01267994.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/536deebe5c2f9229.json b/allure-report/data/test-cases/536deebe5c2f9229.json new file mode 100644 index 00000000000..003d15271cc --- /dev/null +++ b/allure-report/data/test-cases/536deebe5c2f9229.json @@ -0,0 +1 @@ +{"uid":"536deebe5c2f9229","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f69b6836dc35d93","name":"stdout","source":"f69b6836dc35d93.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"536deebe5c2f9229.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3b283ff21d85aec.json b/allure-report/data/test-cases/54942c51ed88331c.json similarity index 76% rename from allure-report/data/test-cases/f3b283ff21d85aec.json rename to allure-report/data/test-cases/54942c51ed88331c.json index 4eff77e72ad..dbe28af4aa8 100644 --- a/allure-report/data/test-cases/f3b283ff21d85aec.json +++ b/allure-report/data/test-cases/54942c51ed88331c.json @@ -1 +1 @@ -{"uid":"f3b283ff21d85aec","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"10c5a7daf7553683","name":"stdout","source":"10c5a7daf7553683.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"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":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e66c4d32858afd04","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f3b283ff21d85aec.json","parameterValues":[]} \ No newline at end of file +{"uid":"54942c51ed88331c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba387d8fdc4ccb3b","name":"stdout","source":"ba387d8fdc4ccb3b.txt","type":"text/plain","size":193}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a54c934450b934d7","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"54942c51ed88331c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77d55c76ce916d94.json b/allure-report/data/test-cases/55d1d73293e16236.json similarity index 65% rename from allure-report/data/test-cases/77d55c76ce916d94.json rename to allure-report/data/test-cases/55d1d73293e16236.json index bb926ca746f..69c0ae15a65 100644 --- a/allure-report/data/test-cases/77d55c76ce916d94.json +++ b/allure-report/data/test-cases/55d1d73293e16236.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"55d1d73293e16236","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e063e588b090ea7","name":"stdout","source":"9e063e588b090ea7.txt","type":"text/plain","size":882}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"55d1d73293e16236.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5653676293d9b683.json b/allure-report/data/test-cases/5653676293d9b683.json deleted file mode 100644 index ee995c695de..00000000000 --- a/allure-report/data/test-cases/5653676293d9b683.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5653676293d9b683","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"710515c8ae418cf7","name":"stdout","source":"710515c8ae418cf7.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::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":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2fc3a43f4af43f00","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"5653676293d9b683.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56a28cc490d83b65.json b/allure-report/data/test-cases/56a28cc490d83b65.json new file mode 100644 index 00000000000..890844e8de4 --- /dev/null +++ b/allure-report/data/test-cases/56a28cc490d83b65.json @@ -0,0 +1 @@ +{"uid":"56a28cc490d83b65","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c88c8283826150a7","name":"stdout","source":"c88c8283826150a7.txt","type":"text/plain","size":30}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e722b9059cce92a0","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"56a28cc490d83b65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9bfdccd510532417.json b/allure-report/data/test-cases/571c043aeb64d363.json similarity index 70% rename from allure-report/data/test-cases/9bfdccd510532417.json rename to allure-report/data/test-cases/571c043aeb64d363.json index 5104dc99bcb..e2b6063d20b 100644 --- a/allure-report/data/test-cases/9bfdccd510532417.json +++ b/allure-report/data/test-cases/571c043aeb64d363.json @@ -1 +1 @@ -{"uid":"9bfdccd510532417","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"87531b32bbe9613e","name":"stdout","source":"87531b32bbe9613e.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"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":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9bfdccd510532417.json","parameterValues":[]} \ No newline at end of file +{"uid":"571c043aeb64d363","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c72b6aed91bdc6cb","name":"stdout","source":"c72b6aed91bdc6cb.txt","type":"text/plain","size":81}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"571c043aeb64d363.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c56dac6db0d4b2a0.json b/allure-report/data/test-cases/5740cd94d023a2bf.json similarity index 71% rename from allure-report/data/test-cases/c56dac6db0d4b2a0.json rename to allure-report/data/test-cases/5740cd94d023a2bf.json index 48dd4051eaf..b484ec71bb7 100644 --- a/allure-report/data/test-cases/c56dac6db0d4b2a0.json +++ b/allure-report/data/test-cases/5740cd94d023a2bf.json @@ -1 +1 @@ -{"uid":"c56dac6db0d4b2a0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"593c0c1fd5b8ed77","name":"stdout","source":"593c0c1fd5b8ed77.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"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":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c56dac6db0d4b2a0.json","parameterValues":[]} \ No newline at end of file +{"uid":"5740cd94d023a2bf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47cde424bd281215","name":"stdout","source":"47cde424bd281215.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5740cd94d023a2bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8f6c075972e7fae.json b/allure-report/data/test-cases/5781ea9a417efe48.json similarity index 52% rename from allure-report/data/test-cases/e8f6c075972e7fae.json rename to allure-report/data/test-cases/5781ea9a417efe48.json index 06290c07123..ad58579416d 100644 --- a/allure-report/data/test-cases/e8f6c075972e7fae.json +++ b/allure-report/data/test-cases/5781ea9a417efe48.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"204dbc79412a1f1a","name":"stdout","source":"204dbc79412a1f1a.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"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":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e8f6c075972e7fae.json","parameterValues":[]} \ No newline at end of file +{"uid":"5781ea9a417efe48","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e36f2ac65e2625af","name":"stdout","source":"e36f2ac65e2625af.txt","type":"text/plain","size":1195}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":16,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5781ea9a417efe48.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/578c3a6cd3e7e40f.json b/allure-report/data/test-cases/578c3a6cd3e7e40f.json deleted file mode 100644 index 6c6dcb6dd1a..00000000000 --- a/allure-report/data/test-cases/578c3a6cd3e7e40f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"578c3a6cd3e7e40f","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/84ae1ddd95d9c6d3.json b/allure-report/data/test-cases/57efbea0ccf3907a.json similarity index 66% rename from allure-report/data/test-cases/84ae1ddd95d9c6d3.json rename to allure-report/data/test-cases/57efbea0ccf3907a.json index 07ed0a52825..c1ac9d8be26 100644 --- a/allure-report/data/test-cases/84ae1ddd95d9c6d3.json +++ b/allure-report/data/test-cases/57efbea0ccf3907a.json @@ -1 +1 @@ -{"uid":"84ae1ddd95d9c6d3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c28669c80cc4b641","name":"stdout","source":"c28669c80cc4b641.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bdc34fe177dff4e3","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"84ae1ddd95d9c6d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"57efbea0ccf3907a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"52b7eb4ac34d1a3f","name":"stdout","source":"52b7eb4ac34d1a3f.txt","type":"text/plain","size":352}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fabe21d8eab469bd","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"57efbea0ccf3907a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/66f1b8d1e5ed1dbe.json b/allure-report/data/test-cases/585949d19b46a5d2.json similarity index 65% rename from allure-report/data/test-cases/66f1b8d1e5ed1dbe.json rename to allure-report/data/test-cases/585949d19b46a5d2.json index 0961ac26a2a..efc730c3d67 100644 --- a/allure-report/data/test-cases/66f1b8d1e5ed1dbe.json +++ b/allure-report/data/test-cases/585949d19b46a5d2.json @@ -1 +1 @@ -{"uid":"66f1b8d1e5ed1dbe","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"585949d19b46a5d2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1528cec1dd8dea3","name":"stdout","source":"d1528cec1dd8dea3.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2cfa19c331ab824b","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"66f1b8d1e5ed1dbe","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"585949d19b46a5d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9bf22c06763280e5.json b/allure-report/data/test-cases/587ebae959bb9619.json similarity index 72% rename from allure-report/data/test-cases/9bf22c06763280e5.json rename to allure-report/data/test-cases/587ebae959bb9619.json index 01fc9daeebf..f223a679d4d 100644 --- a/allure-report/data/test-cases/9bf22c06763280e5.json +++ b/allure-report/data/test-cases/587ebae959bb9619.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f59d384f3f447d6","name":"stdout","source":"1f59d384f3f447d6.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"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":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"9bf22c06763280e5.json","parameterValues":[]} \ No newline at end of file +{"uid":"587ebae959bb9619","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"13b8ab05fc59b31a","name":"stdout","source":"13b8ab05fc59b31a.txt","type":"text/plain","size":539}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"587ebae959bb9619.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/828252a14a7968ec.json b/allure-report/data/test-cases/58ec93395b112a8f.json similarity index 63% rename from allure-report/data/test-cases/828252a14a7968ec.json rename to allure-report/data/test-cases/58ec93395b112a8f.json index c77a7ac15b7..91019e97dde 100644 --- a/allure-report/data/test-cases/828252a14a7968ec.json +++ b/allure-report/data/test-cases/58ec93395b112a8f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"58ec93395b112a8f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60434b32a4fa91ba","name":"stdout","source":"60434b32a4fa91ba.txt","type":"text/plain","size":530}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"58ec93395b112a8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59863a86bad45fb3.json b/allure-report/data/test-cases/59863a86bad45fb3.json new file mode 100644 index 00000000000..1a58c2da747 --- /dev/null +++ b/allure-report/data/test-cases/59863a86bad45fb3.json @@ -0,0 +1 @@ +{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"678b686f33957e9f","name":"stdout","source":"678b686f33957e9f.txt","type":"text/plain","size":3892}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d62d5681db1186b9","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"59863a86bad45fb3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8366dd539f3f636c.json b/allure-report/data/test-cases/59ab6d9b07f441c0.json similarity index 67% rename from allure-report/data/test-cases/8366dd539f3f636c.json rename to allure-report/data/test-cases/59ab6d9b07f441c0.json index d583d1ee87d..e3208d46d6c 100644 --- a/allure-report/data/test-cases/8366dd539f3f636c.json +++ b/allure-report/data/test-cases/59ab6d9b07f441c0.json @@ -1 +1 @@ -{"uid":"8366dd539f3f636c","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"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":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8366dd539f3f636c.json","parameterValues":[]} \ No newline at end of file +{"uid":"59ab6d9b07f441c0","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59ab6d9b07f441c0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59ff5157ed7e9ae.json b/allure-report/data/test-cases/59ff5157ed7e9ae.json new file mode 100644 index 00000000000..9e98e16eb58 --- /dev/null +++ b/allure-report/data/test-cases/59ff5157ed7e9ae.json @@ -0,0 +1 @@ +{"uid":"59ff5157ed7e9ae","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1fb0e4eb0d1b73ee","name":"stdout","source":"1fb0e4eb0d1b73ee.txt","type":"text/plain","size":129}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59ff5157ed7e9ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9275e1d85a023003.json b/allure-report/data/test-cases/5a22d7a269c3ca06.json similarity index 55% rename from allure-report/data/test-cases/9275e1d85a023003.json rename to allure-report/data/test-cases/5a22d7a269c3ca06.json index 12c636caf6a..ef808f6a488 100644 --- a/allure-report/data/test-cases/9275e1d85a023003.json +++ b/allure-report/data/test-cases/5a22d7a269c3ca06.json @@ -1 +1 @@ -{"uid":"9275e1d85a023003","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"262bbed0c4f1b31e","name":"stdout","source":"262bbed0c4f1b31e.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2620475a1119269","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"tags":[]},"source":"9275e1d85a023003.json","parameterValues":[]} \ No newline at end of file +{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"52c3b8574c415b89","name":"stdout","source":"52c3b8574c415b89.txt","type":"text/plain","size":424}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a4f7c6dc4c7e84","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":[]},"source":"5a22d7a269c3ca06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ef0ca25b0e8e9c5.json b/allure-report/data/test-cases/5a941d3b90762a67.json similarity index 55% rename from allure-report/data/test-cases/5ef0ca25b0e8e9c5.json rename to allure-report/data/test-cases/5a941d3b90762a67.json index 812046dd2f7..16391a694f1 100644 --- a/allure-report/data/test-cases/5ef0ca25b0e8e9c5.json +++ b/allure-report/data/test-cases/5a941d3b90762a67.json @@ -1 +1 @@ -{"uid":"5ef0ca25b0e8e9c5","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"edbe93ce737c702f","name":"stdout","source":"edbe93ce737c702f.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"db267da7b8a1b004","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ef0ca25b0e8e9c5","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5a941d3b90762a67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ae2799c264c377c.json b/allure-report/data/test-cases/5ae2799c264c377c.json deleted file mode 100644 index 69d9091f5f8..00000000000 --- a/allure-report/data/test-cases/5ae2799c264c377c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5ae2799c264c377c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d2ee55342013cf8","name":"stdout","source":"2d2ee55342013cf8.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5ae2799c264c377c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b31152bd581baeb.json b/allure-report/data/test-cases/5b9aa5357d8d514d.json similarity index 70% rename from allure-report/data/test-cases/8b31152bd581baeb.json rename to allure-report/data/test-cases/5b9aa5357d8d514d.json index 2af79361aeb..ca58cada09a 100644 --- a/allure-report/data/test-cases/8b31152bd581baeb.json +++ b/allure-report/data/test-cases/5b9aa5357d8d514d.json @@ -1 +1 @@ -{"uid":"8b31152bd581baeb","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1a238f13b61d4440","name":"stdout","source":"1a238f13b61d4440.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"35dde5e5df78aa3f","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"8b31152bd581baeb.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"faca10a249542315","name":"stdout","source":"faca10a249542315.txt","type":"text/plain","size":314}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ec6e703f7fb1f8f7","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"5b9aa5357d8d514d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af8e91d1ccf7bcca.json b/allure-report/data/test-cases/5baa430d724786c4.json similarity index 76% rename from allure-report/data/test-cases/af8e91d1ccf7bcca.json rename to allure-report/data/test-cases/5baa430d724786c4.json index 65abfa8e403..6699cd0fec5 100644 --- a/allure-report/data/test-cases/af8e91d1ccf7bcca.json +++ b/allure-report/data/test-cases/5baa430d724786c4.json @@ -1 +1 @@ -{"uid":"af8e91d1ccf7bcca","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"518fb893ba3ae3ec","name":"stdout","source":"518fb893ba3ae3ec.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"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":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"af8e91d1ccf7bcca.json","parameterValues":[]} \ No newline at end of file +{"uid":"5baa430d724786c4","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abb69032ea61f29c","name":"stdout","source":"abb69032ea61f29c.txt","type":"text/plain","size":1178}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5baa430d724786c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c281d5272513bfd.json b/allure-report/data/test-cases/5c281d5272513bfd.json deleted file mode 100644 index 71878ae4122..00000000000 --- a/allure-report/data/test-cases/5c281d5272513bfd.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5c281d5272513bfd","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/673535ed619b4051.json b/allure-report/data/test-cases/5d080f15b08c0b4f.json similarity index 56% rename from allure-report/data/test-cases/673535ed619b4051.json rename to allure-report/data/test-cases/5d080f15b08c0b4f.json index 3703da5a008..2d33b366dc0 100644 --- a/allure-report/data/test-cases/673535ed619b4051.json +++ b/allure-report/data/test-cases/5d080f15b08c0b4f.json @@ -1 +1 @@ -{"uid":"673535ed619b4051","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"673535ed619b4051.json","parameterValues":[]} \ No newline at end of file +{"uid":"5d080f15b08c0b4f","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":11,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5d080f15b08c0b4f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d312c5161e8ccab.json b/allure-report/data/test-cases/5d312c5161e8ccab.json deleted file mode 100644 index 7aa7b096f71..00000000000 --- a/allure-report/data/test-cases/5d312c5161e8ccab.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5d312c5161e8ccab","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"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_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5d312c5161e8ccab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36b9e5073b489f49.json b/allure-report/data/test-cases/5dad026541a05e65.json similarity index 61% rename from allure-report/data/test-cases/36b9e5073b489f49.json rename to allure-report/data/test-cases/5dad026541a05e65.json index 00146be488b..dddac88a30a 100644 --- a/allure-report/data/test-cases/36b9e5073b489f49.json +++ b/allure-report/data/test-cases/5dad026541a05e65.json @@ -1 +1 @@ -{"uid":"36b9e5073b489f49","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"5dad026541a05e65","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e46ecdc21febfa2d","name":"stdout","source":"e46ecdc21febfa2d.txt","type":"text/plain","size":3898}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b99ca9a8ecf19524","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"36b9e5073b489f49","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}}]},"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"5dad026541a05e65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ab943002f86b4e6.json b/allure-report/data/test-cases/5de6808258f0151f.json similarity index 71% rename from allure-report/data/test-cases/4ab943002f86b4e6.json rename to allure-report/data/test-cases/5de6808258f0151f.json index 3042c80a9df..c08cfaab863 100644 --- a/allure-report/data/test-cases/4ab943002f86b4e6.json +++ b/allure-report/data/test-cases/5de6808258f0151f.json @@ -1 +1 @@ -{"uid":"4ab943002f86b4e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cfd735e1e281b0c2","name":"stdout","source":"cfd735e1e281b0c2.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"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":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4ab943002f86b4e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"5de6808258f0151f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d86f11066e8eb2f7","name":"stdout","source":"d86f11066e8eb2f7.txt","type":"text/plain","size":808}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5de6808258f0151f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46081367fb92978f.json b/allure-report/data/test-cases/5e4b4c0a3aeae99e.json similarity index 71% rename from allure-report/data/test-cases/46081367fb92978f.json rename to allure-report/data/test-cases/5e4b4c0a3aeae99e.json index 8bb989b1702..ada84c54968 100644 --- a/allure-report/data/test-cases/46081367fb92978f.json +++ b/allure-report/data/test-cases/5e4b4c0a3aeae99e.json @@ -1 +1 @@ -{"uid":"46081367fb92978f","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"5e4b4c0a3aeae99e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"5e4b4c0a3aeae99e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d65c16a1b47d468e.json b/allure-report/data/test-cases/5e6aa533c6c0fafa.json similarity index 74% rename from allure-report/data/test-cases/d65c16a1b47d468e.json rename to allure-report/data/test-cases/5e6aa533c6c0fafa.json index 9f8a7dbf80d..4e589eda29d 100644 --- a/allure-report/data/test-cases/d65c16a1b47d468e.json +++ b/allure-report/data/test-cases/5e6aa533c6c0fafa.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"5e6aa533c6c0fafa","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3dc83265322e5aba","name":"stdout","source":"3dc83265322e5aba.txt","type":"text/plain","size":204}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aefb4681bbbff0c9","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d65c16a1b47d468e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"5e6aa533c6c0fafa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e8c0121e99e8c0.json b/allure-report/data/test-cases/5e8c0121e99e8c0.json deleted file mode 100644 index 3ed41151acc..00000000000 --- a/allure-report/data/test-cases/5e8c0121e99e8c0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5e8c0121e99e8c0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e13312b12957bd2f","name":"stdout","source":"e13312b12957bd2f.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b5e325c82192cbb2","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5e8c0121e99e8c0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ecfe278b9d03b10.json b/allure-report/data/test-cases/5ecfe278b9d03b10.json deleted file mode 100644 index b61ac003b7e..00000000000 --- a/allure-report/data/test-cases/5ecfe278b9d03b10.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5ecfe278b9d03b10","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5cb0f1347c132fe","name":"stdout","source":"a5cb0f1347c132fe.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9864dd17c374a4d8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5ecfe278b9d03b10.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5dea07a70915ceac.json b/allure-report/data/test-cases/5fa0c36654622313.json similarity index 73% rename from allure-report/data/test-cases/5dea07a70915ceac.json rename to allure-report/data/test-cases/5fa0c36654622313.json index 909c318680a..82b5c5ae863 100644 --- a/allure-report/data/test-cases/5dea07a70915ceac.json +++ b/allure-report/data/test-cases/5fa0c36654622313.json @@ -1 +1 @@ -{"uid":"5dea07a70915ceac","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b3ed0c860ff49ada","name":"stdout","source":"b3ed0c860ff49ada.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"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":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5dea07a70915ceac.json","parameterValues":[]} \ No newline at end of file +{"uid":"5fa0c36654622313","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd3f4f217e87fedc","name":"stdout","source":"dd3f4f217e87fedc.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5fa0c36654622313.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94af406790439c52.json b/allure-report/data/test-cases/6022cdc8b5145e28.json similarity index 78% rename from allure-report/data/test-cases/94af406790439c52.json rename to allure-report/data/test-cases/6022cdc8b5145e28.json index d31922cc9c9..e3eaaaaf458 100644 --- a/allure-report/data/test-cases/94af406790439c52.json +++ b/allure-report/data/test-cases/6022cdc8b5145e28.json @@ -1 +1 @@ -{"uid":"94af406790439c52","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6dd7f32db32388b4","name":"stdout","source":"6dd7f32db32388b4.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::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":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"94af406790439c52.json","parameterValues":[]} \ No newline at end of file +{"uid":"6022cdc8b5145e28","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d352d3b8134952ea","name":"stdout","source":"d352d3b8134952ea.txt","type":"text/plain","size":307}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"6022cdc8b5145e28.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3ceb22d74ae937b.json b/allure-report/data/test-cases/613579922cc04140.json similarity index 75% rename from allure-report/data/test-cases/f3ceb22d74ae937b.json rename to allure-report/data/test-cases/613579922cc04140.json index ac61eb2ffac..ace0e7ef0dd 100644 --- a/allure-report/data/test-cases/f3ceb22d74ae937b.json +++ b/allure-report/data/test-cases/613579922cc04140.json @@ -1 +1 @@ -{"uid":"f3ceb22d74ae937b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d6b522e7a7ff120","name":"stdout","source":"2d6b522e7a7ff120.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"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":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"f3ceb22d74ae937b.json","parameterValues":[]} \ No newline at end of file +{"uid":"613579922cc04140","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55424ab646409d91","name":"stdout","source":"55424ab646409d91.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"613579922cc04140.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e798d2f5cc38e024.json b/allure-report/data/test-cases/614b9e2de4457676.json similarity index 66% rename from allure-report/data/test-cases/e798d2f5cc38e024.json rename to allure-report/data/test-cases/614b9e2de4457676.json index 41d4ca5cf7f..7b08b893812 100644 --- a/allure-report/data/test-cases/e798d2f5cc38e024.json +++ b/allure-report/data/test-cases/614b9e2de4457676.json @@ -1 +1 @@ -{"uid":"e798d2f5cc38e024","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"614b9e2de4457676","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5a1e9dabd89620f","name":"stdout","source":"a5a1e9dabd89620f.txt","type":"text/plain","size":326}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8f884e4fa29bb7d4","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e798d2f5cc38e024","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"614b9e2de4457676.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ba8a4247f4c6307.json b/allure-report/data/test-cases/616180d049b16d1d.json similarity index 58% rename from allure-report/data/test-cases/7ba8a4247f4c6307.json rename to allure-report/data/test-cases/616180d049b16d1d.json index f4c8180a084..56c9338e4ea 100644 --- a/allure-report/data/test-cases/7ba8a4247f4c6307.json +++ b/allure-report/data/test-cases/616180d049b16d1d.json @@ -1 +1 @@ -{"uid":"7ba8a4247f4c6307","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","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 Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ba1dc1bb275f3b43","name":"stdout","source":"ba1dc1bb275f3b43.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::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":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"498024d219d443a4","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"7ba8a4247f4c6307.json","parameterValues":[]} \ No newline at end of file +{"uid":"616180d049b16d1d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9aa90db0f884f6f0","name":"stdout","source":"9aa90db0f884f6f0.txt","type":"text/plain","size":476}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"78957f7729625c40","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"616180d049b16d1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8e9539521c4ca00.json b/allure-report/data/test-cases/627da61e5891aa44.json similarity index 63% rename from allure-report/data/test-cases/d8e9539521c4ca00.json rename to allure-report/data/test-cases/627da61e5891aa44.json index 67fef333e22..e45acc19ed3 100644 --- a/allure-report/data/test-cases/d8e9539521c4ca00.json +++ b/allure-report/data/test-cases/627da61e5891aa44.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"627da61e5891aa44","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c126cf9c398e7752","name":"stdout","source":"c126cf9c398e7752.txt","type":"text/plain","size":263}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b5f6e3f148925a4f","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d8e9539521c4ca00","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"627da61e5891aa44.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"24af3f1690a1750","name":"stdout","source":"24af3f1690a1750.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9592efbcf8c301ec","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"tags":[]},"source":"62e4f6698c2439c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8848c3e22df5008.json b/allure-report/data/test-cases/63bb569f11b7f542.json similarity index 61% rename from allure-report/data/test-cases/d8848c3e22df5008.json rename to allure-report/data/test-cases/63bb569f11b7f542.json index 71b79ce216e..3fd77f5ab62 100644 --- a/allure-report/data/test-cases/d8848c3e22df5008.json +++ b/allure-report/data/test-cases/63bb569f11b7f542.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a1fb723ed6209615","name":"stdout","source":"a1fb723ed6209615.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"d8848c3e22df5008.json","parameterValues":[]} \ No newline at end of file +{"uid":"63bb569f11b7f542","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ebee3405e01a539f","name":"stdout","source":"ebee3405e01a539f.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"63bb569f11b7f542.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34569132e9551c33.json b/allure-report/data/test-cases/645c6c05562d2f01.json similarity index 70% rename from allure-report/data/test-cases/34569132e9551c33.json rename to allure-report/data/test-cases/645c6c05562d2f01.json index c5bcf1704c1..22737961908 100644 --- a/allure-report/data/test-cases/34569132e9551c33.json +++ b/allure-report/data/test-cases/645c6c05562d2f01.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"645c6c05562d2f01","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a6c1f836394adf7","name":"stdout","source":"1a6c1f836394adf7.txt","type":"text/plain","size":562}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a51a382d521d00cc","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"645c6c05562d2f01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8fac702aa93d2093.json b/allure-report/data/test-cases/64a44b1c9018ad85.json similarity index 58% rename from allure-report/data/test-cases/8fac702aa93d2093.json rename to allure-report/data/test-cases/64a44b1c9018ad85.json index 86e7fc01a54..036775b770f 100644 --- a/allure-report/data/test-cases/8fac702aa93d2093.json +++ b/allure-report/data/test-cases/64a44b1c9018ad85.json @@ -1 +1 @@ -{"uid":"8fac702aa93d2093","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4f667b9e1153821e","name":"stdout","source":"4f667b9e1153821e.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"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":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f91cfc098c0e7678","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"8fac702aa93d2093.json","parameterValues":[]} \ No newline at end of file +{"uid":"64a44b1c9018ad85","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"672a2772e24fdc9b","name":"stdout","source":"672a2772e24fdc9b.txt","type":"text/plain","size":316}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4041d4d534df9c91","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"64a44b1c9018ad85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebad35c5d56f477f.json b/allure-report/data/test-cases/650faaf602cc8f99.json similarity index 59% rename from allure-report/data/test-cases/ebad35c5d56f477f.json rename to allure-report/data/test-cases/650faaf602cc8f99.json index 6ef4f5bd44d..6e0f0a2e4d1 100644 --- a/allure-report/data/test-cases/ebad35c5d56f477f.json +++ b/allure-report/data/test-cases/650faaf602cc8f99.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"650faaf602cc8f99","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcab257bac252f0f","name":"stdout","source":"fcab257bac252f0f.txt","type":"text/plain","size":640}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"650faaf602cc8f99.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fc3a43f4af43f00.json b/allure-report/data/test-cases/6566b62febd2f997.json similarity index 72% rename from allure-report/data/test-cases/2fc3a43f4af43f00.json rename to allure-report/data/test-cases/6566b62febd2f997.json index 587fa6a8388..73ab57db222 100644 --- a/allure-report/data/test-cases/2fc3a43f4af43f00.json +++ b/allure-report/data/test-cases/6566b62febd2f997.json @@ -1 +1 @@ -{"uid":"2fc3a43f4af43f00","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"17c76024ab075e9a","name":"stdout","source":"17c76024ab075e9a.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"2fc3a43f4af43f00.json","parameterValues":[]} \ No newline at end of file +{"uid":"6566b62febd2f997","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5cbeea06209bb6e","name":"stdout","source":"a5cbeea06209bb6e.txt","type":"text/plain","size":510}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6566b62febd2f997.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5cbeef874f8f5965.json b/allure-report/data/test-cases/673ecd99dac0c86e.json similarity index 65% rename from allure-report/data/test-cases/5cbeef874f8f5965.json rename to allure-report/data/test-cases/673ecd99dac0c86e.json index 3f2438ee420..3ff7e3c4a3a 100644 --- a/allure-report/data/test-cases/5cbeef874f8f5965.json +++ b/allure-report/data/test-cases/673ecd99dac0c86e.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e32519d766f390f","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"5cbeef874f8f5965.json","parameterValues":[]} \ No newline at end of file +{"uid":"673ecd99dac0c86e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d22e154a5a83d80","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"673ecd99dac0c86e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1f2317d20109e13.json b/allure-report/data/test-cases/675849fee1009391.json similarity index 63% rename from allure-report/data/test-cases/c1f2317d20109e13.json rename to allure-report/data/test-cases/675849fee1009391.json index 616678e2baa..e04ffc867b1 100644 --- a/allure-report/data/test-cases/c1f2317d20109e13.json +++ b/allure-report/data/test-cases/675849fee1009391.json @@ -1 +1 @@ -{"uid":"c1f2317d20109e13","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"675849fee1009391","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fec67c535945138b","name":"stdout","source":"fec67c535945138b.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cabe377ec9af3c98","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c1f2317d20109e13","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"675849fee1009391.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68c4a39d8a6017b.json b/allure-report/data/test-cases/68c4a39d8a6017b.json new file mode 100644 index 00000000000..37b51f0c8b3 --- /dev/null +++ b/allure-report/data/test-cases/68c4a39d8a6017b.json @@ -0,0 +1 @@ +{"uid":"68c4a39d8a6017b","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"189c0101c5666165","name":"stdout","source":"189c0101c5666165.txt","type":"text/plain","size":3097}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"68c4a39d8a6017b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/693c5b2693478689.json b/allure-report/data/test-cases/693c5b2693478689.json new file mode 100644 index 00000000000..3ede8076832 --- /dev/null +++ b/allure-report/data/test-cases/693c5b2693478689.json @@ -0,0 +1 @@ +{"uid":"693c5b2693478689","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7517e0fe4fd38ce3","name":"stdout","source":"7517e0fe4fd38ce3.txt","type":"text/plain","size":1904}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":21,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a90fdb1fb3683308","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d6d06cbc227917e","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}}]},"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"693c5b2693478689.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e4b0e05a0862f7e.json b/allure-report/data/test-cases/69f65011f131e2b6.json similarity index 65% rename from allure-report/data/test-cases/5e4b0e05a0862f7e.json rename to allure-report/data/test-cases/69f65011f131e2b6.json index 9b2f67b3fc1..21529e817f6 100644 --- a/allure-report/data/test-cases/5e4b0e05a0862f7e.json +++ b/allure-report/data/test-cases/69f65011f131e2b6.json @@ -1 +1 @@ -{"uid":"5e4b0e05a0862f7e","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b653a3e02677ec62","name":"stdout","source":"b653a3e02677ec62.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"6af8fedb1f0ef3c6","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5e4b0e05a0862f7e","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"69f65011f131e2b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a1d96979e635e7f.json b/allure-report/data/test-cases/6a1d96979e635e7f.json new file mode 100644 index 00000000000..73fadddd7a7 --- /dev/null +++ b/allure-report/data/test-cases/6a1d96979e635e7f.json @@ -0,0 +1 @@ +{"uid":"6a1d96979e635e7f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d19d47ecb32ff1a","name":"stdout","source":"d19d47ecb32ff1a.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"17f807e7e2cad355","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":[]},"source":"6a1d96979e635e7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a770856a19e186.json b/allure-report/data/test-cases/6a770856a19e186.json deleted file mode 100644 index 464e75e02bc..00000000000 --- a/allure-report/data/test-cases/6a770856a19e186.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6a770856a19e186","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"34df9b6773cb0004","name":"stdout","source":"34df9b6773cb0004.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"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":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e858a30a444a5013","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"6a770856a19e186.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9bb9bf100d008741.json b/allure-report/data/test-cases/6a793815cad01bd2.json similarity index 62% rename from allure-report/data/test-cases/9bb9bf100d008741.json rename to allure-report/data/test-cases/6a793815cad01bd2.json index ab6ffc3b937..63f049006f5 100644 --- a/allure-report/data/test-cases/9bb9bf100d008741.json +++ b/allure-report/data/test-cases/6a793815cad01bd2.json @@ -1 +1 @@ -{"uid":"9bb9bf100d008741","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"6a793815cad01bd2","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"da9065dd6d539fab","name":"stdout","source":"da9065dd6d539fab.txt","type":"text/plain","size":2146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6a793815cad01bd2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccf5a8c46639d0ec.json b/allure-report/data/test-cases/6ab6caccad49b468.json similarity index 64% rename from allure-report/data/test-cases/ccf5a8c46639d0ec.json rename to allure-report/data/test-cases/6ab6caccad49b468.json index c2834f4eef9..4cc9536ee89 100644 --- a/allure-report/data/test-cases/ccf5a8c46639d0ec.json +++ b/allure-report/data/test-cases/6ab6caccad49b468.json @@ -1 +1 @@ -{"uid":"ccf5a8c46639d0ec","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"96eee8345f947a69","name":"stdout","source":"96eee8345f947a69.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"390f34682d25d573","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"tags":[]},"source":"ccf5a8c46639d0ec.json","parameterValues":[]} \ No newline at end of file +{"uid":"6ab6caccad49b468","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3c5d6a8306713e1a","name":"stdout","source":"3c5d6a8306713e1a.txt","type":"text/plain","size":86}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ac127c4c71bf788d","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":[]},"source":"6ab6caccad49b468.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73e2d6b3532a4935.json b/allure-report/data/test-cases/6af8fedb1f0ef3c6.json similarity index 72% rename from allure-report/data/test-cases/73e2d6b3532a4935.json rename to allure-report/data/test-cases/6af8fedb1f0ef3c6.json index 4b33f65c8e1..c65a6fd2942 100644 --- a/allure-report/data/test-cases/73e2d6b3532a4935.json +++ b/allure-report/data/test-cases/6af8fedb1f0ef3c6.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"6af8fedb1f0ef3c6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b9b05bf139af2d32","name":"stdout","source":"b9b05bf139af2d32.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6af8fedb1f0ef3c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/918346e849cd43c1.json b/allure-report/data/test-cases/6b00dc7a9142ab25.json similarity index 85% rename from allure-report/data/test-cases/918346e849cd43c1.json rename to allure-report/data/test-cases/6b00dc7a9142ab25.json index e14c8b549ba..c9a5b609276 100644 --- a/allure-report/data/test-cases/918346e849cd43c1.json +++ b/allure-report/data/test-cases/6b00dc7a9142ab25.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0b51033cb9da8c3","name":"stdout","source":"d0b51033cb9da8c3.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::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":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"918346e849cd43c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"6b00dc7a9142ab25","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30383d555cbdd5c6","name":"stdout","source":"30383d555cbdd5c6.txt","type":"text/plain","size":227}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6b00dc7a9142ab25.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a83637127d81f7d9.json b/allure-report/data/test-cases/6c1504a4fcfadf69.json similarity index 57% rename from allure-report/data/test-cases/a83637127d81f7d9.json rename to allure-report/data/test-cases/6c1504a4fcfadf69.json index d537214a310..5ff6e1feeea 100644 --- a/allure-report/data/test-cases/a83637127d81f7d9.json +++ b/allure-report/data/test-cases/6c1504a4fcfadf69.json @@ -1 +1 @@ -{"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 +{"uid":"6c1504a4fcfadf69","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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f26281521e32f10c","name":"stdout","source":"f26281521e32f10c.txt","type":"text/plain","size":791}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":2,"unknown":0,"total":2},"items":[{"uid":"a83637127d81f7d9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"6c1504a4fcfadf69.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d807bd45470dc9b","name":"stdout","source":"5d807bd45470dc9b.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9bfdccd510532417","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"tags":[]},"source":"6c5d99461aa2603.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c6b3f6be4f1b963.json b/allure-report/data/test-cases/6c6b3f6be4f1b963.json deleted file mode 100644 index 344569719e8..00000000000 --- a/allure-report/data/test-cases/6c6b3f6be4f1b963.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6c6b3f6be4f1b963","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9fa38c981635713c","name":"stdout","source":"9fa38c981635713c.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"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":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6c6b3f6be4f1b963.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63cbfe00daba1c69.json b/allure-report/data/test-cases/6cad203fab564c60.json similarity index 63% rename from allure-report/data/test-cases/63cbfe00daba1c69.json rename to allure-report/data/test-cases/6cad203fab564c60.json index 301f1959cbb..958fb09b1ee 100644 --- a/allure-report/data/test-cases/63cbfe00daba1c69.json +++ b/allure-report/data/test-cases/6cad203fab564c60.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"6cad203fab564c60","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac68097df5e78e9a","name":"stdout","source":"ac68097df5e78e9a.txt","type":"text/plain","size":277}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e41551e078ed42ea","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"63cbfe00daba1c69","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["ARRAY","ALGORITHMS"]},"source":"6cad203fab564c60.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e32519d766f390f.json b/allure-report/data/test-cases/6d22e154a5a83d80.json similarity index 71% rename from allure-report/data/test-cases/1e32519d766f390f.json rename to allure-report/data/test-cases/6d22e154a5a83d80.json index c3b32557363..0b0db2d2d57 100644 --- a/allure-report/data/test-cases/1e32519d766f390f.json +++ b/allure-report/data/test-cases/6d22e154a5a83d80.json @@ -1 +1 @@ -{"uid":"1e32519d766f390f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1e32519d766f390f.json","parameterValues":[]} \ No newline at end of file +{"uid":"6d22e154a5a83d80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6d22e154a5a83d80.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a20677ca4b1de4b9.json b/allure-report/data/test-cases/6d9270ca3330737a.json similarity index 71% rename from allure-report/data/test-cases/a20677ca4b1de4b9.json rename to allure-report/data/test-cases/6d9270ca3330737a.json index 60bb27d3919..4e22bc34c2c 100644 --- a/allure-report/data/test-cases/a20677ca4b1de4b9.json +++ b/allure-report/data/test-cases/6d9270ca3330737a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0350a898056fbe2","name":"stdout","source":"d0350a898056fbe2.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a20677ca4b1de4b9.json","parameterValues":[]} \ No newline at end of file +{"uid":"6d9270ca3330737a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2704cebfbdb23ee9","name":"stdout","source":"2704cebfbdb23ee9.txt","type":"text/plain","size":560}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6d9270ca3330737a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d9afe9fda19581e.json b/allure-report/data/test-cases/6d9afe9fda19581e.json new file mode 100644 index 00000000000..c6d901fe125 --- /dev/null +++ b/allure-report/data/test-cases/6d9afe9fda19581e.json @@ -0,0 +1 @@ +{"uid":"6d9afe9fda19581e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3861efa7e547869","name":"stdout","source":"e3861efa7e547869.txt","type":"text/plain","size":189}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bfd2093ec920e131","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6d9afe9fda19581e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6b9974e5ba1b9bbc.json b/allure-report/data/test-cases/6e797d850b813669.json similarity index 65% rename from allure-report/data/test-cases/6b9974e5ba1b9bbc.json rename to allure-report/data/test-cases/6e797d850b813669.json index 7aa5cd41b46..270d0d3a5d3 100644 --- a/allure-report/data/test-cases/6b9974e5ba1b9bbc.json +++ b/allure-report/data/test-cases/6e797d850b813669.json @@ -1 +1 @@ -{"uid":"6b9974e5ba1b9bbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"34ddd4abd2f8dc67","name":"stdout","source":"34ddd4abd2f8dc67.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6b9974e5ba1b9bbc.json","parameterValues":[]} \ No newline at end of file +{"uid":"6e797d850b813669","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"747e90cc8dad54fd","name":"stdout","source":"747e90cc8dad54fd.txt","type":"text/plain","size":985}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6e797d850b813669.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/127152ed6f6510da.json b/allure-report/data/test-cases/6e940c353ac4ade9.json similarity index 91% rename from allure-report/data/test-cases/127152ed6f6510da.json rename to allure-report/data/test-cases/6e940c353ac4ade9.json index 72801d5266b..208e9bd5e69 100644 --- a/allure-report/data/test-cases/127152ed6f6510da.json +++ b/allure-report/data/test-cases/6e940c353ac4ade9.json @@ -1 +1 @@ -{"uid":"127152ed6f6510da","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"127152ed6f6510da.json","parameterValues":[]} \ No newline at end of file +{"uid":"6e940c353ac4ade9","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"6e940c353ac4ade9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/564be6d750e08ee1.json b/allure-report/data/test-cases/6ea719d6e8a376fb.json similarity index 61% rename from allure-report/data/test-cases/564be6d750e08ee1.json rename to allure-report/data/test-cases/6ea719d6e8a376fb.json index 57505ed8e2d..b1fa0693ca4 100644 --- a/allure-report/data/test-cases/564be6d750e08ee1.json +++ b/allure-report/data/test-cases/6ea719d6e8a376fb.json @@ -1 +1 @@ -{"uid":"564be6d750e08ee1","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"61a0c4c44acfdb4d","name":"stdout","source":"61a0c4c44acfdb4d.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"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":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6c6b3f6be4f1b963","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"564be6d750e08ee1.json","parameterValues":[]} \ No newline at end of file +{"uid":"6ea719d6e8a376fb","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6096f7399a313214","name":"stdout","source":"6096f7399a313214.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e0e034728609b0e2","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"6ea719d6e8a376fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/960c8899017a5d3c.json b/allure-report/data/test-cases/6fce95111dc1cc14.json similarity index 63% rename from allure-report/data/test-cases/960c8899017a5d3c.json rename to allure-report/data/test-cases/6fce95111dc1cc14.json index 762020e14c5..4bc14200966 100644 --- a/allure-report/data/test-cases/960c8899017a5d3c.json +++ b/allure-report/data/test-cases/6fce95111dc1cc14.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"6fce95111dc1cc14","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8b4598a501c7d27","name":"stdout","source":"f8b4598a501c7d27.txt","type":"text/plain","size":502}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6fce95111dc1cc14.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5e3b3442b4ab9dd.json b/allure-report/data/test-cases/70085274c959a3cb.json similarity index 61% rename from allure-report/data/test-cases/a5e3b3442b4ab9dd.json rename to allure-report/data/test-cases/70085274c959a3cb.json index 5d7cf255170..2ce5bed6756 100644 --- a/allure-report/data/test-cases/a5e3b3442b4ab9dd.json +++ b/allure-report/data/test-cases/70085274c959a3cb.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1b3f240af350b21a","name":"stdout","source":"1b3f240af350b21a.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"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":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8b0e9e4ff2cb0b57","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"tags":[]},"source":"a5e3b3442b4ab9dd.json","parameterValues":[]} \ No newline at end of file +{"uid":"70085274c959a3cb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f602fdb5599f0ec","name":"stdout","source":"2f602fdb5599f0ec.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8800adc39df0e11","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":[]},"source":"70085274c959a3cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e160d8cbf25955af.json b/allure-report/data/test-cases/7028cdfd068e31be.json similarity index 76% rename from allure-report/data/test-cases/e160d8cbf25955af.json rename to allure-report/data/test-cases/7028cdfd068e31be.json index de01e720238..71c14b39cfa 100644 --- a/allure-report/data/test-cases/e160d8cbf25955af.json +++ b/allure-report/data/test-cases/7028cdfd068e31be.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e07492df16f7840","name":"stdout","source":"6e07492df16f7840.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e160d8cbf25955af.json","parameterValues":[]} \ No newline at end of file +{"uid":"7028cdfd068e31be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfb7ba55710ea734","name":"stdout","source":"cfb7ba55710ea734.txt","type":"text/plain","size":216}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7028cdfd068e31be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/469371686ca36a1e.json b/allure-report/data/test-cases/704aacac2db91585.json similarity index 67% rename from allure-report/data/test-cases/469371686ca36a1e.json rename to allure-report/data/test-cases/704aacac2db91585.json index 4dbcae43d22..5a1268a08b1 100644 --- a/allure-report/data/test-cases/469371686ca36a1e.json +++ b/allure-report/data/test-cases/704aacac2db91585.json @@ -1 +1 @@ -{"uid":"469371686ca36a1e","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"74e435a54cfbfd93","name":"stdout","source":"74e435a54cfbfd93.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"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":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"256e8daa91edbaa5","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"469371686ca36a1e.json","parameterValues":[]} \ No newline at end of file +{"uid":"704aacac2db91585","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d406966fbaffbd00","name":"stdout","source":"d406966fbaffbd00.txt","type":"text/plain","size":1649}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"39ba63dd42027b29","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"704aacac2db91585.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70e9bff1f7e13160.json b/allure-report/data/test-cases/70e9bff1f7e13160.json deleted file mode 100644 index 938b15e4b2f..00000000000 --- a/allure-report/data/test-cases/70e9bff1f7e13160.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"70e9bff1f7e13160","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"48a054aaded1508","name":"stdout","source":"48a054aaded1508.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"742f26c42b460eb3","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"70e9bff1f7e13160.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f921307aa8b56caa.json b/allure-report/data/test-cases/715edf62d220bc66.json similarity index 57% rename from allure-report/data/test-cases/f921307aa8b56caa.json rename to allure-report/data/test-cases/715edf62d220bc66.json index 8243397e2aa..7025b9e21cf 100644 --- a/allure-report/data/test-cases/f921307aa8b56caa.json +++ b/allure-report/data/test-cases/715edf62d220bc66.json @@ -1 +1 @@ -{"uid":"f921307aa8b56caa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"751c423a8c519ee0","name":"stdout","source":"751c423a8c519ee0.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b2086dbec02630b0","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"tags":[]},"source":"f921307aa8b56caa.json","parameterValues":[]} \ No newline at end of file +{"uid":"715edf62d220bc66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"56f4811665ed892a","name":"stdout","source":"56f4811665ed892a.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ecfcf126e0555bf0","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"715edf62d220bc66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3151ebffdc64c952.json b/allure-report/data/test-cases/71d876f4d19ecd67.json similarity index 64% rename from allure-report/data/test-cases/3151ebffdc64c952.json rename to allure-report/data/test-cases/71d876f4d19ecd67.json index 2b016dcee62..6dc9c1bb8d9 100644 --- a/allure-report/data/test-cases/3151ebffdc64c952.json +++ b/allure-report/data/test-cases/71d876f4d19ecd67.json @@ -1 +1 @@ -{"uid":"3151ebffdc64c952","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a5fe84144db5541","name":"stdout","source":"3a5fe84144db5541.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"834db107455b4f48","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"3151ebffdc64c952.json","parameterValues":[]} \ No newline at end of file +{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22862af9bcf091d4","name":"stdout","source":"22862af9bcf091d4.txt","type":"text/plain","size":233}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8c975897c57d974e","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"71d876f4d19ecd67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8d68faa427e9f9d.json b/allure-report/data/test-cases/72010ab4f2692ae4.json similarity index 52% rename from allure-report/data/test-cases/b8d68faa427e9f9d.json rename to allure-report/data/test-cases/72010ab4f2692ae4.json index b9a40592d19..0a77cba4969 100644 --- a/allure-report/data/test-cases/b8d68faa427e9f9d.json +++ b/allure-report/data/test-cases/72010ab4f2692ae4.json @@ -1 +1 @@ -{"uid":"b8d68faa427e9f9d","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"72010ab4f2692ae4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8b00f3eb19799549","name":"stdout","source":"8b00f3eb19799549.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":12,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"72010ab4f2692ae4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/654b50568a4f83a1.json b/allure-report/data/test-cases/743e871493ba28b4.json similarity index 69% rename from allure-report/data/test-cases/654b50568a4f83a1.json rename to allure-report/data/test-cases/743e871493ba28b4.json index ec1a358eb62..1a49a9f3b0c 100644 --- a/allure-report/data/test-cases/654b50568a4f83a1.json +++ b/allure-report/data/test-cases/743e871493ba28b4.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9ef5d72a43416890","name":"stdout","source":"9ef5d72a43416890.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"654b50568a4f83a1.json","parameterValues":[]} \ No newline at end of file +{"uid":"743e871493ba28b4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eceb81b9185d8ebf","name":"stdout","source":"eceb81b9185d8ebf.txt","type":"text/plain","size":281}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"743e871493ba28b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a99d84c035d8b08.json b/allure-report/data/test-cases/7511d5ab976a748a.json similarity index 61% rename from allure-report/data/test-cases/3a99d84c035d8b08.json rename to allure-report/data/test-cases/7511d5ab976a748a.json index 70df012835d..6d560aa76dc 100644 --- a/allure-report/data/test-cases/3a99d84c035d8b08.json +++ b/allure-report/data/test-cases/7511d5ab976a748a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","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 a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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":"20413926fc466813","name":"stdout","source":"20413926fc466813.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::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":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"3a99d84c035d8b08.json","parameterValues":[]} \ No newline at end of file +{"uid":"7511d5ab976a748a","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea676dbf2861ab6b","name":"stdout","source":"ea676dbf2861ab6b.txt","type":"text/plain","size":531}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"7511d5ab976a748a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/761811e55728ed74.json b/allure-report/data/test-cases/761811e55728ed74.json new file mode 100644 index 00000000000..0abb38cb145 --- /dev/null +++ b/allure-report/data/test-cases/761811e55728ed74.json @@ -0,0 +1 @@ +{"uid":"761811e55728ed74","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"336614ff4bde976d","name":"stdout","source":"336614ff4bde976d.txt","type":"text/plain","size":878}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"761811e55728ed74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8fbe4fcea83005e2.json b/allure-report/data/test-cases/7637c123d5cf58af.json similarity index 70% rename from allure-report/data/test-cases/8fbe4fcea83005e2.json rename to allure-report/data/test-cases/7637c123d5cf58af.json index d0e90adda79..79e9929497c 100644 --- a/allure-report/data/test-cases/8fbe4fcea83005e2.json +++ b/allure-report/data/test-cases/7637c123d5cf58af.json @@ -1 +1 @@ -{"uid":"8fbe4fcea83005e2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c1042cf050bb287f","name":"stdout","source":"c1042cf050bb287f.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8fbe4fcea83005e2.json","parameterValues":[]} \ No newline at end of file +{"uid":"7637c123d5cf58af","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"11a60e97d1d843b1","name":"stdout","source":"11a60e97d1d843b1.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7637c123d5cf58af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb032b53923bc0e9.json b/allure-report/data/test-cases/76548c4669002681.json similarity index 55% rename from allure-report/data/test-cases/fb032b53923bc0e9.json rename to allure-report/data/test-cases/76548c4669002681.json index 5c8e224d240..180281c0da4 100644 --- a/allure-report/data/test-cases/fb032b53923bc0e9.json +++ b/allure-report/data/test-cases/76548c4669002681.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d19c441db40a3cac","name":"stdout","source":"d19c441db40a3cac.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d8848c3e22df5008","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"fb032b53923bc0e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"76548c4669002681","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3d1c47094969219","name":"stdout","source":"e3d1c47094969219.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"63bb569f11b7f542","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"76548c4669002681.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69f91e5f44fcbcaa.json b/allure-report/data/test-cases/76f8c586f8a804f0.json similarity index 64% rename from allure-report/data/test-cases/69f91e5f44fcbcaa.json rename to allure-report/data/test-cases/76f8c586f8a804f0.json index 4cf80d217ec..6fedfa6e789 100644 --- a/allure-report/data/test-cases/69f91e5f44fcbcaa.json +++ b/allure-report/data/test-cases/76f8c586f8a804f0.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":[{"uid":"a05108cbbea40a77","name":"stdout","source":"a05108cbbea40a77.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::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":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dea681370cee7fa1","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"69f91e5f44fcbcaa.json","parameterValues":[]} \ No newline at end of file +{"uid":"76f8c586f8a804f0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"868a8a8788cc39fc","name":"stdout","source":"868a8a8788cc39fc.txt","type":"text/plain","size":556}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c0de6c68e45d781","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"76f8c586f8a804f0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/776765eba79884f4.json b/allure-report/data/test-cases/776765eba79884f4.json new file mode 100644 index 00000000000..55773dd3ce0 --- /dev/null +++ b/allure-report/data/test-cases/776765eba79884f4.json @@ -0,0 +1 @@ +{"uid":"776765eba79884f4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1e9020a1f427ff16","name":"stdout","source":"1e9020a1f427ff16.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"776765eba79884f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/498024d219d443a4.json b/allure-report/data/test-cases/78957f7729625c40.json similarity index 63% rename from allure-report/data/test-cases/498024d219d443a4.json rename to allure-report/data/test-cases/78957f7729625c40.json index 4a048710fef..27ad3838059 100644 --- a/allure-report/data/test-cases/498024d219d443a4.json +++ b/allure-report/data/test-cases/78957f7729625c40.json @@ -1 +1 @@ -{"uid":"498024d219d443a4","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"de5056f652a803a9","name":"stdout","source":"de5056f652a803a9.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"498024d219d443a4.json","parameterValues":[]} \ No newline at end of file +{"uid":"78957f7729625c40","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"51a4e96e6102d985","name":"stdout","source":"51a4e96e6102d985.txt","type":"text/plain","size":476}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"78957f7729625c40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/79e609aaa466cdf.json b/allure-report/data/test-cases/79e609aaa466cdf.json deleted file mode 100644 index 2e53927677e..00000000000 --- a/allure-report/data/test-cases/79e609aaa466cdf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"79e609aaa466cdf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b5edf03f6f69fd7","name":"stdout","source":"b5edf03f6f69fd7.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"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":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"79e609aaa466cdf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c92b73c681a87bf.json b/allure-report/data/test-cases/7a1019ba1beb3118.json similarity index 62% rename from allure-report/data/test-cases/1c92b73c681a87bf.json rename to allure-report/data/test-cases/7a1019ba1beb3118.json index f491b07197e..75443f3529b 100644 --- a/allure-report/data/test-cases/1c92b73c681a87bf.json +++ b/allure-report/data/test-cases/7a1019ba1beb3118.json @@ -1 +1 @@ -{"uid":"1c92b73c681a87bf","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f98184cdb1c288eb","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1c92b73c681a87bf.json","parameterValues":[]} \ No newline at end of file +{"uid":"7a1019ba1beb3118","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"17d8ff61005bb0bc","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"7a1019ba1beb3118.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7a2bcbeb9bd4f3cc.json b/allure-report/data/test-cases/7a2bcbeb9bd4f3cc.json deleted file mode 100644 index a5d9a917e60..00000000000 --- a/allure-report/data/test-cases/7a2bcbeb9bd4f3cc.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7a2bcbeb9bd4f3cc","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"922ae39708baa025","name":"stdout","source":"922ae39708baa025.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7a2bcbeb9bd4f3cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3be027c950740ddd.json b/allure-report/data/test-cases/7ac9af93b3d2f297.json similarity index 59% rename from allure-report/data/test-cases/3be027c950740ddd.json rename to allure-report/data/test-cases/7ac9af93b3d2f297.json index 6fc15b0d712..6b176581742 100644 --- a/allure-report/data/test-cases/3be027c950740ddd.json +++ b/allure-report/data/test-cases/7ac9af93b3d2f297.json @@ -1 +1 @@ -{"uid":"3be027c950740ddd","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5f33ac63c02af5a3","name":"stdout","source":"5f33ac63c02af5a3.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6b9974e5ba1b9bbc","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3be027c950740ddd.json","parameterValues":[]} \ No newline at end of file +{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d17644d369f719b5","name":"stdout","source":"d17644d369f719b5.txt","type":"text/plain","size":985}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6e797d850b813669","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7ac9af93b3d2f297.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db7b4c897ddcf1a6.json b/allure-report/data/test-cases/7b2352a8e3675c67.json similarity index 67% rename from allure-report/data/test-cases/db7b4c897ddcf1a6.json rename to allure-report/data/test-cases/7b2352a8e3675c67.json index 5556eca578a..135f270c89d 100644 --- a/allure-report/data/test-cases/db7b4c897ddcf1a6.json +++ b/allure-report/data/test-cases/7b2352a8e3675c67.json @@ -1 +1 @@ -{"uid":"db7b4c897ddcf1a6","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5c7638f94c1897db","name":"stdout","source":"5c7638f94c1897db.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9035abe5e1151932","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"7b2352a8e3675c67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad991ec2a2bdb70.json b/allure-report/data/test-cases/7b9876690035f17.json similarity index 68% rename from allure-report/data/test-cases/ad991ec2a2bdb70.json rename to allure-report/data/test-cases/7b9876690035f17.json index 06c30d07b75..1a1629f4efb 100644 --- a/allure-report/data/test-cases/ad991ec2a2bdb70.json +++ b/allure-report/data/test-cases/7b9876690035f17.json @@ -1 +1 @@ -{"uid":"ad991ec2a2bdb70","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"7b9876690035f17","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f52a9aa50bef455","name":"stdout","source":"7f52a9aa50bef455.txt","type":"text/plain","size":1009}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"7b9876690035f17.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85d9d1820cce2f7e.json b/allure-report/data/test-cases/7c2750d825fae93b.json similarity index 67% rename from allure-report/data/test-cases/85d9d1820cce2f7e.json rename to allure-report/data/test-cases/7c2750d825fae93b.json index b0faf05d4b5..4f132457cc7 100644 --- a/allure-report/data/test-cases/85d9d1820cce2f7e.json +++ b/allure-report/data/test-cases/7c2750d825fae93b.json @@ -1 +1 @@ -{"uid":"85d9d1820cce2f7e","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"bad36bad780dde2b","name":"stdout","source":"bad36bad780dde2b.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8c7b1cf8369a95ff","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"85d9d1820cce2f7e.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"951e88f3edc608ae","name":"stdout","source":"951e88f3edc608ae.txt","type":"text/plain","size":411}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"458ee4cae9834334","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"7c2750d825fae93b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fba83a53ac553ac.json b/allure-report/data/test-cases/7c3ec7eab2e0be6d.json similarity index 67% rename from allure-report/data/test-cases/2fba83a53ac553ac.json rename to allure-report/data/test-cases/7c3ec7eab2e0be6d.json index 9c48400d5a4..7c7683c1b09 100644 --- a/allure-report/data/test-cases/2fba83a53ac553ac.json +++ b/allure-report/data/test-cases/7c3ec7eab2e0be6d.json @@ -1 +1 @@ -{"uid":"2fba83a53ac553ac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"79e843dd93b69bc1","name":"stdout","source":"79e843dd93b69bc1.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f27c61d350b9fa85","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2fba83a53ac553ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c3ec7eab2e0be6d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1ae3e81e546a5a71","name":"stdout","source":"1ae3e81e546a5a71.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"500c62fc4806377c","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7c3ec7eab2e0be6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d6f39edb784ab0.json b/allure-report/data/test-cases/7d6f39edb784ab0.json deleted file mode 100644 index 2f79c69bcef..00000000000 --- a/allure-report/data/test-cases/7d6f39edb784ab0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7d6f39edb784ab0","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"34940f05851678f8","name":"stdout","source":"34940f05851678f8.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7d6f39edb784ab0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d65aaadaa20d5c2.json b/allure-report/data/test-cases/7e0d94f0ee4e397d.json similarity index 62% rename from allure-report/data/test-cases/2d65aaadaa20d5c2.json rename to allure-report/data/test-cases/7e0d94f0ee4e397d.json index a09c8d4a564..ea657a22add 100644 --- a/allure-report/data/test-cases/2d65aaadaa20d5c2.json +++ b/allure-report/data/test-cases/7e0d94f0ee4e397d.json @@ -1 +1 @@ -{"uid":"2d65aaadaa20d5c2","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":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 +{"uid":"7e0d94f0ee4e397d","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"676a2b28cd4ab614","name":"stdout","source":"676a2b28cd4ab614.txt","type":"text/plain","size":1079}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2d65aaadaa20d5c2","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"7e0d94f0ee4e397d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f2ec06c200d3086.json b/allure-report/data/test-cases/7f2ec06c200d3086.json deleted file mode 100644 index f673955646b..00000000000 --- a/allure-report/data/test-cases/7f2ec06c200d3086.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7f2ec06c200d3086","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a921030da8c9a520.json b/allure-report/data/test-cases/7f90afc62f8400f4.json similarity index 52% rename from allure-report/data/test-cases/a921030da8c9a520.json rename to allure-report/data/test-cases/7f90afc62f8400f4.json index dd812bce856..8a91257c51b 100644 --- a/allure-report/data/test-cases/a921030da8c9a520.json +++ b/allure-report/data/test-cases/7f90afc62f8400f4.json @@ -1 +1 @@ -{"uid":"a921030da8c9a520","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c6d99744fc651725","name":"stdout","source":"c6d99744fc651725.txt","type":"text/plain","size":2817}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":30,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a97caba53074497b","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a921030da8c9a520","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}}]},"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"7f90afc62f8400f4.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/60f5877935ced5c5.json b/allure-report/data/test-cases/7fd5632b0213855d.json similarity index 60% rename from allure-report/data/test-cases/60f5877935ced5c5.json rename to allure-report/data/test-cases/7fd5632b0213855d.json index a8b60e0827d..35d2412bde0 100644 --- a/allure-report/data/test-cases/60f5877935ced5c5.json +++ b/allure-report/data/test-cases/7fd5632b0213855d.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"7fd5632b0213855d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127703,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127703,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127735,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127735,"stop":1724735127781,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127781,"stop":1724735127813,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b46eca85ecd31e8","name":"stdout","source":"4b46eca85ecd31e8.txt","type":"text/plain","size":932}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724735127813,"stop":1724735127813,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2512233f29820ca9","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"60f5877935ced5c5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}}]},"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"7fd5632b0213855d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92b17e5074e54ef7.json b/allure-report/data/test-cases/801bdccb4e1aa824.json similarity index 76% rename from allure-report/data/test-cases/92b17e5074e54ef7.json rename to allure-report/data/test-cases/801bdccb4e1aa824.json index 15514f93f74..8027dbc354b 100644 --- a/allure-report/data/test-cases/92b17e5074e54ef7.json +++ b/allure-report/data/test-cases/801bdccb4e1aa824.json @@ -1 +1 @@ -{"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 +{"uid":"801bdccb4e1aa824","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":"47a613697aa0c71f","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":0,"unknown":0,"total":2},"items":[{"uid":"92b17e5074e54ef7","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":"801bdccb4e1aa824.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f92252f389b32f9.json b/allure-report/data/test-cases/808471d4cfeae814.json similarity index 67% rename from allure-report/data/test-cases/1f92252f389b32f9.json rename to allure-report/data/test-cases/808471d4cfeae814.json index f8f21d5578b..8529819f92f 100644 --- a/allure-report/data/test-cases/1f92252f389b32f9.json +++ b/allure-report/data/test-cases/808471d4cfeae814.json @@ -1 +1 @@ -{"uid":"1f92252f389b32f9","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"808471d4cfeae814","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92552b4b1fe49529","name":"stdout","source":"92552b4b1fe49529.txt","type":"text/plain","size":253}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"808471d4cfeae814.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80dd204b4961834.json b/allure-report/data/test-cases/80dd204b4961834.json new file mode 100644 index 00000000000..0bf410496d8 --- /dev/null +++ b/allure-report/data/test-cases/80dd204b4961834.json @@ -0,0 +1 @@ +{"uid":"80dd204b4961834","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a9033f7cad83170f","name":"stdout","source":"a9033f7cad83170f.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"80dd204b4961834.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/521b14729542d5c4.json b/allure-report/data/test-cases/82619e3fb0e84d4d.json similarity index 67% rename from allure-report/data/test-cases/521b14729542d5c4.json rename to allure-report/data/test-cases/82619e3fb0e84d4d.json index dd095735d93..e97aef66332 100644 --- a/allure-report/data/test-cases/521b14729542d5c4.json +++ b/allure-report/data/test-cases/82619e3fb0e84d4d.json @@ -1 +1 @@ -{"uid":"521b14729542d5c4","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"82619e3fb0e84d4d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"63766a355340dea4","name":"stdout","source":"63766a355340dea4.txt","type":"text/plain","size":1579}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aacbcab78401e86c","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"521b14729542d5c4","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}}]},"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"82619e3fb0e84d4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4359475f5ec554bd.json b/allure-report/data/test-cases/826a0963540c6e75.json similarity index 59% rename from allure-report/data/test-cases/4359475f5ec554bd.json rename to allure-report/data/test-cases/826a0963540c6e75.json index b02dffb8ae5..65dda47263b 100644 --- a/allure-report/data/test-cases/4359475f5ec554bd.json +++ b/allure-report/data/test-cases/826a0963540c6e75.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"826a0963540c6e75","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15329bd7c41462e0","name":"stdout","source":"15329bd7c41462e0.txt","type":"text/plain","size":375}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6a0450be3f30fe6","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4359475f5ec554bd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"826a0963540c6e75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f39f65fd61fb96b1.json b/allure-report/data/test-cases/8271021679b0cc06.json similarity index 76% rename from allure-report/data/test-cases/f39f65fd61fb96b1.json rename to allure-report/data/test-cases/8271021679b0cc06.json index c66f56ee01d..1d9ec684202 100644 --- a/allure-report/data/test-cases/f39f65fd61fb96b1.json +++ b/allure-report/data/test-cases/8271021679b0cc06.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":"1a80ac27e17ecc55","name":"stdout","source":"1a80ac27e17ecc55.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::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":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"f39f65fd61fb96b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"8271021679b0cc06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"59e7a80b454faae7","name":"stdout","source":"59e7a80b454faae7.txt","type":"text/plain","size":356}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"8271021679b0cc06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/742f26c42b460eb3.json b/allure-report/data/test-cases/82e3ff5b5bd4ac62.json similarity index 68% rename from allure-report/data/test-cases/742f26c42b460eb3.json rename to allure-report/data/test-cases/82e3ff5b5bd4ac62.json index b4c410db6e8..aa6fcd67e2b 100644 --- a/allure-report/data/test-cases/742f26c42b460eb3.json +++ b/allure-report/data/test-cases/82e3ff5b5bd4ac62.json @@ -1 +1 @@ -{"uid":"742f26c42b460eb3","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"826e1d893c73077a","name":"stdout","source":"826e1d893c73077a.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"742f26c42b460eb3.json","parameterValues":[]} \ No newline at end of file +{"uid":"82e3ff5b5bd4ac62","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"95eee5a3754aa8a2","name":"stdout","source":"95eee5a3754aa8a2.txt","type":"text/plain","size":111}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"82e3ff5b5bd4ac62.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7cef5a6f9a11a927.json b/allure-report/data/test-cases/83105e24306c53ac.json similarity index 60% rename from allure-report/data/test-cases/7cef5a6f9a11a927.json rename to allure-report/data/test-cases/83105e24306c53ac.json index 701d955943c..2b920eb77ed 100644 --- a/allure-report/data/test-cases/7cef5a6f9a11a927.json +++ b/allure-report/data/test-cases/83105e24306c53ac.json @@ -1 +1 @@ -{"uid":"7cef5a6f9a11a927","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"64e75cae3405924b","name":"stdout","source":"64e75cae3405924b.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"eafa77373a5f8e86","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7cef5a6f9a11a927.json","parameterValues":[]} \ No newline at end of file +{"uid":"83105e24306c53ac","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d682c96b1e76edae","name":"stdout","source":"d682c96b1e76edae.txt","type":"text/plain","size":1155}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed37a80783d347db","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"83105e24306c53ac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/691795f9ff7d7473.json b/allure-report/data/test-cases/83f04a2f029479df.json similarity index 75% rename from allure-report/data/test-cases/691795f9ff7d7473.json rename to allure-report/data/test-cases/83f04a2f029479df.json index fe13cd8eb4d..9b814e50541 100644 --- a/allure-report/data/test-cases/691795f9ff7d7473.json +++ b/allure-report/data/test-cases/83f04a2f029479df.json @@ -1 +1 @@ -{"uid":"691795f9ff7d7473","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"482dd2a19da8e0f3","name":"stdout","source":"482dd2a19da8e0f3.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"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":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"691795f9ff7d7473.json","parameterValues":[]} \ No newline at end of file +{"uid":"83f04a2f029479df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7829271a783962e0","name":"stdout","source":"7829271a783962e0.txt","type":"text/plain","size":185}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"83f04a2f029479df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3beec2fa9a311c4.json b/allure-report/data/test-cases/8427b8f31ff35d6c.json similarity index 69% rename from allure-report/data/test-cases/a3beec2fa9a311c4.json rename to allure-report/data/test-cases/8427b8f31ff35d6c.json index de81af0431d..7d42514e48d 100644 --- a/allure-report/data/test-cases/a3beec2fa9a311c4.json +++ b/allure-report/data/test-cases/8427b8f31ff35d6c.json @@ -1 +1 @@ -{"uid":"a3beec2fa9a311c4","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"4d5c4bbf86727665","name":"stdout","source":"4d5c4bbf86727665.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6952117a88e4fd1","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"a3beec2fa9a311c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"8427b8f31ff35d6c","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ddae89531089be3f","name":"stdout","source":"ddae89531089be3f.txt","type":"text/plain","size":90}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"87be1c294a496f4a","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8427b8f31ff35d6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8451096f3488e82.json b/allure-report/data/test-cases/8451096f3488e82.json new file mode 100644 index 00000000000..7d647dc830b --- /dev/null +++ b/allure-report/data/test-cases/8451096f3488e82.json @@ -0,0 +1 @@ +{"uid":"8451096f3488e82","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"981d1c1e601a3a5b","name":"stdout","source":"981d1c1e601a3a5b.txt","type":"text/plain","size":510}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6566b62febd2f997","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"tags":["FUNDAMENTALS"]},"source":"8451096f3488e82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b44596de448230b8.json b/allure-report/data/test-cases/84aa3b23910872ae.json similarity index 68% rename from allure-report/data/test-cases/b44596de448230b8.json rename to allure-report/data/test-cases/84aa3b23910872ae.json index b2a3858c748..10dc35f8680 100644 --- a/allure-report/data/test-cases/b44596de448230b8.json +++ b/allure-report/data/test-cases/84aa3b23910872ae.json @@ -1 +1 @@ -{"uid":"b44596de448230b8","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"adfb8d457e08492a","name":"stdout","source":"adfb8d457e08492a.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"b44596de448230b8.json","parameterValues":[]} \ No newline at end of file +{"uid":"84aa3b23910872ae","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"634594d507e663ad","name":"stdout","source":"634594d507e663ad.txt","type":"text/plain","size":32}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"84aa3b23910872ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/324c41918ed3c26a.json b/allure-report/data/test-cases/84f17449b7b13451.json similarity index 68% rename from allure-report/data/test-cases/324c41918ed3c26a.json rename to allure-report/data/test-cases/84f17449b7b13451.json index 698ec09ebc9..f389ab11676 100644 --- a/allure-report/data/test-cases/324c41918ed3c26a.json +++ b/allure-report/data/test-cases/84f17449b7b13451.json @@ -1 +1 @@ -{"uid":"324c41918ed3c26a","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"82626f88e303aee4","name":"stdout","source":"82626f88e303aee4.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"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":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3ceb22d74ae937b","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"324c41918ed3c26a.json","parameterValues":[]} \ No newline at end of file +{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7e0d861d218b6b53","name":"stdout","source":"7e0d861d218b6b53.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"613579922cc04140","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"84f17449b7b13451.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62bf772c3a2aa5d2.json b/allure-report/data/test-cases/84fd4c67efee5295.json similarity index 77% rename from allure-report/data/test-cases/62bf772c3a2aa5d2.json rename to allure-report/data/test-cases/84fd4c67efee5295.json index 43449a04a6f..b9acdc4da4d 100644 --- a/allure-report/data/test-cases/62bf772c3a2aa5d2.json +++ b/allure-report/data/test-cases/84fd4c67efee5295.json @@ -1 +1 @@ -{"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 +{"uid":"84fd4c67efee5295","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":"bc5cb7d257f882a1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"uid":"62bf772c3a2aa5d2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"84fd4c67efee5295.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6d72f7fe7ecd8e2.json b/allure-report/data/test-cases/85cc51a7df0f4a6c.json similarity index 72% rename from allure-report/data/test-cases/b6d72f7fe7ecd8e2.json rename to allure-report/data/test-cases/85cc51a7df0f4a6c.json index 6ecfba69cea..fdf12b0ed09 100644 --- a/allure-report/data/test-cases/b6d72f7fe7ecd8e2.json +++ b/allure-report/data/test-cases/85cc51a7df0f4a6c.json @@ -1 +1 @@ -{"uid":"b6d72f7fe7ecd8e2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"b6d72f7fe7ecd8e2.json","parameterValues":[]} \ No newline at end of file +{"uid":"85cc51a7df0f4a6c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"85cc51a7df0f4a6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8655885cb5db7a58.json b/allure-report/data/test-cases/8655885cb5db7a58.json new file mode 100644 index 00000000000..c47cfee1bae --- /dev/null +++ b/allure-report/data/test-cases/8655885cb5db7a58.json @@ -0,0 +1 @@ +{"uid":"8655885cb5db7a58","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6968a83bd2f66f6","name":"stdout","source":"6968a83bd2f66f6.txt","type":"text/plain","size":1536}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0ff51cf7a3c2781","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"578c3a6cd3e7e40f","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"8655885cb5db7a58.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce5b44ba32daaf31.json b/allure-report/data/test-cases/874b39a75ad8fa3b.json similarity index 58% rename from allure-report/data/test-cases/ce5b44ba32daaf31.json rename to allure-report/data/test-cases/874b39a75ad8fa3b.json index a622268b182..c9d40f33fc2 100644 --- a/allure-report/data/test-cases/ce5b44ba32daaf31.json +++ b/allure-report/data/test-cases/874b39a75ad8fa3b.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bfa138ce1d41528","name":"stdout","source":"bfa138ce1d41528.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"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":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8abc15630ec06cb","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"ce5b44ba32daaf31.json","parameterValues":[]} \ No newline at end of file +{"uid":"874b39a75ad8fa3b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d279b3f66291ee3","name":"stdout","source":"d279b3f66291ee3.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a5f55a655c70213f","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"874b39a75ad8fa3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a064a48d91c28f13.json b/allure-report/data/test-cases/87acfa055dcbe26a.json similarity index 72% rename from allure-report/data/test-cases/a064a48d91c28f13.json rename to allure-report/data/test-cases/87acfa055dcbe26a.json index fc3ca4ed2ca..6c12c228585 100644 --- a/allure-report/data/test-cases/a064a48d91c28f13.json +++ b/allure-report/data/test-cases/87acfa055dcbe26a.json @@ -1 +1 @@ -{"uid":"a064a48d91c28f13","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":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":"127152ed6f6510da","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":"a064a48d91c28f13.json","parameterValues":[]} \ No newline at end of file +{"uid":"87acfa055dcbe26a","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":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":"6e940c353ac4ade9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"87acfa055dcbe26a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6952117a88e4fd1.json b/allure-report/data/test-cases/87be1c294a496f4a.json similarity index 77% rename from allure-report/data/test-cases/f6952117a88e4fd1.json rename to allure-report/data/test-cases/87be1c294a496f4a.json index 93b2a515ce4..9e05baa1afb 100644 --- a/allure-report/data/test-cases/f6952117a88e4fd1.json +++ b/allure-report/data/test-cases/87be1c294a496f4a.json @@ -1 +1 @@ -{"uid":"f6952117a88e4fd1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5f71f9eaace164be","name":"stdout","source":"5f71f9eaace164be.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"f6952117a88e4fd1.json","parameterValues":[]} \ No newline at end of file +{"uid":"87be1c294a496f4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d4d0d11b46cc8eb0","name":"stdout","source":"d4d0d11b46cc8eb0.txt","type":"text/plain","size":90}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"87be1c294a496f4a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dba3101c45ee1611.json b/allure-report/data/test-cases/884c8d1f852cc3dc.json similarity index 57% rename from allure-report/data/test-cases/dba3101c45ee1611.json rename to allure-report/data/test-cases/884c8d1f852cc3dc.json index 4a06ccfb921..e50aeb44bde 100644 --- a/allure-report/data/test-cases/dba3101c45ee1611.json +++ b/allure-report/data/test-cases/884c8d1f852cc3dc.json @@ -1 +1 @@ -{"uid":"dba3101c45ee1611","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2ee2228a3a71cd4e","name":"stdout","source":"2ee2228a3a71cd4e.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e09cd6c2a9399b84","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"tags":[]},"source":"dba3101c45ee1611.json","parameterValues":[]} \ No newline at end of file +{"uid":"884c8d1f852cc3dc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29f64ed4da9c0ecc","name":"stdout","source":"29f64ed4da9c0ecc.txt","type":"text/plain","size":298}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23cc390416e7aa52","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":[]},"source":"884c8d1f852cc3dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/620b2589fb870406.json b/allure-report/data/test-cases/88c7e92ae3f035ea.json similarity index 72% rename from allure-report/data/test-cases/620b2589fb870406.json rename to allure-report/data/test-cases/88c7e92ae3f035ea.json index 4ae3e750215..26a17a3a152 100644 --- a/allure-report/data/test-cases/620b2589fb870406.json +++ b/allure-report/data/test-cases/88c7e92ae3f035ea.json @@ -1 +1 @@ -{"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 +{"uid":"88c7e92ae3f035ea","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":"22fcf1edf8ebf197","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"88c7e92ae3f035ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3421cdd7cb94a40.json b/allure-report/data/test-cases/895ce9b19a080b91.json similarity index 77% rename from allure-report/data/test-cases/f3421cdd7cb94a40.json rename to allure-report/data/test-cases/895ce9b19a080b91.json index 9fa36047945..958c76b0e81 100644 --- a/allure-report/data/test-cases/f3421cdd7cb94a40.json +++ b/allure-report/data/test-cases/895ce9b19a080b91.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"895ce9b19a080b91","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3d05ca7bd9d20192","name":"stdout","source":"3d05ca7bd9d20192.txt","type":"text/plain","size":931}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"895ce9b19a080b91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4e7b8420f6ec93b.json b/allure-report/data/test-cases/89c677f035513057.json similarity index 72% rename from allure-report/data/test-cases/c4e7b8420f6ec93b.json rename to allure-report/data/test-cases/89c677f035513057.json index 25779f7a11e..ed88e749794 100644 --- a/allure-report/data/test-cases/c4e7b8420f6ec93b.json +++ b/allure-report/data/test-cases/89c677f035513057.json @@ -1 +1 @@ -{"uid":"c4e7b8420f6ec93b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"761f3173e0272363","name":"stdout","source":"761f3173e0272363.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"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":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c4e7b8420f6ec93b.json","parameterValues":[]} \ No newline at end of file +{"uid":"89c677f035513057","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f29437b097cf88b9","name":"stdout","source":"f29437b097cf88b9.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"89c677f035513057.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89ceeba296a3ea3.json b/allure-report/data/test-cases/89ceeba296a3ea3.json deleted file mode 100644 index 50714c5e98d..00000000000 --- a/allure-report/data/test-cases/89ceeba296a3ea3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"89ceeba296a3ea3","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2a834f90f4db7120","name":"stdout","source":"2a834f90f4db7120.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8fbff2bb58c8a587","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"tags":[]},"source":"89ceeba296a3ea3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7f51c235702ff2b.json b/allure-report/data/test-cases/8a0dfae45b96d6a4.json similarity index 65% rename from allure-report/data/test-cases/c7f51c235702ff2b.json rename to allure-report/data/test-cases/8a0dfae45b96d6a4.json index a77d82f153b..fabc09d0da3 100644 --- a/allure-report/data/test-cases/c7f51c235702ff2b.json +++ b/allure-report/data/test-cases/8a0dfae45b96d6a4.json @@ -1 +1 @@ -{"uid":"c7f51c235702ff2b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4ec4b9e8092c85e0","name":"stdout","source":"4ec4b9e8092c85e0.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ab943002f86b4e6","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"tags":[]},"source":"c7f51c235702ff2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"8a0dfae45b96d6a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8da729485857d70b","name":"stdout","source":"8da729485857d70b.txt","type":"text/plain","size":808}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5de6808258f0151f","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":[]},"source":"8a0dfae45b96d6a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fa15071b1bee987.json b/allure-report/data/test-cases/8a76fd0002a5824c.json similarity index 60% rename from allure-report/data/test-cases/3fa15071b1bee987.json rename to allure-report/data/test-cases/8a76fd0002a5824c.json index eda41e8fb10..d805940bcbe 100644 --- a/allure-report/data/test-cases/3fa15071b1bee987.json +++ b/allure-report/data/test-cases/8a76fd0002a5824c.json @@ -1 +1 @@ -{"uid":"3fa15071b1bee987","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d7e0ef7caf28d559","name":"stdout","source":"d7e0ef7caf28d559.txt","type":"text/plain","size":878}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"761811e55728ed74","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3fa15071b1bee987","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"8a76fd0002a5824c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/831a4a72cd312e40.json b/allure-report/data/test-cases/8af4ebd0495f0e70.json similarity index 72% rename from allure-report/data/test-cases/831a4a72cd312e40.json rename to allure-report/data/test-cases/8af4ebd0495f0e70.json index f2c55ff6c58..c157b35a931 100644 --- a/allure-report/data/test-cases/831a4a72cd312e40.json +++ b/allure-report/data/test-cases/8af4ebd0495f0e70.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aad817c6a7654978","name":"stdout","source":"aad817c6a7654978.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"831a4a72cd312e40.json","parameterValues":[]} \ No newline at end of file +{"uid":"8af4ebd0495f0e70","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c72469286db7525d","name":"stdout","source":"c72469286db7525d.txt","type":"text/plain","size":288}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8af4ebd0495f0e70.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8108c5f5e7aa4e08.json b/allure-report/data/test-cases/8baea38a8fa67e7e.json similarity index 76% rename from allure-report/data/test-cases/8108c5f5e7aa4e08.json rename to allure-report/data/test-cases/8baea38a8fa67e7e.json index b441b444763..b89fd180b17 100644 --- a/allure-report/data/test-cases/8108c5f5e7aa4e08.json +++ b/allure-report/data/test-cases/8baea38a8fa67e7e.json @@ -1 +1 @@ -{"uid":"8108c5f5e7aa4e08","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e85f6f8a1949219","name":"stdout","source":"6e85f6f8a1949219.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"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":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"8108c5f5e7aa4e08.json","parameterValues":[]} \ No newline at end of file +{"uid":"8baea38a8fa67e7e","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"34ee6a50b9a56e7d","name":"stdout","source":"34ee6a50b9a56e7d.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"8baea38a8fa67e7e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/834db107455b4f48.json b/allure-report/data/test-cases/8c975897c57d974e.json similarity index 69% rename from allure-report/data/test-cases/834db107455b4f48.json rename to allure-report/data/test-cases/8c975897c57d974e.json index 97ae8190bb7..a34aed00ca8 100644 --- a/allure-report/data/test-cases/834db107455b4f48.json +++ b/allure-report/data/test-cases/8c975897c57d974e.json @@ -1 +1 @@ -{"uid":"834db107455b4f48","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"995455f4d59eea4c","name":"stdout","source":"995455f4d59eea4c.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"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":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"834db107455b4f48.json","parameterValues":[]} \ No newline at end of file +{"uid":"8c975897c57d974e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fd4f4028774f914d","name":"stdout","source":"fd4f4028774f914d.txt","type":"text/plain","size":233}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8c975897c57d974e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc10d0b4585e5c2e.json b/allure-report/data/test-cases/8d05bbd591902299.json similarity index 92% rename from allure-report/data/test-cases/cc10d0b4585e5c2e.json rename to allure-report/data/test-cases/8d05bbd591902299.json index 55ec10cfc7e..1a8b9042acd 100644 --- a/allure-report/data/test-cases/cc10d0b4585e5c2e.json +++ b/allure-report/data/test-cases/8d05bbd591902299.json @@ -1 +1 @@ -{"uid":"cc10d0b4585e5c2e","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":"cc10d0b4585e5c2e.json","parameterValues":[]} \ No newline at end of file +{"uid":"8d05bbd591902299","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":"8d05bbd591902299.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/451dd55d479da390.json b/allure-report/data/test-cases/8f884e4fa29bb7d4.json similarity index 72% rename from allure-report/data/test-cases/451dd55d479da390.json rename to allure-report/data/test-cases/8f884e4fa29bb7d4.json index 006aa6fbec0..e2055bfbced 100644 --- a/allure-report/data/test-cases/451dd55d479da390.json +++ b/allure-report/data/test-cases/8f884e4fa29bb7d4.json @@ -1 +1 @@ -{"uid":"451dd55d479da390","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"8f884e4fa29bb7d4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1c7070c159aacf2e","name":"stdout","source":"1c7070c159aacf2e.txt","type":"text/plain","size":326}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"8f884e4fa29bb7d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2993b93df714aac2.json b/allure-report/data/test-cases/9035abe5e1151932.json similarity index 53% rename from allure-report/data/test-cases/2993b93df714aac2.json rename to allure-report/data/test-cases/9035abe5e1151932.json index c5ad3153530..e909c1244f3 100644 --- a/allure-report/data/test-cases/2993b93df714aac2.json +++ b/allure-report/data/test-cases/9035abe5e1151932.json @@ -1 +1 @@ -{"uid":"2993b93df714aac2","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9035abe5e1151932","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e51aca385250e4","name":"stdout","source":"6e51aca385250e4.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9035abe5e1151932.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5b1db39220bbcf9.json b/allure-report/data/test-cases/9098856200f13690.json similarity index 54% rename from allure-report/data/test-cases/f5b1db39220bbcf9.json rename to allure-report/data/test-cases/9098856200f13690.json index 74cf133a00d..aaa3fcf66f8 100644 --- a/allure-report/data/test-cases/f5b1db39220bbcf9.json +++ b/allure-report/data/test-cases/9098856200f13690.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd12a6124ae0828b","name":"stdout","source":"cd12a6124ae0828b.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5ae2799c264c377c","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"tags":[]},"source":"f5b1db39220bbcf9.json","parameterValues":[]} \ No newline at end of file +{"uid":"9098856200f13690","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45411ab5eb543e75","name":"stdout","source":"45411ab5eb543e75.txt","type":"text/plain","size":129}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59ff5157ed7e9ae","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"9098856200f13690.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7954a467ea4b79e1.json b/allure-report/data/test-cases/90a114379d845ff7.json similarity index 68% rename from allure-report/data/test-cases/7954a467ea4b79e1.json rename to allure-report/data/test-cases/90a114379d845ff7.json index 9dfc5d48256..00e1529dfa5 100644 --- a/allure-report/data/test-cases/7954a467ea4b79e1.json +++ b/allure-report/data/test-cases/90a114379d845ff7.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"90a114379d845ff7","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6ce0e167f1507713","name":"stdout","source":"6ce0e167f1507713.txt","type":"text/plain","size":242}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"90a114379d845ff7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90a24ba96aea3cfc.json b/allure-report/data/test-cases/90a24ba96aea3cfc.json new file mode 100644 index 00000000000..fcf14851caa --- /dev/null +++ b/allure-report/data/test-cases/90a24ba96aea3cfc.json @@ -0,0 +1 @@ +{"uid":"90a24ba96aea3cfc","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7efcea1d1ffd3662","name":"stdout","source":"7efcea1d1ffd3662.txt","type":"text/plain","size":544}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dcb40cbe5ee38417","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"396df158495e2556","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"90a24ba96aea3cfc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0e2de6ef36ce602.json b/allure-report/data/test-cases/90eee3ddc83b1454.json similarity index 68% rename from allure-report/data/test-cases/c0e2de6ef36ce602.json rename to allure-report/data/test-cases/90eee3ddc83b1454.json index 3a10abb7d73..7eff5edf5ca 100644 --- a/allure-report/data/test-cases/c0e2de6ef36ce602.json +++ b/allure-report/data/test-cases/90eee3ddc83b1454.json @@ -1 +1 @@ -{"uid":"c0e2de6ef36ce602","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ad1ea44cc626928f","name":"stdout","source":"ad1ea44cc626928f.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4e7b8420f6ec93b","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c0e2de6ef36ce602.json","parameterValues":[]} \ No newline at end of file +{"uid":"90eee3ddc83b1454","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"17deef7e1cb66e60","name":"stdout","source":"17deef7e1cb66e60.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"89c677f035513057","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"90eee3ddc83b1454.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bbfb47c5ac3f243c.json b/allure-report/data/test-cases/91e2410535ccc997.json similarity index 64% rename from allure-report/data/test-cases/bbfb47c5ac3f243c.json rename to allure-report/data/test-cases/91e2410535ccc997.json index 5d9c4f20a16..495c7fcf97b 100644 --- a/allure-report/data/test-cases/bbfb47c5ac3f243c.json +++ b/allure-report/data/test-cases/91e2410535ccc997.json @@ -1 +1 @@ -{"uid":"bbfb47c5ac3f243c","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"91e2410535ccc997","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5763b31517fb1cf6","name":"stdout","source":"5763b31517fb1cf6.txt","type":"text/plain","size":167}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"91e2410535ccc997.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b5b6c744b764be6.json b/allure-report/data/test-cases/91ed862dacbec840.json similarity index 93% rename from allure-report/data/test-cases/2b5b6c744b764be6.json rename to allure-report/data/test-cases/91ed862dacbec840.json index 88b27dc14ad..2793943af71 100644 --- a/allure-report/data/test-cases/2b5b6c744b764be6.json +++ b/allure-report/data/test-cases/91ed862dacbec840.json @@ -1 +1 @@ -{"uid":"2b5b6c744b764be6","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":"2b5b6c744b764be6.json","parameterValues":[]} \ No newline at end of file +{"uid":"91ed862dacbec840","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":"91ed862dacbec840.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ea60f3a146e3d51.json b/allure-report/data/test-cases/92083f552ecb72c4.json similarity index 62% rename from allure-report/data/test-cases/3ea60f3a146e3d51.json rename to allure-report/data/test-cases/92083f552ecb72c4.json index 811ef7bfb13..57c9f9b4ff4 100644 --- a/allure-report/data/test-cases/3ea60f3a146e3d51.json +++ b/allure-report/data/test-cases/92083f552ecb72c4.json @@ -1 +1 @@ -{"uid":"3ea60f3a146e3d51","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8366dd539f3f636c","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"tags":[]},"source":"3ea60f3a146e3d51.json","parameterValues":[]} \ No newline at end of file +{"uid":"92083f552ecb72c4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59ab6d9b07f441c0","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":[]},"source":"92083f552ecb72c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92297f3cbdd8ad78.json b/allure-report/data/test-cases/92297f3cbdd8ad78.json new file mode 100644 index 00000000000..2e58ff1b4c5 --- /dev/null +++ b/allure-report/data/test-cases/92297f3cbdd8ad78.json @@ -0,0 +1 @@ +{"uid":"92297f3cbdd8ad78","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72f410625d43ac82","name":"stdout","source":"72f410625d43ac82.txt","type":"text/plain","size":111}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"82e3ff5b5bd4ac62","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"92297f3cbdd8ad78.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/922eccc2ca8ed714.json b/allure-report/data/test-cases/922eccc2ca8ed714.json new file mode 100644 index 00000000000..4fa062b5880 --- /dev/null +++ b/allure-report/data/test-cases/922eccc2ca8ed714.json @@ -0,0 +1 @@ +{"uid":"922eccc2ca8ed714","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eba58defe547aa99","name":"stdout","source":"eba58defe547aa99.txt","type":"text/plain","size":565}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"922eccc2ca8ed714.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9393151991be7f33.json b/allure-report/data/test-cases/9393151991be7f33.json new file mode 100644 index 00000000000..96127017c18 --- /dev/null +++ b/allure-report/data/test-cases/9393151991be7f33.json @@ -0,0 +1 @@ +{"uid":"9393151991be7f33","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5efed1b6b7f1c808","name":"stdout","source":"5efed1b6b7f1c808.txt","type":"text/plain","size":60}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3223ce64ed8bee2","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"9393151991be7f33.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f8cfd8001c2b32fd.json b/allure-report/data/test-cases/95011c2c3c205658.json similarity index 61% rename from allure-report/data/test-cases/f8cfd8001c2b32fd.json rename to allure-report/data/test-cases/95011c2c3c205658.json index 646fa20b744..5f4a197887d 100644 --- a/allure-report/data/test-cases/f8cfd8001c2b32fd.json +++ b/allure-report/data/test-cases/95011c2c3c205658.json @@ -1 +1 @@ -{"uid":"f8cfd8001c2b32fd","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b6d72f7fe7ecd8e2","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f8cfd8001c2b32fd.json","parameterValues":[]} \ No newline at end of file +{"uid":"95011c2c3c205658","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85cc51a7df0f4a6c","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"95011c2c3c205658.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95172229a5a9ad6.json b/allure-report/data/test-cases/95172229a5a9ad6.json new file mode 100644 index 00000000000..d14c13033eb --- /dev/null +++ b/allure-report/data/test-cases/95172229a5a9ad6.json @@ -0,0 +1 @@ +{"uid":"95172229a5a9ad6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92e60d573610c20c","name":"stdout","source":"92e60d573610c20c.txt","type":"text/plain","size":611}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"95172229a5a9ad6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aee4538f6230f980.json b/allure-report/data/test-cases/9519f48ec729ba4c.json similarity index 64% rename from allure-report/data/test-cases/aee4538f6230f980.json rename to allure-report/data/test-cases/9519f48ec729ba4c.json index 95c98eeb5bc..18f38a5014a 100644 --- a/allure-report/data/test-cases/aee4538f6230f980.json +++ b/allure-report/data/test-cases/9519f48ec729ba4c.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f0db32efa6426426","name":"stdout","source":"f0db32efa6426426.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6832cf487834f3e","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"tags":[]},"source":"aee4538f6230f980.json","parameterValues":[]} \ No newline at end of file +{"uid":"9519f48ec729ba4c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a1cb38196225980f","name":"stdout","source":"a1cb38196225980f.txt","type":"text/plain","size":487}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5320007ca0191a21","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":[]},"source":"9519f48ec729ba4c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de3c176bdacd6cb0.json b/allure-report/data/test-cases/9525e56c1666fc0f.json similarity index 60% rename from allure-report/data/test-cases/de3c176bdacd6cb0.json rename to allure-report/data/test-cases/9525e56c1666fc0f.json index 708cc0c8eb2..2e2bda83e13 100644 --- a/allure-report/data/test-cases/de3c176bdacd6cb0.json +++ b/allure-report/data/test-cases/9525e56c1666fc0f.json @@ -1 +1 @@ -{"uid":"de3c176bdacd6cb0","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e926e3f96426662","name":"stdout","source":"6e926e3f96426662.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"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":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7d710406d5c624ab","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"de3c176bdacd6cb0.json","parameterValues":[]} \ No newline at end of file +{"uid":"9525e56c1666fc0f","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62e987f3927afd7c","name":"stdout","source":"62e987f3927afd7c.txt","type":"text/plain","size":232}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4df49eaeb4ea4daa","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"9525e56c1666fc0f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95ddc175910ea52.json b/allure-report/data/test-cases/95ddc175910ea52.json new file mode 100644 index 00000000000..958a182617b --- /dev/null +++ b/allure-report/data/test-cases/95ddc175910ea52.json @@ -0,0 +1 @@ +{"uid":"95ddc175910ea52","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2fa0f7a126ad592b","name":"stdout","source":"2fa0f7a126ad592b.txt","type":"text/plain","size":1009}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7b9876690035f17","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"16026a681cee6bae","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}}]},"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"95ddc175910ea52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95e612b16602c749.json b/allure-report/data/test-cases/95e612b16602c749.json new file mode 100644 index 00000000000..4f2c5b0f31a --- /dev/null +++ b/allure-report/data/test-cases/95e612b16602c749.json @@ -0,0 +1 @@ +{"uid":"95e612b16602c749","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c12b7919feb22bf","name":"stdout","source":"c12b7919feb22bf.txt","type":"text/plain","size":896}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"95e612b16602c749.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/964ad50f448ed64d.json b/allure-report/data/test-cases/964ad50f448ed64d.json new file mode 100644 index 00000000000..312c8dd0312 --- /dev/null +++ b/allure-report/data/test-cases/964ad50f448ed64d.json @@ -0,0 +1 @@ +{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4cfe45f98e3a162","name":"stdout","source":"4cfe45f98e3a162.txt","type":"text/plain","size":524}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"431c7499a8a042ca","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f2ec06c200d3086","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"964ad50f448ed64d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83e3620464a462e0.json b/allure-report/data/test-cases/96bc84b88ae05ea5.json similarity index 92% rename from allure-report/data/test-cases/83e3620464a462e0.json rename to allure-report/data/test-cases/96bc84b88ae05ea5.json index 8d383453bc7..13c47eab118 100644 --- a/allure-report/data/test-cases/83e3620464a462e0.json +++ b/allure-report/data/test-cases/96bc84b88ae05ea5.json @@ -1 +1 @@ -{"uid":"83e3620464a462e0","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"83e3620464a462e0.json","parameterValues":[]} \ No newline at end of file +{"uid":"96bc84b88ae05ea5","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"96bc84b88ae05ea5.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"79495ef6842bbd0","name":"stdout","source":"79495ef6842bbd0.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f98898530a5ace8b","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"9710b9a44c2e3c82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c2a3e42bb3933c8.json b/allure-report/data/test-cases/972d0622d29729c4.json similarity index 72% rename from allure-report/data/test-cases/2c2a3e42bb3933c8.json rename to allure-report/data/test-cases/972d0622d29729c4.json index d12fa44e29e..2d5860f1772 100644 --- a/allure-report/data/test-cases/2c2a3e42bb3933c8.json +++ b/allure-report/data/test-cases/972d0622d29729c4.json @@ -1 +1 @@ -{"uid":"2c2a3e42bb3933c8","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1467bda4d9665eda","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"972d0622d29729c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98200e3d5ae32ca.json b/allure-report/data/test-cases/98200e3d5ae32ca.json new file mode 100644 index 00000000000..bed0a352d1d --- /dev/null +++ b/allure-report/data/test-cases/98200e3d5ae32ca.json @@ -0,0 +1 @@ +{"uid":"98200e3d5ae32ca","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"91c5a91c91d3cce8","name":"stdout","source":"91c5a91c91d3cce8.txt","type":"text/plain","size":12051}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a70604cd2465a183","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"98200e3d5ae32ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df3147d31fee6968.json b/allure-report/data/test-cases/98d0f495e6dcba7e.json similarity index 63% rename from allure-report/data/test-cases/df3147d31fee6968.json rename to allure-report/data/test-cases/98d0f495e6dcba7e.json index 54fad3d42fa..bcc32e2bd1f 100644 --- a/allure-report/data/test-cases/df3147d31fee6968.json +++ b/allure-report/data/test-cases/98d0f495e6dcba7e.json @@ -1 +1 @@ -{"uid":"df3147d31fee6968","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"98d0f495e6dcba7e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62bd346b3a261fc6","name":"stdout","source":"62bd346b3a261fc6.txt","type":"text/plain","size":676}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"252f381a068f762f","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":"98d0f495e6dcba7e.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/611b4f8cf836294a.json b/allure-report/data/test-cases/996165a0ada95681.json similarity index 68% rename from allure-report/data/test-cases/611b4f8cf836294a.json rename to allure-report/data/test-cases/996165a0ada95681.json index 6e5a4e3a9ec..49dd7945e72 100644 --- a/allure-report/data/test-cases/611b4f8cf836294a.json +++ b/allure-report/data/test-cases/996165a0ada95681.json @@ -1 +1 @@ -{"uid":"611b4f8cf836294a","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c2efa1b50e5fd149","name":"stdout","source":"c2efa1b50e5fd149.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5dea07a70915ceac","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"tags":[]},"source":"611b4f8cf836294a.json","parameterValues":[]} \ No newline at end of file +{"uid":"996165a0ada95681","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"257782fa3edc8402","name":"stdout","source":"257782fa3edc8402.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fa0c36654622313","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"996165a0ada95681.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a33fb2570aec1823.json b/allure-report/data/test-cases/99a050e28b9f808c.json similarity index 60% rename from allure-report/data/test-cases/a33fb2570aec1823.json rename to allure-report/data/test-cases/99a050e28b9f808c.json index 54d0ce923b6..c74d194ebab 100644 --- a/allure-report/data/test-cases/a33fb2570aec1823.json +++ b/allure-report/data/test-cases/99a050e28b9f808c.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"99a050e28b9f808c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d920f200ffe2c729","name":"stdout","source":"d920f200ffe2c729.txt","type":"text/plain","size":378}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ef7cb2e79441187e","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a33fb2570aec1823","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"99a050e28b9f808c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d837297408a13c1e.json b/allure-report/data/test-cases/9a325845218dd6ae.json similarity index 59% rename from allure-report/data/test-cases/d837297408a13c1e.json rename to allure-report/data/test-cases/9a325845218dd6ae.json index 3b22f39bfcb..92a433757e4 100644 --- a/allure-report/data/test-cases/d837297408a13c1e.json +++ b/allure-report/data/test-cases/9a325845218dd6ae.json @@ -1 +1 @@ -{"uid":"d837297408a13c1e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9a325845218dd6ae","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a54c971159a9735d","name":"stdout","source":"a54c971159a9735d.txt","type":"text/plain","size":213}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a50af3a4d2a7afb5","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d837297408a13c1e","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"9a325845218dd6ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e7b87e8229dd1a3.json b/allure-report/data/test-cases/9a93b35004a87c6a.json similarity index 94% rename from allure-report/data/test-cases/3e7b87e8229dd1a3.json rename to allure-report/data/test-cases/9a93b35004a87c6a.json index ad6d703c893..9a74bf00f7a 100644 --- a/allure-report/data/test-cases/3e7b87e8229dd1a3.json +++ b/allure-report/data/test-cases/9a93b35004a87c6a.json @@ -1 +1 @@ -{"uid":"3e7b87e8229dd1a3","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":"3e7b87e8229dd1a3.json","parameterValues":[]} \ No newline at end of file +{"uid":"9a93b35004a87c6a","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":"9a93b35004a87c6a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/402ddb0b000d2943.json b/allure-report/data/test-cases/9b0990a97652b0f6.json similarity index 52% rename from allure-report/data/test-cases/402ddb0b000d2943.json rename to allure-report/data/test-cases/9b0990a97652b0f6.json index 14e0acdc28d..ff6b0ac3b85 100644 --- a/allure-report/data/test-cases/402ddb0b000d2943.json +++ b/allure-report/data/test-cases/9b0990a97652b0f6.json @@ -1 +1 @@ -{"uid":"402ddb0b000d2943","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8201c952fac9b91","name":"stdout","source":"8201c952fac9b91.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"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":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"402ddb0b000d2943.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b0990a97652b0f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"77f74c85e8c0841a","name":"stdout","source":"77f74c85e8c0841a.txt","type":"text/plain","size":231}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"9b0990a97652b0f6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fa9af8d7ed67798.json b/allure-report/data/test-cases/9b4ada0bf1630c0a.json similarity index 64% rename from allure-report/data/test-cases/1fa9af8d7ed67798.json rename to allure-report/data/test-cases/9b4ada0bf1630c0a.json index a6244cfa981..4046abfe02a 100644 --- a/allure-report/data/test-cases/1fa9af8d7ed67798.json +++ b/allure-report/data/test-cases/9b4ada0bf1630c0a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"57e5598cd8b8ad42","name":"stdout","source":"57e5598cd8b8ad42.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"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":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"1fa9af8d7ed67798.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b4ada0bf1630c0a","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"218f40b324526f4d","name":"stdout","source":"218f40b324526f4d.txt","type":"text/plain","size":1088}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"9b4ada0bf1630c0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c3877c30e625752.json b/allure-report/data/test-cases/9b82a842fdc9b867.json similarity index 69% rename from allure-report/data/test-cases/4c3877c30e625752.json rename to allure-report/data/test-cases/9b82a842fdc9b867.json index cd56ea6ea2a..bdf36adc94f 100644 --- a/allure-report/data/test-cases/4c3877c30e625752.json +++ b/allure-report/data/test-cases/9b82a842fdc9b867.json @@ -1 +1 @@ -{"uid":"4c3877c30e625752","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9b82a842fdc9b867","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d27167744db90954","name":"stdout","source":"d27167744db90954.txt","type":"text/plain","size":1013}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9a0c341753d9526","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4c3877c30e625752","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}}]},"tags":["PERFORMANCE","ALGORITHMS"]},"source":"9b82a842fdc9b867.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6bb1a909958ad3a2.json b/allure-report/data/test-cases/9c38060cc376f686.json similarity index 61% rename from allure-report/data/test-cases/6bb1a909958ad3a2.json rename to allure-report/data/test-cases/9c38060cc376f686.json index f3a22c85426..ca0f8da7bf9 100644 --- a/allure-report/data/test-cases/6bb1a909958ad3a2.json +++ b/allure-report/data/test-cases/9c38060cc376f686.json @@ -1 +1 @@ -{"uid":"6bb1a909958ad3a2","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"34e25e08dcd9bfc5","name":"stdout","source":"34e25e08dcd9bfc5.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"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":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a4c528481d776554","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"6bb1a909958ad3a2.json","parameterValues":[]} \ No newline at end of file +{"uid":"9c38060cc376f686","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5fc827b08877ee80","name":"stdout","source":"5fc827b08877ee80.txt","type":"text/plain","size":131}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c2776ae7e29336e9","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"9c38060cc376f686.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ed8dfd7ca5a3d13.json b/allure-report/data/test-cases/9cb8749ab5d5d5c7.json similarity index 70% rename from allure-report/data/test-cases/2ed8dfd7ca5a3d13.json rename to allure-report/data/test-cases/9cb8749ab5d5d5c7.json index cc9997ed01b..0069bbf1884 100644 --- a/allure-report/data/test-cases/2ed8dfd7ca5a3d13.json +++ b/allure-report/data/test-cases/9cb8749ab5d5d5c7.json @@ -1 +1 @@ -{"uid":"2ed8dfd7ca5a3d13","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"79650f7b74d71675","name":"stdout","source":"79650f7b74d71675.txt","type":"text/plain","size":46002}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ce00ffd36d904f61","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2ed8dfd7ca5a3d13","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}}]},"tags":["ALGORITHMS"]},"source":"9cb8749ab5d5d5c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39e365f7b1aa879c.json b/allure-report/data/test-cases/9cc84b4c3c851a20.json similarity index 71% rename from allure-report/data/test-cases/39e365f7b1aa879c.json rename to allure-report/data/test-cases/9cc84b4c3c851a20.json index 64189a8d3a7..cfbcacc584a 100644 --- a/allure-report/data/test-cases/39e365f7b1aa879c.json +++ b/allure-report/data/test-cases/9cc84b4c3c851a20.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9cc84b4c3c851a20","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1386283fe3a63a2","name":"stdout","source":"f1386283fe3a63a2.txt","type":"text/plain","size":1380}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9cc84b4c3c851a20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d396e0b9ed83131.json b/allure-report/data/test-cases/9d396e0b9ed83131.json deleted file mode 100644 index 1284e0d4a22..00000000000 --- a/allure-report/data/test-cases/9d396e0b9ed83131.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9d396e0b9ed83131","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/93145ed3e3e64e21.json b/allure-report/data/test-cases/9d8518015a2b07b6.json similarity index 78% rename from allure-report/data/test-cases/93145ed3e3e64e21.json rename to allure-report/data/test-cases/9d8518015a2b07b6.json index 2edd7e381fc..0613a536463 100644 --- a/allure-report/data/test-cases/93145ed3e3e64e21.json +++ b/allure-report/data/test-cases/9d8518015a2b07b6.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9d8518015a2b07b6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6570d6c473e55397","name":"stdout","source":"6570d6c473e55397.txt","type":"text/plain","size":949}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9d8518015a2b07b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0ff31e127206139.json b/allure-report/data/test-cases/9e5b993187ac8b27.json similarity index 67% rename from allure-report/data/test-cases/c0ff31e127206139.json rename to allure-report/data/test-cases/9e5b993187ac8b27.json index 86f2a8c6739..34e0eb5c734 100644 --- a/allure-report/data/test-cases/c0ff31e127206139.json +++ b/allure-report/data/test-cases/9e5b993187ac8b27.json @@ -1 +1 @@ -{"uid":"c0ff31e127206139","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aa2e305576d932cc","name":"stdout","source":"aa2e305576d932cc.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5414177affd6f821","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"tags":[]},"source":"c0ff31e127206139.json","parameterValues":[]} \ No newline at end of file +{"uid":"9e5b993187ac8b27","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"838e96495b7301c2","name":"stdout","source":"838e96495b7301c2.txt","type":"text/plain","size":1500}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f534ec218cc4d08d","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"tags":[]},"source":"9e5b993187ac8b27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e13311d47c82f25c.json b/allure-report/data/test-cases/9f6955234023cbe8.json similarity index 64% rename from allure-report/data/test-cases/e13311d47c82f25c.json rename to allure-report/data/test-cases/9f6955234023cbe8.json index 7e1caef0cc5..509310fc940 100644 --- a/allure-report/data/test-cases/e13311d47c82f25c.json +++ b/allure-report/data/test-cases/9f6955234023cbe8.json @@ -1 +1 @@ -{"uid":"e13311d47c82f25c","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9f6955234023cbe8","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5c0575d9cafe6cf6","name":"stdout","source":"5c0575d9cafe6cf6.txt","type":"text/plain","size":410}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9f6955234023cbe8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd298347a8b67e93.json b/allure-report/data/test-cases/9f7fc4731241a976.json similarity index 63% rename from allure-report/data/test-cases/cd298347a8b67e93.json rename to allure-report/data/test-cases/9f7fc4731241a976.json index f811bbb3ad3..f5776d5607a 100644 --- a/allure-report/data/test-cases/cd298347a8b67e93.json +++ b/allure-report/data/test-cases/9f7fc4731241a976.json @@ -1 +1 @@ -{"uid":"cd298347a8b67e93","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"9f7fc4731241a976","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3e00d2a8f3aaa1eb","name":"stdout","source":"3e00d2a8f3aaa1eb.txt","type":"text/plain","size":253}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"808471d4cfeae814","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cd298347a8b67e93","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"9f7fc4731241a976.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e4e2296a825eac3f.json b/allure-report/data/test-cases/a08dd22616aac704.json similarity index 94% rename from allure-report/data/test-cases/e4e2296a825eac3f.json rename to allure-report/data/test-cases/a08dd22616aac704.json index c010c2aee24..19b3d468c21 100644 --- a/allure-report/data/test-cases/e4e2296a825eac3f.json +++ b/allure-report/data/test-cases/a08dd22616aac704.json @@ -1 +1 @@ -{"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 +{"uid":"a08dd22616aac704","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":"a08dd22616aac704.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a10d36c92cf89a63.json b/allure-report/data/test-cases/a10d36c92cf89a63.json new file mode 100644 index 00000000000..14812581480 --- /dev/null +++ b/allure-report/data/test-cases/a10d36c92cf89a63.json @@ -0,0 +1 @@ +{"uid":"a10d36c92cf89a63","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3e1cb74f119a5c14","name":"stdout","source":"3e1cb74f119a5c14.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f3af6e95d4ded07","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a10d36c92cf89a63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14b78fc9da736d87.json b/allure-report/data/test-cases/a1571db34190da47.json similarity index 73% rename from allure-report/data/test-cases/14b78fc9da736d87.json rename to allure-report/data/test-cases/a1571db34190da47.json index aca3e08f3e8..0b54612d5e1 100644 --- a/allure-report/data/test-cases/14b78fc9da736d87.json +++ b/allure-report/data/test-cases/a1571db34190da47.json @@ -1 +1 @@ -{"uid":"14b78fc9da736d87","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"4d46a258151a8eec","name":"stdout","source":"4d46a258151a8eec.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"14b78fc9da736d87.json","parameterValues":[]} \ No newline at end of file +{"uid":"a1571db34190da47","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"f522ce9854634cf6","name":"stdout","source":"f522ce9854634cf6.txt","type":"text/plain","size":146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"a1571db34190da47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2776f2124bd86f4.json b/allure-report/data/test-cases/a2776f2124bd86f4.json deleted file mode 100644 index 082f86fea06..00000000000 --- a/allure-report/data/test-cases/a2776f2124bd86f4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a2776f2124bd86f4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c18cfc939d43f91f","name":"stdout","source":"c18cfc939d43f91f.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ecd11ec04bbfe07","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"a2776f2124bd86f4.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d8970eab34dca31f","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"a2cb5446a34df86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e0cb0022d9ce284.json b/allure-report/data/test-cases/a2fbd8f640be4431.json similarity index 73% rename from allure-report/data/test-cases/6e0cb0022d9ce284.json rename to allure-report/data/test-cases/a2fbd8f640be4431.json index a4257e589a6..4817087afe3 100644 --- a/allure-report/data/test-cases/6e0cb0022d9ce284.json +++ b/allure-report/data/test-cases/a2fbd8f640be4431.json @@ -1 +1 @@ -{"uid":"6e0cb0022d9ce284","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"18e589c7521ffb38","name":"stdout","source":"18e589c7521ffb38.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"6e0cb0022d9ce284.json","parameterValues":[]} \ No newline at end of file +{"uid":"a2fbd8f640be4431","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db7ce475c42c1e48","name":"stdout","source":"db7ce475c42c1e48.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a2fbd8f640be4431.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf1274fce77ea3c3.json b/allure-report/data/test-cases/a381266642fdbdd2.json similarity index 73% rename from allure-report/data/test-cases/bf1274fce77ea3c3.json rename to allure-report/data/test-cases/a381266642fdbdd2.json index 27a9f31b375..f2eae654a24 100644 --- a/allure-report/data/test-cases/bf1274fce77ea3c3.json +++ b/allure-report/data/test-cases/a381266642fdbdd2.json @@ -1 +1 @@ -{"uid":"bf1274fce77ea3c3","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a381266642fdbdd2","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9185450f0b6d0b62","name":"stdout","source":"9185450f0b6d0b62.txt","type":"text/plain","size":22}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a381266642fdbdd2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c11bd2bbb0f17cd9.json b/allure-report/data/test-cases/a492d74df14be54a.json similarity index 63% rename from allure-report/data/test-cases/c11bd2bbb0f17cd9.json rename to allure-report/data/test-cases/a492d74df14be54a.json index 683fbccff0b..eb86245ee10 100644 --- a/allure-report/data/test-cases/c11bd2bbb0f17cd9.json +++ b/allure-report/data/test-cases/a492d74df14be54a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a492d74df14be54a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c144733a0318ce29","name":"stdout","source":"c144733a0318ce29.txt","type":"text/plain","size":242}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"90a114379d845ff7","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c11bd2bbb0f17cd9","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"a492d74df14be54a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4b7cb6ba7726224.json b/allure-report/data/test-cases/a4b7cb6ba7726224.json new file mode 100644 index 00000000000..4249097126e --- /dev/null +++ b/allure-report/data/test-cases/a4b7cb6ba7726224.json @@ -0,0 +1 @@ +{"uid":"a4b7cb6ba7726224","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b4c7e69e73ca20","name":"stdout","source":"3b4c7e69e73ca20.txt","type":"text/plain","size":254}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a4b7cb6ba7726224.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4f7c6dc4c7e84.json b/allure-report/data/test-cases/a4f7c6dc4c7e84.json new file mode 100644 index 00000000000..a1e3ca8f032 --- /dev/null +++ b/allure-report/data/test-cases/a4f7c6dc4c7e84.json @@ -0,0 +1 @@ +{"uid":"a4f7c6dc4c7e84","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5b9b2f5d2166132","name":"stdout","source":"a5b9b2f5d2166132.txt","type":"text/plain","size":424}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a4f7c6dc4c7e84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a609bc5e3d23df9.json b/allure-report/data/test-cases/a50af3a4d2a7afb5.json similarity index 66% rename from allure-report/data/test-cases/8a609bc5e3d23df9.json rename to allure-report/data/test-cases/a50af3a4d2a7afb5.json index ae848ac0f23..a142d370148 100644 --- a/allure-report/data/test-cases/8a609bc5e3d23df9.json +++ b/allure-report/data/test-cases/a50af3a4d2a7afb5.json @@ -1 +1 @@ -{"uid":"8a609bc5e3d23df9","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a50af3a4d2a7afb5","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"26c574f777b434b5","name":"stdout","source":"26c574f777b434b5.txt","type":"text/plain","size":213}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a50af3a4d2a7afb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb14dd2e679669bc.json b/allure-report/data/test-cases/a51a382d521d00cc.json similarity index 51% rename from allure-report/data/test-cases/cb14dd2e679669bc.json rename to allure-report/data/test-cases/a51a382d521d00cc.json index c84f4abbd10..895606037f2 100644 --- a/allure-report/data/test-cases/cb14dd2e679669bc.json +++ b/allure-report/data/test-cases/a51a382d521d00cc.json @@ -1 +1 @@ -{"uid":"cb14dd2e679669bc","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a51a382d521d00cc","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb14be3959747375","name":"stdout","source":"fb14be3959747375.txt","type":"text/plain","size":562}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a51a382d521d00cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e66c4d32858afd04.json b/allure-report/data/test-cases/a54c934450b934d7.json similarity index 81% rename from allure-report/data/test-cases/e66c4d32858afd04.json rename to allure-report/data/test-cases/a54c934450b934d7.json index a7525e512ab..f387fe05940 100644 --- a/allure-report/data/test-cases/e66c4d32858afd04.json +++ b/allure-report/data/test-cases/a54c934450b934d7.json @@ -1 +1 @@ -{"uid":"e66c4d32858afd04","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"395fe2fe4ac3b196","name":"stdout","source":"395fe2fe4ac3b196.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"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":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e66c4d32858afd04.json","parameterValues":[]} \ No newline at end of file +{"uid":"a54c934450b934d7","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f79ef762befefc39","name":"stdout","source":"f79ef762befefc39.txt","type":"text/plain","size":193}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"a54c934450b934d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8abc15630ec06cb.json b/allure-report/data/test-cases/a5f55a655c70213f.json similarity index 67% rename from allure-report/data/test-cases/f8abc15630ec06cb.json rename to allure-report/data/test-cases/a5f55a655c70213f.json index 819362b2c0b..a11748e0e17 100644 --- a/allure-report/data/test-cases/f8abc15630ec06cb.json +++ b/allure-report/data/test-cases/a5f55a655c70213f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67a6b516dff28930","name":"stdout","source":"67a6b516dff28930.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"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":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"f8abc15630ec06cb.json","parameterValues":[]} \ No newline at end of file +{"uid":"a5f55a655c70213f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2738d7f17afba1b9","name":"stdout","source":"2738d7f17afba1b9.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"a5f55a655c70213f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a60fe7d0456e1873.json b/allure-report/data/test-cases/a60fe7d0456e1873.json new file mode 100644 index 00000000000..8c723e802a8 --- /dev/null +++ b/allure-report/data/test-cases/a60fe7d0456e1873.json @@ -0,0 +1 @@ +{"uid":"a60fe7d0456e1873","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcb85638cafa3b09","name":"stdout","source":"fcb85638cafa3b09.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"536deebe5c2f9229","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"a60fe7d0456e1873.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3671be37bb5a0b6.json b/allure-report/data/test-cases/a6a0450be3f30fe6.json similarity index 64% rename from allure-report/data/test-cases/c3671be37bb5a0b6.json rename to allure-report/data/test-cases/a6a0450be3f30fe6.json index 6817f1540c8..1448c24eadf 100644 --- a/allure-report/data/test-cases/c3671be37bb5a0b6.json +++ b/allure-report/data/test-cases/a6a0450be3f30fe6.json @@ -1 +1 @@ -{"uid":"c3671be37bb5a0b6","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a6a0450be3f30fe6","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e2e1868fac6f5c2","name":"stdout","source":"4e2e1868fac6f5c2.txt","type":"text/plain","size":375}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a6a0450be3f30fe6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6827fd264cb4d263.json b/allure-report/data/test-cases/a6bf4a932c1ec147.json similarity index 72% rename from allure-report/data/test-cases/6827fd264cb4d263.json rename to allure-report/data/test-cases/a6bf4a932c1ec147.json index 852f9a96b5c..afd4f2b1550 100644 --- a/allure-report/data/test-cases/6827fd264cb4d263.json +++ b/allure-report/data/test-cases/a6bf4a932c1ec147.json @@ -1 +1 @@ -{"uid":"6827fd264cb4d263","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"d9a0350697dd0c07","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":"6827fd264cb4d263.json","parameterValues":[]} \ No newline at end of file +{"uid":"a6bf4a932c1ec147","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"311e6a6343f5272c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"a6bf4a932c1ec147.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9864dd17c374a4d8.json b/allure-report/data/test-cases/a70604cd2465a183.json similarity index 76% rename from allure-report/data/test-cases/9864dd17c374a4d8.json rename to allure-report/data/test-cases/a70604cd2465a183.json index 44d9d5ca435..6cf098246fd 100644 --- a/allure-report/data/test-cases/9864dd17c374a4d8.json +++ b/allure-report/data/test-cases/a70604cd2465a183.json @@ -1 +1 @@ -{"uid":"9864dd17c374a4d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd4290234370c8e2","name":"stdout","source":"cd4290234370c8e2.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9864dd17c374a4d8.json","parameterValues":[]} \ No newline at end of file +{"uid":"a70604cd2465a183","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"71aab19d1a615a57","name":"stdout","source":"71aab19d1a615a57.txt","type":"text/plain","size":12051}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a70604cd2465a183.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/291bd12f30edb56f.json b/allure-report/data/test-cases/a70ffb4d0a92e5c8.json similarity index 64% rename from allure-report/data/test-cases/291bd12f30edb56f.json rename to allure-report/data/test-cases/a70ffb4d0a92e5c8.json index 3e601615b27..4594d622193 100644 --- a/allure-report/data/test-cases/291bd12f30edb56f.json +++ b/allure-report/data/test-cases/a70ffb4d0a92e5c8.json @@ -1 +1 @@ -{"uid":"291bd12f30edb56f","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a45633f3542e88e2","name":"stdout","source":"a45633f3542e88e2.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"654b50568a4f83a1","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"tags":[]},"source":"291bd12f30edb56f.json","parameterValues":[]} \ No newline at end of file +{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb9dc4155dddb919","name":"stdout","source":"eb9dc4155dddb919.txt","type":"text/plain","size":281}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"743e871493ba28b4","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":[]},"source":"a70ffb4d0a92e5c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f56f65d85b3cd20.json b/allure-report/data/test-cases/a90fdb1fb3683308.json similarity index 62% rename from allure-report/data/test-cases/9f56f65d85b3cd20.json rename to allure-report/data/test-cases/a90fdb1fb3683308.json index 2e15fcf9f4c..8e1c689d6fa 100644 --- a/allure-report/data/test-cases/9f56f65d85b3cd20.json +++ b/allure-report/data/test-cases/a90fdb1fb3683308.json @@ -1 +1 @@ -{"uid":"9f56f65d85b3cd20","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a90fdb1fb3683308","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"18b79283e1874d20","name":"stdout","source":"18b79283e1874d20.txt","type":"text/plain","size":1904}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":21,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a90fdb1fb3683308.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8fbff2bb58c8a587.json b/allure-report/data/test-cases/a93bd997ced3859a.json similarity index 62% rename from allure-report/data/test-cases/8fbff2bb58c8a587.json rename to allure-report/data/test-cases/a93bd997ced3859a.json index a4b2d297b08..7503f9f09c4 100644 --- a/allure-report/data/test-cases/8fbff2bb58c8a587.json +++ b/allure-report/data/test-cases/a93bd997ced3859a.json @@ -1 +1 @@ -{"uid":"8fbff2bb58c8a587","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","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 Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9f427722b0cc833f","name":"stdout","source":"9f427722b0cc833f.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"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":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8fbff2bb58c8a587.json","parameterValues":[]} \ No newline at end of file +{"uid":"a93bd997ced3859a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e0ce3a7d48216112","name":"stdout","source":"e0ce3a7d48216112.txt","type":"text/plain","size":299}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a93bd997ced3859a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12da189269ca1ca6.json b/allure-report/data/test-cases/a96041a690fcc058.json similarity index 72% rename from allure-report/data/test-cases/12da189269ca1ca6.json rename to allure-report/data/test-cases/a96041a690fcc058.json index b0b6bd760af..24984b6b828 100644 --- a/allure-report/data/test-cases/12da189269ca1ca6.json +++ b/allure-report/data/test-cases/a96041a690fcc058.json @@ -1 +1 @@ -{"uid":"12da189269ca1ca6","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a96041a690fcc058","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2143b544775b35fe","name":"stdout","source":"2143b544775b35fe.txt","type":"text/plain","size":601}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a96041a690fcc058.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/502fa7fe3b72cd9a.json b/allure-report/data/test-cases/a97caba53074497b.json similarity index 54% rename from allure-report/data/test-cases/502fa7fe3b72cd9a.json rename to allure-report/data/test-cases/a97caba53074497b.json index 755431c0610..2a124dde051 100644 --- a/allure-report/data/test-cases/502fa7fe3b72cd9a.json +++ b/allure-report/data/test-cases/a97caba53074497b.json @@ -1 +1 @@ -{"uid":"502fa7fe3b72cd9a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"a97caba53074497b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c60a729cdea9a7d9","name":"stdout","source":"c60a729cdea9a7d9.txt","type":"text/plain","size":2817}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":30,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a97caba53074497b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9f33e581ec48813.json b/allure-report/data/test-cases/a9f33e581ec48813.json new file mode 100644 index 00000000000..60dd76609fe --- /dev/null +++ b/allure-report/data/test-cases/a9f33e581ec48813.json @@ -0,0 +1 @@ +{"uid":"a9f33e581ec48813","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"1c3fe0844baefb8c","name":"stdout","source":"1c3fe0844baefb8c.txt","type":"text/plain","size":717}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a9f33e581ec48813.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9fa2bf5091c83a.json b/allure-report/data/test-cases/a9fa2bf5091c83a.json deleted file mode 100644 index ef4b4cd593e..00000000000 --- a/allure-report/data/test-cases/a9fa2bf5091c83a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a9fa2bf5091c83a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/aac9dbbaca38b054.json b/allure-report/data/test-cases/aac9dbbaca38b054.json deleted file mode 100644 index 7d4b75c037c..00000000000 --- a/allure-report/data/test-cases/aac9dbbaca38b054.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"aac9dbbaca38b054","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e80aece0ccab9b6b","name":"stdout","source":"e80aece0ccab9b6b.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b9e2e21ff531ae4","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"tags":[]},"source":"aac9dbbaca38b054.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aacbcab78401e86c.json b/allure-report/data/test-cases/aacbcab78401e86c.json new file mode 100644 index 00000000000..50d26ab8b14 --- /dev/null +++ b/allure-report/data/test-cases/aacbcab78401e86c.json @@ -0,0 +1 @@ +{"uid":"aacbcab78401e86c","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2c0b65a9daada0df","name":"stdout","source":"2c0b65a9daada0df.txt","type":"text/plain","size":1579}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"aacbcab78401e86c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab402f3759df06f.json b/allure-report/data/test-cases/ab402f3759df06f.json deleted file mode 100644 index 57cb01a1b46..00000000000 --- a/allure-report/data/test-cases/ab402f3759df06f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ab402f3759df06f","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c57066a5ba7cb3b6","name":"stdout","source":"c57066a5ba7cb3b6.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ccc9716a60da4021","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"tags":[]},"source":"ab402f3759df06f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6400e4ce63a07c82.json b/allure-report/data/test-cases/ab4f4753656b93ab.json similarity index 69% rename from allure-report/data/test-cases/6400e4ce63a07c82.json rename to allure-report/data/test-cases/ab4f4753656b93ab.json index cc67bf89df1..5a0f3981cde 100644 --- a/allure-report/data/test-cases/6400e4ce63a07c82.json +++ b/allure-report/data/test-cases/ab4f4753656b93ab.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d3b2cac4981701e4","name":"stdout","source":"d3b2cac4981701e4.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6400e4ce63a07c82.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab4f4753656b93ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e89406beb8fb490f","name":"stdout","source":"e89406beb8fb490f.txt","type":"text/plain","size":76}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ab4f4753656b93ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da73571dee0329e4.json b/allure-report/data/test-cases/ab70ba446dcfc9e3.json similarity index 70% rename from allure-report/data/test-cases/da73571dee0329e4.json rename to allure-report/data/test-cases/ab70ba446dcfc9e3.json index fcff4e7106b..bf74055b360 100644 --- a/allure-report/data/test-cases/da73571dee0329e4.json +++ b/allure-report/data/test-cases/ab70ba446dcfc9e3.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ad904e4dff4eacf0","name":"stdout","source":"ad904e4dff4eacf0.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"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":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"da73571dee0329e4.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab70ba446dcfc9e3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d0ae6f01edd6f40b","name":"stdout","source":"d0ae6f01edd6f40b.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"ab70ba446dcfc9e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9835bf28bd7241b2.json b/allure-report/data/test-cases/abba91be3722688b.json similarity index 71% rename from allure-report/data/test-cases/9835bf28bd7241b2.json rename to allure-report/data/test-cases/abba91be3722688b.json index 39f89430649..e1d7bed599e 100644 --- a/allure-report/data/test-cases/9835bf28bd7241b2.json +++ b/allure-report/data/test-cases/abba91be3722688b.json @@ -1 +1 @@ -{"uid":"9835bf28bd7241b2","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"abba91be3722688b","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8fb66a095ff9819","name":"stdout","source":"b8fb66a095ff9819.txt","type":"text/plain","size":1127}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"abba91be3722688b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/390f34682d25d573.json b/allure-report/data/test-cases/ac127c4c71bf788d.json similarity index 70% rename from allure-report/data/test-cases/390f34682d25d573.json rename to allure-report/data/test-cases/ac127c4c71bf788d.json index ce780b7040b..356fd8346dc 100644 --- a/allure-report/data/test-cases/390f34682d25d573.json +++ b/allure-report/data/test-cases/ac127c4c71bf788d.json @@ -1 +1 @@ -{"uid":"390f34682d25d573","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"af3aa1dfbb9be751","name":"stdout","source":"af3aa1dfbb9be751.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"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":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"390f34682d25d573.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac127c4c71bf788d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e8c4247db1945485","name":"stdout","source":"e8c4247db1945485.txt","type":"text/plain","size":86}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac127c4c71bf788d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aca9d99cb0e5842e.json b/allure-report/data/test-cases/ace382695affabdf.json similarity index 68% rename from allure-report/data/test-cases/aca9d99cb0e5842e.json rename to allure-report/data/test-cases/ace382695affabdf.json index 6416de25600..59760096114 100644 --- a/allure-report/data/test-cases/aca9d99cb0e5842e.json +++ b/allure-report/data/test-cases/ace382695affabdf.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"ace382695affabdf","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ee2fa2d0000577e9","name":"stdout","source":"ee2fa2d0000577e9.txt","type":"text/plain","size":908}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":14,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2348115dae27ed81","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"ace382695affabdf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/781079de643a720d.json b/allure-report/data/test-cases/ae7d3fce45bf33fb.json similarity index 63% rename from allure-report/data/test-cases/781079de643a720d.json rename to allure-report/data/test-cases/ae7d3fce45bf33fb.json index 6968f7f8da7..8c287a51573 100644 --- a/allure-report/data/test-cases/781079de643a720d.json +++ b/allure-report/data/test-cases/ae7d3fce45bf33fb.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cff3f59db3a9bd3d","name":"stdout","source":"cff3f59db3a9bd3d.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"45ec56dab60499e","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"781079de643a720d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae7d3fce45bf33fb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3e4221321612bf1","name":"stdout","source":"e3e4221321612bf1.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"462e434377d791a9","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"ae7d3fce45bf33fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aefb4681bbbff0c9.json b/allure-report/data/test-cases/aefb4681bbbff0c9.json new file mode 100644 index 00000000000..cd8c8ea4995 --- /dev/null +++ b/allure-report/data/test-cases/aefb4681bbbff0c9.json @@ -0,0 +1 @@ +{"uid":"aefb4681bbbff0c9","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d071752d20b95de3","name":"stdout","source":"d071752d20b95de3.txt","type":"text/plain","size":204}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"aefb4681bbbff0c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/224cd2efeafa2904.json b/allure-report/data/test-cases/af543ced061d8858.json similarity index 72% rename from allure-report/data/test-cases/224cd2efeafa2904.json rename to allure-report/data/test-cases/af543ced061d8858.json index 37e59649c9d..3098a2c7343 100644 --- a/allure-report/data/test-cases/224cd2efeafa2904.json +++ b/allure-report/data/test-cases/af543ced061d8858.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"224cd2efeafa2904.json","parameterValues":[]} \ No newline at end of file +{"uid":"af543ced061d8858","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"af543ced061d8858.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffc3f48cf5f0bf9f.json b/allure-report/data/test-cases/af580569ddf3e366.json similarity index 68% rename from allure-report/data/test-cases/ffc3f48cf5f0bf9f.json rename to allure-report/data/test-cases/af580569ddf3e366.json index 9c3b739029c..3a32da51c3f 100644 --- a/allure-report/data/test-cases/ffc3f48cf5f0bf9f.json +++ b/allure-report/data/test-cases/af580569ddf3e366.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4abc13d212d8a981","name":"stdout","source":"4abc13d212d8a981.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cdb5c235f1a637f6","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"ffc3f48cf5f0bf9f.json","parameterValues":[]} \ No newline at end of file +{"uid":"af580569ddf3e366","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cd9f556fe34434c9","name":"stdout","source":"cd9f556fe34434c9.txt","type":"text/plain","size":142}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31f6e05cb2bf8e17","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"af580569ddf3e366.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/627a7fd2fe38a284.json b/allure-report/data/test-cases/afae2f3faef55f2b.json similarity index 69% rename from allure-report/data/test-cases/627a7fd2fe38a284.json rename to allure-report/data/test-cases/afae2f3faef55f2b.json index 8251cfb0640..2e80ae8a14b 100644 --- a/allure-report/data/test-cases/627a7fd2fe38a284.json +++ b/allure-report/data/test-cases/afae2f3faef55f2b.json @@ -1 +1 @@ -{"uid":"627a7fd2fe38a284","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"afae2f3faef55f2b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"54973229fb9bb954","name":"stdout","source":"54973229fb9bb954.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"133341d40af1e905","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"627a7fd2fe38a284","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"afae2f3faef55f2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b14acb4de8eb0e3a.json b/allure-report/data/test-cases/afce902b58f1520a.json similarity index 68% rename from allure-report/data/test-cases/b14acb4de8eb0e3a.json rename to allure-report/data/test-cases/afce902b58f1520a.json index fcbdd51cfb0..219fc094f4a 100644 --- a/allure-report/data/test-cases/b14acb4de8eb0e3a.json +++ b/allure-report/data/test-cases/afce902b58f1520a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"260e3d617394daf9","name":"stdout","source":"260e3d617394daf9.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"691795f9ff7d7473","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b14acb4de8eb0e3a.json","parameterValues":[]} \ No newline at end of file +{"uid":"afce902b58f1520a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb7e53ff5946a92d","name":"stdout","source":"fb7e53ff5946a92d.txt","type":"text/plain","size":185}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83f04a2f029479df","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"afce902b58f1520a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/913459f449cde9ee.json b/allure-report/data/test-cases/b01fd4e8d095b60f.json similarity index 63% rename from allure-report/data/test-cases/913459f449cde9ee.json rename to allure-report/data/test-cases/b01fd4e8d095b60f.json index 5fb4b7bb15e..0f68ba6852c 100644 --- a/allure-report/data/test-cases/913459f449cde9ee.json +++ b/allure-report/data/test-cases/b01fd4e8d095b60f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b01fd4e8d095b60f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5bb3529b62d1131a","name":"stdout","source":"5bb3529b62d1131a.txt","type":"text/plain","size":565}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"922eccc2ca8ed714","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"b01fd4e8d095b60f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e075566662ada8b.json b/allure-report/data/test-cases/b0f9b8de2eb00fed.json similarity index 50% rename from allure-report/data/test-cases/3e075566662ada8b.json rename to allure-report/data/test-cases/b0f9b8de2eb00fed.json index 452e0809837..c06f343b0ff 100644 --- a/allure-report/data/test-cases/3e075566662ada8b.json +++ b/allure-report/data/test-cases/b0f9b8de2eb00fed.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b0f9b8de2eb00fed","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"67735b58dfb8e3b0","name":"stdout","source":"67735b58dfb8e3b0.txt","type":"text/plain","size":230}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b0f9b8de2eb00fed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27163d5f2266ba73.json b/allure-report/data/test-cases/b0ff51cf7a3c2781.json similarity index 68% rename from allure-report/data/test-cases/27163d5f2266ba73.json rename to allure-report/data/test-cases/b0ff51cf7a3c2781.json index 4fdc424230e..6f06abd3180 100644 --- a/allure-report/data/test-cases/27163d5f2266ba73.json +++ b/allure-report/data/test-cases/b0ff51cf7a3c2781.json @@ -1 +1 @@ -{"uid":"27163d5f2266ba73","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b0ff51cf7a3c2781","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"108fa13d4dc4aeec","name":"stdout","source":"108fa13d4dc4aeec.txt","type":"text/plain","size":1536}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b0ff51cf7a3c2781.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/204a2114486cc2f9.json b/allure-report/data/test-cases/b1c2f2381b1441f6.json similarity index 67% rename from allure-report/data/test-cases/204a2114486cc2f9.json rename to allure-report/data/test-cases/b1c2f2381b1441f6.json index ed2e595f2a9..2748e1f1beb 100644 --- a/allure-report/data/test-cases/204a2114486cc2f9.json +++ b/allure-report/data/test-cases/b1c2f2381b1441f6.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"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_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"27844b15371870f6","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"tags":[]},"source":"204a2114486cc2f9.json","parameterValues":[]} \ No newline at end of file +{"uid":"b1c2f2381b1441f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b018537831100fb","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"b1c2f2381b1441f6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ac1ab4d60441085.json b/allure-report/data/test-cases/b1ce4d34a0cdd5eb.json similarity index 64% rename from allure-report/data/test-cases/3ac1ab4d60441085.json rename to allure-report/data/test-cases/b1ce4d34a0cdd5eb.json index f2e69bc8107..7b8ff09cc18 100644 --- a/allure-report/data/test-cases/3ac1ab4d60441085.json +++ b/allure-report/data/test-cases/b1ce4d34a0cdd5eb.json @@ -1 +1 @@ -{"uid":"3ac1ab4d60441085","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"75c4275b899037f8","name":"stdout","source":"75c4275b899037f8.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"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":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"3ac1ab4d60441085.json","parameterValues":[]} \ No newline at end of file +{"uid":"b1ce4d34a0cdd5eb","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3c7f9bf2787b94f7","name":"stdout","source":"3c7f9bf2787b94f7.txt","type":"text/plain","size":353}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"b1ce4d34a0cdd5eb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/164087ecc666d9a0.json b/allure-report/data/test-cases/b1d54b76165521a0.json similarity index 59% rename from allure-report/data/test-cases/164087ecc666d9a0.json rename to allure-report/data/test-cases/b1d54b76165521a0.json index fe6feb78a0f..ff628ed7082 100644 --- a/allure-report/data/test-cases/164087ecc666d9a0.json +++ b/allure-report/data/test-cases/b1d54b76165521a0.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b1d54b76165521a0","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"616f142dc436d37a","name":"stdout","source":"616f142dc436d37a.txt","type":"text/plain","size":1865}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"1e3570598c901af4","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"164087ecc666d9a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"b1d54b76165521a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8f6e0603b79e82b.json b/allure-report/data/test-cases/b29b4bc1c1fe7917.json similarity index 70% rename from allure-report/data/test-cases/d8f6e0603b79e82b.json rename to allure-report/data/test-cases/b29b4bc1c1fe7917.json index b3436f9d44a..6056bfc17c4 100644 --- a/allure-report/data/test-cases/d8f6e0603b79e82b.json +++ b/allure-report/data/test-cases/b29b4bc1c1fe7917.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":"ea3af59eb83f9741","name":"stdout","source":"ea3af59eb83f9741.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"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":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f39f65fd61fb96b1","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"d8f6e0603b79e82b.json","parameterValues":[]} \ No newline at end of file +{"uid":"b29b4bc1c1fe7917","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a878131575ef850","name":"stdout","source":"6a878131575ef850.txt","type":"text/plain","size":356}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8271021679b0cc06","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b29b4bc1c1fe7917.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3223ce64ed8bee2.json b/allure-report/data/test-cases/b3223ce64ed8bee2.json new file mode 100644 index 00000000000..8c60bcb75b1 --- /dev/null +++ b/allure-report/data/test-cases/b3223ce64ed8bee2.json @@ -0,0 +1 @@ +{"uid":"b3223ce64ed8bee2","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"841a9d92019cea7","name":"stdout","source":"841a9d92019cea7.txt","type":"text/plain","size":60}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b3223ce64ed8bee2.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/acc544bb5166af1c.json b/allure-report/data/test-cases/b48a50dffbb61197.json similarity index 70% rename from allure-report/data/test-cases/acc544bb5166af1c.json rename to allure-report/data/test-cases/b48a50dffbb61197.json index 5d5e6316cc1..a5cb35ee775 100644 --- a/allure-report/data/test-cases/acc544bb5166af1c.json +++ b/allure-report/data/test-cases/b48a50dffbb61197.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"919f00271c0b6744","name":"stdout","source":"919f00271c0b6744.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"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":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"acc544bb5166af1c.json","parameterValues":[]} \ No newline at end of file +{"uid":"b48a50dffbb61197","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f8b0aa6406d8405","name":"stdout","source":"8f8b0aa6406d8405.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b48a50dffbb61197.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/656902c8b3d6796a.json b/allure-report/data/test-cases/b4fb6cdf4d1895f5.json similarity index 73% rename from allure-report/data/test-cases/656902c8b3d6796a.json rename to allure-report/data/test-cases/b4fb6cdf4d1895f5.json index f1f2bd6d935..9c8520d8a0e 100644 --- a/allure-report/data/test-cases/656902c8b3d6796a.json +++ b/allure-report/data/test-cases/b4fb6cdf4d1895f5.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"a0d4534146449bf1","name":"stdout","source":"a0d4534146449bf1.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"656902c8b3d6796a.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4fb6cdf4d1895f5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"a73c95935cebe487","name":"stdout","source":"a73c95935cebe487.txt","type":"text/plain","size":48}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b4fb6cdf4d1895f5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f890ca68cdfc481.json b/allure-report/data/test-cases/b5a45493f51c1d67.json similarity index 58% rename from allure-report/data/test-cases/7f890ca68cdfc481.json rename to allure-report/data/test-cases/b5a45493f51c1d67.json index 19d5fc7e7cb..bbe8d28b5dd 100644 --- a/allure-report/data/test-cases/7f890ca68cdfc481.json +++ b/allure-report/data/test-cases/b5a45493f51c1d67.json @@ -1 +1 @@ -{"uid":"7f890ca68cdfc481","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"93547fa89048aa2f","name":"stdout","source":"93547fa89048aa2f.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f90c5e53432ea6c2","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f890ca68cdfc481","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"b5a45493f51c1d67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf4cdc94d1e2968c.json b/allure-report/data/test-cases/b5f6e3f148925a4f.json similarity index 71% rename from allure-report/data/test-cases/cf4cdc94d1e2968c.json rename to allure-report/data/test-cases/b5f6e3f148925a4f.json index 15d29715e98..8a12dca3190 100644 --- a/allure-report/data/test-cases/cf4cdc94d1e2968c.json +++ b/allure-report/data/test-cases/b5f6e3f148925a4f.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b5f6e3f148925a4f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6af0cabbf264491","name":"stdout","source":"e6af0cabbf264491.txt","type":"text/plain","size":263}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b5f6e3f148925a4f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6301a55868859d.json b/allure-report/data/test-cases/b6301a55868859d.json new file mode 100644 index 00000000000..77388e947cd --- /dev/null +++ b/allure-report/data/test-cases/b6301a55868859d.json @@ -0,0 +1 @@ +{"uid":"b6301a55868859d","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"719718f24c29d8b6","name":"stdout","source":"719718f24c29d8b6.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bd5d964c0a6197cf","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"b6301a55868859d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/900ed6bd99df3d56.json b/allure-report/data/test-cases/b72d4e8ad3288d1b.json similarity index 73% rename from allure-report/data/test-cases/900ed6bd99df3d56.json rename to allure-report/data/test-cases/b72d4e8ad3288d1b.json index 691bbf2db5f..7297e2735ff 100644 --- a/allure-report/data/test-cases/900ed6bd99df3d56.json +++ b/allure-report/data/test-cases/b72d4e8ad3288d1b.json @@ -1 +1 @@ -{"uid":"900ed6bd99df3d56","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9257abb983650c85","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"900ed6bd99df3d56.json","parameterValues":[]} \ No newline at end of file +{"uid":"b72d4e8ad3288d1b","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1edd352618c6aa2b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"b72d4e8ad3288d1b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9efe2e125f6b46a3.json b/allure-report/data/test-cases/b8a68af9dbc0f892.json similarity index 62% rename from allure-report/data/test-cases/9efe2e125f6b46a3.json rename to allure-report/data/test-cases/b8a68af9dbc0f892.json index 21df8dfacd7..b205c1e5095 100644 --- a/allure-report/data/test-cases/9efe2e125f6b46a3.json +++ b/allure-report/data/test-cases/b8a68af9dbc0f892.json @@ -1 +1 @@ -{"uid":"9efe2e125f6b46a3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a3d2d13f3e8d074","name":"stdout","source":"3a3d2d13f3e8d074.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"9efe2e125f6b46a3.json","parameterValues":[]} \ No newline at end of file +{"uid":"b8a68af9dbc0f892","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8433939b2e0016e1","name":"stdout","source":"8433939b2e0016e1.txt","type":"text/plain","size":637}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b8a68af9dbc0f892.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b864bfcb14132f63.json b/allure-report/data/test-cases/b8b1a20b1ac22e64.json similarity index 61% rename from allure-report/data/test-cases/b864bfcb14132f63.json rename to allure-report/data/test-cases/b8b1a20b1ac22e64.json index b8a249e1528..e5545a20ff9 100644 --- a/allure-report/data/test-cases/b864bfcb14132f63.json +++ b/allure-report/data/test-cases/b8b1a20b1ac22e64.json @@ -1 +1 @@ -{"uid":"b864bfcb14132f63","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"46bb9498c70949de","name":"stdout","source":"46bb9498c70949de.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8a5c8b47c2adbbcb","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"tags":[]},"source":"b864bfcb14132f63.json","parameterValues":[]} \ No newline at end of file +{"uid":"b8b1a20b1ac22e64","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27add2ef21833533","name":"stdout","source":"27add2ef21833533.txt","type":"text/plain","size":41}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10b94291a50321ec","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":[]},"source":"b8b1a20b1ac22e64.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af5a357d104e13f2.json b/allure-report/data/test-cases/b96004f0b179053d.json similarity index 63% rename from allure-report/data/test-cases/af5a357d104e13f2.json rename to allure-report/data/test-cases/b96004f0b179053d.json index 54d881e59e9..571167306de 100644 --- a/allure-report/data/test-cases/af5a357d104e13f2.json +++ b/allure-report/data/test-cases/b96004f0b179053d.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ee29d280ede2dce","name":"stdout","source":"5ee29d280ede2dce.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9bf22c06763280e5","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"af5a357d104e13f2.json","parameterValues":[]} \ No newline at end of file +{"uid":"b96004f0b179053d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"272f73f71ea0c103","name":"stdout","source":"272f73f71ea0c103.txt","type":"text/plain","size":539}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"587ebae959bb9619","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"b96004f0b179053d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73d92f8f0c07772d.json b/allure-report/data/test-cases/b97e3a9bf54f17f3.json similarity index 65% rename from allure-report/data/test-cases/73d92f8f0c07772d.json rename to allure-report/data/test-cases/b97e3a9bf54f17f3.json index 7154f84b58b..168e10f0995 100644 --- a/allure-report/data/test-cases/73d92f8f0c07772d.json +++ b/allure-report/data/test-cases/b97e3a9bf54f17f3.json @@ -1 +1 @@ -{"uid":"73d92f8f0c07772d","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db0dfa2ecde82e2a","name":"stdout","source":"db0dfa2ecde82e2a.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"e99ff83f7419b047","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"73d92f8f0c07772d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"b97e3a9bf54f17f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/79507cba518971f8.json b/allure-report/data/test-cases/b99ca9a8ecf19524.json similarity index 65% rename from allure-report/data/test-cases/79507cba518971f8.json rename to allure-report/data/test-cases/b99ca9a8ecf19524.json index ef864f89c1c..39c9f1afe0b 100644 --- a/allure-report/data/test-cases/79507cba518971f8.json +++ b/allure-report/data/test-cases/b99ca9a8ecf19524.json @@ -1 +1 @@ -{"uid":"79507cba518971f8","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"b99ca9a8ecf19524","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e5a0ef8eae5b1f5","name":"stdout","source":"4e5a0ef8eae5b1f5.txt","type":"text/plain","size":3898}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b99ca9a8ecf19524.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9d7d0d5afb8734c.json b/allure-report/data/test-cases/b9d7d0d5afb8734c.json new file mode 100644 index 00000000000..597b01b3ef1 --- /dev/null +++ b/allure-report/data/test-cases/b9d7d0d5afb8734c.json @@ -0,0 +1 @@ +{"uid":"b9d7d0d5afb8734c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7716f7bce2ac3794","name":"stdout","source":"7716f7bce2ac3794.txt","type":"text/plain","size":939}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c8be7042d182d7bb","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"b9d7d0d5afb8734c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55df1ff2977881cd.json b/allure-report/data/test-cases/bb0af84ecb430495.json similarity index 78% rename from allure-report/data/test-cases/55df1ff2977881cd.json rename to allure-report/data/test-cases/bb0af84ecb430495.json index cadeda38da8..4ce467492b3 100644 --- a/allure-report/data/test-cases/55df1ff2977881cd.json +++ b/allure-report/data/test-cases/bb0af84ecb430495.json @@ -1 +1 @@ -{"uid":"55df1ff2977881cd","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d4c1b8030852d43f","name":"stdout","source":"d4c1b8030852d43f.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"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 Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"55df1ff2977881cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"bb0af84ecb430495","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3714b6ca536dc4d2","name":"stdout","source":"3714b6ca536dc4d2.txt","type":"text/plain","size":210}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"bb0af84ecb430495.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5beccad181be3c1","name":"stdout","source":"5beccad181be3c1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8fbe4fcea83005e2","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"tags":[]},"source":"bb5e32abc058341d.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b7aabddcd2b39bc4.json b/allure-report/data/test-cases/bc5cb7d257f882a1.json similarity index 94% rename from allure-report/data/test-cases/b7aabddcd2b39bc4.json rename to allure-report/data/test-cases/bc5cb7d257f882a1.json index 8770b5c6106..26d8ba99672 100644 --- a/allure-report/data/test-cases/b7aabddcd2b39bc4.json +++ b/allure-report/data/test-cases/bc5cb7d257f882a1.json @@ -1 +1 @@ -{"uid":"b7aabddcd2b39bc4","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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 +{"uid":"bc5cb7d257f882a1","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"bc5cb7d257f882a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab9ac5c7ad2aba25.json b/allure-report/data/test-cases/bd5d964c0a6197cf.json similarity index 71% rename from allure-report/data/test-cases/ab9ac5c7ad2aba25.json rename to allure-report/data/test-cases/bd5d964c0a6197cf.json index 851d8acef2b..9098ab4238c 100644 --- a/allure-report/data/test-cases/ab9ac5c7ad2aba25.json +++ b/allure-report/data/test-cases/bd5d964c0a6197cf.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","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 summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5c2a655acda438b","name":"stdout","source":"a5c2a655acda438b.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::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":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"ab9ac5c7ad2aba25.json","parameterValues":[]} \ No newline at end of file +{"uid":"bd5d964c0a6197cf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e405ef5b3f740d5","name":"stdout","source":"5e405ef5b3f740d5.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"bd5d964c0a6197cf.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bdcb772653d8aad.json b/allure-report/data/test-cases/bdcb772653d8aad.json deleted file mode 100644 index 25a26c7ebe5..00000000000 --- a/allure-report/data/test-cases/bdcb772653d8aad.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bdcb772653d8aad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"249c9a1d1088ee7f","name":"stdout","source":"249c9a1d1088ee7f.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"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":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5d71d9a7614d7699","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"bdcb772653d8aad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a249bbc39e29652.json b/allure-report/data/test-cases/be5b8c63ffdd840d.json similarity index 72% rename from allure-report/data/test-cases/4a249bbc39e29652.json rename to allure-report/data/test-cases/be5b8c63ffdd840d.json index d3275303f1a..562942ade29 100644 --- a/allure-report/data/test-cases/4a249bbc39e29652.json +++ b/allure-report/data/test-cases/be5b8c63ffdd840d.json @@ -1 +1 @@ -{"uid":"4a249bbc39e29652","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"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_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4a249bbc39e29652.json","parameterValues":[]} \ No newline at end of file +{"uid":"be5b8c63ffdd840d","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"be5b8c63ffdd840d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35d53e86a3d51a7b.json b/allure-report/data/test-cases/bf3022b66d91aba7.json similarity index 68% rename from allure-report/data/test-cases/35d53e86a3d51a7b.json rename to allure-report/data/test-cases/bf3022b66d91aba7.json index 68a2dcb93c4..97a2e571fc8 100644 --- a/allure-report/data/test-cases/35d53e86a3d51a7b.json +++ b/allure-report/data/test-cases/bf3022b66d91aba7.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"35d53e86a3d51a7b.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf3022b66d91aba7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf3022b66d91aba7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5e325c82192cbb2.json b/allure-report/data/test-cases/bfd2093ec920e131.json similarity index 71% rename from allure-report/data/test-cases/b5e325c82192cbb2.json rename to allure-report/data/test-cases/bfd2093ec920e131.json index 6f4985ca190..38b510f7e12 100644 --- a/allure-report/data/test-cases/b5e325c82192cbb2.json +++ b/allure-report/data/test-cases/bfd2093ec920e131.json @@ -1 +1 @@ -{"uid":"b5e325c82192cbb2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2e5c8918aed39603","name":"stdout","source":"2e5c8918aed39603.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"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":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b5e325c82192cbb2.json","parameterValues":[]} \ No newline at end of file +{"uid":"bfd2093ec920e131","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d5adffae1b4c5d49","name":"stdout","source":"d5adffae1b4c5d49.txt","type":"text/plain","size":189}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bfd2093ec920e131.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/966dbbb37b9c251e.json b/allure-report/data/test-cases/bfe92f9ff640a644.json similarity index 67% rename from allure-report/data/test-cases/966dbbb37b9c251e.json rename to allure-report/data/test-cases/bfe92f9ff640a644.json index 77a389d1d93..1542028bb53 100644 --- a/allure-report/data/test-cases/966dbbb37b9c251e.json +++ b/allure-report/data/test-cases/bfe92f9ff640a644.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"c794d6c4e5eeb4af","name":"stdout","source":"c794d6c4e5eeb4af.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"14b78fc9da736d87","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"966dbbb37b9c251e.json","parameterValues":[]} \ No newline at end of file +{"uid":"bfe92f9ff640a644","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d032b19c209c380e","name":"stdout","source":"d032b19c209c380e.txt","type":"text/plain","size":146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a1571db34190da47","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"bfe92f9ff640a644.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1ed75effe27f7a1.json b/allure-report/data/test-cases/c1d9afec6278b1a8.json similarity index 64% rename from allure-report/data/test-cases/c1ed75effe27f7a1.json rename to allure-report/data/test-cases/c1d9afec6278b1a8.json index 723f4037ffa..bffe9b8e6f3 100644 --- a/allure-report/data/test-cases/c1ed75effe27f7a1.json +++ b/allure-report/data/test-cases/c1d9afec6278b1a8.json @@ -1 +1 @@ -{"uid":"c1ed75effe27f7a1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"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_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5d312c5161e8ccab","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"tags":[]},"source":"c1ed75effe27f7a1.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1d9afec6278b1a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7c5e93321efe39","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"c1d9afec6278b1a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3f7088fed8dedd7.json b/allure-report/data/test-cases/c1e0648976f6a694.json similarity index 60% rename from allure-report/data/test-cases/b3f7088fed8dedd7.json rename to allure-report/data/test-cases/c1e0648976f6a694.json index a2d4a329f93..17dc2e6842d 100644 --- a/allure-report/data/test-cases/b3f7088fed8dedd7.json +++ b/allure-report/data/test-cases/c1e0648976f6a694.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"c1e0648976f6a694","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e11ad2661eb07ca9","name":"stdout","source":"e11ad2661eb07ca9.txt","type":"text/plain","size":1093}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d757011cc42c205e","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b3f7088fed8dedd7","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"c1e0648976f6a694.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9592efbcf8c301ec.json b/allure-report/data/test-cases/c1ea0a3d5ef9530e.json similarity index 67% rename from allure-report/data/test-cases/9592efbcf8c301ec.json rename to allure-report/data/test-cases/c1ea0a3d5ef9530e.json index 906cc577d0f..318c16da660 100644 --- a/allure-report/data/test-cases/9592efbcf8c301ec.json +++ b/allure-report/data/test-cases/c1ea0a3d5ef9530e.json @@ -1 +1 @@ -{"uid":"9592efbcf8c301ec","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b4b3b9029fd263e4","name":"stdout","source":"b4b3b9029fd263e4.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9592efbcf8c301ec.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1ea0a3d5ef9530e","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78984c686d4aec41","name":"stdout","source":"78984c686d4aec41.txt","type":"text/plain","size":75}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c1ea0a3d5ef9530e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4c528481d776554.json b/allure-report/data/test-cases/c2776ae7e29336e9.json similarity index 65% rename from allure-report/data/test-cases/a4c528481d776554.json rename to allure-report/data/test-cases/c2776ae7e29336e9.json index b51bcd1874e..9b32e3ea56d 100644 --- a/allure-report/data/test-cases/a4c528481d776554.json +++ b/allure-report/data/test-cases/c2776ae7e29336e9.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fa72b6c6dff59425","name":"stdout","source":"fa72b6c6dff59425.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"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":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a4c528481d776554.json","parameterValues":[]} \ No newline at end of file +{"uid":"c2776ae7e29336e9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b43989c1fe59fe7e","name":"stdout","source":"b43989c1fe59fe7e.txt","type":"text/plain","size":131}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c2776ae7e29336e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c28b7a3b6367ab64.json b/allure-report/data/test-cases/c28b7a3b6367ab64.json deleted file mode 100644 index 1cb54ebccb0..00000000000 --- a/allure-report/data/test-cases/c28b7a3b6367ab64.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c28b7a3b6367ab64","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2a9b6a8a1ba7c33d","name":"stdout","source":"2a9b6a8a1ba7c33d.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"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":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"c28b7a3b6367ab64.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c35da98b55fb5e6b.json b/allure-report/data/test-cases/c35da98b55fb5e6b.json new file mode 100644 index 00000000000..9c4d9754034 --- /dev/null +++ b/allure-report/data/test-cases/c35da98b55fb5e6b.json @@ -0,0 +1 @@ +{"uid":"c35da98b55fb5e6b","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a0603f4ec8cac73","name":"stdout","source":"1a0603f4ec8cac73.txt","type":"text/plain","size":480}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7f4165c790464aa","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"c35da98b55fb5e6b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/257a5ad111bd69a7.json b/allure-report/data/test-cases/c37dfc82a096ec09.json similarity index 81% rename from allure-report/data/test-cases/257a5ad111bd69a7.json rename to allure-report/data/test-cases/c37dfc82a096ec09.json index cee1ed41068..943ecad9823 100644 --- a/allure-report/data/test-cases/257a5ad111bd69a7.json +++ b/allure-report/data/test-cases/c37dfc82a096ec09.json @@ -1 +1 @@ -{"uid":"257a5ad111bd69a7","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":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 +{"uid":"c37dfc82a096ec09","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":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":"20308d2341c6b899","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"c37dfc82a096ec09.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"dc793fb42851981e","name":"stdout","source":"dc793fb42851981e.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"656902c8b3d6796a","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c462a5b80d49c98b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/164c80d8543f0b6f.json b/allure-report/data/test-cases/c707b9e0a465edac.json similarity index 74% rename from allure-report/data/test-cases/164c80d8543f0b6f.json rename to allure-report/data/test-cases/c707b9e0a465edac.json index a4a21ac9923..7f791fddfc3 100644 --- a/allure-report/data/test-cases/164c80d8543f0b6f.json +++ b/allure-report/data/test-cases/c707b9e0a465edac.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7d480a17e666525","name":"stdout","source":"e7d480a17e666525.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"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":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"164c80d8543f0b6f.json","parameterValues":[]} \ No newline at end of file +{"uid":"c707b9e0a465edac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4ee69d91518c273c","name":"stdout","source":"4ee69d91518c273c.txt","type":"text/plain","size":354}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c707b9e0a465edac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7101c0acde15873.json b/allure-report/data/test-cases/c7101c0acde15873.json deleted file mode 100644 index 4573bda2148..00000000000 --- a/allure-report/data/test-cases/c7101c0acde15873.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c7101c0acde15873","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4450ee3f66285b1","name":"stdout","source":"4450ee3f66285b1.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c7101c0acde15873.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af191d67a3f53ad3.json b/allure-report/data/test-cases/c799982c38b97fcc.json similarity index 53% rename from allure-report/data/test-cases/af191d67a3f53ad3.json rename to allure-report/data/test-cases/c799982c38b97fcc.json index f23bd10e558..9e913f0d31d 100644 --- a/allure-report/data/test-cases/af191d67a3f53ad3.json +++ b/allure-report/data/test-cases/c799982c38b97fcc.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"673535ed619b4051","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"tags":[]},"source":"af191d67a3f53ad3.json","parameterValues":[]} \ No newline at end of file +{"uid":"c799982c38b97fcc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":11,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5d080f15b08c0b4f","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":[]},"source":"c799982c38b97fcc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/647dfe698e2a6fdb.json b/allure-report/data/test-cases/c7c7f21adbc73706.json similarity index 56% rename from allure-report/data/test-cases/647dfe698e2a6fdb.json rename to allure-report/data/test-cases/c7c7f21adbc73706.json index f2a50170051..9df7f93c106 100644 --- a/allure-report/data/test-cases/647dfe698e2a6fdb.json +++ b/allure-report/data/test-cases/c7c7f21adbc73706.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"c7c7f21adbc73706","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62a27b454b36563d","name":"stdout","source":"62a27b454b36563d.txt","type":"text/plain","size":3097}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"68c4a39d8a6017b","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"647dfe698e2a6fdb","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"c7c7f21adbc73706.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8a6a3e5884b319c.json b/allure-report/data/test-cases/c8a6a3e5884b319c.json deleted file mode 100644 index c7403f89459..00000000000 --- a/allure-report/data/test-cases/c8a6a3e5884b319c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c8a6a3e5884b319c","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bafac05e5cdca73e","name":"stdout","source":"bafac05e5cdca73e.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"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":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab9ac5c7ad2aba25","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"c8a6a3e5884b319c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d71d9a7614d7699.json b/allure-report/data/test-cases/c8be7042d182d7bb.json similarity index 70% rename from allure-report/data/test-cases/5d71d9a7614d7699.json rename to allure-report/data/test-cases/c8be7042d182d7bb.json index 8f8796a0faf..e0631752d8b 100644 --- a/allure-report/data/test-cases/5d71d9a7614d7699.json +++ b/allure-report/data/test-cases/c8be7042d182d7bb.json @@ -1 +1 @@ -{"uid":"5d71d9a7614d7699","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f69de901ccccedd4","name":"stdout","source":"f69de901ccccedd4.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"5d71d9a7614d7699.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8be7042d182d7bb","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41f5ec6cee6b6454","name":"stdout","source":"41f5ec6cee6b6454.txt","type":"text/plain","size":939}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"c8be7042d182d7bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ca423ea5ac901436.json b/allure-report/data/test-cases/ca423ea5ac901436.json new file mode 100644 index 00000000000..68c69fdb029 --- /dev/null +++ b/allure-report/data/test-cases/ca423ea5ac901436.json @@ -0,0 +1 @@ +{"uid":"ca423ea5ac901436","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ca423ea5ac901436.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47c7c905d0e48c01.json b/allure-report/data/test-cases/cabe377ec9af3c98.json similarity index 68% rename from allure-report/data/test-cases/47c7c905d0e48c01.json rename to allure-report/data/test-cases/cabe377ec9af3c98.json index 522e7b6a3c2..73f28058cd9 100644 --- a/allure-report/data/test-cases/47c7c905d0e48c01.json +++ b/allure-report/data/test-cases/cabe377ec9af3c98.json @@ -1 +1 @@ -{"uid":"47c7c905d0e48c01","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"cabe377ec9af3c98","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"292d200c224939da","name":"stdout","source":"292d200c224939da.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"cabe377ec9af3c98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb5c8ea3b9796931.json b/allure-report/data/test-cases/cb5c8ea3b9796931.json new file mode 100644 index 00000000000..e1ebdc73929 --- /dev/null +++ b/allure-report/data/test-cases/cb5c8ea3b9796931.json @@ -0,0 +1 @@ +{"uid":"cb5c8ea3b9796931","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30d5c7b600785dbe","name":"stdout","source":"30d5c7b600785dbe.txt","type":"text/plain","size":210}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb0af84ecb430495","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"cb5c8ea3b9796931.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc5bed1d964110c.json b/allure-report/data/test-cases/cc5bed1d964110c.json new file mode 100644 index 00000000000..68cc9663ea6 --- /dev/null +++ b/allure-report/data/test-cases/cc5bed1d964110c.json @@ -0,0 +1 @@ +{"uid":"cc5bed1d964110c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8f23a9981f406ff","name":"stdout","source":"a8f23a9981f406ff.txt","type":"text/plain","size":371}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"cc5bed1d964110c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccc9716a60da4021.json b/allure-report/data/test-cases/ccc9716a60da4021.json deleted file mode 100644 index 0f587a91c8c..00000000000 --- a/allure-report/data/test-cases/ccc9716a60da4021.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ccc9716a60da4021","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aa0f072266b0c8b","name":"stdout","source":"aa0f072266b0c8b.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::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":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ccc9716a60da4021.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3bd61bc704b417e2.json b/allure-report/data/test-cases/cd862d92408a60a2.json similarity index 60% rename from allure-report/data/test-cases/3bd61bc704b417e2.json rename to allure-report/data/test-cases/cd862d92408a60a2.json index 7e9bfb32b85..3ae6a2521f8 100644 --- a/allure-report/data/test-cases/3bd61bc704b417e2.json +++ b/allure-report/data/test-cases/cd862d92408a60a2.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"cd862d92408a60a2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5705204dae406a16","name":"stdout","source":"5705204dae406a16.txt","type":"text/plain","size":401}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1dfdd5c5551a6420","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3bd61bc704b417e2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"cd862d92408a60a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56ca3efbcb176750.json b/allure-report/data/test-cases/cdb95614a08f7813.json similarity index 65% rename from allure-report/data/test-cases/56ca3efbcb176750.json rename to allure-report/data/test-cases/cdb95614a08f7813.json index f166fbaaa21..766e70b8a1d 100644 --- a/allure-report/data/test-cases/56ca3efbcb176750.json +++ b/allure-report/data/test-cases/cdb95614a08f7813.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4a6abb90a321cb9c","name":"stdout","source":"4a6abb90a321cb9c.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"56ca3efbcb176750.json","parameterValues":[]} \ No newline at end of file +{"uid":"cdb95614a08f7813","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3db726a85ec26b65","name":"stdout","source":"3db726a85ec26b65.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cdb95614a08f7813.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5a3f0d4d035c3a4.json b/allure-report/data/test-cases/cde5d1b46b10d7ac.json similarity index 71% rename from allure-report/data/test-cases/f5a3f0d4d035c3a4.json rename to allure-report/data/test-cases/cde5d1b46b10d7ac.json index 5f4bde8312c..44a95e1dba3 100644 --- a/allure-report/data/test-cases/f5a3f0d4d035c3a4.json +++ b/allure-report/data/test-cases/cde5d1b46b10d7ac.json @@ -1 +1 @@ -{"uid":"f5a3f0d4d035c3a4","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"cde5d1b46b10d7ac","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4783529dae6eb3af","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"cde5d1b46b10d7ac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d1621a20d6f8fe7.json b/allure-report/data/test-cases/cdfe495bc85470d2.json similarity index 64% rename from allure-report/data/test-cases/7d1621a20d6f8fe7.json rename to allure-report/data/test-cases/cdfe495bc85470d2.json index 18cb64c21fd..ed12150a44f 100644 --- a/allure-report/data/test-cases/7d1621a20d6f8fe7.json +++ b/allure-report/data/test-cases/cdfe495bc85470d2.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"cdfe495bc85470d2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e4b4c0a3aeae99e","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7d1621a20d6f8fe7","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"cdfe495bc85470d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fcb7b98557709e7f.json b/allure-report/data/test-cases/ce00ffd36d904f61.json similarity index 75% rename from allure-report/data/test-cases/fcb7b98557709e7f.json rename to allure-report/data/test-cases/ce00ffd36d904f61.json index 8229a891706..e36bc6f65d5 100644 --- a/allure-report/data/test-cases/fcb7b98557709e7f.json +++ b/allure-report/data/test-cases/ce00ffd36d904f61.json @@ -1 +1 @@ -{"uid":"fcb7b98557709e7f","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"ce00ffd36d904f61","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41f66f3f97e3d4e4","name":"stdout","source":"41f66f3f97e3d4e4.txt","type":"text/plain","size":46002}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ce00ffd36d904f61.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4c5ff18f0370583.json b/allure-report/data/test-cases/cf3552eb00513a1a.json similarity index 72% rename from allure-report/data/test-cases/f4c5ff18f0370583.json rename to allure-report/data/test-cases/cf3552eb00513a1a.json index 0effad44fb3..3fa123e6446 100644 --- a/allure-report/data/test-cases/f4c5ff18f0370583.json +++ b/allure-report/data/test-cases/cf3552eb00513a1a.json @@ -1 +1 @@ -{"uid":"f4c5ff18f0370583","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":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 +{"uid":"cf3552eb00513a1a","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":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":"f4ad45627654b5fc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"cf3552eb00513a1a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53d75ff9d73daf75.json b/allure-report/data/test-cases/d0862b5213f7938f.json similarity index 64% rename from allure-report/data/test-cases/53d75ff9d73daf75.json rename to allure-report/data/test-cases/d0862b5213f7938f.json index 7632c27e823..5e4ea8d309a 100644 --- a/allure-report/data/test-cases/53d75ff9d73daf75.json +++ b/allure-report/data/test-cases/d0862b5213f7938f.json @@ -1 +1 @@ -{"uid":"53d75ff9d73daf75","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f2763bf761fdda50","name":"stdout","source":"f2763bf761fdda50.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d28ad8f6f2d47ab4","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"53d75ff9d73daf75.json","parameterValues":[]} \ No newline at end of file +{"uid":"d0862b5213f7938f","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4faf6d536992c308","name":"stdout","source":"4faf6d536992c308.txt","type":"text/plain","size":46}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5c85086c052dc96","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d0862b5213f7938f.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d1a80d9f422182d.json b/allure-report/data/test-cases/d1a80d9f422182d.json new file mode 100644 index 00000000000..bd06f3e1a25 --- /dev/null +++ b/allure-report/data/test-cases/d1a80d9f422182d.json @@ -0,0 +1 @@ +{"uid":"d1a80d9f422182d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a8f2e8a8daac7d4","name":"stdout","source":"5a8f2e8a8daac7d4.txt","type":"text/plain","size":130}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4d0514d90adb5feb","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"d1a80d9f422182d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbbb69f84c1b433f.json b/allure-report/data/test-cases/d1aabae67bc18ba0.json similarity index 66% rename from allure-report/data/test-cases/fbbb69f84c1b433f.json rename to allure-report/data/test-cases/d1aabae67bc18ba0.json index 6f9d5a42ee5..6bd38ed2d11 100644 --- a/allure-report/data/test-cases/fbbb69f84c1b433f.json +++ b/allure-report/data/test-cases/d1aabae67bc18ba0.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d55f5479718ea061","name":"stdout","source":"d55f5479718ea061.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::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":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"44708af2bbd77aa6","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"fbbb69f84c1b433f.json","parameterValues":[]} \ No newline at end of file +{"uid":"d1aabae67bc18ba0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57be236067b41f3e","name":"stdout","source":"57be236067b41f3e.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"776765eba79884f4","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"d1aabae67bc18ba0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d2c6842ef40288f.json b/allure-report/data/test-cases/d3037fd25424c6f3.json similarity index 59% rename from allure-report/data/test-cases/1d2c6842ef40288f.json rename to allure-report/data/test-cases/d3037fd25424c6f3.json index 814e19296aa..864e616dda1 100644 --- a/allure-report/data/test-cases/1d2c6842ef40288f.json +++ b/allure-report/data/test-cases/d3037fd25424c6f3.json @@ -1 +1 @@ -{"uid":"1d2c6842ef40288f","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d3037fd25424c6f3","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"763794db833f43e6","name":"stdout","source":"763794db833f43e6.txt","type":"text/plain","size":410}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f6955234023cbe8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1d2c6842ef40288f","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"d3037fd25424c6f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ecd182a341dd7b4.json b/allure-report/data/test-cases/d4c41912963969d7.json similarity index 68% rename from allure-report/data/test-cases/5ecd182a341dd7b4.json rename to allure-report/data/test-cases/d4c41912963969d7.json index b58bf071cfa..82ac2cb1fbf 100644 --- a/allure-report/data/test-cases/5ecd182a341dd7b4.json +++ b/allure-report/data/test-cases/d4c41912963969d7.json @@ -1 +1 @@ -{"uid":"5ecd182a341dd7b4","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f7d99aafcc4f7095","name":"stdout","source":"f7d99aafcc4f7095.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"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":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"164c80d8543f0b6f","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"tags":["ALGORITHMS"]},"source":"5ecd182a341dd7b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"143162d049c6ebb2","name":"stdout","source":"143162d049c6ebb2.txt","type":"text/plain","size":354}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c707b9e0a465edac","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"d4c41912963969d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ce4bba2ff4664c2.json b/allure-report/data/test-cases/d558fd9b3bcee4ae.json similarity index 65% rename from allure-report/data/test-cases/6ce4bba2ff4664c2.json rename to allure-report/data/test-cases/d558fd9b3bcee4ae.json index f65649123e4..4b94dc0ee75 100644 --- a/allure-report/data/test-cases/6ce4bba2ff4664c2.json +++ b/allure-report/data/test-cases/d558fd9b3bcee4ae.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d558fd9b3bcee4ae","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ceac2ca244e095b","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6ce4bba2ff4664c2","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"d558fd9b3bcee4ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d57f06aa2f911f40.json b/allure-report/data/test-cases/d57f06aa2f911f40.json new file mode 100644 index 00000000000..ea683d8e625 --- /dev/null +++ b/allure-report/data/test-cases/d57f06aa2f911f40.json @@ -0,0 +1 @@ +{"uid":"d57f06aa2f911f40","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"825e5ff6c26dfc23","name":"stdout","source":"825e5ff6c26dfc23.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7637c123d5cf58af","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":[]},"source":"d57f06aa2f911f40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f53adfade05c52d.json b/allure-report/data/test-cases/d5804044d1767680.json similarity index 68% rename from allure-report/data/test-cases/9f53adfade05c52d.json rename to allure-report/data/test-cases/d5804044d1767680.json index 881ed3c8833..e620d99b828 100644 --- a/allure-report/data/test-cases/9f53adfade05c52d.json +++ b/allure-report/data/test-cases/d5804044d1767680.json @@ -1 +1 @@ -{"uid":"9f53adfade05c52d","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d5804044d1767680","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"10bda13bc4365ba8","name":"stdout","source":"10bda13bc4365ba8.txt","type":"text/plain","size":1515}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d5804044d1767680.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5329936079819472.json b/allure-report/data/test-cases/d5a389260d41a743.json similarity index 61% rename from allure-report/data/test-cases/5329936079819472.json rename to allure-report/data/test-cases/d5a389260d41a743.json index 6157a7df27d..9740d2276c3 100644 --- a/allure-report/data/test-cases/5329936079819472.json +++ b/allure-report/data/test-cases/d5a389260d41a743.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b3933c8513b435f2","name":"stdout","source":"b3933c8513b435f2.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12359602ca4ac006","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"5329936079819472.json","parameterValues":[]} \ No newline at end of file +{"uid":"d5a389260d41a743","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"faf563094f59ca6b","name":"stdout","source":"faf563094f59ca6b.txt","type":"text/plain","size":72}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11b0f4fd11e05b10","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"d5a389260d41a743.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1e70dabc7dad91e.json b/allure-report/data/test-cases/d5ae1235bc27ccba.json similarity index 64% rename from allure-report/data/test-cases/e1e70dabc7dad91e.json rename to allure-report/data/test-cases/d5ae1235bc27ccba.json index 7cdba517844..6dc12686890 100644 --- a/allure-report/data/test-cases/e1e70dabc7dad91e.json +++ b/allure-report/data/test-cases/d5ae1235bc27ccba.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9cc4cc662dcb9dfc","name":"stdout","source":"9cc4cc662dcb9dfc.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a1f79415804ea08d","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"tags":[]},"source":"e1e70dabc7dad91e.json","parameterValues":[]} \ No newline at end of file +{"uid":"d5ae1235bc27ccba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4144b9b4343fdd9e","name":"stdout","source":"4144b9b4343fdd9e.txt","type":"text/plain","size":302}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5321a1bb93b59f1e","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"tags":[]},"source":"d5ae1235bc27ccba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51e59668932e1548.json b/allure-report/data/test-cases/d5eb9c17e95fe424.json similarity index 79% rename from allure-report/data/test-cases/51e59668932e1548.json rename to allure-report/data/test-cases/d5eb9c17e95fe424.json index fa962e07db9..587351ef1f6 100644 --- a/allure-report/data/test-cases/51e59668932e1548.json +++ b/allure-report/data/test-cases/d5eb9c17e95fe424.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d5eb9c17e95fe424","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d5eb9c17e95fe424.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/838103f8c8d195b2.json b/allure-report/data/test-cases/d62d5681db1186b9.json similarity index 80% rename from allure-report/data/test-cases/838103f8c8d195b2.json rename to allure-report/data/test-cases/d62d5681db1186b9.json index dad0938e320..2db8fcfc961 100644 --- a/allure-report/data/test-cases/838103f8c8d195b2.json +++ b/allure-report/data/test-cases/d62d5681db1186b9.json @@ -1 +1 @@ -{"uid":"838103f8c8d195b2","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"56bfa93ef6d7d13e","name":"stdout","source":"56bfa93ef6d7d13e.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"838103f8c8d195b2.json","parameterValues":[]} \ No newline at end of file +{"uid":"d62d5681db1186b9","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5da58154c309059a","name":"stdout","source":"5da58154c309059a.txt","type":"text/plain","size":3892}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d62d5681db1186b9.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ad08cb0fb6eef203.json b/allure-report/data/test-cases/d6d51bdb700f78e3.json similarity index 72% rename from allure-report/data/test-cases/ad08cb0fb6eef203.json rename to allure-report/data/test-cases/d6d51bdb700f78e3.json index f51866315b3..026fac78f1c 100644 --- a/allure-report/data/test-cases/ad08cb0fb6eef203.json +++ b/allure-report/data/test-cases/d6d51bdb700f78e3.json @@ -1 +1 @@ -{"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 +{"uid":"d6d51bdb700f78e3","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":"96bc84b88ae05ea5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"d6d51bdb700f78e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af3c309699fc2b8b.json b/allure-report/data/test-cases/d6e4ebd44034ff08.json similarity index 74% rename from allure-report/data/test-cases/af3c309699fc2b8b.json rename to allure-report/data/test-cases/d6e4ebd44034ff08.json index 9fbc7dd00fc..b5033ddbc43 100644 --- a/allure-report/data/test-cases/af3c309699fc2b8b.json +++ b/allure-report/data/test-cases/d6e4ebd44034ff08.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d6e4ebd44034ff08","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea7fb2d8338c4ae8","name":"stdout","source":"ea7fb2d8338c4ae8.txt","type":"text/plain","size":949}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9d8518015a2b07b6","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af3c309699fc2b8b","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}}]},"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"d6e4ebd44034ff08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6881087bd4c8b374.json b/allure-report/data/test-cases/d6e6e46de805754f.json similarity index 61% rename from allure-report/data/test-cases/6881087bd4c8b374.json rename to allure-report/data/test-cases/d6e6e46de805754f.json index 43d615f2ffe..4f284f9e81e 100644 --- a/allure-report/data/test-cases/6881087bd4c8b374.json +++ b/allure-report/data/test-cases/d6e6e46de805754f.json @@ -1 +1 @@ -{"uid":"6881087bd4c8b374","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2ab5d05911fa6e28","name":"stdout","source":"2ab5d05911fa6e28.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7101c0acde15873","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6881087bd4c8b374.json","parameterValues":[]} \ No newline at end of file +{"uid":"d6e6e46de805754f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcbbb87dd9240b08","name":"stdout","source":"fcbbb87dd9240b08.txt","type":"text/plain","size":453}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"108c2723377a98c0","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d6e6e46de805754f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57946e73be805e2a.json b/allure-report/data/test-cases/d7357eaa8c15ec47.json similarity index 67% rename from allure-report/data/test-cases/57946e73be805e2a.json rename to allure-report/data/test-cases/d7357eaa8c15ec47.json index c2acafccea5..2c415ce3143 100644 --- a/allure-report/data/test-cases/57946e73be805e2a.json +++ b/allure-report/data/test-cases/d7357eaa8c15ec47.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d7357eaa8c15ec47","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3a93f15f0e448e53","name":"stdout","source":"3a93f15f0e448e53.txt","type":"text/plain","size":348}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddf52bfae3cd34f4","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"d7357eaa8c15ec47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f476988eff12f93.json b/allure-report/data/test-cases/d757011cc42c205e.json similarity index 50% rename from allure-report/data/test-cases/2f476988eff12f93.json rename to allure-report/data/test-cases/d757011cc42c205e.json index 6dacf1e8821..44e04e6b1cd 100644 --- a/allure-report/data/test-cases/2f476988eff12f93.json +++ b/allure-report/data/test-cases/d757011cc42c205e.json @@ -1 +1 @@ -{"uid":"2f476988eff12f93","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d757011cc42c205e","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c954d80fa61d867d","name":"stdout","source":"c954d80fa61d867d.txt","type":"text/plain","size":1093}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d757011cc42c205e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a80b9adf611eb67d.json b/allure-report/data/test-cases/d7c1fb6f236110ca.json similarity index 64% rename from allure-report/data/test-cases/a80b9adf611eb67d.json rename to allure-report/data/test-cases/d7c1fb6f236110ca.json index d311aa51993..74e4000e4bc 100644 --- a/allure-report/data/test-cases/a80b9adf611eb67d.json +++ b/allure-report/data/test-cases/d7c1fb6f236110ca.json @@ -1 +1 @@ -{"uid":"a80b9adf611eb67d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"61d7cf4a7f7609fa","name":"stdout","source":"61d7cf4a7f7609fa.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dabab8081cda2c59","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"tags":[]},"source":"a80b9adf611eb67d.json","parameterValues":[]} \ No newline at end of file +{"uid":"d7c1fb6f236110ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f080e317c4cdc0d","name":"stdout","source":"7f080e317c4cdc0d.txt","type":"text/plain","size":512}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f72e37459a6b99ff","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":[]},"source":"d7c1fb6f236110ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9032085b91ce5826.json b/allure-report/data/test-cases/d880bf6ff390f682.json similarity index 76% rename from allure-report/data/test-cases/9032085b91ce5826.json rename to allure-report/data/test-cases/d880bf6ff390f682.json index d7843b2af75..e2dab6e958d 100644 --- a/allure-report/data/test-cases/9032085b91ce5826.json +++ b/allure-report/data/test-cases/d880bf6ff390f682.json @@ -1 +1 @@ -{"uid":"9032085b91ce5826","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3b4c07500e73b2e1","name":"stdout","source":"3b4c07500e73b2e1.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::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":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9032085b91ce5826.json","parameterValues":[]} \ No newline at end of file +{"uid":"d880bf6ff390f682","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c8970b155f88dd79","name":"stdout","source":"c8970b155f88dd79.txt","type":"text/plain","size":604}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d880bf6ff390f682.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8d5d2ee94f4b051.json b/allure-report/data/test-cases/d8d5d2ee94f4b051.json new file mode 100644 index 00000000000..f12f0c92993 --- /dev/null +++ b/allure-report/data/test-cases/d8d5d2ee94f4b051.json @@ -0,0 +1 @@ +{"uid":"d8d5d2ee94f4b051","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"32d8e8facf5868da","name":"stdout","source":"32d8e8facf5868da.txt","type":"text/plain","size":75}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1ea0a3d5ef9530e","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"d8d5d2ee94f4b051.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/863d982a547ab48a.json b/allure-report/data/test-cases/d9458c8615b9e985.json similarity index 69% rename from allure-report/data/test-cases/863d982a547ab48a.json rename to allure-report/data/test-cases/d9458c8615b9e985.json index 6faa4efb682..a6fab1d1e87 100644 --- a/allure-report/data/test-cases/863d982a547ab48a.json +++ b/allure-report/data/test-cases/d9458c8615b9e985.json @@ -1 +1 @@ -{"uid":"863d982a547ab48a","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"7941ce7b9fdf9a23","name":"stdout","source":"7941ce7b9fdf9a23.txt","type":"text/plain","size":717}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a9f33e581ec48813","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"d9458c8615b9e985.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e885db3276511b9a.json b/allure-report/data/test-cases/d946600dafcc1f6d.json similarity index 60% rename from allure-report/data/test-cases/e885db3276511b9a.json rename to allure-report/data/test-cases/d946600dafcc1f6d.json index 232592d23b1..cf5e28a68dc 100644 --- a/allure-report/data/test-cases/e885db3276511b9a.json +++ b/allure-report/data/test-cases/d946600dafcc1f6d.json @@ -1 +1 @@ -{"uid":"e885db3276511b9a","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce02051636b52745","name":"stdout","source":"ce02051636b52745.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"56ca3efbcb176750","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"tags":[]},"source":"e885db3276511b9a.json","parameterValues":[]} \ No newline at end of file +{"uid":"d946600dafcc1f6d","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b34610167fe8aa65","name":"stdout","source":"b34610167fe8aa65.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cdb95614a08f7813","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"d946600dafcc1f6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e0e76f32ac7ce4e.json b/allure-report/data/test-cases/d9a6d590487a20fd.json similarity index 56% rename from allure-report/data/test-cases/7e0e76f32ac7ce4e.json rename to allure-report/data/test-cases/d9a6d590487a20fd.json index eadada7bdb9..66e110d1de7 100644 --- a/allure-report/data/test-cases/7e0e76f32ac7ce4e.json +++ b/allure-report/data/test-cases/d9a6d590487a20fd.json @@ -1 +1 @@ -{"uid":"7e0e76f32ac7ce4e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"d9a6d590487a20fd","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"25c7546e6e88bf29","name":"stdout","source":"25c7546e6e88bf29.txt","type":"text/plain","size":530}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"58ec93395b112a8f","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7e0e76f32ac7ce4e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"d9a6d590487a20fd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b867e5092f796e5b.json b/allure-report/data/test-cases/da49bdf1737798b8.json similarity index 71% rename from allure-report/data/test-cases/b867e5092f796e5b.json rename to allure-report/data/test-cases/da49bdf1737798b8.json index 9d23664cd11..7307a2a05b4 100644 --- a/allure-report/data/test-cases/b867e5092f796e5b.json +++ b/allure-report/data/test-cases/da49bdf1737798b8.json @@ -1 +1 @@ -{"uid":"b867e5092f796e5b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a094172377fbc2e7","name":"stdout","source":"a094172377fbc2e7.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"94af406790439c52","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"b867e5092f796e5b.json","parameterValues":[]} \ No newline at end of file +{"uid":"da49bdf1737798b8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6833583f4e17d4b6","name":"stdout","source":"6833583f4e17d4b6.txt","type":"text/plain","size":307}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6022cdc8b5145e28","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"da49bdf1737798b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c1ac4b8936ce5ba.json b/allure-report/data/test-cases/db267da7b8a1b004.json similarity index 61% rename from allure-report/data/test-cases/1c1ac4b8936ce5ba.json rename to allure-report/data/test-cases/db267da7b8a1b004.json index 2ca39456b26..52ced21b3a0 100644 --- a/allure-report/data/test-cases/1c1ac4b8936ce5ba.json +++ b/allure-report/data/test-cases/db267da7b8a1b004.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"db267da7b8a1b004","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8418aaca0f21809c","name":"stdout","source":"8418aaca0f21809c.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"db267da7b8a1b004.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e662d87bdd84a50.json b/allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json similarity index 74% rename from allure-report/data/test-cases/5e662d87bdd84a50.json rename to allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json index 2e58891669f..5371b9bf405 100644 --- a/allure-report/data/test-cases/5e662d87bdd84a50.json +++ b/allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c76ccd6ee86418bf","name":"stdout","source":"c76ccd6ee86418bf.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"5e662d87bdd84a50.json","parameterValues":[]} \ No newline at end of file +{"uid":"dbd8c0e7d9b1bcd0","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"362de8ecec922d6a","name":"stdout","source":"362de8ecec922d6a.txt","type":"text/plain","size":772}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"dbd8c0e7d9b1bcd0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f52a489cb0add672.json b/allure-report/data/test-cases/dc29e000a4adcd25.json similarity index 58% rename from allure-report/data/test-cases/f52a489cb0add672.json rename to allure-report/data/test-cases/dc29e000a4adcd25.json index ae590477f25..2ed1d743fff 100644 --- a/allure-report/data/test-cases/f52a489cb0add672.json +++ b/allure-report/data/test-cases/dc29e000a4adcd25.json @@ -1 +1 @@ -{"uid":"f52a489cb0add672","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9a3c6ad41839ce3","name":"stdout","source":"c9a3c6ad41839ce3.txt","type":"text/plain","size":502}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6fce95111dc1cc14","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f52a489cb0add672","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"dc29e000a4adcd25.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/abf7d26758417bf9.json b/allure-report/data/test-cases/dcb40cbe5ee38417.json similarity index 67% rename from allure-report/data/test-cases/abf7d26758417bf9.json rename to allure-report/data/test-cases/dcb40cbe5ee38417.json index aee5f785f40..57eb7eedc12 100644 --- a/allure-report/data/test-cases/abf7d26758417bf9.json +++ b/allure-report/data/test-cases/dcb40cbe5ee38417.json @@ -1 +1 @@ -{"uid":"abf7d26758417bf9","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"dcb40cbe5ee38417","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b63774e9e6663cf7","name":"stdout","source":"b63774e9e6663cf7.txt","type":"text/plain","size":544}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"dcb40cbe5ee38417.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a37b17c93d1df521.json b/allure-report/data/test-cases/dcfefe9c10c1f5d2.json similarity index 61% rename from allure-report/data/test-cases/a37b17c93d1df521.json rename to allure-report/data/test-cases/dcfefe9c10c1f5d2.json index c90dd61d4e6..92618deae91 100644 --- a/allure-report/data/test-cases/a37b17c93d1df521.json +++ b/allure-report/data/test-cases/dcfefe9c10c1f5d2.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3c56e003ef1a2db2","name":"stdout","source":"3c56e003ef1a2db2.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"886067e282725f43","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a37b17c93d1df521.json","parameterValues":[]} \ No newline at end of file +{"uid":"dcfefe9c10c1f5d2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b3328f837a21f35","name":"stdout","source":"3b3328f837a21f35.txt","type":"text/plain","size":104}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2d8966b9a0500aa","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"dcfefe9c10c1f5d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4738c72e7ac209e4.json b/allure-report/data/test-cases/ddd327d6f403c655.json similarity index 74% rename from allure-report/data/test-cases/4738c72e7ac209e4.json rename to allure-report/data/test-cases/ddd327d6f403c655.json index 7148ef255a6..765eef5a91a 100644 --- a/allure-report/data/test-cases/4738c72e7ac209e4.json +++ b/allure-report/data/test-cases/ddd327d6f403c655.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9378bde66fa0c099","name":"stdout","source":"9378bde66fa0c099.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"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":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"4738c72e7ac209e4.json","parameterValues":[]} \ No newline at end of file +{"uid":"ddd327d6f403c655","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d46e2ecc5195696","name":"stdout","source":"5d46e2ecc5195696.txt","type":"text/plain","size":311}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"ddd327d6f403c655.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6af4bd9ac0e81498.json b/allure-report/data/test-cases/ddf52bfae3cd34f4.json similarity index 74% rename from allure-report/data/test-cases/6af4bd9ac0e81498.json rename to allure-report/data/test-cases/ddf52bfae3cd34f4.json index 3d7ad2cb05c..ece5c15a8c6 100644 --- a/allure-report/data/test-cases/6af4bd9ac0e81498.json +++ b/allure-report/data/test-cases/ddf52bfae3cd34f4.json @@ -1 +1 @@ -{"uid":"6af4bd9ac0e81498","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"ddf52bfae3cd34f4","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60ce0e41b02093a3","name":"stdout","source":"60ce0e41b02093a3.txt","type":"text/plain","size":348}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ddf52bfae3cd34f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d3e842542b066f3.json b/allure-report/data/test-cases/de04793abb90de01.json similarity index 69% rename from allure-report/data/test-cases/3d3e842542b066f3.json rename to allure-report/data/test-cases/de04793abb90de01.json index 804f69c4280..bda0caf6277 100644 --- a/allure-report/data/test-cases/3d3e842542b066f3.json +++ b/allure-report/data/test-cases/de04793abb90de01.json @@ -1 +1 @@ -{"uid":"3d3e842542b066f3","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"de04793abb90de01","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1276b53d50f9117","name":"stdout","source":"f1276b53d50f9117.txt","type":"text/plain","size":428}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4979ee3063a87441","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3d3e842542b066f3","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"de04793abb90de01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91ff78dc5a767b91.json b/allure-report/data/test-cases/dead64fe3d4f484d.json similarity index 56% rename from allure-report/data/test-cases/91ff78dc5a767b91.json rename to allure-report/data/test-cases/dead64fe3d4f484d.json index 8ef1cf96d22..46c98d0f9f6 100644 --- a/allure-report/data/test-cases/91ff78dc5a767b91.json +++ b/allure-report/data/test-cases/dead64fe3d4f484d.json @@ -1 +1 @@ -{"uid":"91ff78dc5a767b91","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"dead64fe3d4f484d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b3bb7e070cc7a5c","name":"stdout","source":"6b3bb7e070cc7a5c.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e21dc9fd5c9ffdad","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"91ff78dc5a767b91","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":[]},"source":"dead64fe3d4f484d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/debf2b82465b0240.json b/allure-report/data/test-cases/debf2b82465b0240.json new file mode 100644 index 00000000000..0e2cca495d9 --- /dev/null +++ b/allure-report/data/test-cases/debf2b82465b0240.json @@ -0,0 +1 @@ +{"uid":"debf2b82465b0240","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ad7db611240dcbc0","name":"stdout","source":"ad7db611240dcbc0.txt","type":"text/plain","size":150}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"398c0a461bbe2313","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":[]},"source":"debf2b82465b0240.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c8034b1a6365fc2.json b/allure-report/data/test-cases/dee0416f79d22a0d.json similarity index 72% rename from allure-report/data/test-cases/1c8034b1a6365fc2.json rename to allure-report/data/test-cases/dee0416f79d22a0d.json index a5c671a1722..198fff41eef 100644 --- a/allure-report/data/test-cases/1c8034b1a6365fc2.json +++ b/allure-report/data/test-cases/dee0416f79d22a0d.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3438c05e0b734e","name":"stdout","source":"3438c05e0b734e.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9032085b91ce5826","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"tags":[]},"source":"1c8034b1a6365fc2.json","parameterValues":[]} \ No newline at end of file +{"uid":"dee0416f79d22a0d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"caa5a9b030d38c","name":"stdout","source":"caa5a9b030d38c.txt","type":"text/plain","size":604}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d880bf6ff390f682","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":[]},"source":"dee0416f79d22a0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1152e12f582a6d83.json b/allure-report/data/test-cases/deed80da6e08bd69.json similarity index 62% rename from allure-report/data/test-cases/1152e12f582a6d83.json rename to allure-report/data/test-cases/deed80da6e08bd69.json index 4ea50413193..07dbe7724a3 100644 --- a/allure-report/data/test-cases/1152e12f582a6d83.json +++ b/allure-report/data/test-cases/deed80da6e08bd69.json @@ -1 +1 @@ -{"uid":"1152e12f582a6d83","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"deed80da6e08bd69","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e9ba7465215b13fc","name":"stdout","source":"e9ba7465215b13fc.txt","type":"text/plain","size":611}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95172229a5a9ad6","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1152e12f582a6d83","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"deed80da6e08bd69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7106989a12e3c0a.json b/allure-report/data/test-cases/df0c490941a6877a.json similarity index 65% rename from allure-report/data/test-cases/c7106989a12e3c0a.json rename to allure-report/data/test-cases/df0c490941a6877a.json index f07bcd2bb3b..591cb4a4747 100644 --- a/allure-report/data/test-cases/c7106989a12e3c0a.json +++ b/allure-report/data/test-cases/df0c490941a6877a.json @@ -1 +1 @@ -{"uid":"c7106989a12e3c0a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"df0c490941a6877a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ca423ea5ac901436","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c7106989a12e3c0a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"df0c490941a6877a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62ca3121cbd75dda.json b/allure-report/data/test-cases/df0cebb647c4d6ba.json similarity index 69% rename from allure-report/data/test-cases/62ca3121cbd75dda.json rename to allure-report/data/test-cases/df0cebb647c4d6ba.json index 1b30a80265a..024994b915d 100644 --- a/allure-report/data/test-cases/62ca3121cbd75dda.json +++ b/allure-report/data/test-cases/df0cebb647c4d6ba.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1a1ef79b357be404","name":"stdout","source":"1a1ef79b357be404.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"62ca3121cbd75dda.json","parameterValues":[]} \ No newline at end of file +{"uid":"df0cebb647c4d6ba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1c3dfeaa04fe2908","name":"stdout","source":"1c3dfeaa04fe2908.txt","type":"text/plain","size":154}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df0cebb647c4d6ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8b0041f6b0bb073.json b/allure-report/data/test-cases/df11ad8a9930a85d.json similarity index 62% rename from allure-report/data/test-cases/d8b0041f6b0bb073.json rename to allure-report/data/test-cases/df11ad8a9930a85d.json index 2df7cc57d6a..5c886edbd3a 100644 --- a/allure-report/data/test-cases/d8b0041f6b0bb073.json +++ b/allure-report/data/test-cases/df11ad8a9930a85d.json @@ -1 +1 @@ -{"uid":"d8b0041f6b0bb073","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"37493fb00e3c01f4","name":"stdout","source":"37493fb00e3c01f4.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::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":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d8b0041f6b0bb073.json","parameterValues":[]} \ No newline at end of file +{"uid":"df11ad8a9930a85d","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"396239392c64a388","name":"stdout","source":"396239392c64a388.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df11ad8a9930a85d.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2648dfeb91d0b6ab","name":"stdout","source":"2648dfeb91d0b6ab.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"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":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e8f6c075972e7fae","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"tags":[]},"source":"dfb4af6de633e98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acc95e26a53d92ff.json b/allure-report/data/test-cases/e03974f538ea8ee6.json similarity index 55% rename from allure-report/data/test-cases/acc95e26a53d92ff.json rename to allure-report/data/test-cases/e03974f538ea8ee6.json index d93cb0193d7..7b2eb1dbba5 100644 --- a/allure-report/data/test-cases/acc95e26a53d92ff.json +++ b/allure-report/data/test-cases/e03974f538ea8ee6.json @@ -1 +1 @@ -{"uid":"acc95e26a53d92ff","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e03974f538ea8ee6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"56a8d88c2e7e082f","name":"stdout","source":"56a8d88c2e7e082f.txt","type":"text/plain","size":639}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1728ec761d912068","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"acc95e26a53d92ff","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"e03974f538ea8ee6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/776a48c95cfacbf7.json b/allure-report/data/test-cases/e0851c0ba53ec6a9.json similarity index 69% rename from allure-report/data/test-cases/776a48c95cfacbf7.json rename to allure-report/data/test-cases/e0851c0ba53ec6a9.json index f38d74639ea..4a53fdc4a35 100644 --- a/allure-report/data/test-cases/776a48c95cfacbf7.json +++ b/allure-report/data/test-cases/e0851c0ba53ec6a9.json @@ -1 +1 @@ -{"uid":"776a48c95cfacbf7","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ba35f69345b3378","name":"stdout","source":"5ba35f69345b3378.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d3cdbdd9e8f95c74","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"tags":[]},"source":"776a48c95cfacbf7.json","parameterValues":[]} \ No newline at end of file +{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8c0f6bed7a29f7c","name":"stdout","source":"f8c0f6bed7a29f7c.txt","type":"text/plain","size":120}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fcd8cc6f9f4777c4","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":[]},"source":"e0851c0ba53ec6a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7151a5672bbc2f6.json b/allure-report/data/test-cases/e0d5281d75a0b4df.json similarity index 63% rename from allure-report/data/test-cases/a7151a5672bbc2f6.json rename to allure-report/data/test-cases/e0d5281d75a0b4df.json index 7f1ccfa3111..c9d227ddf25 100644 --- a/allure-report/data/test-cases/a7151a5672bbc2f6.json +++ b/allure-report/data/test-cases/e0d5281d75a0b4df.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"22a1c98a4ff92571","name":"stdout","source":"22a1c98a4ff92571.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"46a578b6417fd35d","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a7151a5672bbc2f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"e0d5281d75a0b4df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"398543e2b30d0b75","name":"stdout","source":"398543e2b30d0b75.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19146436627ee869","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e0d5281d75a0b4df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0e034728609b0e2.json b/allure-report/data/test-cases/e0e034728609b0e2.json new file mode 100644 index 00000000000..5907ee617b9 --- /dev/null +++ b/allure-report/data/test-cases/e0e034728609b0e2.json @@ -0,0 +1 @@ +{"uid":"e0e034728609b0e2","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a724e02684b391","name":"stdout","source":"2a724e02684b391.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e0e034728609b0e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cbc31ebfbb61905.json b/allure-report/data/test-cases/e10517b1ea4eb479.json similarity index 63% rename from allure-report/data/test-cases/2cbc31ebfbb61905.json rename to allure-report/data/test-cases/e10517b1ea4eb479.json index 39c4f3bee3f..a2945c88bb6 100644 --- a/allure-report/data/test-cases/2cbc31ebfbb61905.json +++ b/allure-report/data/test-cases/e10517b1ea4eb479.json @@ -1 +1 @@ -{"uid":"2cbc31ebfbb61905","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f359371e55578388","name":"stdout","source":"f359371e55578388.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b43d122708c0be8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2cbc31ebfbb61905.json","parameterValues":[]} \ No newline at end of file +{"uid":"e10517b1ea4eb479","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6681f7087b7f0e75","name":"stdout","source":"6681f7087b7f0e75.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5274eeeb29391ba1","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"e10517b1ea4eb479.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/380e12b965b39180.json b/allure-report/data/test-cases/e1471afe863c97c8.json similarity index 65% rename from allure-report/data/test-cases/380e12b965b39180.json rename to allure-report/data/test-cases/e1471afe863c97c8.json index 78746fb05b5..75a27b26e8c 100644 --- a/allure-report/data/test-cases/380e12b965b39180.json +++ b/allure-report/data/test-cases/e1471afe863c97c8.json @@ -1 +1 @@ -{"uid":"380e12b965b39180","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"224cd2efeafa2904","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"380e12b965b39180.json","parameterValues":[]} \ No newline at end of file +{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af543ced061d8858","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e1471afe863c97c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea06cb7ae28c8945.json b/allure-report/data/test-cases/e21dc9fd5c9ffdad.json similarity index 59% rename from allure-report/data/test-cases/ea06cb7ae28c8945.json rename to allure-report/data/test-cases/e21dc9fd5c9ffdad.json index 96465f460cd..fcfcfb28d92 100644 --- a/allure-report/data/test-cases/ea06cb7ae28c8945.json +++ b/allure-report/data/test-cases/e21dc9fd5c9ffdad.json @@ -1 +1 @@ -{"uid":"ea06cb7ae28c8945","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e21dc9fd5c9ffdad","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4f8b5b6368092f66","name":"stdout","source":"4f8b5b6368092f66.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e21dc9fd5c9ffdad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e2620475a1119269.json b/allure-report/data/test-cases/e2620475a1119269.json deleted file mode 100644 index 7d0dc6be82c..00000000000 --- a/allure-report/data/test-cases/e2620475a1119269.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e2620475a1119269","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ac4bcaa809c6d1fd","name":"stdout","source":"ac4bcaa809c6d1fd.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"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":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e2620475a1119269.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/886067e282725f43.json b/allure-report/data/test-cases/e2d8966b9a0500aa.json similarity index 66% rename from allure-report/data/test-cases/886067e282725f43.json rename to allure-report/data/test-cases/e2d8966b9a0500aa.json index 64314521c2b..85fc83cb6c5 100644 --- a/allure-report/data/test-cases/886067e282725f43.json +++ b/allure-report/data/test-cases/e2d8966b9a0500aa.json @@ -1 +1 @@ -{"uid":"886067e282725f43","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"41d72e951bcc6869","name":"stdout","source":"41d72e951bcc6869.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"886067e282725f43.json","parameterValues":[]} \ No newline at end of file +{"uid":"e2d8966b9a0500aa","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78b71274c888e77b","name":"stdout","source":"78b71274c888e77b.txt","type":"text/plain","size":104}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"e2d8966b9a0500aa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77e7a047aea456b4.json b/allure-report/data/test-cases/e41551e078ed42ea.json similarity index 69% rename from allure-report/data/test-cases/77e7a047aea456b4.json rename to allure-report/data/test-cases/e41551e078ed42ea.json index e754f16be2e..e35c98306a3 100644 --- a/allure-report/data/test-cases/77e7a047aea456b4.json +++ b/allure-report/data/test-cases/e41551e078ed42ea.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e41551e078ed42ea","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27155577e4b86a95","name":"stdout","source":"27155577e4b86a95.txt","type":"text/plain","size":277}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e41551e078ed42ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5822ae7754d2e8.json b/allure-report/data/test-cases/e5822ae7754d2e8.json deleted file mode 100644 index 71f4b928b16..00000000000 --- a/allure-report/data/test-cases/e5822ae7754d2e8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e5822ae7754d2e8","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/547f04beeb8e83b4.json b/allure-report/data/test-cases/e5ae32dea8d8e5c3.json similarity index 71% rename from allure-report/data/test-cases/547f04beeb8e83b4.json rename to allure-report/data/test-cases/e5ae32dea8d8e5c3.json index 08b974e166a..86b2d7fb719 100644 --- a/allure-report/data/test-cases/547f04beeb8e83b4.json +++ b/allure-report/data/test-cases/e5ae32dea8d8e5c3.json @@ -1 +1 @@ -{"uid":"547f04beeb8e83b4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3ca7170537d4b92b","name":"stdout","source":"3ca7170537d4b92b.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af8e91d1ccf7bcca","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"tags":[]},"source":"547f04beeb8e83b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"e5ae32dea8d8e5c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87f777895eba7eaf","name":"stdout","source":"87f777895eba7eaf.txt","type":"text/plain","size":1178}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5baa430d724786c4","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":[]},"source":"e5ae32dea8d8e5c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b78c37ec3b0f496f.json b/allure-report/data/test-cases/e6a3da330525d2f4.json similarity index 59% rename from allure-report/data/test-cases/b78c37ec3b0f496f.json rename to allure-report/data/test-cases/e6a3da330525d2f4.json index 3c2a00b294a..7a715b8029f 100644 --- a/allure-report/data/test-cases/b78c37ec3b0f496f.json +++ b/allure-report/data/test-cases/e6a3da330525d2f4.json @@ -1 +1 @@ -{"uid":"b78c37ec3b0f496f","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e6a3da330525d2f4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a6636ef2e259cf6","name":"stdout","source":"5a6636ef2e259cf6.txt","type":"text/plain","size":2146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6a793815cad01bd2","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b78c37ec3b0f496f","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"e6a3da330525d2f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e6d62aae7d602336.json b/allure-report/data/test-cases/e6d62aae7d602336.json new file mode 100644 index 00000000000..d62a62d3879 --- /dev/null +++ b/allure-report/data/test-cases/e6d62aae7d602336.json @@ -0,0 +1 @@ +{"uid":"e6d62aae7d602336","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4458ac38c6c9a97c","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e6d62aae7d602336.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/682fdddcf91d8640.json b/allure-report/data/test-cases/e722b9059cce92a0.json similarity index 68% rename from allure-report/data/test-cases/682fdddcf91d8640.json rename to allure-report/data/test-cases/e722b9059cce92a0.json index a5299c32481..e202e4ea547 100644 --- a/allure-report/data/test-cases/682fdddcf91d8640.json +++ b/allure-report/data/test-cases/e722b9059cce92a0.json @@ -1 +1 @@ -{"uid":"682fdddcf91d8640","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ae06587a78bdd6d0","name":"stdout","source":"ae06587a78bdd6d0.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"682fdddcf91d8640.json","parameterValues":[]} \ No newline at end of file +{"uid":"e722b9059cce92a0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"837e80b6f559a9c2","name":"stdout","source":"837e80b6f559a9c2.txt","type":"text/plain","size":30}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e722b9059cce92a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c63189b867db5809.json b/allure-report/data/test-cases/e738d6d09d0feb9e.json similarity index 79% rename from allure-report/data/test-cases/c63189b867db5809.json rename to allure-report/data/test-cases/e738d6d09d0feb9e.json index 951f6b633a1..42f35d2a3fb 100644 --- a/allure-report/data/test-cases/c63189b867db5809.json +++ b/allure-report/data/test-cases/e738d6d09d0feb9e.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e45f83b71ba0db05","name":"stdout","source":"e45f83b71ba0db05.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::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":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"918346e849cd43c1","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"tags":[]},"source":"c63189b867db5809.json","parameterValues":[]} \ No newline at end of file +{"uid":"e738d6d09d0feb9e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e20f82a8bca3f91b","name":"stdout","source":"e20f82a8bca3f91b.txt","type":"text/plain","size":227}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6b00dc7a9142ab25","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":[]},"source":"e738d6d09d0feb9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7c5e93321efe39.json b/allure-report/data/test-cases/e7c5e93321efe39.json new file mode 100644 index 00000000000..62141965732 --- /dev/null +++ b/allure-report/data/test-cases/e7c5e93321efe39.json @@ -0,0 +1 @@ +{"uid":"e7c5e93321efe39","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7c5e93321efe39.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7eaed29fbceb75.json b/allure-report/data/test-cases/e7eaed29fbceb75.json new file mode 100644 index 00000000000..c42162e0135 --- /dev/null +++ b/allure-report/data/test-cases/e7eaed29fbceb75.json @@ -0,0 +1 @@ +{"uid":"e7eaed29fbceb75","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c013aca8f3f007b8","name":"stdout","source":"c013aca8f3f007b8.txt","type":"text/plain","size":37}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2d25cb87282ab722","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"e7eaed29fbceb75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e858a30a444a5013.json b/allure-report/data/test-cases/e7f4165c790464aa.json similarity index 61% rename from allure-report/data/test-cases/e858a30a444a5013.json rename to allure-report/data/test-cases/e7f4165c790464aa.json index a5bb66720fb..f6b439ef12b 100644 --- a/allure-report/data/test-cases/e858a30a444a5013.json +++ b/allure-report/data/test-cases/e7f4165c790464aa.json @@ -1 +1 @@ -{"uid":"e858a30a444a5013","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9eb9cb7b27cc62e1","name":"stdout","source":"9eb9cb7b27cc62e1.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"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":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e858a30a444a5013.json","parameterValues":[]} \ No newline at end of file +{"uid":"e7f4165c790464aa","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d9e1cc8a9d47ef26","name":"stdout","source":"d9e1cc8a9d47ef26.txt","type":"text/plain","size":480}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e7f4165c790464aa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9046461411ed99f.json b/allure-report/data/test-cases/e9046461411ed99f.json deleted file mode 100644 index b0d3dbe5ab6..00000000000 --- a/allure-report/data/test-cases/e9046461411ed99f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e9046461411ed99f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e0896f1244645b9","name":"stdout","source":"e0896f1244645b9.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"e9046461411ed99f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce50dc4c6a1469d8.json b/allure-report/data/test-cases/e99ff83f7419b047.json similarity index 73% rename from allure-report/data/test-cases/ce50dc4c6a1469d8.json rename to allure-report/data/test-cases/e99ff83f7419b047.json index c4ae8276c60..125d722d2e1 100644 --- a/allure-report/data/test-cases/ce50dc4c6a1469d8.json +++ b/allure-report/data/test-cases/e99ff83f7419b047.json @@ -1 +1 @@ -{"uid":"ce50dc4c6a1469d8","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e99ff83f7419b047","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f200722e18d9d59a","name":"stdout","source":"f200722e18d9d59a.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e99ff83f7419b047.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55242408764fe7c9.json b/allure-report/data/test-cases/e9a0c341753d9526.json similarity index 72% rename from allure-report/data/test-cases/55242408764fe7c9.json rename to allure-report/data/test-cases/e9a0c341753d9526.json index 4d8a935343a..6cab4199f5c 100644 --- a/allure-report/data/test-cases/55242408764fe7c9.json +++ b/allure-report/data/test-cases/e9a0c341753d9526.json @@ -1 +1 @@ -{"uid":"55242408764fe7c9","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"e9a0c341753d9526","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22f31b147f604ade","name":"stdout","source":"22f31b147f604ade.txt","type":"text/plain","size":1013}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e9a0c341753d9526.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0cc441d7d4eb4dd.json b/allure-report/data/test-cases/e9aaea22e808b4eb.json similarity index 65% rename from allure-report/data/test-cases/a0cc441d7d4eb4dd.json rename to allure-report/data/test-cases/e9aaea22e808b4eb.json index 13c1b416e58..29567478033 100644 --- a/allure-report/data/test-cases/a0cc441d7d4eb4dd.json +++ b/allure-report/data/test-cases/e9aaea22e808b4eb.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bdc74086212add1b","name":"stdout","source":"bdc74086212add1b.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b04dd834a1d39093","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"tags":[]},"source":"a0cc441d7d4eb4dd.json","parameterValues":[]} \ No newline at end of file +{"uid":"e9aaea22e808b4eb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36b72f15ac4ac48f","name":"stdout","source":"36b72f15ac4ac48f.txt","type":"text/plain","size":36}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"270b5395a9143b9c","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":[]},"source":"e9aaea22e808b4eb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb3e9f6b3780b454.json b/allure-report/data/test-cases/eb3e9f6b3780b454.json new file mode 100644 index 00000000000..991e4fcb516 --- /dev/null +++ b/allure-report/data/test-cases/eb3e9f6b3780b454.json @@ -0,0 +1 @@ +{"uid":"eb3e9f6b3780b454","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ae1ab7427cab55e0","name":"stdout","source":"ae1ab7427cab55e0.txt","type":"text/plain","size":97}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"535d557e01267994","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"eb3e9f6b3780b454.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35dde5e5df78aa3f.json b/allure-report/data/test-cases/ec6e703f7fb1f8f7.json similarity index 78% rename from allure-report/data/test-cases/35dde5e5df78aa3f.json rename to allure-report/data/test-cases/ec6e703f7fb1f8f7.json index 43708ae88af..81fb93b8d4b 100644 --- a/allure-report/data/test-cases/35dde5e5df78aa3f.json +++ b/allure-report/data/test-cases/ec6e703f7fb1f8f7.json @@ -1 +1 @@ -{"uid":"35dde5e5df78aa3f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b1d7cd63e86f3101","name":"stdout","source":"b1d7cd63e86f3101.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"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":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"35dde5e5df78aa3f.json","parameterValues":[]} \ No newline at end of file +{"uid":"ec6e703f7fb1f8f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f40a615942b6a99","name":"stdout","source":"8f40a615942b6a99.txt","type":"text/plain","size":314}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ec6e703f7fb1f8f7.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9bb6819321100dff","name":"stdout","source":"9bb6819321100dff.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df9e62f886d5e100","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"tags":[]},"source":"ecd029e0f98c606.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2086dbec02630b0.json b/allure-report/data/test-cases/ecfcf126e0555bf0.json similarity index 62% rename from allure-report/data/test-cases/b2086dbec02630b0.json rename to allure-report/data/test-cases/ecfcf126e0555bf0.json index 061350e8d6d..c9acf6315db 100644 --- a/allure-report/data/test-cases/b2086dbec02630b0.json +++ b/allure-report/data/test-cases/ecfcf126e0555bf0.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"723bbdd3ff9c847b","name":"stdout","source":"723bbdd3ff9c847b.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b2086dbec02630b0.json","parameterValues":[]} \ No newline at end of file +{"uid":"ecfcf126e0555bf0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84cd17876f4516cf","name":"stdout","source":"84cd17876f4516cf.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ecfcf126e0555bf0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f09ef1a750aec43.json b/allure-report/data/test-cases/ed30e8563a89229a.json similarity index 68% rename from allure-report/data/test-cases/2f09ef1a750aec43.json rename to allure-report/data/test-cases/ed30e8563a89229a.json index 2bb5aef8394..2c7f08f97b4 100644 --- a/allure-report/data/test-cases/2f09ef1a750aec43.json +++ b/allure-report/data/test-cases/ed30e8563a89229a.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a0aae731f70e5cc0","name":"stdout","source":"a0aae731f70e5cc0.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"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":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"79e609aaa466cdf","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"2f09ef1a750aec43.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed30e8563a89229a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d3f39137718ed9c","name":"stdout","source":"4d3f39137718ed9c.txt","type":"text/plain","size":793}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11ee5493e293e3de","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"ed30e8563a89229a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eafa77373a5f8e86.json b/allure-report/data/test-cases/ed37a80783d347db.json similarity index 68% rename from allure-report/data/test-cases/eafa77373a5f8e86.json rename to allure-report/data/test-cases/ed37a80783d347db.json index f421653477f..953a75296af 100644 --- a/allure-report/data/test-cases/eafa77373a5f8e86.json +++ b/allure-report/data/test-cases/ed37a80783d347db.json @@ -1 +1 @@ -{"uid":"eafa77373a5f8e86","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"628f2fd7fd45644d","name":"stdout","source":"628f2fd7fd45644d.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"eafa77373a5f8e86.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed37a80783d347db","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a90b58ce6e21a4f","name":"stdout","source":"5a90b58ce6e21a4f.txt","type":"text/plain","size":1155}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ed37a80783d347db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c08b2480b8f26290.json b/allure-report/data/test-cases/ed5fbc4b14885f68.json similarity index 71% rename from allure-report/data/test-cases/c08b2480b8f26290.json rename to allure-report/data/test-cases/ed5fbc4b14885f68.json index d32cd4010c9..cc81b36ceba 100644 --- a/allure-report/data/test-cases/c08b2480b8f26290.json +++ b/allure-report/data/test-cases/ed5fbc4b14885f68.json @@ -1 +1 @@ -{"uid":"c08b2480b8f26290","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7564cea1d0950828","name":"stdout","source":"7564cea1d0950828.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"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":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"402ddb0b000d2943","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"c08b2480b8f26290.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b770734c2a5e83b","name":"stdout","source":"3b770734c2a5e83b.txt","type":"text/plain","size":231}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b0990a97652b0f6","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"ed5fbc4b14885f68.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8772a5f624316184.json b/allure-report/data/test-cases/edde73c32cfd2214.json similarity index 66% rename from allure-report/data/test-cases/8772a5f624316184.json rename to allure-report/data/test-cases/edde73c32cfd2214.json index 3272db1b516..1229f1c6483 100644 --- a/allure-report/data/test-cases/8772a5f624316184.json +++ b/allure-report/data/test-cases/edde73c32cfd2214.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","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 decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"146ba33ea5b8b774","name":"stdout","source":"146ba33ea5b8b774.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"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":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"8772a5f624316184.json","parameterValues":[]} \ No newline at end of file +{"uid":"edde73c32cfd2214","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b55ce2a23080a57e","name":"stdout","source":"b55ce2a23080a57e.txt","type":"text/plain","size":992}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"edde73c32cfd2214.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b32352034ba0a692.json b/allure-report/data/test-cases/ede582dcc2b34bf3.json similarity index 65% rename from allure-report/data/test-cases/b32352034ba0a692.json rename to allure-report/data/test-cases/ede582dcc2b34bf3.json index b2f45bb9047..dbdebd2c3d9 100644 --- a/allure-report/data/test-cases/b32352034ba0a692.json +++ b/allure-report/data/test-cases/ede582dcc2b34bf3.json @@ -1 +1 @@ -{"uid":"b32352034ba0a692","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d5f66b749f49be9c","name":"stdout","source":"d5f66b749f49be9c.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"eff82dffd26d2650","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"b32352034ba0a692.json","parameterValues":[]} \ No newline at end of file +{"uid":"ede582dcc2b34bf3","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41eff5539d108708","name":"stdout","source":"41eff5539d108708.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5f1282b0eb8a484","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"ede582dcc2b34bf3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91e3c1348f0cd9d2.json b/allure-report/data/test-cases/ee325afc05dcb3e8.json similarity index 72% rename from allure-report/data/test-cases/91e3c1348f0cd9d2.json rename to allure-report/data/test-cases/ee325afc05dcb3e8.json index ce9b2c1519e..dff0b1228a7 100644 --- a/allure-report/data/test-cases/91e3c1348f0cd9d2.json +++ b/allure-report/data/test-cases/ee325afc05dcb3e8.json @@ -1 +1 @@ -{"uid":"91e3c1348f0cd9d2","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string 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},{"name":"Enter a string 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},{"name":"Enter a string 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":"74ca61632d7aba21","name":"stdout","source":"74ca61632d7aba21.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5021f02eb7703e13","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"91e3c1348f0cd9d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee325afc05dcb3e8","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b87eb62b93596729","name":"stdout","source":"b87eb62b93596729.txt","type":"text/plain","size":276}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7ad7c048e8324d3","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"ee325afc05dcb3e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3edaeb1c9114b312.json b/allure-report/data/test-cases/ee4f0501c1152713.json similarity index 76% rename from allure-report/data/test-cases/3edaeb1c9114b312.json rename to allure-report/data/test-cases/ee4f0501c1152713.json index 43318ead738..fe8b89e6a44 100644 --- a/allure-report/data/test-cases/3edaeb1c9114b312.json +++ b/allure-report/data/test-cases/ee4f0501c1152713.json @@ -1 +1 @@ -{"uid":"3edaeb1c9114b312","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":1724735127188,"stop":1724735127188,"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":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 +{"uid":"ee4f0501c1152713","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":1724735127188,"stop":1724735127188,"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":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":"91ed862dacbec840","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":0,"unknown":0,"total":2},"items":[{"uid":"3edaeb1c9114b312","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ee4f0501c1152713.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1585a2916e07d272.json b/allure-report/data/test-cases/ef7cb2e79441187e.json similarity index 65% rename from allure-report/data/test-cases/1585a2916e07d272.json rename to allure-report/data/test-cases/ef7cb2e79441187e.json index 88eb2b402fb..b7f7db0e0ec 100644 --- a/allure-report/data/test-cases/1585a2916e07d272.json +++ b/allure-report/data/test-cases/ef7cb2e79441187e.json @@ -1 +1 @@ -{"uid":"1585a2916e07d272","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"ef7cb2e79441187e","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e497f0d93067cd8e","name":"stdout","source":"e497f0d93067cd8e.txt","type":"text/plain","size":378}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ef7cb2e79441187e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14e29fc6b385d9d8.json b/allure-report/data/test-cases/ef7e94367cfcafa4.json similarity index 62% rename from allure-report/data/test-cases/14e29fc6b385d9d8.json rename to allure-report/data/test-cases/ef7e94367cfcafa4.json index 099fd8e8f7d..c8c09b50a38 100644 --- a/allure-report/data/test-cases/14e29fc6b385d9d8.json +++ b/allure-report/data/test-cases/ef7e94367cfcafa4.json @@ -1 +1 @@ -{"uid":"14e29fc6b385d9d8","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"ef7e94367cfcafa4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a140c6342ce1ee58","name":"stdout","source":"a140c6342ce1ee58.txt","type":"text/plain","size":371}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cc5bed1d964110c","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"14e29fc6b385d9d8","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"ef7e94367cfcafa4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0d79dba84dbdf82.json b/allure-report/data/test-cases/f0d79dba84dbdf82.json deleted file mode 100644 index 631a34f780e..00000000000 --- a/allure-report/data/test-cases/f0d79dba84dbdf82.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f0d79dba84dbdf82","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"16514ad99c38029","name":"stdout","source":"16514ad99c38029.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"73ae2edd756c4a04","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"tags":[]},"source":"f0d79dba84dbdf82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d90f23892be7ac3.json b/allure-report/data/test-cases/f1ac1e81621379df.json similarity index 63% rename from allure-report/data/test-cases/9d90f23892be7ac3.json rename to allure-report/data/test-cases/f1ac1e81621379df.json index 76391f57d79..197968f7284 100644 --- a/allure-report/data/test-cases/9d90f23892be7ac3.json +++ b/allure-report/data/test-cases/f1ac1e81621379df.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5491995ca08b8bb7","name":"stdout","source":"5491995ca08b8bb7.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c54f5aa2ef47fd1b","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"9d90f23892be7ac3.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1ac1e81621379df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a4db6f7d6cd87570","name":"stdout","source":"a4db6f7d6cd87570.txt","type":"text/plain","size":124}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fa7d64e0658fe1a2","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f1ac1e81621379df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1acd3007b7873ed.json b/allure-report/data/test-cases/f1acd3007b7873ed.json deleted file mode 100644 index 110de7aa535..00000000000 --- a/allure-report/data/test-cases/f1acd3007b7873ed.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f1acd3007b7873ed","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77d89c40af0bf20","name":"stdout","source":"77d89c40af0bf20.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"682fdddcf91d8640","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f1acd3007b7873ed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1c4cfcd59974ea.json b/allure-report/data/test-cases/f1c4cfcd59974ea.json deleted file mode 100644 index d638d0b67bb..00000000000 --- a/allure-report/data/test-cases/f1c4cfcd59974ea.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f1c4cfcd59974ea","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d2f0b70b32be23e6","name":"stdout","source":"d2f0b70b32be23e6.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6e0cb0022d9ce284","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"f1c4cfcd59974ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c32d359a7c2bd36e.json b/allure-report/data/test-cases/f3ffd9201b6a1ce3.json similarity index 69% rename from allure-report/data/test-cases/c32d359a7c2bd36e.json rename to allure-report/data/test-cases/f3ffd9201b6a1ce3.json index e03fff3808d..f0d7fdbba78 100644 --- a/allure-report/data/test-cases/c32d359a7c2bd36e.json +++ b/allure-report/data/test-cases/f3ffd9201b6a1ce3.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c5c7618408ea03e4","name":"stdout","source":"c5c7618408ea03e4.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c32d359a7c2bd36e.json","parameterValues":[]} \ No newline at end of file +{"uid":"f3ffd9201b6a1ce3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29ea9005f7d14049","name":"stdout","source":"29ea9005f7d14049.txt","type":"text/plain","size":53}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f3ffd9201b6a1ce3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8316509a5b8b5aee.json b/allure-report/data/test-cases/f4ad45627654b5fc.json similarity index 93% rename from allure-report/data/test-cases/8316509a5b8b5aee.json rename to allure-report/data/test-cases/f4ad45627654b5fc.json index fdc1ee94173..a07b9a96c76 100644 --- a/allure-report/data/test-cases/8316509a5b8b5aee.json +++ b/allure-report/data/test-cases/f4ad45627654b5fc.json @@ -1 +1 @@ -{"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 +{"uid":"f4ad45627654b5fc","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":"f4ad45627654b5fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f50d911c93ffbcb0.json b/allure-report/data/test-cases/f50d911c93ffbcb0.json new file mode 100644 index 00000000000..27f17000fb4 --- /dev/null +++ b/allure-report/data/test-cases/f50d911c93ffbcb0.json @@ -0,0 +1 @@ +{"uid":"f50d911c93ffbcb0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72d1d4db3cffe73b","name":"stdout","source":"72d1d4db3cffe73b.txt","type":"text/plain","size":196}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25be1d40d6774add","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"f50d911c93ffbcb0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5414177affd6f821.json b/allure-report/data/test-cases/f534ec218cc4d08d.json similarity index 53% rename from allure-report/data/test-cases/5414177affd6f821.json rename to allure-report/data/test-cases/f534ec218cc4d08d.json index c39ad9a82cc..897cef155ba 100644 --- a/allure-report/data/test-cases/5414177affd6f821.json +++ b/allure-report/data/test-cases/f534ec218cc4d08d.json @@ -1 +1 @@ -{"uid":"5414177affd6f821","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9ef446de5bdc3b2","name":"stdout","source":"9ef446de5bdc3b2.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"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":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5414177affd6f821.json","parameterValues":[]} \ No newline at end of file +{"uid":"f534ec218cc4d08d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a9f69c076428754","name":"stdout","source":"2a9f69c076428754.txt","type":"text/plain","size":1500}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f534ec218cc4d08d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d28ad8f6f2d47ab4.json b/allure-report/data/test-cases/f5c85086c052dc96.json similarity index 73% rename from allure-report/data/test-cases/d28ad8f6f2d47ab4.json rename to allure-report/data/test-cases/f5c85086c052dc96.json index 01bc47e6aff..407fae90d11 100644 --- a/allure-report/data/test-cases/d28ad8f6f2d47ab4.json +++ b/allure-report/data/test-cases/f5c85086c052dc96.json @@ -1 +1 @@ -{"uid":"d28ad8f6f2d47ab4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b50e795eadf52633","name":"stdout","source":"b50e795eadf52633.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d28ad8f6f2d47ab4.json","parameterValues":[]} \ No newline at end of file +{"uid":"f5c85086c052dc96","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac514e66507a8175","name":"stdout","source":"ac514e66507a8175.txt","type":"text/plain","size":46}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f5c85086c052dc96.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5da6537a014533.json b/allure-report/data/test-cases/f5da6537a014533.json deleted file mode 100644 index cb6794da974..00000000000 --- a/allure-report/data/test-cases/f5da6537a014533.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f5da6537a014533","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"409128bc00470776","name":"stdout","source":"409128bc00470776.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"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":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9e49aa125a2c6746","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"f5da6537a014533.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eff82dffd26d2650.json b/allure-report/data/test-cases/f5f1282b0eb8a484.json similarity index 70% rename from allure-report/data/test-cases/eff82dffd26d2650.json rename to allure-report/data/test-cases/f5f1282b0eb8a484.json index e8396c427db..0ac111b5bcc 100644 --- a/allure-report/data/test-cases/eff82dffd26d2650.json +++ b/allure-report/data/test-cases/f5f1282b0eb8a484.json @@ -1 +1 @@ -{"uid":"eff82dffd26d2650","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"58afed2a90df0f51","name":"stdout","source":"58afed2a90df0f51.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"eff82dffd26d2650.json","parameterValues":[]} \ No newline at end of file +{"uid":"f5f1282b0eb8a484","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84bdcd72726e2c84","name":"stdout","source":"84bdcd72726e2c84.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"f5f1282b0eb8a484.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7dd3a91cc990f40.json b/allure-report/data/test-cases/f6e7e7d9161dd5e2.json similarity index 53% rename from allure-report/data/test-cases/f7dd3a91cc990f40.json rename to allure-report/data/test-cases/f6e7e7d9161dd5e2.json index 011b922680b..7c41b34a6c8 100644 --- a/allure-report/data/test-cases/f7dd3a91cc990f40.json +++ b/allure-report/data/test-cases/f6e7e7d9161dd5e2.json @@ -1 +1 @@ -{"uid":"f7dd3a91cc990f40","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"223102ee65639b46","name":"stdout","source":"223102ee65639b46.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f7dd3a91cc990f40.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6e7e7d9161dd5e2","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d6a0933efaeb03c","name":"stdout","source":"d6a0933efaeb03c.txt","type":"text/plain","size":55}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f6e7e7d9161dd5e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c64823a2a73f974.json b/allure-report/data/test-cases/f711bbcd16ab2119.json similarity index 68% rename from allure-report/data/test-cases/5c64823a2a73f974.json rename to allure-report/data/test-cases/f711bbcd16ab2119.json index c6d48eaa9ee..d93fe04b8b3 100644 --- a/allure-report/data/test-cases/5c64823a2a73f974.json +++ b/allure-report/data/test-cases/f711bbcd16ab2119.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"f711bbcd16ab2119","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9d173a5e0d4bb0c8","name":"stdout","source":"9d173a5e0d4bb0c8.txt","type":"text/plain","size":225}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bbe34ba42279f71","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5c64823a2a73f974","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"f711bbcd16ab2119.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dabab8081cda2c59.json b/allure-report/data/test-cases/f72e37459a6b99ff.json similarity index 73% rename from allure-report/data/test-cases/dabab8081cda2c59.json rename to allure-report/data/test-cases/f72e37459a6b99ff.json index 3d6b8717c58..a5839317a96 100644 --- a/allure-report/data/test-cases/dabab8081cda2c59.json +++ b/allure-report/data/test-cases/f72e37459a6b99ff.json @@ -1 +1 @@ -{"uid":"dabab8081cda2c59","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6b092f3996f587d0","name":"stdout","source":"6b092f3996f587d0.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"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":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dabab8081cda2c59.json","parameterValues":[]} \ No newline at end of file +{"uid":"f72e37459a6b99ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6170073182411e7","name":"stdout","source":"e6170073182411e7.txt","type":"text/plain","size":512}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f72e37459a6b99ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5021f02eb7703e13.json b/allure-report/data/test-cases/f7ad7c048e8324d3.json similarity index 76% rename from allure-report/data/test-cases/5021f02eb7703e13.json rename to allure-report/data/test-cases/f7ad7c048e8324d3.json index 922797564e0..aae74345240 100644 --- a/allure-report/data/test-cases/5021f02eb7703e13.json +++ b/allure-report/data/test-cases/f7ad7c048e8324d3.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bd42675a360dbc62","name":"stdout","source":"bd42675a360dbc62.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"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":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5021f02eb7703e13.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7ad7c048e8324d3","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1f91f89a689bba4","name":"stdout","source":"f1f91f89a689bba4.txt","type":"text/plain","size":276}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f7ad7c048e8324d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99f691b62c390084.json b/allure-report/data/test-cases/f80099cf6c294d2b.json similarity index 67% rename from allure-report/data/test-cases/99f691b62c390084.json rename to allure-report/data/test-cases/f80099cf6c294d2b.json index 6afcdd8ee5d..51cfcc0a890 100644 --- a/allure-report/data/test-cases/99f691b62c390084.json +++ b/allure-report/data/test-cases/f80099cf6c294d2b.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"f80099cf6c294d2b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f753b26a6d68bf5b","name":"stdout","source":"f753b26a6d68bf5b.txt","type":"text/plain","size":601}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a96041a690fcc058","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"f80099cf6c294d2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28404a37037093b2.json b/allure-report/data/test-cases/f81d7a6e8f8b1259.json similarity index 74% rename from allure-report/data/test-cases/28404a37037093b2.json rename to allure-report/data/test-cases/f81d7a6e8f8b1259.json index aeb6757d630..f5f45bd2e9e 100644 --- a/allure-report/data/test-cases/28404a37037093b2.json +++ b/allure-report/data/test-cases/f81d7a6e8f8b1259.json @@ -1 +1 @@ -{"uid":"28404a37037093b2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"48d50f93d41108b9","name":"stdout","source":"48d50f93d41108b9.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"28404a37037093b2.json","parameterValues":[]} \ No newline at end of file +{"uid":"f81d7a6e8f8b1259","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fde614c2efca69df","name":"stdout","source":"fde614c2efca69df.txt","type":"text/plain","size":272}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f81d7a6e8f8b1259.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b0e9e4ff2cb0b57.json b/allure-report/data/test-cases/f8800adc39df0e11.json similarity index 66% rename from allure-report/data/test-cases/8b0e9e4ff2cb0b57.json rename to allure-report/data/test-cases/f8800adc39df0e11.json index e213715ea30..a71d94d1a86 100644 --- a/allure-report/data/test-cases/8b0e9e4ff2cb0b57.json +++ b/allure-report/data/test-cases/f8800adc39df0e11.json @@ -1 +1 @@ -{"uid":"8b0e9e4ff2cb0b57","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1720cf64cd92fe35","name":"stdout","source":"1720cf64cd92fe35.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"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":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8b0e9e4ff2cb0b57.json","parameterValues":[]} \ No newline at end of file +{"uid":"f8800adc39df0e11","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"187a7b2783fd6cca","name":"stdout","source":"187a7b2783fd6cca.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f8800adc39df0e11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8cc7e1ba1a4852f.json b/allure-report/data/test-cases/f8cc7e1ba1a4852f.json new file mode 100644 index 00000000000..fc6f512e12b --- /dev/null +++ b/allure-report/data/test-cases/f8cc7e1ba1a4852f.json @@ -0,0 +1 @@ +{"uid":"f8cc7e1ba1a4852f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4646d812c4a39ce","name":"stdout","source":"4646d812c4a39ce.txt","type":"text/plain","size":554}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"f8cc7e1ba1a4852f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffd2584e60c021f7.json b/allure-report/data/test-cases/f90c5e53432ea6c2.json similarity index 66% rename from allure-report/data/test-cases/ffd2584e60c021f7.json rename to allure-report/data/test-cases/f90c5e53432ea6c2.json index f055449e425..94db8bf2c5e 100644 --- a/allure-report/data/test-cases/ffd2584e60c021f7.json +++ b/allure-report/data/test-cases/f90c5e53432ea6c2.json @@ -1 +1 @@ -{"uid":"ffd2584e60c021f7","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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 +{"uid":"f90c5e53432ea6c2","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f18b0e548340aa4f","name":"stdout","source":"f18b0e548340aa4f.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"f90c5e53432ea6c2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b98125cb150cd794.json b/allure-report/data/test-cases/fa5b03edd274b2cd.json similarity index 57% rename from allure-report/data/test-cases/b98125cb150cd794.json rename to allure-report/data/test-cases/fa5b03edd274b2cd.json index 9e1df5562d3..381eba9604e 100644 --- a/allure-report/data/test-cases/b98125cb150cd794.json +++ b/allure-report/data/test-cases/fa5b03edd274b2cd.json @@ -1 +1 @@ -{"uid":"b98125cb150cd794","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"42d0476a0c6524cb","name":"stdout","source":"42d0476a0c6524cb.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d8b0041f6b0bb073","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"tags":[]},"source":"b98125cb150cd794.json","parameterValues":[]} \ No newline at end of file +{"uid":"fa5b03edd274b2cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"70b6cf48eb9066a3","name":"stdout","source":"70b6cf48eb9066a3.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df11ad8a9930a85d","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":[]},"source":"fa5b03edd274b2cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c54f5aa2ef47fd1b.json b/allure-report/data/test-cases/fa7d64e0658fe1a2.json similarity index 68% rename from allure-report/data/test-cases/c54f5aa2ef47fd1b.json rename to allure-report/data/test-cases/fa7d64e0658fe1a2.json index 11b16e1b8c0..d4f4b70e79f 100644 --- a/allure-report/data/test-cases/c54f5aa2ef47fd1b.json +++ b/allure-report/data/test-cases/fa7d64e0658fe1a2.json @@ -1 +1 @@ -{"uid":"c54f5aa2ef47fd1b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ac173a13e0da0bb","name":"stdout","source":"1ac173a13e0da0bb.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c54f5aa2ef47fd1b.json","parameterValues":[]} \ No newline at end of file +{"uid":"fa7d64e0658fe1a2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90811aa4d663c1f1","name":"stdout","source":"90811aa4d663c1f1.txt","type":"text/plain","size":124}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"fa7d64e0658fe1a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdc34fe177dff4e3.json b/allure-report/data/test-cases/fabe21d8eab469bd.json similarity index 72% rename from allure-report/data/test-cases/bdc34fe177dff4e3.json rename to allure-report/data/test-cases/fabe21d8eab469bd.json index 545595b15bf..7a271e3f4bd 100644 --- a/allure-report/data/test-cases/bdc34fe177dff4e3.json +++ b/allure-report/data/test-cases/fabe21d8eab469bd.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5e9de29522b3bca9","name":"stdout","source":"5e9de29522b3bca9.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"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":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"bdc34fe177dff4e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"fabe21d8eab469bd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1200393e54a2122a","name":"stdout","source":"1200393e54a2122a.txt","type":"text/plain","size":352}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"fabe21d8eab469bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af6e405f57c78056.json b/allure-report/data/test-cases/fbd4191028146e80.json similarity index 73% rename from allure-report/data/test-cases/af6e405f57c78056.json rename to allure-report/data/test-cases/fbd4191028146e80.json index 3dbaecf3863..432740b3449 100644 --- a/allure-report/data/test-cases/af6e405f57c78056.json +++ b/allure-report/data/test-cases/fbd4191028146e80.json @@ -1 +1 @@ -{"uid":"af6e405f57c78056","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"30bb93915ba589e1","name":"stdout","source":"30bb93915ba589e1.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"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":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c8287ca55a94ba5","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"tags":[]},"source":"af6e405f57c78056.json","parameterValues":[]} \ No newline at end of file +{"uid":"fbd4191028146e80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"99fbed72185a436d","name":"stdout","source":"99fbed72185a436d.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23b523b580f78123","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"tags":[]},"source":"fbd4191028146e80.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/79e39b6957e2fa23.json b/allure-report/data/test-cases/fc2c5a5df6e26162.json similarity index 64% rename from allure-report/data/test-cases/79e39b6957e2fa23.json rename to allure-report/data/test-cases/fc2c5a5df6e26162.json index ab35659d00e..435bfa0f0fd 100644 --- a/allure-report/data/test-cases/79e39b6957e2fa23.json +++ b/allure-report/data/test-cases/fc2c5a5df6e26162.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca755456b7a7b1c7","name":"stdout","source":"ca755456b7a7b1c7.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"62ca3121cbd75dda","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"tags":[]},"source":"79e39b6957e2fa23.json","parameterValues":[]} \ No newline at end of file +{"uid":"fc2c5a5df6e26162","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a779afadfd77377","name":"stdout","source":"5a779afadfd77377.txt","type":"text/plain","size":154}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df0cebb647c4d6ba","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":[]},"source":"fc2c5a5df6e26162.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d3cdbdd9e8f95c74.json b/allure-report/data/test-cases/fcd8cc6f9f4777c4.json similarity index 74% rename from allure-report/data/test-cases/d3cdbdd9e8f95c74.json rename to allure-report/data/test-cases/fcd8cc6f9f4777c4.json index 8ef31cdf892..986a3820e3e 100644 --- a/allure-report/data/test-cases/d3cdbdd9e8f95c74.json +++ b/allure-report/data/test-cases/fcd8cc6f9f4777c4.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7a2a4c86abf39025","name":"stdout","source":"7a2a4c86abf39025.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"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":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d3cdbdd9e8f95c74.json","parameterValues":[]} \ No newline at end of file +{"uid":"fcd8cc6f9f4777c4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e423707f4478eb49","name":"stdout","source":"e423707f4478eb49.txt","type":"text/plain","size":120}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fcd8cc6f9f4777c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad12195e4f930686.json b/allure-report/data/test-cases/fd395297ed368b03.json similarity index 65% rename from allure-report/data/test-cases/ad12195e4f930686.json rename to allure-report/data/test-cases/fd395297ed368b03.json index 838fa3d3b9a..19559a3cf09 100644 --- a/allure-report/data/test-cases/ad12195e4f930686.json +++ b/allure-report/data/test-cases/fd395297ed368b03.json @@ -1 +1 @@ -{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"86763b8490ff9e1a","name":"stdout","source":"86763b8490ff9e1a.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"acc544bb5166af1c","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"tags":[]},"source":"ad12195e4f930686.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd395297ed368b03","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"75b9c5da68ec52a2","name":"stdout","source":"75b9c5da68ec52a2.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b48a50dffbb61197","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":[]},"source":"fd395297ed368b03.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/689de206e9df0991.json b/allure-report/data/test-cases/fd4d83368b6d5d5e.json similarity index 75% rename from allure-report/data/test-cases/689de206e9df0991.json rename to allure-report/data/test-cases/fd4d83368b6d5d5e.json index baa9709c9ae..ffa0c8c748d 100644 --- a/allure-report/data/test-cases/689de206e9df0991.json +++ b/allure-report/data/test-cases/fd4d83368b6d5d5e.json @@ -1 +1 @@ -{"uid":"689de206e9df0991","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ee5461145584dca2","name":"stdout","source":"ee5461145584dca2.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"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":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6cc55bf9ac4c61ba","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"689de206e9df0991.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd4d83368b6d5d5e","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7030d405852b736e","name":"stdout","source":"7030d405852b736e.txt","type":"text/plain","size":392}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"103efa7b767774fa","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"fd4d83368b6d5d5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fdff4b964fae0427.json b/allure-report/data/test-cases/fdff4b964fae0427.json new file mode 100644 index 00000000000..3c7dd41679a --- /dev/null +++ b/allure-report/data/test-cases/fdff4b964fae0427.json @@ -0,0 +1 @@ +{"uid":"fdff4b964fae0427","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e6997f43eb72f85","name":"stdout","source":"8e6997f43eb72f85.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a2fbd8f640be4431","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"fdff4b964fae0427.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/timeline.json b/allure-report/data/timeline.json index 73bf1091686..3a93c7dd672 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":"17192-MainThread","children":[{"name":"Find the int that appears an odd number of times","uid":"ac127c4c71bf788d","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_starting_position_from_positives","uid":"91ed862dacbec840","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":"String with no alphabet chars","uid":"ab4f4753656b93ab","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 Sudoku class","uid":"a97caba53074497b","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":"test_random","uid":"6c1504a4fcfadf69","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":"Negative test cases for is_prime function testing","uid":"e99ff83f7419b047","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 shark function (positive)","uid":"1467bda4d9665eda","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 hoop_count function (positive test case)","uid":"f6e7e7d9161dd5e2","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":"Non is expected","uid":"3e354a7b4ef8aa9f","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 Encoding functionality","uid":"761811e55728ed74","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 invite_more_women function (positive)","uid":"b48a50dffbb61197","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":"'multiply' function verification with empty list","uid":"be5b8c63ffdd840d","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 is_prime function","uid":"11ee5493e293e3de","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":"Testing permute_a_palindrome (empty string)","uid":"12ce3777e030dbb5","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 permute_a_palindrome (negative)","uid":"59ff5157ed7e9ae","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 largestPower function","uid":"f8800adc39df0e11","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 or b is negative","uid":"e2d8966b9a0500aa","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 agents_cleanup function","uid":"a51a382d521d00cc","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 'save' function: positive","uid":"17f807e7e2cad355","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 is_palindrome function","uid":"1c0de6c68e45d781","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 duplicate_encode function","uid":"5740cd94d023a2bf","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":"Two smallest numbers in the start of the list","uid":"59ab6d9b07f441c0","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 list_squared function","uid":"2512233f29820ca9","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 top_3_words function","uid":"68c4a39d8a6017b","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":"Test that no_space function removes the spaces","uid":"b1ce4d34a0cdd5eb","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 period_is_late function (positive)","uid":"4041d4d534df9c91","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 'count_sheeps' function: empty list","uid":"19146436627ee869","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":"test_solution_medium","uid":"6e940c353ac4ade9","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 period_is_late function (negative)","uid":"e7f4165c790464aa","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 the 'sort_array' function","uid":"11b4e7794c00f220","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 check_root function","uid":"23b523b580f78123","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 easy_diagonal function","uid":"431c7499a8a042ca","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_ips_between","uid":"9a93b35004a87c6a","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":"move function tests","uid":"c2776ae7e29336e9","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 'letter_count' function","uid":"78957f7729625c40","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 'DefaultList' class: append","uid":"f90c5e53432ea6c2","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 growing_plant function","uid":"6b00dc7a9142ab25","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":"Zero","uid":"17d8ff61005bb0bc","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 compute_ranks","uid":"dbd8c0e7d9b1bcd0","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 'DefaultList' class: pop","uid":"ef7cb2e79441187e","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 'DefaultList' class: __getitem__","uid":"cc5bed1d964110c","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 'snail' function","uid":"7b9876690035f17","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":"Wolf in the middle of the queue","uid":"458ee4cae9834334","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":"Should return 'Fail!'s","uid":"f5f1282b0eb8a484","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":"Testing 'count_sheeps' function: positive flow","uid":"3f3af6e95d4ded07","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 decipher_this function","uid":"edde73c32cfd2214","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 array_diff function","uid":"6fce95111dc1cc14","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 'solution' function","uid":"613579922cc04140","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":"Verify that greet function returns the proper message","uid":"1c454649db0c0ed2","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 the 'group_cities' function","uid":"b0ff51cf7a3c2781","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":"Square numbers (positive)","uid":"2077f18aded36c8a","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 'factorial' function","uid":"7028cdfd068e31be","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 shark function (negative)","uid":"4783529dae6eb3af","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 to_alternating_case function","uid":"6566b62febd2f997","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 sum_for_list function","uid":"aacbcab78401e86c","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 valid_parentheses function","uid":"8271021679b0cc06","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 gap function","uid":"fcd8cc6f9f4777c4","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 'sum_triangular_numbers' with positive numbers","uid":"3fab8ff7d7139e20","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 'mix' function","uid":"55d1d73293e16236","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":"You are given two angles -> find the 3rd.","uid":"e0e034728609b0e2","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":"'multiply' function verification: lists with multiple digits","uid":"bf3022b66d91aba7","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":"Wolf at the end of the queue","uid":"87be1c294a496f4a","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 set_alarm function","uid":"9b0990a97652b0f6","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 'has_subpattern' (part 3) function","uid":"d62d5681db1186b9","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 the 'find_missing_number' function","uid":"41ca81ef54591f7f","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 likes function","uid":"ddf52bfae3cd34f4","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 check_for_factor function: positive flow","uid":"83f04a2f029479df","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 odd_row function","uid":"e9a0c341753d9526","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 the 'unique_in_order' function","uid":"1e52950a202e2f6f","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 'sum_triangular_numbers' with big number as an input","uid":"2d25cb87282ab722","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":"'fix_the_meerkat function function verification","uid":"95172229a5a9ad6","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":"All chars are in mixed case","uid":"743e871493ba28b4","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":"AND logical operator","uid":"b8a68af9dbc0f892","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 first_non_repeated function with various inputs","uid":"5de6808258f0151f","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 zeros function","uid":"ddd327d6f403c655","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 count_letters_and_digits function","uid":"90a114379d845ff7","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 calc_combinations_per_row function","uid":"db267da7b8a1b004","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 Warrior class >>> tom","uid":"cabe377ec9af3c98","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":"STesting enough function","uid":"31f6e05cb2bf8e17","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":"test_smallest","uid":"20308d2341c6b899","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 'order' function","uid":"f7ad7c048e8324d3","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 'save' function: negative","uid":"1b8dc3acaf7dd027","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 men_from_boys function","uid":"5baa430d724786c4","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":"powers function should return an array of unique numbers","uid":"5781ea9a417efe48","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 domain_name function","uid":"b5f6e3f148925a4f","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 toJadenCase function (negative)","uid":"536deebe5c2f9229","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":"test_permutations","uid":"a08dd22616aac704","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 make_class function","uid":"e21dc9fd5c9ffdad","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":"get_size function tests","uid":"4df49eaeb4ea4daa","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":"Positive test cases for gen_primes function testing","uid":"204251456ada0752","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 'DefaultList' class: extend","uid":"a6a0450be3f30fe6","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 stock_list function","uid":"abba91be3722688b","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":"String with alphabet chars only","uid":"270b5395a9143b9c","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 toJadenCase function (positive)","uid":"fa7d64e0658fe1a2","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 epidemic function","uid":"d757011cc42c205e","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 move_zeros function","uid":"c8be7042d182d7bb","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 easy_line function exception message","uid":"ca423ea5ac901436","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 shark function (positive)","uid":"d5eb9c17e95fe424","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 'sum_triangular_numbers' with zero","uid":"266702a52edb0749","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 solution function","uid":"a96041a690fcc058","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 solve function","uid":"650faaf602cc8f99","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 take function","uid":"808471d4cfeae814","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":"test_starting_position_from_negatives","uid":"47a613697aa0c71f","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 calc function","uid":"a90fdb1fb3683308","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 Warrior class >>> bruce_lee","uid":"72010ab4f2692ae4","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":"Testing two_decimal_places function","uid":"5fa0c36654622313","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 'solution' function","uid":"776765eba79884f4","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 spiralize function","uid":"1e3570598c901af4","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":"test_solution_big","uid":"311e6a6343f5272c","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":"goals function verification","uid":"4d0514d90adb5feb","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":"'multiply' function verification","uid":"ab70ba446dcfc9e3","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":"Negative test cases for gen_primes function testing","uid":"6af8fedb1f0ef3c6","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":"All chars are in upper case","uid":"5321a1bb93b59f1e","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 'DefaultList' class: remove","uid":"a4b7cb6ba7726224","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 next_smaller function","uid":"922eccc2ca8ed714","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 'count_sheeps' function: bad input","uid":"500c62fc4806377c","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 swap_values function","uid":"a5f55a655c70213f","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":"Testing advice function","uid":"ce00ffd36d904f61","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":"a and b are equal","uid":"80dd204b4961834","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 password function","uid":"5320007ca0191a21","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":"Negative numbers","uid":"6d22e154a5a83d80","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 to_table function","uid":"6a793815cad01bd2","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 zero_fuel function","uid":"133341d40af1e905","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 binary_to_string function","uid":"9cc84b4c3c851a20","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":"String with mixed type of chars","uid":"cdb95614a08f7813","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_for_factor function: positive flow","uid":"bfd2093ec920e131","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":"test_solution_basic","uid":"96bc84b88ae05ea5","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":"a an b are positive numbers","uid":"63bb569f11b7f542","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 flatten function","uid":"fabe21d8eab469bd","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 monkey_count function","uid":"ec6e703f7fb1f8f7","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 done_or_not function","uid":"252f381a068f762f","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 create_city_map function","uid":"8f884e4fa29bb7d4","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":"e7c5e93321efe39","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_of_intervals function","uid":"1728ec761d912068","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 'count_sheeps' function: mixed list","uid":"b4fb6cdf4d1895f5","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 row_sum_odd_numbers function","uid":"a50af3a4d2a7afb5","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 'vaporcode' function","uid":"a4f7c6dc4c7e84","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 pig_it function","uid":"f81d7a6e8f8b1259","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 'generate_hashtag' function","uid":"13e77cd2d97ddcd8","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":"Non square numbers (negative)","uid":"4458ac38c6c9a97c","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 litres function with various test inputs","uid":"8c975897c57d974e","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":"'multiply' function verification with random list","uid":"5d080f15b08c0b4f","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 done_or_not function","uid":"895ce9b19a080b91","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_empty","uid":"8d05bbd591902299","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 next_bigger function","uid":"9035abe5e1151932","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 alphanumeric function","uid":"8baea38a8fa67e7e","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 dirReduc function","uid":"aefb4681bbbff0c9","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":"Should return 'Publish!'","uid":"11b0f4fd11e05b10","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 encrypt_this function","uid":"9b4ada0bf1630c0a","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":"test_sequence","uid":"1edd352618c6aa2b","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 string_to_array function","uid":"8af4ebd0495f0e70","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":"7637c123d5cf58af","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":"Wolf at the beginning of the queue","uid":"a1571db34190da47","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 checkchoose function","uid":"4979ee3063a87441","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 format_duration","uid":"d5804044d1767680","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":"XOR logical operator","uid":"6e797d850b813669","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 tickets function","uid":"d880bf6ff390f682","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 'is_isogram' function","uid":"1dfdd5c5551a6420","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":"Should return 'I smell a series!'","uid":"82e3ff5b5bd4ac62","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 two_decimal_places function","uid":"89c677f035513057","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 increment_string function","uid":"7511d5ab976a748a","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 make_upper_case function","uid":"462e434377d791a9","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 'has_subpattern' (part 2) function","uid":"f534ec218cc4d08d","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":"Square numbers (positive)","uid":"85cc51a7df0f4a6c","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":"Negative non consecutive number should be returned","uid":"f5c85086c052dc96","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 hoop_count function (negative test case)","uid":"f3ffd9201b6a1ce3","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 all_fibonacci_numbers function","uid":"c707b9e0a465edac","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 'numericals' function","uid":"a93bd997ced3859a","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":"30fbee992b0ca53e","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 calculate function","uid":"91e2410535ccc997","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 anagrams function","uid":"4f85a4b1698202d","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 Calculator class","uid":"95e612b16602c749","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 century function","uid":"9f6955234023cbe8","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":"Testing 'thirt' function","uid":"2cfa19c331ab824b","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 calculate_damage function","uid":"dcb40cbe5ee38417","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":"Positive test cases for is_prime function testing","uid":"a381266642fdbdd2","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":"Non consecutive number should be returned","uid":"108c2723377a98c0","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 'greek_comparator' function","uid":"b0f9b8de2eb00fed","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":"test_josephus_survivor","uid":"bc5cb7d257f882a1","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 square numbers (negative)","uid":"af543ced061d8858","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 length function where head = None","uid":"1b018537831100fb","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 'feast' function","uid":"a54c934450b934d7","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 'sum_triangular_numbers' with negative numbers","uid":"b3223ce64ed8bee2","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 string_transformer function","uid":"39ba63dd42027b29","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":"test_line_positive","uid":"f4ad45627654b5fc","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 first_non_repeating_letter function","uid":"103efa7b767774fa","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":"Large lists","uid":"ed37a80783d347db","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":"String with no duplicate chars","uid":"a9f33e581ec48813","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 invite_more_women function (negative)","uid":"571c043aeb64d363","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 'solution' function","uid":"1bbe34ba42279f71","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 the 'pyramid' function","uid":"df11ad8a9930a85d","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 easy_line function","uid":"f8cc7e1ba1a4852f","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 permute_a_palindrome (positive)","uid":"ecfcf126e0555bf0","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 'DefaultList' class: insert","uid":"474af6c568bdf675","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 alphabet_war function","uid":"2348115dae27ed81","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 validSolution","uid":"9d8518015a2b07b6","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":"test_line_negative","uid":"22fcf1edf8ebf197","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 done_or_not function","uid":"e41551e078ed42ea","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 digital_root function","uid":"398c0a461bbe2313","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 share_price function","uid":"23cc390416e7aa52","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 Potion class","uid":"5e4b4c0a3aeae99e","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 Decoding functionality","uid":"58ec93395b112a8f","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":"OR logical operator","uid":"6d9270ca3330737a","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 with one char only","uid":"84aa3b23910872ae","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":"Test with regular string","uid":"5274eeeb29391ba1","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 max_multiple function","uid":"587ebae959bb9619","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 number_of_sigfigs function","uid":"f72e37459a6b99ff","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 'has_subpattern' (part 1) function","uid":"a70604cd2465a183","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 remove_char function","uid":"25be1d40d6774add","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 length function","uid":"535d557e01267994","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 make_readable function","uid":"bb0af84ecb430495","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":"Testing Battle method","uid":"3ceac2ca244e095b","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":"String with no duplicate chars","uid":"c1ea0a3d5ef9530e","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":"a and b are equal","uid":"a2fbd8f640be4431","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":"Test with empty string","uid":"e722b9059cce92a0","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 validate_battlefield function","uid":"b99ca9a8ecf19524","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 'summation' function","uid":"bd5d964c0a6197cf","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":"All chars are in lower case","uid":"df0cebb647c4d6ba","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":"test_basic","uid":"280a7287fd39d5a9","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":"String alphabet chars and spaces","uid":"10b94291a50321ec","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 check_exam function","uid":"6022cdc8b5145e28","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"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"},{"name":"9168-MainThread","children":[{"name":"Testing advice function","uid":"9cb8749ab5d5d5c7","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 'save' function: positive","uid":"6a1d96979e635e7f","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 men_from_boys function","uid":"e5ae32dea8d8e5c3","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":"goals function verification","uid":"d1a80d9f422182d","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 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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 'greek_comparator' function","uid":"327fbdea3443aca5","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 binary_to_string function","uid":"2b38fe6b8a5a46","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":"Testing the 'group_cities' function","uid":"8655885cb5db7a58","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":"'multiply' function verification: lists with multiple digits","uid":"1f991ba5bad9e7e9","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":"All chars are in mixed case","uid":"a70ffb4d0a92e5c8","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":"test_triangle","uid":"7e0d94f0ee4e397d","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 hoop_count function (positive test case)","uid":"139c28ca38674b14","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":"Non is expected","uid":"1c922c5f58027b49","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":"Should return 'I smell a series!'","uid":"92297f3cbdd8ad78","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 password function","uid":"9519f48ec729ba4c","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 Decoding functionality","uid":"d9a6d590487a20fd","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 'save' function: negative","uid":"1ece392343bb9b12","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 permute_a_palindrome (positive)","uid":"715edf62d220bc66","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 share_price function","uid":"884c8d1f852cc3dc","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":"Non square numbers (negative)","uid":"e1471afe863c97c8","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 'solution' function","uid":"d1aabae67bc18ba0","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 growing_plant function","uid":"e738d6d09d0feb9e","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 'DefaultList' class: insert","uid":"2c78d4954ac14f9e","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 flatten function","uid":"57efbea0ccf3907a","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":"String alphabet chars and spaces","uid":"b8b1a20b1ac22e64","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":"test_josephus_survivor","uid":"84fd4c67efee5295","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":"Wolf in the middle of the queue","uid":"7c2750d825fae93b","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":"Testing 'factorial' function","uid":"33b81b348332f41f","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":"test_solution_big","uid":"a6bf4a932c1ec147","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 set_alarm function","uid":"ed5fbc4b14885f68","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 alphabet_war function","uid":"ace382695affabdf","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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 toJadenCase function (negative)","uid":"a60fe7d0456e1873","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":"Testing century function","uid":"d3037fd25424c6f3","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 dirReduc function","uid":"5e6aa533c6c0fafa","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 domain_name function","uid":"627da61e5891aa44","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":"Square numbers (positive)","uid":"14d00f76e0b4f9e4","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_solution_medium","uid":"87acfa055dcbe26a","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":"All chars are in upper case","uid":"d5ae1235bc27ccba","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 'count_sheeps' function: mixed list","uid":"504baf7c4d256536","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":"String with alphabet chars only","uid":"e9aaea22e808b4eb","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 check_exam function","uid":"da49bdf1737798b8","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":"Testing 'solution' function","uid":"f711bbcd16ab2119","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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 max_multiple function","uid":"b96004f0b179053d","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 check_root function","uid":"fbd4191028146e80","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":"Testing make_readable function","uid":"cb5c8ea3b9796931","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 epidemic function","uid":"c1e0648976f6a694","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":"Testing permute_a_palindrome (negative)","uid":"9098856200f13690","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 'count_sheeps' function: bad input","uid":"7c3ec7eab2e0be6d","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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 calculate_damage function","uid":"90a24ba96aea3cfc","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":"test_permutations","uid":"1319e1ae94efdc02","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 done_or_not function","uid":"2965d2d3db0ea08e","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 encrypt_this function","uid":"19910c11538825d6","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":"XOR logical operator","uid":"7ac9af93b3d2f297","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":"Testing done_or_not function","uid":"6cad203fab564c60","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_solution_basic","uid":"d6d51bdb700f78e3","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 tickets function","uid":"dee0416f79d22a0d","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 format_duration","uid":"47f8df09a84d8337","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":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"Testing remove_char function","uid":"f50d911c93ffbcb0","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 Warrior class >>> tom","uid":"675849fee1009391","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 Sudoku class","uid":"7f90afc62f8400f4","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":"'multiply' function verification","uid":"1efaf2ab015adde4","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":"Testing 'DefaultList' class: remove","uid":"51a9aec46de8d878","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 period_is_late function (negative)","uid":"c35da98b55fb5e6b","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 'thirt' function","uid":"585949d19b46a5d2","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":"Verify that greet function returns the proper message","uid":"1188dda60b67ea96","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 number_of_sigfigs function","uid":"d7c1fb6f236110ca","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 the 'solution' function","uid":"84f17449b7b13451","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 'sum_triangular_numbers' with positive numbers","uid":"49aa5cc4276ca55b","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":"Testing compute_ranks","uid":"38639b46d1e381a9","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 validate_battlefield function","uid":"5dad026541a05e65","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":"move function tests","uid":"9c38060cc376f686","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 validSolution","uid":"d6e4ebd44034ff08","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 all_fibonacci_numbers function","uid":"d4c41912963969d7","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":"test_ips_between","uid":"1dee8c06fd165199","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":"String with no alphabet chars","uid":"337891d8027fbc46","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 check_for_factor function: positive flow","uid":"afce902b58f1520a","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 agents_cleanup function","uid":"645c6c05562d2f01","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 the 'unique_in_order' function","uid":"15008ede7bd87a18","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 next_bigger function","uid":"7b2352a8e3675c67","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 'DefaultList' class: append","uid":"b5a45493f51c1d67","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":"Testing likes function","uid":"d7357eaa8c15ec47","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 'count_sheeps' function: empty list","uid":"e0d5281d75a0b4df","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":"a and b are equal","uid":"fdff4b964fae0427","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 Battle method","uid":"d558fd9b3bcee4ae","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 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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":"test_sequence","uid":"b72d4e8ad3288d1b","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":"Testing alphanumeric function","uid":"42bb8c96d4cb1bcf","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":"All chars are in lower case","uid":"fc2c5a5df6e26162","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 'longest_repetition' function","uid":"d57f06aa2f911f40","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":"Negative test cases for gen_primes function testing","uid":"69f65011f131e2b6","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 length function","uid":"eb3e9f6b3780b454","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 'generate_hashtag' function","uid":"14d24a2946d66b00","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 stock_list function","uid":"1719ddf6913445c8","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":"test_line_positive","uid":"cf3552eb00513a1a","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 'feast' function","uid":"54942c51ed88331c","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 shark function (positive)","uid":"972d0622d29729c4","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 'sum_triangular_numbers' with big number as an input","uid":"e7eaed29fbceb75","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":"String with no duplicate chars","uid":"d8d5d2ee94f4b051","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":"'multiply' function verification with random list","uid":"c799982c38b97fcc","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":"String with mixed type of chars","uid":"d946600dafcc1f6d","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 zeros function","uid":"369d691aa58bf89d","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 'DefaultList' class: extend","uid":"826a0963540c6e75","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":"Square numbers (positive)","uid":"95011c2c3c205658","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 calc function","uid":"693c5b2693478689","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 hoop_count function (negative test case)","uid":"1073662453fffbc9","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 to_table function","uid":"e6a3da330525d2f4","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 digital_root function","uid":"debf2b82465b0240","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":"Testing 'DefaultList' class: pop","uid":"99a050e28b9f808c","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":"Should return 'Publish!'","uid":"d5a389260d41a743","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 Warrior class >>> bruce_lee","uid":"37b95a78feb35857","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 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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 easy_diagonal function","uid":"964ad50f448ed64d","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":"Zero","uid":"7a1019ba1beb3118","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 string_transformer function","uid":"704aacac2db91585","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 gap function","uid":"e0851c0ba53ec6a9","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 is_palindrome function","uid":"76f8c586f8a804f0","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 solve function","uid":"41efd0d786aed73","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":"test_smallest","uid":"c37dfc82a096ec09","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 period_is_late function (positive)","uid":"64a44b1c9018ad85","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 string_to_array function","uid":"52715db4a1ce5955","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":"Testing the 'sort_array' function","uid":"31cd5c9e8017f83c","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 duplicate_encode function","uid":"2b7f0b03733442e8","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":"Testing create_city_map function","uid":"614b9e2de4457676","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 is_prime function","uid":"ed30e8563a89229a","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":"Testing make_class function","uid":"dead64fe3d4f484d","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":"Testing easy_line function exception message","uid":"df0c490941a6877a","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_combinations_per_row function","uid":"5a941d3b90762a67","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":"Testing count_letters_and_digits function","uid":"a492d74df14be54a","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 sum_for_list function","uid":"82619e3fb0e84d4d","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":"Testing two_decimal_places function","uid":"90eee3ddc83b1454","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":"Testing 'sum_triangular_numbers' with zero","uid":"39c69409f76377e7","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 top_3_words function","uid":"c7c7f21adbc73706","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"STesting enough function","uid":"af580569ddf3e366","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 'solution' function","uid":"2b9309fd398214a5","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":"Negative numbers","uid":"673ecd99dac0c86e","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 'order' function","uid":"ee325afc05dcb3e8","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":"Testing valid_parentheses function","uid":"b29b4bc1c1fe7917","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 Encoding functionality","uid":"8a76fd0002a5824c","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 shark function (negative)","uid":"cde5d1b46b10d7ac","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"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"ef7e94367cfcafa4","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 calculate function","uid":"490cf50ddd5cff83","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":"AND logical operator","uid":"52187b3daff300ae","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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 'mix' function","uid":"2460353038ce1955","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":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"Should return 'Fail!'s","uid":"ede582dcc2b34bf3","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 odd_row function","uid":"9b82a842fdc9b867","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":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"Testing list_squared function","uid":"7fd5632b0213855d","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 next_smaller function","uid":"b01fd4e8d095b60f","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 Potion class","uid":"cdfe495bc85470d2","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 'sum_triangular_numbers' with negative numbers","uid":"9393151991be7f33","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":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"test_line_negative","uid":"88c7e92ae3f035ea","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":"Find the int that appears an odd number of times","uid":"6ab6caccad49b468","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":"'multiply' function verification with one element list","uid":"c1d9afec6278b1a8","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 an b are positive numbers","uid":"76548c4669002681","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":"Two smallest numbers in the start of the list","uid":"92083f552ecb72c4","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 pig_it function","uid":"11b652a05502070f","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":"Testing 'snail' function","uid":"95ddc175910ea52","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 permute_a_palindrome (empty string)","uid":"51971bf7ad109ed2","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 toJadenCase function (positive)","uid":"f1ac1e81621379df","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 the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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 the 'pyramid' function","uid":"fa5b03edd274b2cd","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 spiralize function","uid":"b1d54b76165521a0","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 largestPower function","uid":"70085274c959a3cb","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 sum_of_intervals function","uid":"e03974f538ea8ee6","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":"get_size function tests","uid":"9525e56c1666fc0f","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":"Test with empty string","uid":"56a28cc490d83b65","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":"Test that no_space function removes the spaces","uid":"130e4ffebf4e47af","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":"Testing increment_string function","uid":"148a22b7e430194f","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 make_upper_case function","uid":"ae7d3fce45bf33fb","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 checkchoose function","uid":"de04793abb90de01","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":"Non square numbers (negative)","uid":"e6d62aae7d602336","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 first_non_repeated function with various inputs","uid":"8a0dfae45b96d6a4","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":"test_solution_empty","uid":"39245131d70863d6","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 decipher_this function","uid":"3a2392b112899a67","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 swap_values function","uid":"874b39a75ad8fa3b","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 solution function","uid":"f80099cf6c294d2b","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 take function","uid":"9f7fc4731241a976","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 length function where head = None","uid":"b1c2f2381b1441f6","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":"test_starting_position_from_negatives","uid":"801bdccb4e1aa824","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":"Test with regular string","uid":"e10517b1ea4eb479","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":"Wolf at the beginning of the queue","uid":"bfe92f9ff640a644","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 one char only","uid":"2acb560e089cb7c8","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 done_or_not function","uid":"98d0f495e6dcba7e","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":"You are given two angles -> find the 3rd.","uid":"6ea719d6e8a376fb","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 two_decimal_places function","uid":"996165a0ada95681","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 'summation' function","uid":"b6301a55868859d","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":"powers function should return an array of unique numbers","uid":"4ecd1e835300dbcf","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 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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":"Positive test cases for gen_primes function testing","uid":"35cf25b9e515e00d","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 first_non_repeating_letter function","uid":"fd4d83368b6d5d5e","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":"a or b is negative","uid":"dcfefe9c10c1f5d2","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 litres function with various test inputs","uid":"71d876f4d19ecd67","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 to_alternating_case function","uid":"8451096f3488e82","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 'numericals' function","uid":"42383b817b641e4e","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":"Large lists","uid":"83105e24306c53ac","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 easy_line function","uid":"2aa3a63b6fff605a","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 anagrams function","uid":"31b67858aaa81503","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 row_sum_odd_numbers function","uid":"9a325845218dd6ae","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 'is_isogram' function","uid":"cd862d92408a60a2","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":"Testing 'letter_count' function","uid":"616180d049b16d1d","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":"Testing invite_more_women function (negative)","uid":"2d35bd18d5e6ee6b","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":"26cf86ca9eda4b5","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 Calculator class","uid":"371888dd705cab28","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":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"Wolf at the end of the queue","uid":"8427b8f31ff35d6c","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 invite_more_women function (positive)","uid":"fd395297ed368b03","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_starting_position_from_positives","uid":"ee4f0501c1152713","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":"a and b are equal","uid":"449aa1de0e8221e9","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 'vaporcode' function","uid":"5a22d7a269c3ca06","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 zero_fuel function","uid":"afae2f3faef55f2b","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":"Testing check_for_factor function: positive flow","uid":"6d9afe9fda19581e","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":"'multiply' function verification with empty list","uid":"52dd320a58bdb229","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":[]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file diff --git a/allure-report/export/influxDbData.txt b/allure-report/export/influxDbData.txt index f6f0447be8a..80aee83bba1 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 1732427756000000000 +launch_status broken=0 1732427756000000000 +launch_status passed=209 1732427756000000000 +launch_status skipped=13 1732427756000000000 +launch_status unknown=0 1732427756000000000 +launch_time duration=1655595 1732427756000000000 +launch_time min_duration=0 1732427756000000000 +launch_time max_duration=648 1732427756000000000 +launch_time sum_duration=1276 1732427756000000000 +launch_time start=1724733474194 1732427756000000000 +launch_time stop=1724735129789 1732427756000000000 +launch_retries retries=219 1732427756000000000 +launch_retries run=222 1732427756000000000 diff --git a/allure-report/history/duration-trend.json b/allure-report/history/duration-trend.json index 42d0e4b56cb..59762f66df8 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":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}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}}] \ No newline at end of file diff --git a/allure-report/history/history-trend.json b/allure-report/history/history-trend.json index d99a7683cdf..05e8323ff48 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":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}},{"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}}] \ No newline at end of file diff --git a/allure-report/history/history.json b/allure-report/history/history.json index 68febc92b07..0d8cf56bdeb 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":2,"unknown":0,"total":2},"items":[{"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}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"e738d6d09d0feb9e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"645c6c05562d2f01","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":0,"unknown":0,"total":2},"items":[{"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}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"5b9aa5357d8d514d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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..09ff52fce19 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":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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}}] \ No newline at end of file diff --git a/allure-report/index.html b/allure-report/index.html index d2055a014b0..d0e23ebba17 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': 'f45ac67a-67e7-4266-818b-20757609f9c1', 'single_file': false }); diff --git a/allure-report/widgets/duration-trend.json b/allure-report/widgets/duration-trend.json index 42d0e4b56cb..59762f66df8 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":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}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}}] \ No newline at end of file diff --git a/allure-report/widgets/duration.json b/allure-report/widgets/duration.json index 8502c5270a0..24151825661 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":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"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..05e8323ff48 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":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}},{"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}}] \ No newline at end of file diff --git a/allure-report/widgets/retry-trend.json b/allure-report/widgets/retry-trend.json index d047486576f..09ff52fce19 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":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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}}] \ No newline at end of file diff --git a/allure-report/widgets/severity.json b/allure-report/widgets/severity.json index cc063ceb2dc..84594a23f64 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":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"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..24151825661 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":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"}] \ No newline at end of file From 32970ca18481d242332a0af3d7faa2ddf0d2b560 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:01:40 -0800 Subject: [PATCH 244/873] Update test_solution.py --- kyu_6/sums_of_parts/test_solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/sums_of_parts/test_solution.py b/kyu_6/sums_of_parts/test_solution.py index 7807a41c1c1..0ef885b8310 100644 --- a/kyu_6/sums_of_parts/test_solution.py +++ b/kyu_6/sums_of_parts/test_solution.py @@ -26,13 +26,13 @@ url='https://www.codewars.com/kata/5ce399e0047a45001c853c2b', name='Source/Kata') # pylint: enable-msg=R0801 -class SJFTestCase(unittest.TestCase): +class PartsSumTestCase(unittest.TestCase): """ Testing 'parts_sums' function """ # pylint: disable-msg=R0801 - def test_sjf(self): + def test_parts_sum(self): """ Testing 'parts_sums' function with various test data :return: From 8762a9f618a8e5619249d10a8b71c82f5e38b421 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:04:56 -0800 Subject: [PATCH 245/873] New allure report --- ...4811665ed892a.txt => 105658932c1d51ff.txt} | 0 ...0040677726bbd.txt => 10b8961e386c4fec.txt} | 0 ...726a85ec26b65.txt => 126d44dc6bf2e98e.txt} | 0 ...3b8574c415b89.txt => 12c58087789a46ca.txt} | 0 ...da13bc4365ba8.txt => 12f3e703f687ed41.txt} | 0 ...9c5da68ec52a2.txt => 14f1a5601096c54c.txt} | 0 ...e88f3edc608ae.txt => 1629f3862628691e.txt} | 0 ...6966fbaffbd00.txt => 169bdc8e4de5949e.txt} | 0 ...486b52334c41e.txt => 16b3d133c1b1141f.txt} | 0 ...64ed4da9c0ecc.txt => 17ccb2223275d18f.txt} | 0 ...070c159aacf2e.txt => 1905a023fe62d7a5.txt} | 0 ...f6d536992c308.txt => 19d9a21eca90a0a9.txt} | 0 ...d1fd44f82d410.txt => 1ab4a085da0164d2.txt} | 0 ...33583f4e17d4b6.txt => 1aea611207a542f.txt} | 0 ...dd2ef21833533.txt => 1b71217f4d0fe3a2.txt} | 0 ...a729cdea9a7d9.txt => 1bfd50f00e4c2ad5.txt} | 0 ...328f837a21f35.txt => 1ca9750c0956602d.txt} | 0 ...7bb1aa01966ff.txt => 1ce9d59c982071d0.txt} | 0 ...ff4e66314365b.txt => 1d395e740ae82411.txt} | 0 ...8be5d3c35bf84.txt => 1d5dc16fdfe05c84.txt} | 0 ...d200c224939da.txt => 1dc0d1d2e3a97f3c.txt} | 0 ...b10d648ead31b.txt => 1e123d763e6ea7e5.txt} | 0 ...3529b62d1131a.txt => 1e1a39cd8bddfb25.txt} | 0 ...bed72185a436d.txt => 1e1f708218c48d04.txt} | 0 ...bbc4fad82e6db.txt => 1f33a24130d10b19.txt} | 0 ...f39137718ed9c.txt => 1f7ee012a96ef9b6.txt} | 0 ...dcde2e02037cb.txt => 1f8aa4666b4af5af.txt} | 0 ...c728cd3990d41.txt => 1fcc34d0c68ae769.txt} | 0 ...646d812c4a39ce.txt => 1ff678a4c7734b0.txt} | 0 ...cb74f119a5c14.txt => 215c30a7cf2d2e11.txt} | 0 ...0f7a126ad592b.txt => 21cec5980af4ec14.txt} | 0 ...575d9cafe6cf6.txt => 22b576ff182f36ef.txt} | 0 ...87d8fdc4ccb3b.txt => 22f6f0c737bac26b.txt} | 0 ...77e39e2fd03a2.txt => 23dd45ddb469c4aa.txt} | 0 ...62af9bcf091d4.txt => 246dacd86be04ffa.txt} | 0 ...60e97d1d843b1.txt => 253cdd605d9ea305.txt} | 0 ...638f94c1897db.txt => 25583e198df733bf.txt} | 0 ...f9bf2787b94f7.txt => 26557f5777ce8a7b.txt} | 0 ...e90cc8dad54fd.txt => 26c18e7ac55b0476.txt} | 0 ...a0933efaeb03c.txt => 273b19c655c226cd.txt} | 0 ...6423e21d6d262.txt => 27df6f7a31afa4ff.txt} | 0 ...7546e6e88bf29.txt => 282ef4a825ddd5b7.txt} | 0 ...db611240dcbc0.txt => 285de4a0d9b150b3.txt} | 0 ...cea1d1ffd3662.txt => 2862210bad838236.txt} | 0 ...0f200ffe2c729.txt => 2b6038e2de6e977a.txt} | 0 ...ab19d1a615a57.txt => 2bee8bc5b94972e3.txt} | 0 ...8d7f17afba1b9.txt => 2d3f2d22c5115b6e.txt} | 0 ...0d6c473e55397.txt => 2d58a8a8ac8fa12e.txt} | 0 ...f2e8a8daac7d4.txt => 2dbf09b568ff5668.txt} | 0 ...5ca7bd9d20192.txt => 2dd75c6915b1e704.txt} | 0 ...fa13d4dc4aeec.txt => 2e5a8277ac6080e3.txt} | 0 ...3e81e546a5a71.txt => 2f3f1653d6bd83ea.txt} | 0 ...f556fe34434c9.txt => 2fa4e18b8435ce88.txt} | 0 ...52e2c49c9d723.txt => 2fb64bb60201538c.txt} | 0 ...eaf28d236f584.txt => 30a819977a6f7bba.txt} | 0 ...80e317c4cdc0d.txt => 31ba7c014fce4298.txt} | 0 ...e80b6f559a9c2.txt => 3272d488a926cad0.txt} | 0 ...0e4eb0d1b73ee.txt => 32849bcbd7d5b064.txt} | 0 ...281521e32f10c.txt => 3326f8b00659b17c.txt} | 0 ...fe0844baefb8c.txt => 34515415abccae34.txt} | 0 ...b6aed91bdc6cb.txt => 36d455921a73202d.txt} | 0 ...987f3927afd7c.txt => 36e52eee6ec1696f.txt} | 0 ...f69c076428754.txt => 37e73f373251accf.txt} | 0 ...0d405852b736e.txt => 394707a7900b643f.txt} | 0 ...2d7cf7b32bc2c.txt => 3a4387d961fd6fe2.txt} | 0 ...100e65e09b423.txt => 3a4c00d99760de4b.txt} | 0 ...55577e4b86a95.txt => 3d8fef51a9e30706.txt} | 0 ...71274c888e77b.txt => 3df0050d216178a3.txt} | 0 ...1fbe4dea71ee0.txt => 3e088b2fc3849ac3.txt} | 0 ...729485857d70b.txt => 3e79fdee962a6c7a.txt} | 0 ...be09b414388f9.txt => 3f14e07d274c2e01.txt} | 0 ...44061f744d93d.txt => 3f23fd2a44d74bcb.txt} | 0 ...3c6ad41839ce3.txt => 3f3d8444cfb8c128.txt} | 0 ...dfeaa04fe2908.txt => 3fbdb209be30e4e9.txt} | 0 ...5ec6cee6b6454.txt => 3fdf05bb544c0162.txt} | 0 ...cdfea12dfee25.txt => 3fe96e9fb5bb6b3f.txt} | 0 ...1d4db3cffe73b.txt => 403983f6828d59c5.txt} | 0 ...c95935cebe487.txt => 40789a2ed03aa082.txt} | 0 ...6e2ecc5195696.txt => 4091cd5629c473be.txt} | 0 ...b0e548340aa4f.txt => 4143349f87c576ac.txt} | 0 ...cdc7c5d92ea524.txt => 419d7e1cf9a3c9b.txt} | 0 ...73229fb9bb954.txt => 443a1d8f74495540.txt} | 0 ...e6a50b9a56e7d.txt => 452e28e5668d68f6.txt} | 0 ...9f62e2424ff1a.txt => 45655b08b75495d0.txt} | 0 ...9b6836dc35d93.txt => 459e1a71d63acc96.txt} | 0 ...0b58ce6e21a4f.txt => 45d7b9435ff3c623.txt} | 0 ...782fa3edc8402.txt => 464f7036130e9df9.txt} | 0 ...fa4140ca62ee4.txt => 47ba37195574156f.txt} | 0 ...eef7e1cb66e60.txt => 484cb5d49df72338.txt} | 0 ...a8818c4ee9f6a.txt => 486146c7b14fd6fd.txt} | 0 ...3707f4478eb49.txt => 4988f81545fa9dcf.txt} | 0 ...2b19c209c380e.txt => 4a05a037b7d71615.txt} | 0 ...f8e3a1f8c2be2b.txt => 4a2cdaf17ee494c.txt} | 0 ...ac117ed2f5b2c.txt => 4bafaae940d73b69.txt} | 0 ...63e588b090ea7.txt => 4c19c67f026536b3.txt} | 0 ...b0aa6406d8405.txt => 4db95168982ce3dd.txt} | 0 ...8aaca0f21809c.txt => 4e248e61461ec35c.txt} | 0 ...636ef2e259cf6.txt => 4f617786d1167bf5.txt} | 0 ...dc4155dddb919.txt => 4fea0728042fecef.txt} | 0 ...b5b6368092f66.txt => 50b324c74021da7c.txt} | 0 ...26cf9c398e7752.txt => 518d45d1073ca74.txt} | 0 ...83265322e5aba.txt => 519607e9e5d7219c.txt} | 0 ...c0101c5666165.txt => 5343662cb85dce05.txt} | 0 ...73a5e0d4bb0c8.txt => 537ecc9a719af32f.txt} | 0 ...5c7b600785dbe.txt => 546f6d6d1d510331.txt} | 0 ...f4f217e87fedc.txt => 54a6fca37064555a.txt} | 0 ...4cebfbdb23ee9.txt => 54a96af48234a9eb.txt} | 0 ...774e9e6663cf7.txt => 554fb31ae5f3473b.txt} | 0 ...70b155f88dd79.txt => 56be0299a0ca1906.txt} | 0 ...4405dfe872592.txt => 572eaf1e6f057287.txt} | 0 ...1e9dabd89620f.txt => 5ab43402bfd67bde.txt} | 0 ...e5ff6c26dfc23.txt => 5ab72755d6763015.txt} | 0 ...3f15f0e448e53.txt => 5b8ca288b44682ec.txt} | 0 ...79283e1874d20.txt => 5c2711b7e4875740.txt} | 0 ...543e2b30d0b75.txt => 5c2daa57ff9298a6.txt} | 0 ...f40b324526f4d.txt => 5d574363acc62acc.txt} | 0 ...d346b3a261fc6.txt => 5d5a8c5ce62738a7.txt} | 0 ...7a7b2783fd6cca.txt => 5d918ffd5978feb.txt} | 0 ...aa5a9b030d38c.txt => 5e1e694e393088b4.txt} | 0 ...827b08877ee80.txt => 5e25d7437b08e659.txt} | 0 ...437b097cf88b9.txt => 5f888d9c16f6ee3a.txt} | 0 ...8ab05fc59b31a.txt => 6100c33a0bd08814.txt} | 0 ...5c4221cf1383d.txt => 62359e715edfaf26.txt} | 0 ...de424bd281215.txt => 62418f4fe99b4a3a.txt} | 0 ...3b31517fb1cf6.txt => 62d969149cac19e2.txt} | 0 ...610167fe8aa65.txt => 63652035df5cd6e2.txt} | 0 ...911719c53624e.txt => 63b31f8c0af20d94.txt} | 0 ...e3a7d48216112.txt => 64217426bd0c7f09.txt} | 0 ...99b60fd50eab17.txt => 642ca5006c94cc7.txt} | 0 ...d6a8306713e1a.txt => 6534e5921b3f960d.txt} | 0 ...0e167f1507713.txt => 65c05475b72ce468.txt} | 0 ...da4c0465e81d2.txt => 660305aec4aa6e06.txt} | 0 ...4e96e6102d985.txt => 666caf8f2715f1b6.txt} | 0 ...2a9aa50bef455.txt => 67751593ff534b14.txt} | 0 ...c1f836394adf7.txt => 678cdbc81118a45c.txt} | 0 ...7a80b454faae7.txt => 67be9974a45dfae3.txt} | 0 ...e93ce737c702f.txt => 697ce25e72082ee1.txt} | 0 ...c7fe5a8d7f425.txt => 697db26b4ade1966.txt} | 0 ...5450f0b6d0b62.txt => 69b865faf74786aa.txt} | 0 ...d12e01ffe8bd2.txt => 69c2dd61a98f0df6.txt} | 0 ...d8e6923c5cdcc.txt => 6aaa7a7ffc396f31.txt} | 0 ...11aa4d663c1f1.txt => 6ae645e567750bb1.txt} | 0 ...23a9981f406ff.txt => 6ccd74e070792411.txt} | 0 ...fe45f98e3a162.txt => 6cd50ae6a92d4a65.txt} | 0 ...7606ecf187aae.txt => 6d216ad47549f357.txt} | 0 ...20856e6e183642.txt => 6d73a4f3af439d6.txt} | 0 ...239392c64a388.txt => 6d7dcbe4dae3ba12.txt} | 0 ...fbf78e894e0ca.txt => 6dccc5ff56326cce.txt} | 0 ...997f43eb72f85.txt => 6e968c2a309c9083.txt} | 0 ...7f0d93067cd8e.txt => 6ec9f0fb81f46c5f.txt} | 0 ...37d6b3bd85f76bf.txt => 6ee6aafaeecdbf.txt} | 0 ...614ff4bde976d.txt => 6f4b7e883a26cafe.txt} | 0 ...8e8facf5868da.txt => 70a5ec7cc829789f.txt} | 0 ...a9005f7d14049.txt => 724f9727a6725fde.txt} | 0 ...36761eae2b6cd.txt => 72f4c1312eb8e355.txt} | 0 ...d1c1e601a3a5b.txt => 730a4e5abf4ea8ba.txt} | 0 ...94e9e67e4f8fb.txt => 73d36ba66285cf8e.txt} | 0 ...78131575ef850.txt => 73e237e2a607b73d.txt} | 0 ...e6f01edd6f40b.txt => 75eae5551f423f5f.txt} | 0 ...0f0b93e0e2887.txt => 75f6639f39c4b7d0.txt} | 0 ...90db0f884f6f0.txt => 760266e95eacb400.txt} | 0 ...603f4ec8cac73.txt => 76446d802fca4221.txt} | 0 ...dffae1b4c5d49.txt => 76d9ba77a7bb2817.txt} | 0 ...70734c2a5e83b.txt => 773f7227b3021ebf.txt} | 0 ...6549170870e9e.txt => 7757a124114dd519.txt} | 0 ...794db833f43e6.txt => 77adc248069b48d7.txt} | 0 ...3a3e02677ec62.txt => 77c66732e5fdad66.txt} | 0 ...f11066e8eb2f7.txt => 7a383696eff0b379.txt} | 0 ...05204dae406a16.txt => 7bc78567c01b81e.txt} | 0 ...b81b9185d8ebf.txt => 7cd06e1d94c0b146.txt} | 0 ...4598a501c7d27.txt => 7d49bbac8d757852.txt} | 0 ...7980cac6ccce8.txt => 7dd6b645422c34b6.txt} | 0 ...0d2a8f3aaa1eb.txt => 7e0608ae57e6ca33.txt} | 0 ...bc3e5b3334332.txt => 7f3ec04c5333a588.txt} | 0 ...74c85e8c0841a.txt => 7fc42db42407a1b3.txt} | 0 ...0c3a94542cad8.txt => 81997e6990138a02.txt} | 0 ...b7ba55710ea734.txt => 8244325875cc8c2.txt} | 0 ...84c686d4aec41.txt => 8324986f2adab578.txt} | 0 ...9b2f5d2166132.txt => 839cae885131e395.txt} | 0 ...0ef7caf28d559.txt => 857a5351e31f1baf.txt} | 0 ...1752d20b95de3.txt => 880a2c92c8612a83.txt} | 0 ...428633abf607e.txt => 888fe7b1e08f632a.txt} | 0 ...60d573610c20c.txt => 8a1d25baaaa2cac0.txt} | 0 ...bb00f201470b4.txt => 8a45c99b47ae5bc6.txt} | 0 ...4247db1945485.txt => 8a8a2d0c90cfef1e.txt} | 0 ...1a1b722d3e57e.txt => 8ac039f3bc7f748f.txt} | 0 ...66f3f97e3d4e4.txt => 8b32e9e6b9d5730c.txt} | 0 ...4733a0318ce29.txt => 8b338c3953869594.txt} | 0 ...fb66a095ff9819.txt => 8c002cae94869ae.txt} | 0 ...614c2efca69df.txt => 8c6b281f58e4fbe3.txt} | 0 ...4b9b4343fdd9e.txt => 8ce1da867cdb9cd9.txt} | 0 ...8d88c2e7e082f.txt => 8d52b389398fe1ce.txt} | 0 ...3b544775b35fe.txt => 8dfc11179dd2dd46.txt} | 0 ...ef762befefc39.txt => 8e484f9bfa00ca83.txt} | 0 ...3aca8f3f007b8.txt => 8ef03709815f1ee7.txt} | 0 ...b05bf139af2d32.txt => 8ef3c2609186193.txt} | 0 ...a32b5caa3d259.txt => 8f909ea616537459.txt} | 0 ...6eca85ecd31e8.txt => 8fe3e8aa201d424a.txt} | 0 ...3d563709aaa2b.txt => 9047acd474e52c7c.txt} | 0 ...cbd3585c92133.txt => 92375ce905d3bb32.txt} | 0 ...68a83bd2f66f6.txt => 9252a83ce892d840.txt} | 0 ...72f15ac4ac48f.txt => 929957d5beb797a6.txt} | 0 ...28cec1dd8dea3.txt => 92cddf6ef1a2b768.txt} | 0 ...eebe7718e7480.txt => 939b7ea8b8b69174.txt} | 0 ...ed1b6b7f1c808.txt => 94c19824e08a6a92.txt} | 0 ...b38196225980f.txt => 95dd879b5dc89b5e.txt} | 0 ...0b83d62a7bfbf.txt => 974d8c9279e15557.txt} | 0 ...6cf48eb9066a3.txt => 97827ebef7dd2119.txt} | 0 ...0d11b46cc8eb0.txt => 97bc633acb769f22.txt} | 0 ...7f4d50843fbb5.txt => 9819ce1f0ac184a6.txt} | 0 ...70073182411e7.txt => 98b58e86a56b6f3b.txt} | 0 ...c8283826150a7.txt => 998cb255bcb4a08e.txt} | 0 ...76b53d50f9117.txt => 9b1bb88dc50af4ea.txt} | 0 ...258c787806381.txt => 9b753e8aa39a2b6c.txt} | 0 ...a2772e24fdc9b.txt => 9c17474dc274435d.txt} | 0 ...31b147f604ade.txt => 9cd8266cfd985687.txt} | 0 ...99b80ae7e843e.txt => 9ef0f4c8246dad00.txt} | 0 ...1c47094969219.txt => a05ee87cd665f265.txt} | 0 ...62b896cd445c4.txt => a1418ed9afde7ea1.txt} | 0 ...79b3f66291ee3.txt => a193aa0d76e6e0f1.txt} | 0 ...8b1e0c4f5a122.txt => a31af19dcd964af7.txt} | 0 ...14e66507a8175.txt => a3957b3e858fa9c0.txt} | 0 ...567f1e1e69ee5.txt => a3af1182be2fa344.txt} | 0 ...1ce7b9fdf9a23.txt => a3e3342383736358.txt} | 0 ...1cc8a9d47ef26.txt => a40dc509f3c7162d.txt} | 0 ...02fdb5599f0ec.txt => a5fae94f2517e85b.txt} | 0 ...563a6816a8fb1.txt => a5fe4c42944f89c8.txt} | 0 ...76dbf2861ab6b.txt => a613cf938d78c4d4.txt} | 0 ...167744db90954.txt => a62856bc357d2685.txt} | 0 ...6fc4b238144c3.txt => a648c0041b64d7a8.txt} | 0 ...16eb9cb3b239c.txt => a66ea3c1c7d07513.txt} | 0 ...e92a1be75c8fa.txt => a73f85a8fac351b8.txt} | 0 ...b65a9daada0df.txt => a7f10bb4c8e33c64.txt} | 0 ...4594d507e663ad.txt => a823a6dcaaab38a.txt} | 0 ...4ca69ed4a797e.txt => a881d3345681241e.txt} | 0 ...9271a783962e0.txt => a95c78a9496692b3.txt} | 0 ...dfa2ecde82e2a.txt => a9f925f082e601ea.txt} | 0 ...79afadfd77377.txt => aa8cd00c6909033a.txt} | 0 ...e89531089be3f.txt => ab4c5be84836fafb.txt} | 0 ...24ab646409d91.txt => ab72754d2ac3d657.txt} | 0 ...83d555cbdd5c6.txt => abe246047ca80d75.txt} | 0 ...0c6342ce1ee58.txt => ad44f1f08939323f.txt} | 0 ...3c801c4c75440.txt => addbfb5be788ff64.txt} | 0 ...0393e54a2122a.txt => ae418f132f3362c9.txt} | 0 ...3939b2e0016e1.txt => ae7d7256cc9cd87f.txt} | 0 ...e96495b7301c2.txt => aeaa6146da01ffaa.txt} | 0 ...66a355340dea4.txt => aef94a39bd8b19be.txt} | 0 ...2b7919feb22bf.txt => b0341cfdabd60782.txt} | 0 ...70b78893a0ae6.txt => b102eb36f048a843.txt} | 0 ...85638cafa3b09.txt => b18a61fc243fdba8.txt} | 0 ...9893956705e3c.txt => b2176623a3e27602.txt} | 0 ...162d049c6ebb2.txt => b3d5e98a684cd625.txt} | 0 ...bb87dd9240b08.txt => b436923321373575.txt} | 0 ...7fb466625b3ce.txt => b5b702f79cbcea35.txt} | 0 ...928ceb3bfb16f9.txt => b650a2b5eace42e.txt} | 0 ...777895eba7eaf.txt => b82715c67d99ec0e.txt} | 0 ...27bd29772e298.txt => b94b97d784c6cf01.txt} | 0 ...f73f71ea0c103.txt => ba31ccf0eed329a1.txt} | 0 ...69032ea61f29c.txt => ba5b206c202bb2e0.txt} | 0 ...146e7ec026151e.txt => bb1a14f7acaf229.txt} | 0 ...fb2d8338c4ae8.txt => be7449bab7c02e56.txt} | 0 ...33f7cad83170f.txt => bee515a36bc2165b.txt} | 0 ...5a91c91d3cce8.txt => bf8644536e05f3d6.txt} | 0 ...86283fe3a63a2.txt => bfa0e041a65d579a.txt} | 0 ...30ca9dc47578e.txt => bfd7eb06540fa1b6.txt} | 0 ...f0cabbf264491.txt => c02985fbd2700004.txt} | 0 ...50f7b74d71675.txt => c0c4047155365dbf.txt} | 0 ...a7465215b13fc.txt => c258bec5b6c8eafe.txt} | 0 ...97e34ff385a06.txt => c2916b6d9a3730c2.txt} | 0 ...7e2d69cfbefdf.txt => c319238385a5cb6d.txt} | 0 ...6f7bce2ac3794.txt => c34a92b7a1b9869e.txt} | 0 ...7eb4ac34d1a3f.txt => c38727f5bb9d52ae.txt} | 0 ...724e02684b391.txt => c452ee18f96c325a.txt} | 0 ...411421a238415.txt => c520dd2a3bb6ed30.txt} | 0 ...0f3eb19799549.txt => c52989139561013a.txt} | 0 ...de7f1e428d962.txt => c5afc30c761eea74.txt} | 0 ...29bd7c41462e0.txt => c629f823771e2123.txt} | 0 ...0a615942b6a99.txt => c703e2fc1b8c856f.txt} | 0 ...47fa89048aa2f.txt => c77e43a426f47681.txt} | 0 ...f8c17370e6610.txt => ca0d330469f49836.txt} | 0 ...2891f4860c316.txt => ca8a9ae1b56b4086.txt} | 0 ...e0167efc9a3e5.txt => ca908a3276ec1f33.txt} | 0 ...34b32a4fa91ba.txt => cb2ee8571e9e5841.txt} | 0 ...b1ea05b87d5bf.txt => cc9e92a1032075c9.txt} | 0 ...574f777b434b5.txt => cca44b266aa98436.txt} | 0 ...6f7399a313214.txt => ccdd1b5f063278d8.txt} | 0 ...e1868fac6f5c2.txt => cd5591b59d574128.txt} | 0 ...b7ce475c42c1e48.txt => cd8ecc1f6b5a44.txt} | 0 ...99744fc651725.txt => cda2f56ac699fd36.txt} | 0 ...020a1f427ff16.txt => ce026a7ada5eb7bc.txt} | 0 ...406beb8fb490f.txt => ce20c6dd4e02cb56.txt} | 0 ...2ce9854634cf6.txt => ce2512d2a26a891e.txt} | 0 ...a2b28cd4ab614.txt => cece8653b698fb5f.txt} | 0 ...7bf5da9408839.txt => cfc199981b020b59.txt} | 0 ...989c1fe59fe7e.txt => d0030f8b38971a56.txt} | 0 ...273bb670e7e63.txt => d01b1971a8a3587e.txt} | 0 ...beea06209bb6e.txt => d03e7f0ed07eb16c.txt} | 0 ...67c535945138b.txt => d0b96f0ad42d1de6.txt} | 0 ...e3405e01a539f.txt => d1bf3e067845857a.txt} | 0 ...4fbd4d09ad0f7.txt => d1cecae81ecbadad.txt} | 0 ...de8ecec922d6a.txt => d2ebd6c7bb69da29.txt} | 0 ...11ab5eb543e75.txt => d43641784540be20.txt} | 0 ...ff5539d108708.txt => d4ab56b3974e742a.txt} | 0 ...1f7087b7f0e75.txt => d6941eaebe2a3ba3.txt} | 0 ...065dd6d539fab.txt => d6c5e78c2bca1b60.txt} | 0 ...f4028774f914d.txt => d7dd41e46efca9ee.txt} | 0 ...dcd72726e2c84.txt => d83a50edd6b56e2a.txt} | 0 ...4be3959747375.txt => d85ac6726b459082.txt} | 0 ...469286db7525d.txt => d89f3d58b0c226e8.txt} | 0 ...4d80fa61d867d.txt => d8b7ee3418e7b9e0.txt} | 0 ...bb18adfb0c750.txt => d8ed65aadf059368.txt} | 0 ...1e84a01209f22.txt => d8f05623e6466063.txt} | 0 ...eed58e51d5c7a.txt => d9853791dbf86dfe.txt} | 0 ...1ac3684ba417d.txt => dcb18087db2eef7c.txt} | 0 ...410625d43ac82.txt => dcb5cf58cdd3658a.txt} | 0 ...a0ef8eae5b1f5.txt => dd695e9095070885.txt} | 0 ...35b58dfb8e3b0.txt => dd90e5bd6518035b.txt} | 0 ...eb62b93596729.txt => de83cab412c71bc2.txt} | 0 ...ee5a3754aa8a2.txt => dea157c47f361971.txt} | 0 ...fa2d0000577e9.txt => df1294dda064bff1.txt} | 0 ...bb7e070cc7a5c.txt => e04892408ba7673f.txt} | 0 ...58defe547aa99.txt => e0673a9df06bdbef.txt} | 0 ...49033ef3225ff.txt => e11dfdc5beea1549.txt} | 0 ...0722e18d9d59a.txt => e13819432a0a8bbc.txt} | 0 ...ecdc21febfa2d.txt => e160bbe65fc37bcd.txt} | 0 ...19aa9e8f6951e.txt => e1db63f604b55e53.txt} | 0 ...c971159a9735d.txt => e2e513778c4c6c4f.txt} | 0 ...e0e41b02093a3.txt => e321f5d691b52e57.txt} | 0 ...281dd2f2e56c3.txt => e3a1df6b2bd53059.txt} | 0 ...0f6bed7a29f7c.txt => e3dd9c2915855555.txt} | 0 ...ff3c1bc3ca41c.txt => e41ceec6c0cda082.txt} | 0 ...4b6ca536dc4d2.txt => e448201e6af0cd65.txt} | 0 ...a8a8788cc39fc.txt => e44deaae3b3d699a.txt} | 0 ...4221321612bf1.txt => e599d37b78101a20.txt} | 0 ...2c96b1e76edae.txt => e6328cf6a3bf7297.txt} | 0 ...f2ac65e2625af.txt => e7393a784e166457.txt} | 0 ...ad2661eb07ca9.txt => e7750817bf2ce3d3.txt} | 0 ...bd852e88dda4bd.txt => e7e4c2d208b9b87.txt} | 0 ...05ef5b3f740d5.txt => e806fd65a1519daa.txt} | 0 ...a10a249542315.txt => e89f9d3c4680bc47.txt} | 0 ...a27b454b36563d.txt => e9b85a28a1d1502.txt} | 0 ...3f41b6f879f22.txt => eaa46cbb4e98fc76.txt} | 0 ...58154c309059a.txt => ed14694d3d785456.txt} | 0 ...9d47ecb32ff1a.txt => ed71ca1a830493f6.txt} | 0 ...61efa7e547869.txt => eea11ddd2a3b1d10.txt} | 0 ...644d369f719b5.txt => ef12aa7c4aaaeed2.txt} | 0 ...51aca385250e4.txt => ef14b2090647c37e.txt} | 0 ...f82a8bca3f91b.txt => ef8a05f468c4eca0.txt} | 0 ...b686f33957e9f.txt => ef954a973a3165a7.txt} | 0 ...b257bac252f0f.txt => efae8b9f43d09441.txt} | 0 ...718f24c29d8b6.txt => f0a043619d2b0689.txt} | 0 ...1f85fc1c9de89.txt => f180498d197d8df1.txt} | 0 ...9b0e2f7ac3471.txt => f1a162618bd1b29d.txt} | 0 ...e236067b41f3e.txt => f209dfd0dcd30d55.txt} | 0 ...3b26a6d68bf5b.txt => f24a53f1fea24b32.txt} | 0 ...90fa760e8d420.txt => f24a9f86ff4ef095.txt} | 0 ...52b4b1fe49529.txt => f27833c43953c1b1.txt} | 0 ...1c8cfab53b972.txt => f329250c4d2cb198.txt} | 0 ...bafa9b89cd763.txt => f375c406aca5ef66.txt} | 0 ...b96625b1e26db.txt => f3f8f8256722f1a9.txt} | 0 ...d861d218b6b53.txt => f428986b0baf88be.txt} | 0 ...7e0fe4fd38ce3.txt => f509afa4d498e7c1.txt} | 0 ...2d3b8134952ea.txt => f50d22d7c09cd383.txt} | 0 ...69d91518c273c.txt => f5a2b8e600c203d1.txt} | 0 ...d17876f4516cf.txt => f5ae4dee965d4aad.txt} | 0 ...563094f59ca6b.txt => f5c031a187e70f58.txt} | 0 ...4c7e69e73ca20.txt => f66e1341a4df20a3.txt} | 0 ...1a9d92019cea7.txt => f6ed689bd033eb8a.txt} | 0 ...91f89a689bba4.txt => f8b59f79bb13d8ea.txt} | 0 ...b6f7d6cd87570.txt => fab77c156ff5bb2b.txt} | 0 ...b012145f3c31e.txt => fac594686b0a84bd.txt} | 0 ...745fd985bd7ab.txt => fae7f8901012b2cd.txt} | 0 ...ce2a23080a57e.txt => fc0a9047ac128608.txt} | 0 ...3f5d1bde5e090.txt => fdbdb95799e89350.txt} | 0 ...e53ff5946a92d.txt => fe536534de68582a.txt} | 0 ...f142dc436d37a.txt => ff15e181fd0e6388.txt} | 0 ...8097df5e78e9a.txt => ff2bf17d38e7cc3b.txt} | 0 ...ab7427cab55e0.txt => ff867546b68da848.txt} | 0 ...ffa484c49e1de.txt => ffe9d790c546ddb7.txt} | 0 allure-report/data/behaviors.csv | 266 +-- allure-report/data/behaviors.json | 2 +- allure-report/data/packages.json | 2 +- allure-report/data/suites.csv | 2092 +++++++++-------- allure-report/data/suites.json | 2 +- ...a2f029479df.json => 100aeca8c0207022.json} | 2 +- ...3ddc83b1454.json => 10105e91d30d0887.json} | 2 +- ...4ba42279f71.json => 102a91ff9d2e2c1f.json} | 2 +- ...7eab2e0be6d.json => 108dd2ab8a90859d.json} | 2 +- .../data/test-cases/11fa683d801b6c42.json | 1 + ...8f31ff35d6c.json => 12432569c8b8923f.json} | 2 +- .../data/test-cases/1265911f14bcd919.json | 1 + .../data/test-cases/12688af3a6e6b4d.json | 1 + ...4367cfcafa4.json => 12ac45051c49f01a.json} | 2 +- .../data/test-cases/12f0442ef33f054e.json | 1 + ...2695affabdf.json => 13ca3a7cd8b0e3af.json} | 2 +- .../data/test-cases/15008ede7bd87a18.json | 1 - ...98b55fb5e6b.json => 1506cf302ecd21f1.json} | 2 +- .../data/test-cases/1532fae746d0bb3a.json | 1 + .../data/test-cases/158f20a061140f84.json | 1 + ...533c6c0fafa.json => 15dbab6d625f40d3.json} | 2 +- .../data/test-cases/15f47b991f284575.json | 1 + .../data/test-cases/161e5fcc0f247.json | 1 + ...c6f9f4777c4.json => 167f34fe4187417a.json} | 2 +- ...815cad01bd2.json => 16a9ca9919e5cef5.json} | 2 +- ...777e030dbb5.json => 16f7f5e029216efb.json} | 2 +- .../data/test-cases/1700dd3f253e8636.json | 1 + .../data/test-cases/17f807e7e2cad355.json | 1 - .../data/test-cases/191f183f3ba0c8ea.json | 1 + .../data/test-cases/1938e37bf1525466.json | 1 + .../data/test-cases/196d34645221ebb4.json | 1 + .../data/test-cases/19b258c1195772c5.json | 1 + ...4f0ee4e397d.json => 1a1c24c0cb125454.json} | 2 +- ...91028146e80.json => 1a8ee4991fa5fcbc.json} | 2 +- .../data/test-cases/1aaf298f74019608.json | 1 + .../data/test-cases/1b6b658aae9aa73c.json | 1 + .../data/test-cases/1baceb9fc9699f7.json | 1 + ...eaa8c15ec47.json => 1bdb6e0764902ab4.json} | 2 +- ...4fd11e05b10.json => 1bef76bb610cc3bd.json} | 2 +- ...a9a417efe48.json => 1bf2db2d5f0c7414.json} | 2 +- .../data/test-cases/1c0de6c68e45d781.json | 1 - .../data/test-cases/1c59e45321407518.json | 1 + .../data/test-cases/1c8c3b6600a20e75.json | 1 + ...62febd2f997.json => 1ca9562da84c64b4.json} | 2 +- ...9922cc04140.json => 1cf942af51db20a3.json} | 2 +- .../data/test-cases/1d2104b5fa1d29b.json | 1 + .../data/test-cases/1da47ab927a8de42.json | 1 + .../data/test-cases/1e52950a202e2f6f.json | 1 - ...4731241a976.json => 1f14a6ccebe34b08.json} | 2 +- ...2a05502070f.json => 20ae87fc51fb9338.json} | 2 +- .../data/test-cases/21f08ae936e1de27.json | 1 + ...da60b67ea96.json => 21f553aee2e150e3.json} | 2 +- .../data/test-cases/239a317b6e090fd8.json | 1 + ...50be3f30fe6.json => 23e61e29448b9218.json} | 2 +- .../data/test-cases/256a10c9792b808f.json | 1 + ...0d049b16d1d.json => 25a09c2c9e3c88b1.json} | 2 +- .../data/test-cases/25fd6f6c5cfe2b58.json | 1 + .../data/test-cases/2655a1e6934b1850.json | 1 + .../data/test-cases/26764a4bab46b2bf.json | 1 + .../data/test-cases/26cf86ca9eda4b5.json | 1 - ...614a08f7813.json => 26f23a936b51b328.json} | 2 +- ...3395b112a8f.json => 27b26e7a6523571a.json} | 2 +- .../data/test-cases/27d124696efa8c6c.json | 1 + .../data/test-cases/27f5e11d20d2d96c.json | 1 + .../data/test-cases/284ee1b80abfdb89.json | 1 + ...ab4f2692ae4.json => 286a2c6d22a3ea0b.json} | 2 +- .../data/test-cases/28c03a6c5cc24cef.json | 1 + .../data/test-cases/2951c359ba3fd421.json | 1 + ...1456ada0752.json => 2980fd5af6447b30.json} | 2 +- .../data/test-cases/2aa3a63b6fff605a.json | 1 - .../data/test-cases/2b38fe6b8a5a46.json | 1 - ...ba96aea3cfc.json => 2b5bdabfec79d6cf.json} | 2 +- ...c82a096ec09.json => 2b5d1a28c2e7859f.json} | 2 +- .../data/test-cases/2b76b55d8c8f82d1.json | 1 + .../data/test-cases/2b89947e3a3ec46d.json | 1 + .../data/test-cases/2b9309fd398214a5.json | 1 - .../data/test-cases/2b98fb3b88f75199.json | 1 + .../data/test-cases/2baefc3521a1da2a.json | 1 + .../data/test-cases/2bfddef765c09569.json | 1 + .../data/test-cases/2c6c8c712bf1892f.json | 1 + .../data/test-cases/2c78d4954ac14f9e.json | 1 - .../data/test-cases/2cc2dcb2d1d8eb43.json | 1 + .../data/test-cases/2ce701a458e1cd31.json | 1 + .../data/test-cases/2d25cb87282ab722.json | 1 - ...ff7d7139e20.json => 2db5e1fafcf7f4e1.json} | 2 +- ...90941a6877a.json => 2dc119e05306bc09.json} | 2 +- ...4cae9834334.json => 2dcd793cb9c1cce4.json} | 2 +- .../data/test-cases/2de3f7cf44554fd8.json | 1 + .../data/test-cases/2e46c970e553e301.json | 1 + ...341753d9526.json => 2e9a9a4090c00445.json} | 2 +- ...154a5a83d80.json => 2f407878af91b1de.json} | 2 +- ...2fc4806377c.json => 2f4ba657dc51e0d2.json} | 2 +- ...9201b6a1ce3.json => 2f4dd2b3858b1ec4.json} | 2 +- ...a055dcbe26a.json => 2f520e29faf9fa03.json} | 2 +- ...71493ba28b4.json => 30218f5e2dbf6894.json} | 2 +- ...845218dd6ae.json => 302b8c55161cc361.json} | 2 +- ...ae67bc18ba0.json => 307a8cec4e791e32.json} | 2 +- ...3697aa0c71f.json => 30b1174850b5a822.json} | 2 +- ...f09a84d8337.json => 31050b40d7651adc.json} | 2 +- ...b3daff300ae.json => 32703c37c2f9cfbd.json} | 2 +- ...cdf4d1895f5.json => 3287e9af1a22ed8b.json} | 2 +- ...da7b8a1b004.json => 32b8a7a180fb722f.json} | 2 +- .../data/test-cases/332b728d7cfdedcf.json | 1 + ...90416e7aa52.json => 33a4a469899e9868.json} | 2 +- .../data/test-cases/33a7277db5231ef9.json | 1 + .../data/test-cases/33b81b348332f41f.json | 1 - ...84ecb430495.json => 33bc4a62afa9ed1a.json} | 2 +- .../data/test-cases/33e90a465d3b6e95.json | 1 + ...495e6dcba7e.json => 33fff97900a7d8bc.json} | 2 +- ...60cc376f686.json => 342dee44f5f15fde.json} | 2 +- .../data/test-cases/345a3bae73357330.json | 1 + ...a461bbe2313.json => 34783e6754d286ec.json} | 2 +- .../data/test-cases/34a84f898de954b5.json | 1 + .../data/test-cases/3529b67f8df1184b.json | 1 + ...876690035f17.json => 35836d979e37575.json} | 2 +- .../data/test-cases/35f08e300f5635d6.json | 1 + .../data/test-cases/36685d778f756fae.json | 1 + .../data/test-cases/368118acc0dadb7d.json | 1 + .../data/test-cases/369d691aa58bf89d.json | 1 - ...d34a0cdd5eb.json => 36b60db7bef82294.json} | 2 +- .../data/test-cases/36b7cb5a27235272.json | 1 + .../data/test-cases/371c743cf6f64f1d.json | 1 + .../data/test-cases/37b95a78feb35857.json | 1 - ...bd591902299.json => 37f24af32c057862.json} | 2 +- .../data/test-cases/38365b0f6f350ca5.json | 1 + ...65c790464aa.json => 38b436d46d6537ee.json} | 2 +- ...4f538ea8ee6.json => 39376204dc517df6.json} | 2 +- ...a7b767774fa.json => 39a19c10cf88efee.json} | 2 +- ...569ddf3e366.json => 3a0034b3910c9f0c.json} | 2 +- .../data/test-cases/3a2392b112899a67.json | 1 - ...a6343f5272c.json => 3aa67525242f5614.json} | 2 +- .../data/test-cases/3ae9a46b9a1e7c40.json | 1 + .../data/test-cases/3b395c1683e127a4.json | 1 + ...409f76377e7.json => 3b580876a88f5382.json} | 2 +- .../data/test-cases/3b89778e0f9a0b66.json | 1 + ...ccb4e1aa824.json => 3c0afff932465669.json} | 2 +- .../data/test-cases/3c17e0f5363e3016.json | 1 + .../data/test-cases/3c3a8d947ad77b59.json | 1 + ...d2341c6b899.json => 3c944fe792fcd179.json} | 2 +- ...0a5ea1aa072.json => 3cb4765f4f4fe8e7.json} | 2 +- ...db34190da47.json => 3cd6da35a1920265.json} | 2 +- ...77ec9af3c98.json => 3d13030ecd2583e8.json} | 2 +- .../data/test-cases/3d4f8cb2de087cf.json | 1 + ...5a0ada95681.json => 3d6e5f0961d8c06a.json} | 2 +- .../data/test-cases/3e354a7b4ef8aa9f.json | 1 - .../data/test-cases/3e68653192929d9b.json | 1 + .../data/test-cases/3e8741eae0b44214.json | 1 + ...a2946d66b00.json => 3ec407d8e8742f0d.json} | 2 +- ...f5b5bd4ac62.json => 3ee1470ea7ce07a6.json} | 2 +- .../data/test-cases/3eea5577d98c581f.json | 1 + ...6e95d4ded07.json => 3f2abb7dc9376332.json} | 2 +- ...c5f58027b49.json => 3f94de18ab2e95fb.json} | 2 +- ...912963969d7.json => 3fd800b8d3602698.json} | 2 +- .../data/test-cases/3ffa72675847f113.json | 1 + .../data/test-cases/4045abc0bf075d90.json | 1 + .../data/test-cases/405cf642fa0cf7c1.json | 1 + ...c353ac4ade9.json => 4073719ea3c0e8fe.json} | 2 +- .../data/test-cases/40819c186d07d3de.json | 1 + ...1de0e8221e9.json => 409a2a4f316497c6.json} | 2 +- .../data/test-cases/40c938f8f83f34f7.json | 1 + .../data/test-cases/413fd3063d3e7dc4.json | 1 + ...e24306c53ac.json => 416790ca79634ed0.json} | 2 +- .../data/test-cases/419686fbcf063822.json | 1 + .../data/test-cases/41efd0d786aed73.json | 1 - .../data/test-cases/42383b817b641e4e.json | 1 - .../data/test-cases/428efcfcd43d2531.json | 1 + .../data/test-cases/42bb8c96d4cb1bcf.json | 1 - .../data/test-cases/43e7aaf3ed9f3ed0.json | 1 + ...c0ba53ec6a9.json => 4433323b946a1c32.json} | 2 +- ...92ae3f035ea.json => 445f2e59cb6a4191.json} | 2 +- .../data/test-cases/44c1e35d7a7b2adb.json | 1 + ...c8615b9e985.json => 4544ac5de6415953.json} | 2 +- ...2e79441187e.json => 45f16c4708137d2d.json} | 2 +- .../data/test-cases/461527a27e50c04a.json | 1 + ...f93b3d2f297.json => 462780a7368c9ffd.json} | 2 +- ...95bc85470d2.json => 47068bee5b06a234.json} | 2 +- .../data/test-cases/4750955362b24610.json | 1 + ...a6e8f8b1259.json => 47bce28013711283.json} | 2 +- .../data/test-cases/47cc31f6ebf12c13.json | 1 + ...622d29729c4.json => 48abcc67292a5aa2.json} | 2 +- ...36654622313.json => 48ff8cbb530a1868.json} | 2 +- ...26541a05e65.json => 49355004a4136993.json} | 2 +- .../data/test-cases/4942ac4be65ef1b0.json | 1 + ...c17e95fe424.json => 4961a0c52d810ec1.json} | 2 +- ...ab78401e86c.json => 49fb68289fb078f8.json} | 2 +- .../data/test-cases/4a35a10fb92b5fdb.json | 1 + .../data/test-cases/4a386a153d4cde6.json | 1 + ...235bc27ccba.json => 4aa405db56695158.json} | 2 +- .../data/test-cases/4aa537b5c88883a7.json | 1 + ...2a52edb0749.json => 4ad4524b2ee92967.json} | 2 +- ...4d534df9c91.json => 4b58bd62b05a8814.json} | 2 +- .../data/test-cases/4b8219eb37520d2d.json | 1 + .../data/test-cases/4b8d012f19a4e1e6.json | 1 + ...aae7d602336.json => 4bb422e9ca9901c8.json} | 2 +- .../data/test-cases/4c77d97bc41048ff.json | 1 + ...15dae27ed81.json => 4c7e13d0f61cf99a.json} | 2 +- ...b1c9018ad85.json => 4dc4de0a74fe7f66.json} | 2 +- ...f15b08c0b4f.json => 4df34ce2718b817c.json} | 2 +- ...ba5bad9e7e9.json => 4e32d03efab2941f.json} | 2 +- ...000a4adcd25.json => 4ea31191e1f5ab3b.json} | 2 +- .../data/test-cases/4ecd1e835300dbcf.json | 1 - ...1d8eab469bd.json => 4f0296b5891c7763.json} | 2 +- .../data/test-cases/4f1172fa5620cc18.json | 1 + .../data/test-cases/4f85a4b1698202d.json | 1 - .../data/test-cases/4fb2a019463cdbdf.json | 1 - ...56200f13690.json => 500ac2fecd2b527c.json} | 2 +- .../data/test-cases/504baf7c4d256536.json | 1 - ...681db1186b9.json => 5187a55d5b7bcbbd.json} | 2 +- ...7a269c3ca06.json => 518cb319be0d6f5c.json} | 2 +- .../data/test-cases/51971bf7ad109ed2.json | 1 - ...81d75a0b4df.json => 51c4ad89c4a768de.json} | 2 +- ...c51ed88331c.json => 51e0b16785f0d461.json} | 2 +- .../data/test-cases/52715db4a1ce5955.json | 1 - ...bd44034ff08.json => 5319ceacad5a43bc.json} | 2 +- .../data/test-cases/5320007ca0191a21.json | 1 - .../data/test-cases/5321a1bb93b59f1e.json | 1 - .../data/test-cases/533bf937be1aa466.json | 1 + .../data/test-cases/536deebe5c2f9229.json | 1 - ...6c92cf89a63.json => 53ac096f64d86d36.json} | 2 +- ...81a068f762f.json => 54043a9fba80789b.json} | 2 +- .../data/test-cases/54bb63fb3736b8ae.json | 1 + ...1e55728ed74.json => 54e4671ce8499dcf.json} | 2 +- ...ec46de8d878.json => 5519a1e9b61f2ca3.json} | 2 +- ...af602cc8f99.json => 552742d77daecee9.json} | 2 +- ...c67efee5295.json => 55e4a84277d15d0d.json} | 2 +- ...46de805754f.json => 566a56003ac2e703.json} | 2 +- .../data/test-cases/56ad7c473898c46d.json | 1 + ...9a8ecf19524.json => 56ae9013352b7649.json} | 2 +- .../data/test-cases/56cce31bdf350ac7.json | 1 + .../data/test-cases/56da494ae1701253.json | 1 + .../data/test-cases/571176bf000b455b.json | 1 + .../data/test-cases/5740cd94d023a2bf.json | 1 - ...8563a89229a.json => 5795c1991578aaeb.json} | 2 +- ...7459a6b99ff.json => 57d69ca6b172040d.json} | 2 +- ...b1fb3683308.json => 57e5e5f4d9d91cf6.json} | 2 +- ...9059cce92a0.json => 580b983b7062983c.json} | 2 +- ...49ab5d5d5c7.json => 58e0261647deccd2.json} | 2 +- ...5eba79884f4.json => 59120ba12cafb7e8.json} | 2 +- .../data/test-cases/593778a5ba99d447.json | 1 + ...b2693478689.json => 5961f436380e11d2.json} | 2 +- ...60e089cb7c8.json => 5998f9acb6d6dab8.json} | 2 +- .../data/test-cases/59b1922c33f3ac65.json | 1 + ...51991be7f33.json => 59e6c1fe5b50c363.json} | 2 +- .../data/test-cases/59ff5157ed7e9ae.json | 1 - .../data/test-cases/5a2ae93193e5280a.json | 1 + ...50ddd5cff83.json => 5a497340f38e6588.json} | 2 +- .../data/test-cases/5af3f258cf327b2a.json | 1 + ...e2de4457676.json => 5b153d545c48d264.json} | 2 +- .../data/test-cases/5b15d7c039eaff13.json | 1 + ...da4d9665eda.json => 5b3fc84157197066.json} | 2 +- ...f6ff390f682.json => 5b88f232b1f58c27.json} | 2 +- ...c63ffdd840d.json => 5be4a10a1a64fd59.json} | 2 +- .../data/test-cases/5c0b01ada3a3f14e.json | 1 + ...34377d791a9.json => 5c78d3bc5a71109a.json} | 2 +- .../data/test-cases/5cd4eeb8a4b79d6b.json | 1 + .../data/test-cases/5ce6881896e2614d.json | 1 + ...08258f0151f.json => 5d1981370251e5ca.json} | 2 +- .../data/test-cases/5d373bcba925975c.json | 1 + .../data/test-cases/5d8c14adba840438.json | 1 + ...4a4fcfadf69.json => 5ea1e8d078b774a7.json} | 2 +- .../data/test-cases/5ea5418b10cdf416.json | 1 + .../data/test-cases/5eca272b3b393557.json | 1 + ...29dae6eb3af.json => 5f2df3f2c9b86d77.json} | 2 +- .../data/test-cases/5f6f3bc16b3488d6.json | 1 + .../data/test-cases/5fabad9204d0747c.json | 1 + ...c9e8017f83c.json => 5fd184f18d9496f9.json} | 2 +- ...f6b3780b454.json => 5fda510dc29832db.json} | 2 +- .../data/test-cases/5ffc43ce0a9f46c9.json | 1 + .../data/test-cases/60180807c3815756.json | 1 + .../data/test-cases/6022cdc8b5145e28.json | 1 - ...df6913445c8.json => 602b6b1c829f1e7f.json} | 2 +- .../data/test-cases/6030df3a53146090.json | 1 + .../data/test-cases/6076e8e1aaaa11ab.json | 1 + .../data/test-cases/607f84fe70696eb5.json | 1 + ...499a8a042ca.json => 6113acbf67a69117.json} | 2 +- .../data/test-cases/614133ca9c69e105.json | 1 + ...be5e1151932.json => 614d8ec123787b56.json} | 2 +- ...11cc42c205e.json => 6207ccc30173aa77.json} | 2 +- .../data/test-cases/62141a9b45e036f9.json | 1 + ...753656b93ab.json => 62507dec220dfd02.json} | 2 +- .../data/test-cases/627da61e5891aa44.json | 1 - .../data/test-cases/62e01ffb20b661b5.json | 1 + .../data/test-cases/62ef482e2cb3493b.json | 1 + ...62453fffbc9.json => 6309fbba516976ae.json} | 2 +- ...edb1f0ef3c6.json => 6373ea673c2617a2.json} | 2 +- ...11c93ffbcb0.json => 6399c372aa4005f1.json} | 2 +- ...43aeb64d363.json => 63e9aeb63ef06083.json} | 2 +- .../data/test-cases/6421e8610575915.json | 1 + .../data/test-cases/648462a68a83b780.json | 1 + .../data/test-cases/649728966aa92b06.json | 1 + ...93187ac8b27.json => 64c2df72a296b62e.json} | 2 +- ...ae959bb9619.json => 64cdb3b918aa694e.json} | 2 +- ...e1ba1a4852f.json => 64d00badde981bd3.json} | 2 +- .../data/test-cases/656eaa4febf44ace.json | 1 + ...8ca38674b14.json => 65a370055ee8e2b9.json} | 2 +- ...df1737798b8.json => 65cad3353d8c115b.json} | 2 +- .../data/test-cases/65d5a47944859245.json | 1 + .../data/test-cases/660684096c18d05d.json | 1 + .../data/test-cases/6660f839d8534ee2.json | 1 + .../data/test-cases/67a957cc2815c6ee.json | 1 + ...291a50321ec.json => 67f932ff555edbd0.json} | 2 +- ...10535ccc997.json => 684d4d6fbb32213a.json} | 2 +- ...73293e16236.json => 68ae9688c7c99a04.json} | 2 +- .../data/test-cases/68c4a39d8a6017b.json | 1 - ...e992b0ca53e.json => 68db53b8169ad957.json} | 2 +- ...5c5551a6420.json => 691701add6daaf89.json} | 2 +- ...6c568bdf675.json => 693d19da33d622de.json} | 2 +- .../data/test-cases/698c99dcac4b0d93.json | 1 + .../data/test-cases/69f65011f131e2b6.json | 1 - .../data/test-cases/6a1d96979e635e7f.json | 1 - ...f9ff640a644.json => 6a59d6609523c5a8.json} | 2 +- .../data/test-cases/6c70ddf45fea2887.json | 1 + .../data/test-cases/6ca78efd90ffa643.json | 1 + .../data/test-cases/6d7f7d9659ba7dd5.json | 1 + .../data/test-cases/6e3ab906ce5621b5.json | 1 + .../data/test-cases/6e3ce129a9f8f588.json | 1 + ...1d40af1e905.json => 6f0b2af516b0f755.json} | 2 +- ...449b7b13451.json => 6fbd93f1e3abe9a5.json} | 2 +- ...b03733442e8.json => 6feb6674f3a0e85e.json} | 2 +- .../data/test-cases/70085274c959a3cb.json | 1 - ...858aaa81503.json => 702c9f7aebde64af.json} | 2 +- .../data/test-cases/704aacac2db91585.json | 1 - .../data/test-cases/7087926d4a83e9d4.json | 1 + .../data/test-cases/70963d87150b1b7f.json | 1 + .../data/test-cases/70eff3ae24ccc67a.json | 1 + .../data/test-cases/711928de75b599ba.json | 1 + ...e9fda19581e.json => 711e095503a0cf45.json} | 2 +- ...131d70863d6.json => 7131237025069abe.json} | 2 +- .../data/test-cases/71e40623077306da.json | 1 + ...b46d1e381a9.json => 72a7c9402c254937.json} | 2 +- ...1a7df0f4a6c.json => 73100341c811e8de.json} | 2 +- ...03fab564c60.json => 7362d176d35d3813.json} | 2 +- ...b76165521a0.json => 73a56012085cbb67.json} | 2 +- ...0da6e08bd69.json => 73db1f36a5925004.json} | 2 +- .../data/test-cases/73f30fbb9798a5d5.json | 1 + .../data/test-cases/749e2bcfe9e98a99.json | 1 + .../data/test-cases/74b0969e7db4effb.json | 1 + ...9d6e8a376fb.json => 74c746ac3dc42135.json} | 2 +- .../data/test-cases/751027d0ac0cc021.json | 1 + .../data/test-cases/7560669431ea4aa8.json | 1 + ...cd2d97ddcd8.json => 75ba956cc9ee13f9.json} | 2 +- ...ea0ccf3907a.json => 76dad62f743b3603.json} | 2 +- ...297ed368b03.json => 7718694e0e976912.json} | 2 +- .../data/test-cases/772347d4d5d65952.json | 1 + ...9d19b46a5d2.json => 772c9d6fdd465a8a.json} | 2 +- .../data/test-cases/777edc280c74020d.json | 1 + ...34450b934d7.json => 77e868a9cd944330.json} | 2 +- .../data/test-cases/784b6f629ce5c547.json | 1 + ...9c331ab824b.json => 7a3ebc7dbd092b26.json} | 2 +- ...b4d0a92e5c8.json => 7b13f1197b1367b6.json} | 2 +- ...00dafcc1f6d.json => 7be232a1c65ba711.json} | 2 +- ...bb647c4d6ba.json => 7c9ea3ba0070bf05.json} | 2 +- .../data/test-cases/7cc0844ab5ecf216.json | 1 + .../data/test-cases/7d6c6bb6b47e11d4.json | 1 + ...a330525d2f4.json => 7d905be84b5c0b77.json} | 2 +- ...32b0213855d.json => 7da87d8449dbfb8b.json} | 2 +- .../data/test-cases/7e357cecc68f801.json | 1 + ...e3fb0e84d4d.json => 7e5150fbd4a33237.json} | 2 +- .../data/test-cases/7e997a5018ff0710.json | 1 + ...30d724786c4.json => 80598dcd2309aaf9.json} | 2 +- .../data/test-cases/80dd204b4961834.json | 1 - ...82c38b97fcc.json => 813aa9dc885c2882.json} | 2 +- ...0598c901af4.json => 815ff7102e2d18bc.json} | 2 +- ...16f79d22a0d.json => 8173581ebbb7cc32.json} | 2 +- .../data/test-cases/81c03b59fa01f666.json | 1 + .../data/test-cases/8215947106021b54.json | 1 + ...2a8e3675c67.json => 827104e07f2ca2d0.json} | 2 +- ...83dbb2d66b5.json => 82a681e3f0c8f54d.json} | 2 +- .../data/test-cases/82a8f1ffa445d40.json | 1 + ...ba53074497b.json => 837e4ce24ac45efb.json} | 2 +- ...ced061d8858.json => 83b7eb2988572ef6.json} | 2 +- ...21679b0cc06.json => 83c423646ff2d9ba.json} | 2 +- ...7b1ea4eb479.json => 843ad9a1e8e9ca65.json} | 2 +- ...a5df6e26162.json => 844543e89f44e3d5.json} | 2 +- .../data/test-cases/8451096f3488e82.json | 1 - .../data/test-cases/84aa3b23910872ae.json | 1 - ...c4669002681.json => 84d177b8ff2c367d.json} | 2 +- ...cbe5ee38417.json => 85284c487c263073.json} | 2 +- ...b6f236110ca.json => 85b55023f525bac2.json} | 2 +- ...501c1152713.json => 85df8de56a96ab7c.json} | 2 +- ...bcd16ab2119.json => 863d9e582b6f3de4.json} | 2 +- .../data/test-cases/8655885cb5db7a58.json | 1 - ...80783d347db.json => 86b489ae6b8c1d23.json} | 2 +- .../data/test-cases/874b39a75ad8fa3b.json | 1 - .../data/test-cases/877a76cbb202d7b3.json | 1 + ...33f29820ca9.json => 87c07388b10e55d5.json} | 2 +- ...0a97652b0f6.json => 87d2fa2dfc5fe491.json} | 2 +- .../data/test-cases/87dc5713a007f1d7.json | 1 + .../data/test-cases/8804093a9c3b17d.json | 1 + ...accad49b468.json => 883f1439af050615.json} | 2 +- ...92343bb9b12.json => 88a73a4735cff92e.json} | 2 +- ...05cb2bf8e17.json => 89027a401f5af485.json} | 2 +- .../data/test-cases/891203fa0698ca9.json | 1 + .../data/test-cases/893dcbf3da59eb02.json | 1 + .../data/test-cases/8949506fce676285.json | 1 + .../data/test-cases/898b5d5677e24adf.json | 1 + ...1a690fcc058.json => 89c602359c6f109b.json} | 2 +- ...bfae3cd34f4.json => 8a9b52813983814b.json} | 2 +- .../data/test-cases/8b3214317e10e87f.json | 1 + ...c294a496f4a.json => 8b80aa0a92a1ed02.json} | 2 +- .../data/test-cases/8beabd2469a668.json | 1 + ...123d5cf58af.json => 8c6df3dc2deaaefa.json} | 2 +- ...3a4d2a7afb5.json => 8c72192846448826.json} | 2 +- ...a0bf1630c0a.json => 8c7db5518444ac71.json} | 2 +- .../data/test-cases/8c8d43e9d38910da.json | 1 + ...681bbbff0c9.json => 8cdb3386cf094e1f.json} | 2 +- ...b82465b0240.json => 8cf44bb18023836b.json} | 2 +- ...a22e808b4eb.json => 8d5ed16bbc896a22.json} | 2 +- .../data/test-cases/8da01589d3299948.json | 1 + ...c05562d2f01.json => 8dcfddf689f44d1d.json} | 2 +- .../data/test-cases/8dde6031964dc28f.json | 1 + ...0ca3330737a.json => 8dea57e5544d4774.json} | 2 +- ...7d9161dd5e2.json => 8e17b24d548befe2.json} | 2 +- .../data/test-cases/8e1e8d12e75298b.json | 1 + ...f3cbdd8ad78.json => 8e1e999ab6569b87.json} | 2 +- ...2b7e430194f.json => 8e7bc3e134c68e92.json} | 2 +- .../data/test-cases/8ea6e5a2b5515469.json | 1 + ...1edf8ebf197.json => 8efea6185ce9f545.json} | 2 +- ...f61005bb0bc.json => 8f3fc2a4deaebd0d.json} | 2 +- .../data/test-cases/900a2cbb7155295.json | 1 + ...cc4276ca55b.json => 90184d6eca761182.json} | 2 +- ...9ba1beb3118.json => 90a10a824ed5b372.json} | 2 +- ...042d182d7bb.json => 90c86a448294d535.json} | 2 +- .../data/test-cases/90d2f619b6b55a93.json | 1 + ...52618c6aa2b.json => 910c497042fbb9d7.json} | 2 +- .../data/test-cases/91c9b008755c7351.json | 1 + ...1d4cfeae814.json => 920950efadf9f044.json} | 2 +- ...1cf7a3c2781.json => 924a52587e7b2c82.json} | 2 +- .../data/test-cases/9267ea7150c527ef.json | 1 + .../data/test-cases/92a7ecb29f4704b1.json | 1 + ...dfd068e31be.json => 9326ca5c3b3bcaf3.json} | 2 +- ...c4b14885f68.json => 933ecb6fe52a564f.json} | 2 +- ...e3063a87441.json => 9348c64cc78f5d13.json} | 2 +- ...cc490d83b65.json => 937c9b1e748aadb0.json} | 2 +- .../data/test-cases/93ceeb95a47fabbf.json | 1 + .../data/test-cases/9451201a4cae53ad.json | 1 + ...c06fd165199.json => 945a96aedc88e8fe.json} | 2 +- ...3b580f78123.json => 94af9200e69d147a.json} | 2 +- ...e581ec48813.json => 951576068e42ee36.json} | 2 +- .../data/test-cases/95172229a5a9ad6.json | 1 - .../data/test-cases/9521eb418a2faa99.json | 1 + .../data/test-cases/9525e56c1666fc0f.json | 1 - ...d8a9930a85d.json => 95521fe2b6cd2563.json} | 2 +- ...2381b1441f6.json => 9557455e27a468ef.json} | 2 +- ...c048e8324d3.json => 9585be0acd74f7c1.json} | 2 +- ...c0a3aeae99e.json => 95a29a9545c416cd.json} | 2 +- .../data/test-cases/95ddc175910ea52.json | 1 - .../data/test-cases/95e612b16602c749.json | 1 - .../data/test-cases/964ad50f448ed64d.json | 1 - ...8f640be4431.json => 965a3663c8644328.json} | 2 +- .../data/test-cases/967fef280aa6e796.json | 1 + .../data/test-cases/96df3e350e2ba16f.json | 1 + .../data/test-cases/973452fbe07efc18.json | 1 + ...d0002a5824c.json => 97ad1cd914697b30.json} | 2 +- .../data/test-cases/9800852f4c3c1957.json | 1 + .../data/test-cases/98200e3d5ae32ca.json | 1 - .../data/test-cases/984af3d5d8056be9.json | 1 + .../data/test-cases/98c161ccba9924bd.json | 1 + .../data/test-cases/996ab105867adbc9.json | 1 + ...2d3db0ea08e.json => 997065a61e801d4c.json} | 2 +- ...997ced3859a.json => 99b8e6f5f8a43508.json} | 2 +- ...5b9e515e00d.json => 99ca7a938f9d4989.json} | 2 +- ...0e7d9b1bcd0.json => 9a401d5b28fee66a.json} | 2 +- ...1e078ed42ea.json => 9abe86e868e9efe6.json} | 2 +- ...9260d41a743.json => 9ac6d40036941792.json} | 2 +- ...6d09d0feb9e.json => 9b1bc0b9a480db3e.json} | 2 +- .../data/test-cases/9b5127c91b9deeb6.json | 1 + ...4f0b179053d.json => 9b613507776a0871.json} | 2 +- .../data/test-cases/9c241cc9403723af.json | 1 + ...9fee1009391.json => 9c2fc5bac7417dd0.json} | 2 +- ...493f51c1d67.json => 9c43e0c7813423da.json} | 2 +- .../data/test-cases/9c5c32029e742eac.json | 1 + ...afc05dcb3e8.json => 9cbf1053b771d679.json} | 2 +- ...bd0495f0e70.json => 9d10f71bfad2e1ef.json} | 2 +- ...69f11b7f542.json => 9dc85df7fba3a78e.json} | 2 +- .../data/test-cases/9dd5714486b51753.json | 1 + ...897c57d974e.json => 9e6f93dfe778ff9a.json} | 2 +- ...1be3722688b.json => 9ee9ff331756b11e.json} | 2 +- .../data/test-cases/9f02852e3aa10b6d.json | 1 + ...3dd42027b29.json => 9f8b999462605375.json} | 2 +- .../data/test-cases/9f9422c1f71252b6.json | 1 + ...287fd39d5a9.json => 9fa9266ff3a1c464.json} | 2 +- ...74df14be54a.json => a076808e43574371.json} | 2 +- ...dea3443aca5.json => a0d455d6bf21528b.json} | 2 +- .../data/test-cases/a10876da94fb2b4f.json | 1 + .../data/test-cases/a1a7aeb13172d1f0.json | 1 + ...5627654b5fc.json => a1b53b199c1c867e.json} | 2 +- .../data/test-cases/a224a931a5567f85.json | 1 + ...c4c71bf788d.json => a258a6f00a3ffda1.json} | 2 +- ...0e28b9f808c.json => a2cc2be21cb9d7cd.json} | 2 +- ...35004a87c6a.json => a3216b951d3fac8b.json} | 2 +- .../data/test-cases/a3370192ce6dd676.json | 1 + .../data/test-cases/a3395496d8bde803.json | 1 + .../data/test-cases/a349732eb44f62b9.json | 1 + ...2dcc2b34bf3.json => a3b2f77071e9a780.json} | 2 +- .../data/test-cases/a405e7d50def0411.json | 1 + .../data/test-cases/a4849e99633e4676.json | 1 + .../data/test-cases/a4b7cb6ba7726224.json | 1 - .../data/test-cases/a4f7c6dc4c7e84.json | 1 - ...e4fa29bb7d4.json => a530698ca5ed066c.json} | 2 +- .../data/test-cases/a57a3497f4402b67.json | 1 + .../data/test-cases/a7008d20e58a9d6a.json | 1 + .../data/test-cases/a76c277b6c0b5940.json | 1 + .../data/test-cases/a770e6ac7d91604a.json | 1 + .../data/test-cases/a77a517a493b3eb2.json | 1 + ...a446dcfc9e3.json => a7a27da7101eb431.json} | 2 +- ...cc2ca8ed714.json => a7d4500da5fb8933.json} | 2 +- ...7d257f882a1.json => a8b77a6618ff7e4c.json} | 2 +- .../data/test-cases/a8ef326c3cb7b77c.json | 1 + .../data/test-cases/aa08a95162404297.json | 1 + .../data/test-cases/aa3ebaa27581f198.json | 1 + ...5357d8d514d.json => ab40fd2a8eefa024.json} | 2 +- .../data/test-cases/ac136a3215f7ad6c.json | 1 + .../data/test-cases/ac379271ec16d5ad.json | 1 + ...5111dc1cc14.json => ac81c5ec86387239.json} | 2 +- .../data/test-cases/ac8683bc2703e398.json | 1 + .../data/test-cases/acdec238a53c10e1.json | 1 + .../data/test-cases/acf49fc01f491be4.json | 1 + ...3acaf7dd027.json => acfebfd078f8e03c.json} | 2 +- ...6aa2f911f40.json => ad8dd1da3b7d646d.json} | 2 +- ...8dd705cab28.json => aeac31a6eff8ced3.json} | 2 +- ...a86bad45fb3.json => af31da4a2f7e0b3c.json} | 2 +- ...62dacbec840.json => af4da168bd187f62.json} | 2 +- .../data/test-cases/af82a0c3b0cef265.json | 1 + ...18aded36c8a.json => b01c60cc4e07480b.json} | 2 +- .../data/test-cases/b03752c3145720e6.json | 1 + ...82d521d00cc.json => b080152571ac4adf.json} | 2 +- ...bc1c1fe7917.json => b169e974f5edace2.json} | 2 +- .../data/test-cases/b1cbd478c753b1e.json | 1 + .../data/test-cases/b1f2cc8e1be032d.json | 1 + .../data/test-cases/b2705032891531e8.json | 1 + .../data/test-cases/b2ea4d6d64dc027a.json | 1 + .../data/test-cases/b3223ce64ed8bee2.json | 1 - ...48ec729ba4c.json => b325ede7f1ceeec3.json} | 2 +- .../data/test-cases/b36380d1077ce20b.json | 1 + ...4d90adb5feb.json => b3c5df850665402e.json} | 2 +- .../data/test-cases/b3db9caa12a5149e.json | 1 + .../data/test-cases/b4706ff9d2a2958c.json | 1 + .../data/test-cases/b48a50dffbb61197.json | 1 - ...9b19a080b91.json => b4abfaf3d77f3f23.json} | 2 +- .../data/test-cases/b5a113fbe50e74ce.json | 1 + .../data/test-cases/b6301a55868859d.json | 1 - .../data/test-cases/b673d7ca3af16ae5.json | 1 + .../data/test-cases/b67813f1cae4659e.json | 1 + ...1d8027fbc46.json => b67b48d7bd01382a.json} | 2 +- .../data/test-cases/b6d0f7b70ff35380.json | 1 + .../data/test-cases/b7243d74fc99fb8b.json | 1 + ...d9b07f441c0.json => b7812824440b717e.json} | 2 +- ...48976f6a694.json => b890a6fea083097f.json} | 2 +- .../data/test-cases/b897401968bf0d8.json | 1 + .../data/test-cases/b8a68af9dbc0f892.json | 1 - ...7794c00f220.json => b921129ad79b857f.json} | 2 +- ...5ab976a748a.json => b982073aac2c9d08.json} | 2 +- ...fc62f8400f4.json => b9ab4feb44c59984.json} | 2 +- .../data/test-cases/b9b6a14fc4bd1dd7.json | 1 + ...ffebf4e47af.json => ba7aa507beaa1547.json} | 2 +- ...044d1767680.json => bc039aea1f276c5c.json} | 2 +- .../data/test-cases/bcc8c6b28fb32dd0.json | 1 + ...590487a20fd.json => bce82edab468d2f2.json} | 2 +- .../data/test-cases/bd11ee5929c6c53a.json | 1 + .../data/test-cases/bd4541daca134967.json | 1 + .../data/test-cases/bd8413842923f1e.json | 1 + ...2b66d91aba7.json => bdddf7ddac3322c3.json} | 2 +- ...d850b813669.json => be34e44ef544dd56.json} | 2 +- .../data/test-cases/be618dffc8aac711.json | 1 + ...93ec920e131.json => be628f1c5b8245e1.json} | 2 +- .../data/test-cases/be8f9e1d393606ac.json | 1 + ...64c0a6197cf.json => bf2c284d4d5bb98c.json} | 2 +- ...57e01267994.json => bf6ae18a8ec3d384.json} | 2 +- ...f552ecb72c4.json => bf7acd85eab5cf37.json} | 2 +- .../data/test-cases/bfc6af42137d4620.json | 1 + ...afe863c97c8.json => c072892b1c739356.json} | 2 +- ...7d0456e1873.json => c0d55ad9fdfb0f8a.json} | 2 +- .../data/test-cases/c0f4e1faa852c595.json | 1 + ...e81621379df.json => c1b76ff1cacf5544.json} | 2 +- .../data/test-cases/c1d9afec6278b1a8.json | 1 - .../data/test-cases/c3d1eec0ca08f2cd.json | 1 + .../data/test-cases/c42292a9c36c46f3.json | 1 + ...20b1ac22e64.json => c4304a318e243c50.json} | 2 +- .../data/test-cases/c4a8605181ed2d7.json | 1 + .../data/test-cases/c4d384465e183d6.json | 1 + .../data/test-cases/c580e79550c46f66.json | 1 + .../data/test-cases/c58cb7ae6e5a9993.json | 1 + ...e53432ea6c2.json => c5ea93b10613ec53.json} | 2 +- ...53038ce1955.json => c5f3069d223f82c6.json} | 2 +- ...9fd5c9ffdad.json => c6923016c0d7805e.json} | 2 +- ...e8ad3288d1b.json => c6eafeb1b2d72c83.json} | 2 +- ...8de2eb00fed.json => c6f52d0b9e8ac3c5.json} | 2 +- ...1b46b10d7ac.json => c74e320818fb9682.json} | 2 +- .../data/test-cases/c77f51e83226296c.json | 1 + ...c2c3c205658.json => c7a63127b0ec26d9.json} | 2 +- .../data/test-cases/c7c4b4c39dca1f7a.json | 1 + .../data/test-cases/c7e963fd1c95dafe.json | 1 + ...4379d845ff7.json => c7eea171ede7ee13.json} | 2 +- ...1ef54591f7f.json => c8870275fadfceea.json} | 2 +- ...82b0eb8a484.json => c898f599f64280c3.json} | 2 +- ...963540c6e75.json => c89e6a91bc0b9e52.json} | 2 +- ...a9bf54f17f3.json => c8c44a676a12b5c6.json} | 2 +- .../data/test-cases/c919701b7942665.json | 1 + ...d3b90762a67.json => c94aec0d920b7f7d.json} | 2 +- ...66642fdbdd2.json => cc1bd3cedb1bfef0.json} | 2 +- .../data/test-cases/cc5bed1d964110c.json | 1 - .../data/test-cases/cd862d92408a60a2.json | 1 - ...d1f852cc3dc.json => cd9da9d797a3c2ab.json} | 2 +- ...723377a98c0.json => cda9164d86dd0b79.json} | 2 +- .../data/test-cases/cdb2fb8959394c65.json | 1 + ...3368b6d5d5e.json => cf437ca3dc1624b1.json} | 2 +- .../data/test-cases/cf71a425c4796a9.json | 1 + .../data/test-cases/cfaf892be75c5d35.json | 1 + .../data/test-cases/d04b40a520c97bdd.json | 1 + .../data/test-cases/d121ae5a75cc69b9.json | 1 + ...4fe3d4f484d.json => d12fb82b623fefb9.json} | 2 +- .../data/test-cases/d1974f16b30f7476.json | 1 + .../data/test-cases/d19efceb39f40f4f.json | 1 + .../data/test-cases/d1a80d9f422182d.json | 1 - .../data/test-cases/d3037fd25424c6f3.json | 1 - .../data/test-cases/d38d4627913b0040.json | 1 + ...493e293e3de.json => d4258a66cc0cec29.json} | 2 +- ...4cd2465a183.json => d42759854937ade9.json} | 2 +- .../data/test-cases/d4a0809a7647965.json | 1 + ...f7729625c40.json => d4af7c6dd9a36bc3.json} | 2 +- ...20a58bdb229.json => d4bd80ae04896a86.json} | 2 +- ...2dea8d8e5c3.json => d4d9b4f519ec1ce3.json} | 2 +- .../data/test-cases/d562abb8385a61c5.json | 1 + ...5234023cbe8.json => d58adc2ec0d31961.json} | 2 +- ...436627ee869.json => d58da60cf24b7660.json} | 2 +- .../data/test-cases/d66079b030735db8.json | 1 + .../data/test-cases/d7d1e3c0f9370311.json | 1 + .../data/test-cases/d7eae685c38fccbb.json | 1 + .../data/test-cases/d820d165ec4b4b72.json | 1 + .../data/test-cases/d9328098007f6ade.json | 1 + ...ea5ac901436.json => d936198953d58b58.json} | 2 +- ...66b9a0500aa.json => d97402e929388a59.json} | 2 +- ...2ee94f4b051.json => d9af06a5366a3631.json} | 2 +- ...537831100fb.json => d9dd09ce35083af7.json} | 2 +- .../data/test-cases/da02dcc2ce3c4d85.json | 1 + ...38a8fa67e7e.json => da6d336020bff47c.json} | 2 +- .../data/test-cases/db6f47361aae7a53.json | 1 + .../data/test-cases/dc1c20798f5a8f0a.json | 1 + ...fd36d904f61.json => dc1f8d6367d3e66e.json} | 2 +- ...7d6f403c655.json => dcee0c4d2268b964.json} | 2 +- .../data/test-cases/dd6fef8ab37d71ba.json | 1 + .../data/test-cases/dd76819b5fd836d3.json | 1 + ...d9b3bcee4ae.json => ddd928ac3a4fb635.json} | 2 +- .../data/test-cases/dde0d2c7fdfdde63.json | 1 + .../data/test-cases/de0aa71757f8badf.json | 1 + ...e9c10c1f5d2.json => dea092a037f048cd.json} | 2 +- ...bdb700f78e3.json => deff2de3f9ed88f5.json} | 2 +- .../data/test-cases/e051944b31d54c14.json | 1 + .../data/test-cases/e08b527d12d4e4df.json | 1 + ...649db0c0ed2.json => e0b6b39a4d4f9bf4.json} | 2 +- .../data/test-cases/e0e034728609b0e2.json | 1 - ...a655c70213f.json => e0f78ca1d7d1823c.json} | 2 +- ...3c32cfd2214.json => e17b710b1ca6cef6.json} | 2 +- ...93abb90de01.json => e186c7a758de768a.json} | 2 +- ...3edd274b2cd.json => e1fe0122d9c0870d.json} | 2 +- ...ae45b96d6a4.json => e2326ee427488be9.json} | 2 +- .../data/test-cases/e330dbdee7dc6874.json | 1 + ...842fdc9b867.json => e378762a5dac9d1e.json} | 2 +- ...ea3b9796931.json => e40b6e0fafdfb7a4.json} | 2 +- ...83f7419b047.json => e427c3eece0f34c3.json} | 2 +- ...4b88ae05ea5.json => e47ebce66bbb53cd.json} | 2 +- ...c218cc4d08d.json => e4f24bca4471f754.json} | 2 +- ...0d5afb8734c.json => e57068c00956ea02.json} | 2 +- .../data/test-cases/e5b1f301926fe23.json | 1 + .../data/test-cases/e69093187fd70d56.json | 1 + .../data/test-cases/e71fa3f33c33eb50.json | 1 + .../data/test-cases/e78e70d10bce7cf5.json | 1 + .../data/test-cases/e7c5e93321efe39.json | 1 - ...9e0a465edac.json => e7e28dd8f45c4374.json} | 2 +- .../data/test-cases/e7eaed29fbceb75.json | 1 - ...eeb29391ba1.json => e8b3178794c4402b.json} | 2 +- ...ae7e29336e9.json => e8ed1f5e4a826f53.json} | 2 +- ...395a9143b9c.json => e911f85aab34c4e6.json} | 2 +- ...c11538825d6.json => e97ebddff1ce0b6f.json} | 2 +- .../data/test-cases/e99ca5757342b866.json | 1 + ...a3d5ef9530e.json => ea156c7340f7150f.json} | 2 +- .../data/test-cases/ea40d4fff96687ff.json | 1 + ...3f148925a4f.json => eaaef6c05ba4cb98.json} | 2 +- ...fce45bf33fb.json => ebad30d100ba0d2f.json} | 2 +- .../data/test-cases/ec3117c5f0ca458.json | 1 + ...2ab015adde4.json => ed0bae89bbbcdb66.json} | 2 +- ...c761d912068.json => ed566371d87065db.json} | 2 +- ...03f7fb1f8f7.json => edb4f03386c56c72.json} | 2 +- .../data/test-cases/ede6b0c38e1de853.json | 1 + .../data/test-cases/ee3eb820ef7c27.json | 1 + ...4e0658fe1a2.json => eea4c328ad2eaeca.json} | 2 +- ...c7a9142ab25.json => eeed6f5fdf5c1d70.json} | 2 +- ...2eb00513a1a.json => ef1a5cba4efb343a.json} | 2 +- ...22616aac704.json => ef2d26c76c436892.json} | 2 +- .../data/test-cases/ef905ece7eeedc77.json | 1 + ...b4c3c851a20.json => f00b7b6604c5e7e4.json} | 2 +- ...f3faef55f2b.json => f040925d9e513197.json} | 2 +- ...21adbc73706.json => f0700b9c803f7cf9.json} | 2 +- ...a932c1ec147.json => f11813f80ada0713.json} | 2 +- ...1ae94efdc02.json => f12b5c3f29ddd74a.json} | 2 +- ...0d825fae93b.json => f1a24ca70fa28a4b.json} | 2 +- ...2ca244e095b.json => f1d39787f3312e8b.json} | 2 +- .../data/test-cases/f3baf14f5477154.json | 1 + ...586f8a804f0.json => f449c3e5994db83f.json} | 2 +- ...d99dac0c86e.json => f4fd5b9fa6dd3840.json} | 2 +- .../data/test-cases/f5177f712a8be6da.json | 1 + ...126e0555bf0.json => f52e2a19a3ffe707.json} | 2 +- ...6f4d19ecd67.json => f5819c4c1535edeb.json} | 2 +- ...7f035513057.json => f59e61b023eebd26.json} | 2 +- .../data/test-cases/f5c85086c052dc96.json | 1 - ...f62d220bc66.json => f619b88d74382886.json} | 2 +- ...9cf6c294d2b.json => f63a88604b1d062f.json} | 2 +- ...c38c6c9a97c.json => f649ed8d3c87f7f8.json} | 2 +- ...02b58f1520a.json => f6fab27b83e3ab13.json} | 2 +- .../data/test-cases/f701011259e850f6.json | 1 + .../data/test-cases/f727d28e098b30b7.json | 1 + ...8015a2b07b6.json => f7656bca6b03073b.json} | 2 +- .../data/test-cases/f7d2073500029121.json | 1 + ...d18d5e6ee6b.json => f809105a155a665a.json} | 2 +- .../data/test-cases/f841b42c8d697c74.json | 1 + .../data/test-cases/f85ab0d3a8429db7.json | 1 + .../data/test-cases/f8800adc39df0e11.json | 1 - ...d40d6774add.json => f8d7fd46b923bc4f.json} | 2 +- ...b5213f7938f.json => f9099a5358c90330.json} | 2 +- .../data/test-cases/f91e38b8c375d31c.json | 1 + ...eaeb4ea4daa.json => f97aaf8957be0a89.json} | 2 +- ...4e8d095b60f.json => f9c645ee48c4616c.json} | 2 +- .../data/test-cases/f9df20ba5fd613f1.json | 1 + .../data/test-cases/fb237eeb673713e3.json | 1 + .../data/test-cases/fbd37fe4a302b125.json | 1 + ...f76e0b4f9e4.json => fbd7acf611333772.json} | 2 +- .../data/test-cases/fc455123cb448d3e.json | 1 + .../data/test-cases/fda81d5edcbfeda5.json | 1 + .../data/test-cases/fdff4b964fae0427.json | 1 - .../data/test-cases/ff776776c9a8991f.json | 1 + .../data/test-cases/ffa13a74003ae703.json | 1 + allure-report/data/timeline.json | 2 +- allure-report/export/influxDbData.txt | 26 +- allure-report/export/prometheusData.txt | 16 +- allure-report/history/duration-trend.json | 2 +- allure-report/history/history-trend.json | 2 +- allure-report/history/history.json | 2 +- allure-report/history/retry-trend.json | 2 +- allure-report/index.html | 2 +- allure-report/widgets/duration-trend.json | 2 +- allure-report/widgets/duration.json | 2 +- allure-report/widgets/history-trend.json | 2 +- allure-report/widgets/retry-trend.json | 2 +- allure-report/widgets/severity.json | 2 +- allure-report/widgets/status-chart.json | 2 +- allure-report/widgets/suites.json | 2 +- allure-report/widgets/summary.json | 2 +- 1127 files changed, 1929 insertions(+), 1609 deletions(-) rename allure-report/data/attachments/{56f4811665ed892a.txt => 105658932c1d51ff.txt} (100%) rename allure-report/data/attachments/{35b0040677726bbd.txt => 10b8961e386c4fec.txt} (100%) rename allure-report/data/attachments/{3db726a85ec26b65.txt => 126d44dc6bf2e98e.txt} (100%) rename allure-report/data/attachments/{52c3b8574c415b89.txt => 12c58087789a46ca.txt} (100%) rename allure-report/data/attachments/{10bda13bc4365ba8.txt => 12f3e703f687ed41.txt} (100%) rename allure-report/data/attachments/{75b9c5da68ec52a2.txt => 14f1a5601096c54c.txt} (100%) rename allure-report/data/attachments/{951e88f3edc608ae.txt => 1629f3862628691e.txt} (100%) rename allure-report/data/attachments/{d406966fbaffbd00.txt => 169bdc8e4de5949e.txt} (100%) rename allure-report/data/attachments/{5b1486b52334c41e.txt => 16b3d133c1b1141f.txt} (100%) rename allure-report/data/attachments/{29f64ed4da9c0ecc.txt => 17ccb2223275d18f.txt} (100%) rename allure-report/data/attachments/{1c7070c159aacf2e.txt => 1905a023fe62d7a5.txt} (100%) rename allure-report/data/attachments/{4faf6d536992c308.txt => 19d9a21eca90a0a9.txt} (100%) rename allure-report/data/attachments/{207d1fd44f82d410.txt => 1ab4a085da0164d2.txt} (100%) rename allure-report/data/attachments/{6833583f4e17d4b6.txt => 1aea611207a542f.txt} (100%) rename allure-report/data/attachments/{27add2ef21833533.txt => 1b71217f4d0fe3a2.txt} (100%) rename allure-report/data/attachments/{c60a729cdea9a7d9.txt => 1bfd50f00e4c2ad5.txt} (100%) rename allure-report/data/attachments/{3b3328f837a21f35.txt => 1ca9750c0956602d.txt} (100%) rename allure-report/data/attachments/{3de7bb1aa01966ff.txt => 1ce9d59c982071d0.txt} (100%) rename allure-report/data/attachments/{4a5ff4e66314365b.txt => 1d395e740ae82411.txt} (100%) rename allure-report/data/attachments/{3d08be5d3c35bf84.txt => 1d5dc16fdfe05c84.txt} (100%) rename allure-report/data/attachments/{292d200c224939da.txt => 1dc0d1d2e3a97f3c.txt} (100%) rename allure-report/data/attachments/{47eb10d648ead31b.txt => 1e123d763e6ea7e5.txt} (100%) rename allure-report/data/attachments/{5bb3529b62d1131a.txt => 1e1a39cd8bddfb25.txt} (100%) rename allure-report/data/attachments/{99fbed72185a436d.txt => 1e1f708218c48d04.txt} (100%) rename allure-report/data/attachments/{92abbc4fad82e6db.txt => 1f33a24130d10b19.txt} (100%) rename allure-report/data/attachments/{4d3f39137718ed9c.txt => 1f7ee012a96ef9b6.txt} (100%) rename allure-report/data/attachments/{986dcde2e02037cb.txt => 1f8aa4666b4af5af.txt} (100%) rename allure-report/data/attachments/{4d1c728cd3990d41.txt => 1fcc34d0c68ae769.txt} (100%) rename allure-report/data/attachments/{4646d812c4a39ce.txt => 1ff678a4c7734b0.txt} (100%) rename allure-report/data/attachments/{3e1cb74f119a5c14.txt => 215c30a7cf2d2e11.txt} (100%) rename allure-report/data/attachments/{2fa0f7a126ad592b.txt => 21cec5980af4ec14.txt} (100%) rename allure-report/data/attachments/{5c0575d9cafe6cf6.txt => 22b576ff182f36ef.txt} (100%) rename allure-report/data/attachments/{ba387d8fdc4ccb3b.txt => 22f6f0c737bac26b.txt} (100%) rename allure-report/data/attachments/{4277e39e2fd03a2.txt => 23dd45ddb469c4aa.txt} (100%) rename allure-report/data/attachments/{22862af9bcf091d4.txt => 246dacd86be04ffa.txt} (100%) rename allure-report/data/attachments/{11a60e97d1d843b1.txt => 253cdd605d9ea305.txt} (100%) rename allure-report/data/attachments/{5c7638f94c1897db.txt => 25583e198df733bf.txt} (100%) rename allure-report/data/attachments/{3c7f9bf2787b94f7.txt => 26557f5777ce8a7b.txt} (100%) rename allure-report/data/attachments/{747e90cc8dad54fd.txt => 26c18e7ac55b0476.txt} (100%) rename allure-report/data/attachments/{d6a0933efaeb03c.txt => 273b19c655c226cd.txt} (100%) rename allure-report/data/attachments/{3ea6423e21d6d262.txt => 27df6f7a31afa4ff.txt} (100%) rename allure-report/data/attachments/{25c7546e6e88bf29.txt => 282ef4a825ddd5b7.txt} (100%) rename allure-report/data/attachments/{ad7db611240dcbc0.txt => 285de4a0d9b150b3.txt} (100%) rename allure-report/data/attachments/{7efcea1d1ffd3662.txt => 2862210bad838236.txt} (100%) rename allure-report/data/attachments/{d920f200ffe2c729.txt => 2b6038e2de6e977a.txt} (100%) rename allure-report/data/attachments/{71aab19d1a615a57.txt => 2bee8bc5b94972e3.txt} (100%) rename allure-report/data/attachments/{2738d7f17afba1b9.txt => 2d3f2d22c5115b6e.txt} (100%) rename allure-report/data/attachments/{6570d6c473e55397.txt => 2d58a8a8ac8fa12e.txt} (100%) rename allure-report/data/attachments/{5a8f2e8a8daac7d4.txt => 2dbf09b568ff5668.txt} (100%) rename allure-report/data/attachments/{3d05ca7bd9d20192.txt => 2dd75c6915b1e704.txt} (100%) rename allure-report/data/attachments/{108fa13d4dc4aeec.txt => 2e5a8277ac6080e3.txt} (100%) rename allure-report/data/attachments/{1ae3e81e546a5a71.txt => 2f3f1653d6bd83ea.txt} (100%) rename allure-report/data/attachments/{cd9f556fe34434c9.txt => 2fa4e18b8435ce88.txt} (100%) rename allure-report/data/attachments/{1fc52e2c49c9d723.txt => 2fb64bb60201538c.txt} (100%) rename allure-report/data/attachments/{6cceaf28d236f584.txt => 30a819977a6f7bba.txt} (100%) rename allure-report/data/attachments/{7f080e317c4cdc0d.txt => 31ba7c014fce4298.txt} (100%) rename allure-report/data/attachments/{837e80b6f559a9c2.txt => 3272d488a926cad0.txt} (100%) rename allure-report/data/attachments/{1fb0e4eb0d1b73ee.txt => 32849bcbd7d5b064.txt} (100%) rename allure-report/data/attachments/{f26281521e32f10c.txt => 3326f8b00659b17c.txt} (100%) rename allure-report/data/attachments/{1c3fe0844baefb8c.txt => 34515415abccae34.txt} (100%) rename allure-report/data/attachments/{c72b6aed91bdc6cb.txt => 36d455921a73202d.txt} (100%) rename allure-report/data/attachments/{62e987f3927afd7c.txt => 36e52eee6ec1696f.txt} (100%) rename allure-report/data/attachments/{2a9f69c076428754.txt => 37e73f373251accf.txt} (100%) rename allure-report/data/attachments/{7030d405852b736e.txt => 394707a7900b643f.txt} (100%) rename allure-report/data/attachments/{6062d7cf7b32bc2c.txt => 3a4387d961fd6fe2.txt} (100%) rename allure-report/data/attachments/{cf2100e65e09b423.txt => 3a4c00d99760de4b.txt} (100%) rename allure-report/data/attachments/{27155577e4b86a95.txt => 3d8fef51a9e30706.txt} (100%) rename allure-report/data/attachments/{78b71274c888e77b.txt => 3df0050d216178a3.txt} (100%) rename allure-report/data/attachments/{6e31fbe4dea71ee0.txt => 3e088b2fc3849ac3.txt} (100%) rename allure-report/data/attachments/{8da729485857d70b.txt => 3e79fdee962a6c7a.txt} (100%) rename allure-report/data/attachments/{5e9be09b414388f9.txt => 3f14e07d274c2e01.txt} (100%) rename allure-report/data/attachments/{6344061f744d93d.txt => 3f23fd2a44d74bcb.txt} (100%) rename allure-report/data/attachments/{c9a3c6ad41839ce3.txt => 3f3d8444cfb8c128.txt} (100%) rename allure-report/data/attachments/{1c3dfeaa04fe2908.txt => 3fbdb209be30e4e9.txt} (100%) rename allure-report/data/attachments/{41f5ec6cee6b6454.txt => 3fdf05bb544c0162.txt} (100%) rename allure-report/data/attachments/{270cdfea12dfee25.txt => 3fe96e9fb5bb6b3f.txt} (100%) rename allure-report/data/attachments/{72d1d4db3cffe73b.txt => 403983f6828d59c5.txt} (100%) rename allure-report/data/attachments/{a73c95935cebe487.txt => 40789a2ed03aa082.txt} (100%) rename allure-report/data/attachments/{5d46e2ecc5195696.txt => 4091cd5629c473be.txt} (100%) rename allure-report/data/attachments/{f18b0e548340aa4f.txt => 4143349f87c576ac.txt} (100%) rename allure-report/data/attachments/{a8cdc7c5d92ea524.txt => 419d7e1cf9a3c9b.txt} (100%) rename allure-report/data/attachments/{54973229fb9bb954.txt => 443a1d8f74495540.txt} (100%) rename allure-report/data/attachments/{34ee6a50b9a56e7d.txt => 452e28e5668d68f6.txt} (100%) rename allure-report/data/attachments/{1569f62e2424ff1a.txt => 45655b08b75495d0.txt} (100%) rename allure-report/data/attachments/{f69b6836dc35d93.txt => 459e1a71d63acc96.txt} (100%) rename allure-report/data/attachments/{5a90b58ce6e21a4f.txt => 45d7b9435ff3c623.txt} (100%) rename allure-report/data/attachments/{257782fa3edc8402.txt => 464f7036130e9df9.txt} (100%) rename allure-report/data/attachments/{e19fa4140ca62ee4.txt => 47ba37195574156f.txt} (100%) rename allure-report/data/attachments/{17deef7e1cb66e60.txt => 484cb5d49df72338.txt} (100%) rename allure-report/data/attachments/{940a8818c4ee9f6a.txt => 486146c7b14fd6fd.txt} (100%) rename allure-report/data/attachments/{e423707f4478eb49.txt => 4988f81545fa9dcf.txt} (100%) rename allure-report/data/attachments/{d032b19c209c380e.txt => 4a05a037b7d71615.txt} (100%) rename allure-report/data/attachments/{88f8e3a1f8c2be2b.txt => 4a2cdaf17ee494c.txt} (100%) rename allure-report/data/attachments/{90fac117ed2f5b2c.txt => 4bafaae940d73b69.txt} (100%) rename allure-report/data/attachments/{9e063e588b090ea7.txt => 4c19c67f026536b3.txt} (100%) rename allure-report/data/attachments/{8f8b0aa6406d8405.txt => 4db95168982ce3dd.txt} (100%) rename allure-report/data/attachments/{8418aaca0f21809c.txt => 4e248e61461ec35c.txt} (100%) rename allure-report/data/attachments/{5a6636ef2e259cf6.txt => 4f617786d1167bf5.txt} (100%) rename allure-report/data/attachments/{eb9dc4155dddb919.txt => 4fea0728042fecef.txt} (100%) rename allure-report/data/attachments/{4f8b5b6368092f66.txt => 50b324c74021da7c.txt} (100%) rename allure-report/data/attachments/{c126cf9c398e7752.txt => 518d45d1073ca74.txt} (100%) rename allure-report/data/attachments/{3dc83265322e5aba.txt => 519607e9e5d7219c.txt} (100%) rename allure-report/data/attachments/{189c0101c5666165.txt => 5343662cb85dce05.txt} (100%) rename allure-report/data/attachments/{9d173a5e0d4bb0c8.txt => 537ecc9a719af32f.txt} (100%) rename allure-report/data/attachments/{30d5c7b600785dbe.txt => 546f6d6d1d510331.txt} (100%) rename allure-report/data/attachments/{dd3f4f217e87fedc.txt => 54a6fca37064555a.txt} (100%) rename allure-report/data/attachments/{2704cebfbdb23ee9.txt => 54a96af48234a9eb.txt} (100%) rename allure-report/data/attachments/{b63774e9e6663cf7.txt => 554fb31ae5f3473b.txt} (100%) rename allure-report/data/attachments/{c8970b155f88dd79.txt => 56be0299a0ca1906.txt} (100%) rename allure-report/data/attachments/{1124405dfe872592.txt => 572eaf1e6f057287.txt} (100%) rename allure-report/data/attachments/{a5a1e9dabd89620f.txt => 5ab43402bfd67bde.txt} (100%) rename allure-report/data/attachments/{825e5ff6c26dfc23.txt => 5ab72755d6763015.txt} (100%) rename allure-report/data/attachments/{3a93f15f0e448e53.txt => 5b8ca288b44682ec.txt} (100%) rename allure-report/data/attachments/{18b79283e1874d20.txt => 5c2711b7e4875740.txt} (100%) rename allure-report/data/attachments/{398543e2b30d0b75.txt => 5c2daa57ff9298a6.txt} (100%) rename allure-report/data/attachments/{218f40b324526f4d.txt => 5d574363acc62acc.txt} (100%) rename allure-report/data/attachments/{62bd346b3a261fc6.txt => 5d5a8c5ce62738a7.txt} (100%) rename allure-report/data/attachments/{187a7b2783fd6cca.txt => 5d918ffd5978feb.txt} (100%) rename allure-report/data/attachments/{caa5a9b030d38c.txt => 5e1e694e393088b4.txt} (100%) rename allure-report/data/attachments/{5fc827b08877ee80.txt => 5e25d7437b08e659.txt} (100%) rename allure-report/data/attachments/{f29437b097cf88b9.txt => 5f888d9c16f6ee3a.txt} (100%) rename allure-report/data/attachments/{13b8ab05fc59b31a.txt => 6100c33a0bd08814.txt} (100%) rename allure-report/data/attachments/{aa35c4221cf1383d.txt => 62359e715edfaf26.txt} (100%) rename allure-report/data/attachments/{47cde424bd281215.txt => 62418f4fe99b4a3a.txt} (100%) rename allure-report/data/attachments/{5763b31517fb1cf6.txt => 62d969149cac19e2.txt} (100%) rename allure-report/data/attachments/{b34610167fe8aa65.txt => 63652035df5cd6e2.txt} (100%) rename allure-report/data/attachments/{121911719c53624e.txt => 63b31f8c0af20d94.txt} (100%) rename allure-report/data/attachments/{e0ce3a7d48216112.txt => 64217426bd0c7f09.txt} (100%) rename allure-report/data/attachments/{d499b60fd50eab17.txt => 642ca5006c94cc7.txt} (100%) rename allure-report/data/attachments/{3c5d6a8306713e1a.txt => 6534e5921b3f960d.txt} (100%) rename allure-report/data/attachments/{6ce0e167f1507713.txt => 65c05475b72ce468.txt} (100%) rename allure-report/data/attachments/{2dcda4c0465e81d2.txt => 660305aec4aa6e06.txt} (100%) rename allure-report/data/attachments/{51a4e96e6102d985.txt => 666caf8f2715f1b6.txt} (100%) rename allure-report/data/attachments/{7f52a9aa50bef455.txt => 67751593ff534b14.txt} (100%) rename allure-report/data/attachments/{1a6c1f836394adf7.txt => 678cdbc81118a45c.txt} (100%) rename allure-report/data/attachments/{59e7a80b454faae7.txt => 67be9974a45dfae3.txt} (100%) rename allure-report/data/attachments/{edbe93ce737c702f.txt => 697ce25e72082ee1.txt} (100%) rename allure-report/data/attachments/{1ffc7fe5a8d7f425.txt => 697db26b4ade1966.txt} (100%) rename allure-report/data/attachments/{9185450f0b6d0b62.txt => 69b865faf74786aa.txt} (100%) rename allure-report/data/attachments/{715d12e01ffe8bd2.txt => 69c2dd61a98f0df6.txt} (100%) rename allure-report/data/attachments/{6bbd8e6923c5cdcc.txt => 6aaa7a7ffc396f31.txt} (100%) rename allure-report/data/attachments/{90811aa4d663c1f1.txt => 6ae645e567750bb1.txt} (100%) rename allure-report/data/attachments/{a8f23a9981f406ff.txt => 6ccd74e070792411.txt} (100%) rename allure-report/data/attachments/{4cfe45f98e3a162.txt => 6cd50ae6a92d4a65.txt} (100%) rename allure-report/data/attachments/{ba17606ecf187aae.txt => 6d216ad47549f357.txt} (100%) rename allure-report/data/attachments/{920856e6e183642.txt => 6d73a4f3af439d6.txt} (100%) rename allure-report/data/attachments/{396239392c64a388.txt => 6d7dcbe4dae3ba12.txt} (100%) rename allure-report/data/attachments/{b7bfbf78e894e0ca.txt => 6dccc5ff56326cce.txt} (100%) rename allure-report/data/attachments/{8e6997f43eb72f85.txt => 6e968c2a309c9083.txt} (100%) rename allure-report/data/attachments/{e497f0d93067cd8e.txt => 6ec9f0fb81f46c5f.txt} (100%) rename allure-report/data/attachments/{737d6b3bd85f76bf.txt => 6ee6aafaeecdbf.txt} (100%) rename allure-report/data/attachments/{336614ff4bde976d.txt => 6f4b7e883a26cafe.txt} (100%) rename allure-report/data/attachments/{32d8e8facf5868da.txt => 70a5ec7cc829789f.txt} (100%) rename allure-report/data/attachments/{29ea9005f7d14049.txt => 724f9727a6725fde.txt} (100%) rename allure-report/data/attachments/{b8036761eae2b6cd.txt => 72f4c1312eb8e355.txt} (100%) rename allure-report/data/attachments/{981d1c1e601a3a5b.txt => 730a4e5abf4ea8ba.txt} (100%) rename allure-report/data/attachments/{db194e9e67e4f8fb.txt => 73d36ba66285cf8e.txt} (100%) rename allure-report/data/attachments/{6a878131575ef850.txt => 73e237e2a607b73d.txt} (100%) rename allure-report/data/attachments/{d0ae6f01edd6f40b.txt => 75eae5551f423f5f.txt} (100%) rename allure-report/data/attachments/{a2b0f0b93e0e2887.txt => 75f6639f39c4b7d0.txt} (100%) rename allure-report/data/attachments/{9aa90db0f884f6f0.txt => 760266e95eacb400.txt} (100%) rename allure-report/data/attachments/{1a0603f4ec8cac73.txt => 76446d802fca4221.txt} (100%) rename allure-report/data/attachments/{d5adffae1b4c5d49.txt => 76d9ba77a7bb2817.txt} (100%) rename allure-report/data/attachments/{3b770734c2a5e83b.txt => 773f7227b3021ebf.txt} (100%) rename allure-report/data/attachments/{caf6549170870e9e.txt => 7757a124114dd519.txt} (100%) rename allure-report/data/attachments/{763794db833f43e6.txt => 77adc248069b48d7.txt} (100%) rename allure-report/data/attachments/{b653a3e02677ec62.txt => 77c66732e5fdad66.txt} (100%) rename allure-report/data/attachments/{d86f11066e8eb2f7.txt => 7a383696eff0b379.txt} (100%) rename allure-report/data/attachments/{5705204dae406a16.txt => 7bc78567c01b81e.txt} (100%) rename allure-report/data/attachments/{eceb81b9185d8ebf.txt => 7cd06e1d94c0b146.txt} (100%) rename allure-report/data/attachments/{f8b4598a501c7d27.txt => 7d49bbac8d757852.txt} (100%) rename allure-report/data/attachments/{5767980cac6ccce8.txt => 7dd6b645422c34b6.txt} (100%) rename allure-report/data/attachments/{3e00d2a8f3aaa1eb.txt => 7e0608ae57e6ca33.txt} (100%) rename allure-report/data/attachments/{e67bc3e5b3334332.txt => 7f3ec04c5333a588.txt} (100%) rename allure-report/data/attachments/{77f74c85e8c0841a.txt => 7fc42db42407a1b3.txt} (100%) rename allure-report/data/attachments/{d700c3a94542cad8.txt => 81997e6990138a02.txt} (100%) rename allure-report/data/attachments/{cfb7ba55710ea734.txt => 8244325875cc8c2.txt} (100%) rename allure-report/data/attachments/{78984c686d4aec41.txt => 8324986f2adab578.txt} (100%) rename allure-report/data/attachments/{a5b9b2f5d2166132.txt => 839cae885131e395.txt} (100%) rename allure-report/data/attachments/{d7e0ef7caf28d559.txt => 857a5351e31f1baf.txt} (100%) rename allure-report/data/attachments/{d071752d20b95de3.txt => 880a2c92c8612a83.txt} (100%) rename allure-report/data/attachments/{251428633abf607e.txt => 888fe7b1e08f632a.txt} (100%) rename allure-report/data/attachments/{92e60d573610c20c.txt => 8a1d25baaaa2cac0.txt} (100%) rename allure-report/data/attachments/{6b2bb00f201470b4.txt => 8a45c99b47ae5bc6.txt} (100%) rename allure-report/data/attachments/{e8c4247db1945485.txt => 8a8a2d0c90cfef1e.txt} (100%) rename allure-report/data/attachments/{9221a1b722d3e57e.txt => 8ac039f3bc7f748f.txt} (100%) rename allure-report/data/attachments/{41f66f3f97e3d4e4.txt => 8b32e9e6b9d5730c.txt} (100%) rename allure-report/data/attachments/{c144733a0318ce29.txt => 8b338c3953869594.txt} (100%) rename allure-report/data/attachments/{b8fb66a095ff9819.txt => 8c002cae94869ae.txt} (100%) rename allure-report/data/attachments/{fde614c2efca69df.txt => 8c6b281f58e4fbe3.txt} (100%) rename allure-report/data/attachments/{4144b9b4343fdd9e.txt => 8ce1da867cdb9cd9.txt} (100%) rename allure-report/data/attachments/{56a8d88c2e7e082f.txt => 8d52b389398fe1ce.txt} (100%) rename allure-report/data/attachments/{2143b544775b35fe.txt => 8dfc11179dd2dd46.txt} (100%) rename allure-report/data/attachments/{f79ef762befefc39.txt => 8e484f9bfa00ca83.txt} (100%) rename allure-report/data/attachments/{c013aca8f3f007b8.txt => 8ef03709815f1ee7.txt} (100%) rename allure-report/data/attachments/{b9b05bf139af2d32.txt => 8ef3c2609186193.txt} (100%) rename allure-report/data/attachments/{85aa32b5caa3d259.txt => 8f909ea616537459.txt} (100%) rename allure-report/data/attachments/{4b46eca85ecd31e8.txt => 8fe3e8aa201d424a.txt} (100%) rename allure-report/data/attachments/{b013d563709aaa2b.txt => 9047acd474e52c7c.txt} (100%) rename allure-report/data/attachments/{1a8cbd3585c92133.txt => 92375ce905d3bb32.txt} (100%) rename allure-report/data/attachments/{6968a83bd2f66f6.txt => 9252a83ce892d840.txt} (100%) rename allure-report/data/attachments/{36b72f15ac4ac48f.txt => 929957d5beb797a6.txt} (100%) rename allure-report/data/attachments/{d1528cec1dd8dea3.txt => 92cddf6ef1a2b768.txt} (100%) rename allure-report/data/attachments/{3a9eebe7718e7480.txt => 939b7ea8b8b69174.txt} (100%) rename allure-report/data/attachments/{5efed1b6b7f1c808.txt => 94c19824e08a6a92.txt} (100%) rename allure-report/data/attachments/{a1cb38196225980f.txt => 95dd879b5dc89b5e.txt} (100%) rename allure-report/data/attachments/{dc00b83d62a7bfbf.txt => 974d8c9279e15557.txt} (100%) rename allure-report/data/attachments/{70b6cf48eb9066a3.txt => 97827ebef7dd2119.txt} (100%) rename allure-report/data/attachments/{d4d0d11b46cc8eb0.txt => 97bc633acb769f22.txt} (100%) rename allure-report/data/attachments/{737f4d50843fbb5.txt => 9819ce1f0ac184a6.txt} (100%) rename allure-report/data/attachments/{e6170073182411e7.txt => 98b58e86a56b6f3b.txt} (100%) rename allure-report/data/attachments/{c88c8283826150a7.txt => 998cb255bcb4a08e.txt} (100%) rename allure-report/data/attachments/{f1276b53d50f9117.txt => 9b1bb88dc50af4ea.txt} (100%) rename allure-report/data/attachments/{7f7258c787806381.txt => 9b753e8aa39a2b6c.txt} (100%) rename allure-report/data/attachments/{672a2772e24fdc9b.txt => 9c17474dc274435d.txt} (100%) rename allure-report/data/attachments/{22f31b147f604ade.txt => 9cd8266cfd985687.txt} (100%) rename allure-report/data/attachments/{15c99b80ae7e843e.txt => 9ef0f4c8246dad00.txt} (100%) rename allure-report/data/attachments/{e3d1c47094969219.txt => a05ee87cd665f265.txt} (100%) rename allure-report/data/attachments/{dd62b896cd445c4.txt => a1418ed9afde7ea1.txt} (100%) rename allure-report/data/attachments/{d279b3f66291ee3.txt => a193aa0d76e6e0f1.txt} (100%) rename allure-report/data/attachments/{4158b1e0c4f5a122.txt => a31af19dcd964af7.txt} (100%) rename allure-report/data/attachments/{ac514e66507a8175.txt => a3957b3e858fa9c0.txt} (100%) rename allure-report/data/attachments/{839567f1e1e69ee5.txt => a3af1182be2fa344.txt} (100%) rename allure-report/data/attachments/{7941ce7b9fdf9a23.txt => a3e3342383736358.txt} (100%) rename allure-report/data/attachments/{d9e1cc8a9d47ef26.txt => a40dc509f3c7162d.txt} (100%) rename allure-report/data/attachments/{2f602fdb5599f0ec.txt => a5fae94f2517e85b.txt} (100%) rename allure-report/data/attachments/{ff4563a6816a8fb1.txt => a5fe4c42944f89c8.txt} (100%) rename allure-report/data/attachments/{ea676dbf2861ab6b.txt => a613cf938d78c4d4.txt} (100%) rename allure-report/data/attachments/{d27167744db90954.txt => a62856bc357d2685.txt} (100%) rename allure-report/data/attachments/{6886fc4b238144c3.txt => a648c0041b64d7a8.txt} (100%) rename allure-report/data/attachments/{c3d16eb9cb3b239c.txt => a66ea3c1c7d07513.txt} (100%) rename allure-report/data/attachments/{47de92a1be75c8fa.txt => a73f85a8fac351b8.txt} (100%) rename allure-report/data/attachments/{2c0b65a9daada0df.txt => a7f10bb4c8e33c64.txt} (100%) rename allure-report/data/attachments/{634594d507e663ad.txt => a823a6dcaaab38a.txt} (100%) rename allure-report/data/attachments/{6f54ca69ed4a797e.txt => a881d3345681241e.txt} (100%) rename allure-report/data/attachments/{7829271a783962e0.txt => a95c78a9496692b3.txt} (100%) rename allure-report/data/attachments/{db0dfa2ecde82e2a.txt => a9f925f082e601ea.txt} (100%) rename allure-report/data/attachments/{5a779afadfd77377.txt => aa8cd00c6909033a.txt} (100%) rename allure-report/data/attachments/{ddae89531089be3f.txt => ab4c5be84836fafb.txt} (100%) rename allure-report/data/attachments/{55424ab646409d91.txt => ab72754d2ac3d657.txt} (100%) rename allure-report/data/attachments/{30383d555cbdd5c6.txt => abe246047ca80d75.txt} (100%) rename allure-report/data/attachments/{a140c6342ce1ee58.txt => ad44f1f08939323f.txt} (100%) rename allure-report/data/attachments/{4273c801c4c75440.txt => addbfb5be788ff64.txt} (100%) rename allure-report/data/attachments/{1200393e54a2122a.txt => ae418f132f3362c9.txt} (100%) rename allure-report/data/attachments/{8433939b2e0016e1.txt => ae7d7256cc9cd87f.txt} (100%) rename allure-report/data/attachments/{838e96495b7301c2.txt => aeaa6146da01ffaa.txt} (100%) rename allure-report/data/attachments/{63766a355340dea4.txt => aef94a39bd8b19be.txt} (100%) rename allure-report/data/attachments/{c12b7919feb22bf.txt => b0341cfdabd60782.txt} (100%) rename allure-report/data/attachments/{5ba70b78893a0ae6.txt => b102eb36f048a843.txt} (100%) rename allure-report/data/attachments/{fcb85638cafa3b09.txt => b18a61fc243fdba8.txt} (100%) rename allure-report/data/attachments/{84f9893956705e3c.txt => b2176623a3e27602.txt} (100%) rename allure-report/data/attachments/{143162d049c6ebb2.txt => b3d5e98a684cd625.txt} (100%) rename allure-report/data/attachments/{fcbbb87dd9240b08.txt => b436923321373575.txt} (100%) rename allure-report/data/attachments/{7177fb466625b3ce.txt => b5b702f79cbcea35.txt} (100%) rename allure-report/data/attachments/{33928ceb3bfb16f9.txt => b650a2b5eace42e.txt} (100%) rename allure-report/data/attachments/{87f777895eba7eaf.txt => b82715c67d99ec0e.txt} (100%) rename allure-report/data/attachments/{b4f27bd29772e298.txt => b94b97d784c6cf01.txt} (100%) rename allure-report/data/attachments/{272f73f71ea0c103.txt => ba31ccf0eed329a1.txt} (100%) rename allure-report/data/attachments/{abb69032ea61f29c.txt => ba5b206c202bb2e0.txt} (100%) rename allure-report/data/attachments/{c1146e7ec026151e.txt => bb1a14f7acaf229.txt} (100%) rename allure-report/data/attachments/{ea7fb2d8338c4ae8.txt => be7449bab7c02e56.txt} (100%) rename allure-report/data/attachments/{a9033f7cad83170f.txt => bee515a36bc2165b.txt} (100%) rename allure-report/data/attachments/{91c5a91c91d3cce8.txt => bf8644536e05f3d6.txt} (100%) rename allure-report/data/attachments/{f1386283fe3a63a2.txt => bfa0e041a65d579a.txt} (100%) rename allure-report/data/attachments/{b5130ca9dc47578e.txt => bfd7eb06540fa1b6.txt} (100%) rename allure-report/data/attachments/{e6af0cabbf264491.txt => c02985fbd2700004.txt} (100%) rename allure-report/data/attachments/{79650f7b74d71675.txt => c0c4047155365dbf.txt} (100%) rename allure-report/data/attachments/{e9ba7465215b13fc.txt => c258bec5b6c8eafe.txt} (100%) rename allure-report/data/attachments/{cc97e34ff385a06.txt => c2916b6d9a3730c2.txt} (100%) rename allure-report/data/attachments/{e747e2d69cfbefdf.txt => c319238385a5cb6d.txt} (100%) rename allure-report/data/attachments/{7716f7bce2ac3794.txt => c34a92b7a1b9869e.txt} (100%) rename allure-report/data/attachments/{52b7eb4ac34d1a3f.txt => c38727f5bb9d52ae.txt} (100%) rename allure-report/data/attachments/{2a724e02684b391.txt => c452ee18f96c325a.txt} (100%) rename allure-report/data/attachments/{8e2411421a238415.txt => c520dd2a3bb6ed30.txt} (100%) rename allure-report/data/attachments/{8b00f3eb19799549.txt => c52989139561013a.txt} (100%) rename allure-report/data/attachments/{894de7f1e428d962.txt => c5afc30c761eea74.txt} (100%) rename allure-report/data/attachments/{15329bd7c41462e0.txt => c629f823771e2123.txt} (100%) rename allure-report/data/attachments/{8f40a615942b6a99.txt => c703e2fc1b8c856f.txt} (100%) rename allure-report/data/attachments/{93547fa89048aa2f.txt => c77e43a426f47681.txt} (100%) rename allure-report/data/attachments/{90ef8c17370e6610.txt => ca0d330469f49836.txt} (100%) rename allure-report/data/attachments/{fb2891f4860c316.txt => ca8a9ae1b56b4086.txt} (100%) rename allure-report/data/attachments/{839e0167efc9a3e5.txt => ca908a3276ec1f33.txt} (100%) rename allure-report/data/attachments/{60434b32a4fa91ba.txt => cb2ee8571e9e5841.txt} (100%) rename allure-report/data/attachments/{120b1ea05b87d5bf.txt => cc9e92a1032075c9.txt} (100%) rename allure-report/data/attachments/{26c574f777b434b5.txt => cca44b266aa98436.txt} (100%) rename allure-report/data/attachments/{6096f7399a313214.txt => ccdd1b5f063278d8.txt} (100%) rename allure-report/data/attachments/{4e2e1868fac6f5c2.txt => cd5591b59d574128.txt} (100%) rename allure-report/data/attachments/{db7ce475c42c1e48.txt => cd8ecc1f6b5a44.txt} (100%) rename allure-report/data/attachments/{c6d99744fc651725.txt => cda2f56ac699fd36.txt} (100%) rename allure-report/data/attachments/{1e9020a1f427ff16.txt => ce026a7ada5eb7bc.txt} (100%) rename allure-report/data/attachments/{e89406beb8fb490f.txt => ce20c6dd4e02cb56.txt} (100%) rename allure-report/data/attachments/{f522ce9854634cf6.txt => ce2512d2a26a891e.txt} (100%) rename allure-report/data/attachments/{676a2b28cd4ab614.txt => cece8653b698fb5f.txt} (100%) rename allure-report/data/attachments/{f457bf5da9408839.txt => cfc199981b020b59.txt} (100%) rename allure-report/data/attachments/{b43989c1fe59fe7e.txt => d0030f8b38971a56.txt} (100%) rename allure-report/data/attachments/{754273bb670e7e63.txt => d01b1971a8a3587e.txt} (100%) rename allure-report/data/attachments/{a5cbeea06209bb6e.txt => d03e7f0ed07eb16c.txt} (100%) rename allure-report/data/attachments/{fec67c535945138b.txt => d0b96f0ad42d1de6.txt} (100%) rename allure-report/data/attachments/{ebee3405e01a539f.txt => d1bf3e067845857a.txt} (100%) rename allure-report/data/attachments/{d544fbd4d09ad0f7.txt => d1cecae81ecbadad.txt} (100%) rename allure-report/data/attachments/{362de8ecec922d6a.txt => d2ebd6c7bb69da29.txt} (100%) rename allure-report/data/attachments/{45411ab5eb543e75.txt => d43641784540be20.txt} (100%) rename allure-report/data/attachments/{41eff5539d108708.txt => d4ab56b3974e742a.txt} (100%) rename allure-report/data/attachments/{6681f7087b7f0e75.txt => d6941eaebe2a3ba3.txt} (100%) rename allure-report/data/attachments/{da9065dd6d539fab.txt => d6c5e78c2bca1b60.txt} (100%) rename allure-report/data/attachments/{fd4f4028774f914d.txt => d7dd41e46efca9ee.txt} (100%) rename allure-report/data/attachments/{84bdcd72726e2c84.txt => d83a50edd6b56e2a.txt} (100%) rename allure-report/data/attachments/{fb14be3959747375.txt => d85ac6726b459082.txt} (100%) rename allure-report/data/attachments/{c72469286db7525d.txt => d89f3d58b0c226e8.txt} (100%) rename allure-report/data/attachments/{c954d80fa61d867d.txt => d8b7ee3418e7b9e0.txt} (100%) rename allure-report/data/attachments/{f25bb18adfb0c750.txt => d8ed65aadf059368.txt} (100%) rename allure-report/data/attachments/{4cd1e84a01209f22.txt => d8f05623e6466063.txt} (100%) rename allure-report/data/attachments/{feeed58e51d5c7a.txt => d9853791dbf86dfe.txt} (100%) rename allure-report/data/attachments/{6431ac3684ba417d.txt => dcb18087db2eef7c.txt} (100%) rename allure-report/data/attachments/{72f410625d43ac82.txt => dcb5cf58cdd3658a.txt} (100%) rename allure-report/data/attachments/{4e5a0ef8eae5b1f5.txt => dd695e9095070885.txt} (100%) rename allure-report/data/attachments/{67735b58dfb8e3b0.txt => dd90e5bd6518035b.txt} (100%) rename allure-report/data/attachments/{b87eb62b93596729.txt => de83cab412c71bc2.txt} (100%) rename allure-report/data/attachments/{95eee5a3754aa8a2.txt => dea157c47f361971.txt} (100%) rename allure-report/data/attachments/{ee2fa2d0000577e9.txt => df1294dda064bff1.txt} (100%) rename allure-report/data/attachments/{6b3bb7e070cc7a5c.txt => e04892408ba7673f.txt} (100%) rename allure-report/data/attachments/{eba58defe547aa99.txt => e0673a9df06bdbef.txt} (100%) rename allure-report/data/attachments/{b8749033ef3225ff.txt => e11dfdc5beea1549.txt} (100%) rename allure-report/data/attachments/{f200722e18d9d59a.txt => e13819432a0a8bbc.txt} (100%) rename allure-report/data/attachments/{e46ecdc21febfa2d.txt => e160bbe65fc37bcd.txt} (100%) rename allure-report/data/attachments/{6c919aa9e8f6951e.txt => e1db63f604b55e53.txt} (100%) rename allure-report/data/attachments/{a54c971159a9735d.txt => e2e513778c4c6c4f.txt} (100%) rename allure-report/data/attachments/{60ce0e41b02093a3.txt => e321f5d691b52e57.txt} (100%) rename allure-report/data/attachments/{cb5281dd2f2e56c3.txt => e3a1df6b2bd53059.txt} (100%) rename allure-report/data/attachments/{f8c0f6bed7a29f7c.txt => e3dd9c2915855555.txt} (100%) rename allure-report/data/attachments/{f93ff3c1bc3ca41c.txt => e41ceec6c0cda082.txt} (100%) rename allure-report/data/attachments/{3714b6ca536dc4d2.txt => e448201e6af0cd65.txt} (100%) rename allure-report/data/attachments/{868a8a8788cc39fc.txt => e44deaae3b3d699a.txt} (100%) rename allure-report/data/attachments/{e3e4221321612bf1.txt => e599d37b78101a20.txt} (100%) rename allure-report/data/attachments/{d682c96b1e76edae.txt => e6328cf6a3bf7297.txt} (100%) rename allure-report/data/attachments/{e36f2ac65e2625af.txt => e7393a784e166457.txt} (100%) rename allure-report/data/attachments/{e11ad2661eb07ca9.txt => e7750817bf2ce3d3.txt} (100%) rename allure-report/data/attachments/{47bd852e88dda4bd.txt => e7e4c2d208b9b87.txt} (100%) rename allure-report/data/attachments/{5e405ef5b3f740d5.txt => e806fd65a1519daa.txt} (100%) rename allure-report/data/attachments/{faca10a249542315.txt => e89f9d3c4680bc47.txt} (100%) rename allure-report/data/attachments/{62a27b454b36563d.txt => e9b85a28a1d1502.txt} (100%) rename allure-report/data/attachments/{c7c3f41b6f879f22.txt => eaa46cbb4e98fc76.txt} (100%) rename allure-report/data/attachments/{5da58154c309059a.txt => ed14694d3d785456.txt} (100%) rename allure-report/data/attachments/{d19d47ecb32ff1a.txt => ed71ca1a830493f6.txt} (100%) rename allure-report/data/attachments/{e3861efa7e547869.txt => eea11ddd2a3b1d10.txt} (100%) rename allure-report/data/attachments/{d17644d369f719b5.txt => ef12aa7c4aaaeed2.txt} (100%) rename allure-report/data/attachments/{6e51aca385250e4.txt => ef14b2090647c37e.txt} (100%) rename allure-report/data/attachments/{e20f82a8bca3f91b.txt => ef8a05f468c4eca0.txt} (100%) rename allure-report/data/attachments/{678b686f33957e9f.txt => ef954a973a3165a7.txt} (100%) rename allure-report/data/attachments/{fcab257bac252f0f.txt => efae8b9f43d09441.txt} (100%) rename allure-report/data/attachments/{719718f24c29d8b6.txt => f0a043619d2b0689.txt} (100%) rename allure-report/data/attachments/{ba01f85fc1c9de89.txt => f180498d197d8df1.txt} (100%) rename allure-report/data/attachments/{d789b0e2f7ac3471.txt => f1a162618bd1b29d.txt} (100%) rename allure-report/data/attachments/{57be236067b41f3e.txt => f209dfd0dcd30d55.txt} (100%) rename allure-report/data/attachments/{f753b26a6d68bf5b.txt => f24a53f1fea24b32.txt} (100%) rename allure-report/data/attachments/{41c90fa760e8d420.txt => f24a9f86ff4ef095.txt} (100%) rename allure-report/data/attachments/{92552b4b1fe49529.txt => f27833c43953c1b1.txt} (100%) rename allure-report/data/attachments/{c931c8cfab53b972.txt => f329250c4d2cb198.txt} (100%) rename allure-report/data/attachments/{698bafa9b89cd763.txt => f375c406aca5ef66.txt} (100%) rename allure-report/data/attachments/{fcdb96625b1e26db.txt => f3f8f8256722f1a9.txt} (100%) rename allure-report/data/attachments/{7e0d861d218b6b53.txt => f428986b0baf88be.txt} (100%) rename allure-report/data/attachments/{7517e0fe4fd38ce3.txt => f509afa4d498e7c1.txt} (100%) rename allure-report/data/attachments/{d352d3b8134952ea.txt => f50d22d7c09cd383.txt} (100%) rename allure-report/data/attachments/{4ee69d91518c273c.txt => f5a2b8e600c203d1.txt} (100%) rename allure-report/data/attachments/{84cd17876f4516cf.txt => f5ae4dee965d4aad.txt} (100%) rename allure-report/data/attachments/{faf563094f59ca6b.txt => f5c031a187e70f58.txt} (100%) rename allure-report/data/attachments/{3b4c7e69e73ca20.txt => f66e1341a4df20a3.txt} (100%) rename allure-report/data/attachments/{841a9d92019cea7.txt => f6ed689bd033eb8a.txt} (100%) rename allure-report/data/attachments/{f1f91f89a689bba4.txt => f8b59f79bb13d8ea.txt} (100%) rename allure-report/data/attachments/{a4db6f7d6cd87570.txt => fab77c156ff5bb2b.txt} (100%) rename allure-report/data/attachments/{cab012145f3c31e.txt => fac594686b0a84bd.txt} (100%) rename allure-report/data/attachments/{e5b745fd985bd7ab.txt => fae7f8901012b2cd.txt} (100%) rename allure-report/data/attachments/{b55ce2a23080a57e.txt => fc0a9047ac128608.txt} (100%) rename allure-report/data/attachments/{2613f5d1bde5e090.txt => fdbdb95799e89350.txt} (100%) rename allure-report/data/attachments/{fb7e53ff5946a92d.txt => fe536534de68582a.txt} (100%) rename allure-report/data/attachments/{616f142dc436d37a.txt => ff15e181fd0e6388.txt} (100%) rename allure-report/data/attachments/{ac68097df5e78e9a.txt => ff2bf17d38e7cc3b.txt} (100%) rename allure-report/data/attachments/{ae1ab7427cab55e0.txt => ff867546b68da848.txt} (100%) rename allure-report/data/attachments/{7dbffa484c49e1de.txt => ffe9d790c546ddb7.txt} (100%) rename allure-report/data/test-cases/{83f04a2f029479df.json => 100aeca8c0207022.json} (75%) rename allure-report/data/test-cases/{90eee3ddc83b1454.json => 10105e91d30d0887.json} (63%) rename allure-report/data/test-cases/{1bbe34ba42279f71.json => 102a91ff9d2e2c1f.json} (72%) rename allure-report/data/test-cases/{7c3ec7eab2e0be6d.json => 108dd2ab8a90859d.json} (61%) create mode 100644 allure-report/data/test-cases/11fa683d801b6c42.json rename allure-report/data/test-cases/{8427b8f31ff35d6c.json => 12432569c8b8923f.json} (64%) create mode 100644 allure-report/data/test-cases/1265911f14bcd919.json create mode 100644 allure-report/data/test-cases/12688af3a6e6b4d.json rename allure-report/data/test-cases/{ef7e94367cfcafa4.json => 12ac45051c49f01a.json} (59%) create mode 100644 allure-report/data/test-cases/12f0442ef33f054e.json rename allure-report/data/test-cases/{ace382695affabdf.json => 13ca3a7cd8b0e3af.json} (66%) delete mode 100644 allure-report/data/test-cases/15008ede7bd87a18.json rename allure-report/data/test-cases/{c35da98b55fb5e6b.json => 1506cf302ecd21f1.json} (53%) create mode 100644 allure-report/data/test-cases/1532fae746d0bb3a.json create mode 100644 allure-report/data/test-cases/158f20a061140f84.json rename allure-report/data/test-cases/{5e6aa533c6c0fafa.json => 15dbab6d625f40d3.json} (71%) create mode 100644 allure-report/data/test-cases/15f47b991f284575.json create mode 100644 allure-report/data/test-cases/161e5fcc0f247.json rename allure-report/data/test-cases/{fcd8cc6f9f4777c4.json => 167f34fe4187417a.json} (74%) rename allure-report/data/test-cases/{6a793815cad01bd2.json => 16a9ca9919e5cef5.json} (62%) rename allure-report/data/test-cases/{12ce3777e030dbb5.json => 16f7f5e029216efb.json} (66%) create mode 100644 allure-report/data/test-cases/1700dd3f253e8636.json delete mode 100644 allure-report/data/test-cases/17f807e7e2cad355.json create mode 100644 allure-report/data/test-cases/191f183f3ba0c8ea.json create mode 100644 allure-report/data/test-cases/1938e37bf1525466.json create mode 100644 allure-report/data/test-cases/196d34645221ebb4.json create mode 100644 allure-report/data/test-cases/19b258c1195772c5.json rename allure-report/data/test-cases/{7e0d94f0ee4e397d.json => 1a1c24c0cb125454.json} (58%) rename allure-report/data/test-cases/{fbd4191028146e80.json => 1a8ee4991fa5fcbc.json} (68%) create mode 100644 allure-report/data/test-cases/1aaf298f74019608.json create mode 100644 allure-report/data/test-cases/1b6b658aae9aa73c.json create mode 100644 allure-report/data/test-cases/1baceb9fc9699f7.json rename allure-report/data/test-cases/{d7357eaa8c15ec47.json => 1bdb6e0764902ab4.json} (61%) rename allure-report/data/test-cases/{11b0f4fd11e05b10.json => 1bef76bb610cc3bd.json} (71%) rename allure-report/data/test-cases/{5781ea9a417efe48.json => 1bf2db2d5f0c7414.json} (52%) delete mode 100644 allure-report/data/test-cases/1c0de6c68e45d781.json create mode 100644 allure-report/data/test-cases/1c59e45321407518.json create mode 100644 allure-report/data/test-cases/1c8c3b6600a20e75.json rename allure-report/data/test-cases/{6566b62febd2f997.json => 1ca9562da84c64b4.json} (72%) rename allure-report/data/test-cases/{613579922cc04140.json => 1cf942af51db20a3.json} (75%) create mode 100644 allure-report/data/test-cases/1d2104b5fa1d29b.json create mode 100644 allure-report/data/test-cases/1da47ab927a8de42.json delete mode 100644 allure-report/data/test-cases/1e52950a202e2f6f.json rename allure-report/data/test-cases/{9f7fc4731241a976.json => 1f14a6ccebe34b08.json} (58%) rename allure-report/data/test-cases/{11b652a05502070f.json => 20ae87fc51fb9338.json} (62%) create mode 100644 allure-report/data/test-cases/21f08ae936e1de27.json rename allure-report/data/test-cases/{1188dda60b67ea96.json => 21f553aee2e150e3.json} (58%) create mode 100644 allure-report/data/test-cases/239a317b6e090fd8.json rename allure-report/data/test-cases/{a6a0450be3f30fe6.json => 23e61e29448b9218.json} (64%) create mode 100644 allure-report/data/test-cases/256a10c9792b808f.json rename allure-report/data/test-cases/{616180d049b16d1d.json => 25a09c2c9e3c88b1.json} (54%) create mode 100644 allure-report/data/test-cases/25fd6f6c5cfe2b58.json create mode 100644 allure-report/data/test-cases/2655a1e6934b1850.json create mode 100644 allure-report/data/test-cases/26764a4bab46b2bf.json delete mode 100644 allure-report/data/test-cases/26cf86ca9eda4b5.json rename allure-report/data/test-cases/{cdb95614a08f7813.json => 26f23a936b51b328.json} (65%) rename allure-report/data/test-cases/{58ec93395b112a8f.json => 27b26e7a6523571a.json} (63%) create mode 100644 allure-report/data/test-cases/27d124696efa8c6c.json create mode 100644 allure-report/data/test-cases/27f5e11d20d2d96c.json create mode 100644 allure-report/data/test-cases/284ee1b80abfdb89.json rename allure-report/data/test-cases/{72010ab4f2692ae4.json => 286a2c6d22a3ea0b.json} (52%) create mode 100644 allure-report/data/test-cases/28c03a6c5cc24cef.json create mode 100644 allure-report/data/test-cases/2951c359ba3fd421.json rename allure-report/data/test-cases/{204251456ada0752.json => 2980fd5af6447b30.json} (72%) delete mode 100644 allure-report/data/test-cases/2aa3a63b6fff605a.json delete mode 100644 allure-report/data/test-cases/2b38fe6b8a5a46.json rename allure-report/data/test-cases/{90a24ba96aea3cfc.json => 2b5bdabfec79d6cf.json} (59%) rename allure-report/data/test-cases/{c37dfc82a096ec09.json => 2b5d1a28c2e7859f.json} (72%) create mode 100644 allure-report/data/test-cases/2b76b55d8c8f82d1.json create mode 100644 allure-report/data/test-cases/2b89947e3a3ec46d.json delete mode 100644 allure-report/data/test-cases/2b9309fd398214a5.json create mode 100644 allure-report/data/test-cases/2b98fb3b88f75199.json create mode 100644 allure-report/data/test-cases/2baefc3521a1da2a.json create mode 100644 allure-report/data/test-cases/2bfddef765c09569.json create mode 100644 allure-report/data/test-cases/2c6c8c712bf1892f.json delete mode 100644 allure-report/data/test-cases/2c78d4954ac14f9e.json create mode 100644 allure-report/data/test-cases/2cc2dcb2d1d8eb43.json create mode 100644 allure-report/data/test-cases/2ce701a458e1cd31.json delete mode 100644 allure-report/data/test-cases/2d25cb87282ab722.json rename allure-report/data/test-cases/{3fab8ff7d7139e20.json => 2db5e1fafcf7f4e1.json} (71%) rename allure-report/data/test-cases/{df0c490941a6877a.json => 2dc119e05306bc09.json} (61%) rename allure-report/data/test-cases/{458ee4cae9834334.json => 2dcd793cb9c1cce4.json} (73%) create mode 100644 allure-report/data/test-cases/2de3f7cf44554fd8.json create mode 100644 allure-report/data/test-cases/2e46c970e553e301.json rename allure-report/data/test-cases/{e9a0c341753d9526.json => 2e9a9a4090c00445.json} (72%) rename allure-report/data/test-cases/{6d22e154a5a83d80.json => 2f407878af91b1de.json} (71%) rename allure-report/data/test-cases/{500c62fc4806377c.json => 2f4ba657dc51e0d2.json} (75%) rename allure-report/data/test-cases/{f3ffd9201b6a1ce3.json => 2f4dd2b3858b1ec4.json} (69%) rename allure-report/data/test-cases/{87acfa055dcbe26a.json => 2f520e29faf9fa03.json} (63%) rename allure-report/data/test-cases/{743e871493ba28b4.json => 30218f5e2dbf6894.json} (69%) rename allure-report/data/test-cases/{9a325845218dd6ae.json => 302b8c55161cc361.json} (57%) rename allure-report/data/test-cases/{d1aabae67bc18ba0.json => 307a8cec4e791e32.json} (61%) rename allure-report/data/test-cases/{47a613697aa0c71f.json => 30b1174850b5a822.json} (93%) rename allure-report/data/test-cases/{47f8df09a84d8337.json => 31050b40d7651adc.json} (64%) rename allure-report/data/test-cases/{52187b3daff300ae.json => 32703c37c2f9cfbd.json} (55%) rename allure-report/data/test-cases/{b4fb6cdf4d1895f5.json => 3287e9af1a22ed8b.json} (73%) rename allure-report/data/test-cases/{db267da7b8a1b004.json => 32b8a7a180fb722f.json} (61%) create mode 100644 allure-report/data/test-cases/332b728d7cfdedcf.json rename allure-report/data/test-cases/{23cc390416e7aa52.json => 33a4a469899e9868.json} (65%) create mode 100644 allure-report/data/test-cases/33a7277db5231ef9.json delete mode 100644 allure-report/data/test-cases/33b81b348332f41f.json rename allure-report/data/test-cases/{bb0af84ecb430495.json => 33bc4a62afa9ed1a.json} (78%) create mode 100644 allure-report/data/test-cases/33e90a465d3b6e95.json rename allure-report/data/test-cases/{98d0f495e6dcba7e.json => 33fff97900a7d8bc.json} (61%) rename allure-report/data/test-cases/{9c38060cc376f686.json => 342dee44f5f15fde.json} (56%) create mode 100644 allure-report/data/test-cases/345a3bae73357330.json rename allure-report/data/test-cases/{398c0a461bbe2313.json => 34783e6754d286ec.json} (75%) create mode 100644 allure-report/data/test-cases/34a84f898de954b5.json create mode 100644 allure-report/data/test-cases/3529b67f8df1184b.json rename allure-report/data/test-cases/{7b9876690035f17.json => 35836d979e37575.json} (68%) create mode 100644 allure-report/data/test-cases/35f08e300f5635d6.json create mode 100644 allure-report/data/test-cases/36685d778f756fae.json create mode 100644 allure-report/data/test-cases/368118acc0dadb7d.json delete mode 100644 allure-report/data/test-cases/369d691aa58bf89d.json rename allure-report/data/test-cases/{b1ce4d34a0cdd5eb.json => 36b60db7bef82294.json} (64%) create mode 100644 allure-report/data/test-cases/36b7cb5a27235272.json create mode 100644 allure-report/data/test-cases/371c743cf6f64f1d.json delete mode 100644 allure-report/data/test-cases/37b95a78feb35857.json rename allure-report/data/test-cases/{8d05bbd591902299.json => 37f24af32c057862.json} (92%) create mode 100644 allure-report/data/test-cases/38365b0f6f350ca5.json rename allure-report/data/test-cases/{e7f4165c790464aa.json => 38b436d46d6537ee.json} (61%) rename allure-report/data/test-cases/{e03974f538ea8ee6.json => 39376204dc517df6.json} (67%) rename allure-report/data/test-cases/{103efa7b767774fa.json => 39a19c10cf88efee.json} (57%) rename allure-report/data/test-cases/{af580569ddf3e366.json => 3a0034b3910c9f0c.json} (65%) delete mode 100644 allure-report/data/test-cases/3a2392b112899a67.json rename allure-report/data/test-cases/{311e6a6343f5272c.json => 3aa67525242f5614.json} (92%) create mode 100644 allure-report/data/test-cases/3ae9a46b9a1e7c40.json create mode 100644 allure-report/data/test-cases/3b395c1683e127a4.json rename allure-report/data/test-cases/{39c69409f76377e7.json => 3b580876a88f5382.json} (55%) create mode 100644 allure-report/data/test-cases/3b89778e0f9a0b66.json rename allure-report/data/test-cases/{801bdccb4e1aa824.json => 3c0afff932465669.json} (65%) create mode 100644 allure-report/data/test-cases/3c17e0f5363e3016.json create mode 100644 allure-report/data/test-cases/3c3a8d947ad77b59.json rename allure-report/data/test-cases/{20308d2341c6b899.json => 3c944fe792fcd179.json} (94%) rename allure-report/data/test-cases/{1b3bd0a5ea1aa072.json => 3cb4765f4f4fe8e7.json} (60%) rename allure-report/data/test-cases/{a1571db34190da47.json => 3cd6da35a1920265.json} (73%) rename allure-report/data/test-cases/{cabe377ec9af3c98.json => 3d13030ecd2583e8.json} (68%) create mode 100644 allure-report/data/test-cases/3d4f8cb2de087cf.json rename allure-report/data/test-cases/{996165a0ada95681.json => 3d6e5f0961d8c06a.json} (63%) delete mode 100644 allure-report/data/test-cases/3e354a7b4ef8aa9f.json create mode 100644 allure-report/data/test-cases/3e68653192929d9b.json create mode 100644 allure-report/data/test-cases/3e8741eae0b44214.json rename allure-report/data/test-cases/{14d24a2946d66b00.json => 3ec407d8e8742f0d.json} (55%) rename allure-report/data/test-cases/{82e3ff5b5bd4ac62.json => 3ee1470ea7ce07a6.json} (68%) create mode 100644 allure-report/data/test-cases/3eea5577d98c581f.json rename allure-report/data/test-cases/{3f3af6e95d4ded07.json => 3f2abb7dc9376332.json} (75%) rename allure-report/data/test-cases/{1c922c5f58027b49.json => 3f94de18ab2e95fb.json} (58%) rename allure-report/data/test-cases/{d4c41912963969d7.json => 3fd800b8d3602698.json} (65%) create mode 100644 allure-report/data/test-cases/3ffa72675847f113.json create mode 100644 allure-report/data/test-cases/4045abc0bf075d90.json create mode 100644 allure-report/data/test-cases/405cf642fa0cf7c1.json rename allure-report/data/test-cases/{6e940c353ac4ade9.json => 4073719ea3c0e8fe.json} (91%) create mode 100644 allure-report/data/test-cases/40819c186d07d3de.json rename allure-report/data/test-cases/{449aa1de0e8221e9.json => 409a2a4f316497c6.json} (57%) create mode 100644 allure-report/data/test-cases/40c938f8f83f34f7.json create mode 100644 allure-report/data/test-cases/413fd3063d3e7dc4.json rename allure-report/data/test-cases/{83105e24306c53ac.json => 416790ca79634ed0.json} (57%) create mode 100644 allure-report/data/test-cases/419686fbcf063822.json delete mode 100644 allure-report/data/test-cases/41efd0d786aed73.json delete mode 100644 allure-report/data/test-cases/42383b817b641e4e.json create mode 100644 allure-report/data/test-cases/428efcfcd43d2531.json delete mode 100644 allure-report/data/test-cases/42bb8c96d4cb1bcf.json create mode 100644 allure-report/data/test-cases/43e7aaf3ed9f3ed0.json rename allure-report/data/test-cases/{e0851c0ba53ec6a9.json => 4433323b946a1c32.json} (64%) rename allure-report/data/test-cases/{88c7e92ae3f035ea.json => 445f2e59cb6a4191.json} (64%) create mode 100644 allure-report/data/test-cases/44c1e35d7a7b2adb.json rename allure-report/data/test-cases/{d9458c8615b9e985.json => 4544ac5de6415953.json} (65%) rename allure-report/data/test-cases/{ef7cb2e79441187e.json => 45f16c4708137d2d.json} (65%) create mode 100644 allure-report/data/test-cases/461527a27e50c04a.json rename allure-report/data/test-cases/{7ac9af93b3d2f297.json => 462780a7368c9ffd.json} (56%) rename allure-report/data/test-cases/{cdfe495bc85470d2.json => 47068bee5b06a234.json} (58%) create mode 100644 allure-report/data/test-cases/4750955362b24610.json rename allure-report/data/test-cases/{f81d7a6e8f8b1259.json => 47bce28013711283.json} (74%) create mode 100644 allure-report/data/test-cases/47cc31f6ebf12c13.json rename allure-report/data/test-cases/{972d0622d29729c4.json => 48abcc67292a5aa2.json} (68%) rename allure-report/data/test-cases/{5fa0c36654622313.json => 48ff8cbb530a1868.json} (73%) rename allure-report/data/test-cases/{5dad026541a05e65.json => 49355004a4136993.json} (59%) create mode 100644 allure-report/data/test-cases/4942ac4be65ef1b0.json rename allure-report/data/test-cases/{d5eb9c17e95fe424.json => 4961a0c52d810ec1.json} (79%) rename allure-report/data/test-cases/{aacbcab78401e86c.json => 49fb68289fb078f8.json} (71%) create mode 100644 allure-report/data/test-cases/4a35a10fb92b5fdb.json create mode 100644 allure-report/data/test-cases/4a386a153d4cde6.json rename allure-report/data/test-cases/{d5ae1235bc27ccba.json => 4aa405db56695158.json} (58%) create mode 100644 allure-report/data/test-cases/4aa537b5c88883a7.json rename allure-report/data/test-cases/{266702a52edb0749.json => 4ad4524b2ee92967.json} (67%) rename allure-report/data/test-cases/{4041d4d534df9c91.json => 4b58bd62b05a8814.json} (62%) create mode 100644 allure-report/data/test-cases/4b8219eb37520d2d.json create mode 100644 allure-report/data/test-cases/4b8d012f19a4e1e6.json rename allure-report/data/test-cases/{e6d62aae7d602336.json => 4bb422e9ca9901c8.json} (59%) create mode 100644 allure-report/data/test-cases/4c77d97bc41048ff.json rename allure-report/data/test-cases/{2348115dae27ed81.json => 4c7e13d0f61cf99a.json} (71%) rename allure-report/data/test-cases/{64a44b1c9018ad85.json => 4dc4de0a74fe7f66.json} (54%) rename allure-report/data/test-cases/{5d080f15b08c0b4f.json => 4df34ce2718b817c.json} (56%) rename allure-report/data/test-cases/{1f991ba5bad9e7e9.json => 4e32d03efab2941f.json} (58%) rename allure-report/data/test-cases/{dc29e000a4adcd25.json => 4ea31191e1f5ab3b.json} (55%) delete mode 100644 allure-report/data/test-cases/4ecd1e835300dbcf.json rename allure-report/data/test-cases/{fabe21d8eab469bd.json => 4f0296b5891c7763.json} (72%) create mode 100644 allure-report/data/test-cases/4f1172fa5620cc18.json delete mode 100644 allure-report/data/test-cases/4f85a4b1698202d.json delete mode 100644 allure-report/data/test-cases/4fb2a019463cdbdf.json rename allure-report/data/test-cases/{9098856200f13690.json => 500ac2fecd2b527c.json} (51%) delete mode 100644 allure-report/data/test-cases/504baf7c4d256536.json rename allure-report/data/test-cases/{d62d5681db1186b9.json => 5187a55d5b7bcbbd.json} (80%) rename allure-report/data/test-cases/{5a22d7a269c3ca06.json => 518cb319be0d6f5c.json} (52%) delete mode 100644 allure-report/data/test-cases/51971bf7ad109ed2.json rename allure-report/data/test-cases/{e0d5281d75a0b4df.json => 51c4ad89c4a768de.json} (59%) rename allure-report/data/test-cases/{54942c51ed88331c.json => 51e0b16785f0d461.json} (72%) delete mode 100644 allure-report/data/test-cases/52715db4a1ce5955.json rename allure-report/data/test-cases/{d6e4ebd44034ff08.json => 5319ceacad5a43bc.json} (71%) delete mode 100644 allure-report/data/test-cases/5320007ca0191a21.json delete mode 100644 allure-report/data/test-cases/5321a1bb93b59f1e.json create mode 100644 allure-report/data/test-cases/533bf937be1aa466.json delete mode 100644 allure-report/data/test-cases/536deebe5c2f9229.json rename allure-report/data/test-cases/{a10d36c92cf89a63.json => 53ac096f64d86d36.json} (63%) rename allure-report/data/test-cases/{252f381a068f762f.json => 54043a9fba80789b.json} (71%) create mode 100644 allure-report/data/test-cases/54bb63fb3736b8ae.json rename allure-report/data/test-cases/{761811e55728ed74.json => 54e4671ce8499dcf.json} (64%) rename allure-report/data/test-cases/{51a9aec46de8d878.json => 5519a1e9b61f2ca3.json} (55%) rename allure-report/data/test-cases/{650faaf602cc8f99.json => 552742d77daecee9.json} (59%) rename allure-report/data/test-cases/{84fd4c67efee5295.json => 55e4a84277d15d0d.json} (68%) rename allure-report/data/test-cases/{d6e6e46de805754f.json => 566a56003ac2e703.json} (57%) create mode 100644 allure-report/data/test-cases/56ad7c473898c46d.json rename allure-report/data/test-cases/{b99ca9a8ecf19524.json => 56ae9013352b7649.json} (65%) create mode 100644 allure-report/data/test-cases/56cce31bdf350ac7.json create mode 100644 allure-report/data/test-cases/56da494ae1701253.json create mode 100644 allure-report/data/test-cases/571176bf000b455b.json delete mode 100644 allure-report/data/test-cases/5740cd94d023a2bf.json rename allure-report/data/test-cases/{ed30e8563a89229a.json => 5795c1991578aaeb.json} (65%) rename allure-report/data/test-cases/{f72e37459a6b99ff.json => 57d69ca6b172040d.json} (73%) rename allure-report/data/test-cases/{a90fdb1fb3683308.json => 57e5e5f4d9d91cf6.json} (62%) rename allure-report/data/test-cases/{e722b9059cce92a0.json => 580b983b7062983c.json} (68%) rename allure-report/data/test-cases/{9cb8749ab5d5d5c7.json => 58e0261647deccd2.json} (66%) rename allure-report/data/test-cases/{776765eba79884f4.json => 59120ba12cafb7e8.json} (72%) create mode 100644 allure-report/data/test-cases/593778a5ba99d447.json rename allure-report/data/test-cases/{693c5b2693478689.json => 5961f436380e11d2.json} (57%) rename allure-report/data/test-cases/{2acb560e089cb7c8.json => 5998f9acb6d6dab8.json} (57%) create mode 100644 allure-report/data/test-cases/59b1922c33f3ac65.json rename allure-report/data/test-cases/{9393151991be7f33.json => 59e6c1fe5b50c363.json} (57%) delete mode 100644 allure-report/data/test-cases/59ff5157ed7e9ae.json create mode 100644 allure-report/data/test-cases/5a2ae93193e5280a.json rename allure-report/data/test-cases/{490cf50ddd5cff83.json => 5a497340f38e6588.json} (56%) create mode 100644 allure-report/data/test-cases/5af3f258cf327b2a.json rename allure-report/data/test-cases/{614b9e2de4457676.json => 5b153d545c48d264.json} (61%) create mode 100644 allure-report/data/test-cases/5b15d7c039eaff13.json rename allure-report/data/test-cases/{1467bda4d9665eda.json => 5b3fc84157197066.json} (79%) rename allure-report/data/test-cases/{d880bf6ff390f682.json => 5b88f232b1f58c27.json} (76%) rename allure-report/data/test-cases/{be5b8c63ffdd840d.json => 5be4a10a1a64fd59.json} (72%) create mode 100644 allure-report/data/test-cases/5c0b01ada3a3f14e.json rename allure-report/data/test-cases/{462e434377d791a9.json => 5c78d3bc5a71109a.json} (71%) create mode 100644 allure-report/data/test-cases/5cd4eeb8a4b79d6b.json create mode 100644 allure-report/data/test-cases/5ce6881896e2614d.json rename allure-report/data/test-cases/{5de6808258f0151f.json => 5d1981370251e5ca.json} (71%) create mode 100644 allure-report/data/test-cases/5d373bcba925975c.json create mode 100644 allure-report/data/test-cases/5d8c14adba840438.json rename allure-report/data/test-cases/{6c1504a4fcfadf69.json => 5ea1e8d078b774a7.json} (57%) create mode 100644 allure-report/data/test-cases/5ea5418b10cdf416.json create mode 100644 allure-report/data/test-cases/5eca272b3b393557.json rename allure-report/data/test-cases/{4783529dae6eb3af.json => 5f2df3f2c9b86d77.json} (79%) create mode 100644 allure-report/data/test-cases/5f6f3bc16b3488d6.json create mode 100644 allure-report/data/test-cases/5fabad9204d0747c.json rename allure-report/data/test-cases/{31cd5c9e8017f83c.json => 5fd184f18d9496f9.json} (61%) rename allure-report/data/test-cases/{eb3e9f6b3780b454.json => 5fda510dc29832db.json} (59%) create mode 100644 allure-report/data/test-cases/5ffc43ce0a9f46c9.json create mode 100644 allure-report/data/test-cases/60180807c3815756.json delete mode 100644 allure-report/data/test-cases/6022cdc8b5145e28.json rename allure-report/data/test-cases/{1719ddf6913445c8.json => 602b6b1c829f1e7f.json} (50%) create mode 100644 allure-report/data/test-cases/6030df3a53146090.json create mode 100644 allure-report/data/test-cases/6076e8e1aaaa11ab.json create mode 100644 allure-report/data/test-cases/607f84fe70696eb5.json rename allure-report/data/test-cases/{431c7499a8a042ca.json => 6113acbf67a69117.json} (63%) create mode 100644 allure-report/data/test-cases/614133ca9c69e105.json rename allure-report/data/test-cases/{9035abe5e1151932.json => 614d8ec123787b56.json} (53%) rename allure-report/data/test-cases/{d757011cc42c205e.json => 6207ccc30173aa77.json} (64%) create mode 100644 allure-report/data/test-cases/62141a9b45e036f9.json rename allure-report/data/test-cases/{ab4f4753656b93ab.json => 62507dec220dfd02.json} (69%) delete mode 100644 allure-report/data/test-cases/627da61e5891aa44.json create mode 100644 allure-report/data/test-cases/62e01ffb20b661b5.json create mode 100644 allure-report/data/test-cases/62ef482e2cb3493b.json rename allure-report/data/test-cases/{1073662453fffbc9.json => 6309fbba516976ae.json} (57%) rename allure-report/data/test-cases/{6af8fedb1f0ef3c6.json => 6373ea673c2617a2.json} (72%) rename allure-report/data/test-cases/{f50d911c93ffbcb0.json => 6399c372aa4005f1.json} (56%) rename allure-report/data/test-cases/{571c043aeb64d363.json => 63e9aeb63ef06083.json} (70%) create mode 100644 allure-report/data/test-cases/6421e8610575915.json create mode 100644 allure-report/data/test-cases/648462a68a83b780.json create mode 100644 allure-report/data/test-cases/649728966aa92b06.json rename allure-report/data/test-cases/{9e5b993187ac8b27.json => 64c2df72a296b62e.json} (64%) rename allure-report/data/test-cases/{587ebae959bb9619.json => 64cdb3b918aa694e.json} (72%) rename allure-report/data/test-cases/{f8cc7e1ba1a4852f.json => 64d00badde981bd3.json} (59%) create mode 100644 allure-report/data/test-cases/656eaa4febf44ace.json rename allure-report/data/test-cases/{139c28ca38674b14.json => 65a370055ee8e2b9.json} (67%) rename allure-report/data/test-cases/{da49bdf1737798b8.json => 65cad3353d8c115b.json} (66%) create mode 100644 allure-report/data/test-cases/65d5a47944859245.json create mode 100644 allure-report/data/test-cases/660684096c18d05d.json create mode 100644 allure-report/data/test-cases/6660f839d8534ee2.json create mode 100644 allure-report/data/test-cases/67a957cc2815c6ee.json rename allure-report/data/test-cases/{10b94291a50321ec.json => 67f932ff555edbd0.json} (69%) rename allure-report/data/test-cases/{91e2410535ccc997.json => 684d4d6fbb32213a.json} (64%) rename allure-report/data/test-cases/{55d1d73293e16236.json => 68ae9688c7c99a04.json} (65%) delete mode 100644 allure-report/data/test-cases/68c4a39d8a6017b.json rename allure-report/data/test-cases/{30fbee992b0ca53e.json => 68db53b8169ad957.json} (74%) rename allure-report/data/test-cases/{1dfdd5c5551a6420.json => 691701add6daaf89.json} (63%) rename allure-report/data/test-cases/{474af6c568bdf675.json => 693d19da33d622de.json} (65%) create mode 100644 allure-report/data/test-cases/698c99dcac4b0d93.json delete mode 100644 allure-report/data/test-cases/69f65011f131e2b6.json delete mode 100644 allure-report/data/test-cases/6a1d96979e635e7f.json rename allure-report/data/test-cases/{bfe92f9ff640a644.json => 6a59d6609523c5a8.json} (61%) create mode 100644 allure-report/data/test-cases/6c70ddf45fea2887.json create mode 100644 allure-report/data/test-cases/6ca78efd90ffa643.json create mode 100644 allure-report/data/test-cases/6d7f7d9659ba7dd5.json create mode 100644 allure-report/data/test-cases/6e3ab906ce5621b5.json create mode 100644 allure-report/data/test-cases/6e3ce129a9f8f588.json rename allure-report/data/test-cases/{133341d40af1e905.json => 6f0b2af516b0f755.json} (77%) rename allure-report/data/test-cases/{84f17449b7b13451.json => 6fbd93f1e3abe9a5.json} (65%) rename allure-report/data/test-cases/{2b7f0b03733442e8.json => 6feb6674f3a0e85e.json} (58%) delete mode 100644 allure-report/data/test-cases/70085274c959a3cb.json rename allure-report/data/test-cases/{31b67858aaa81503.json => 702c9f7aebde64af.json} (69%) delete mode 100644 allure-report/data/test-cases/704aacac2db91585.json create mode 100644 allure-report/data/test-cases/7087926d4a83e9d4.json create mode 100644 allure-report/data/test-cases/70963d87150b1b7f.json create mode 100644 allure-report/data/test-cases/70eff3ae24ccc67a.json create mode 100644 allure-report/data/test-cases/711928de75b599ba.json rename allure-report/data/test-cases/{6d9afe9fda19581e.json => 711e095503a0cf45.json} (59%) rename allure-report/data/test-cases/{39245131d70863d6.json => 7131237025069abe.json} (63%) create mode 100644 allure-report/data/test-cases/71e40623077306da.json rename allure-report/data/test-cases/{38639b46d1e381a9.json => 72a7c9402c254937.json} (70%) rename allure-report/data/test-cases/{85cc51a7df0f4a6c.json => 73100341c811e8de.json} (72%) rename allure-report/data/test-cases/{6cad203fab564c60.json => 7362d176d35d3813.json} (61%) rename allure-report/data/test-cases/{b1d54b76165521a0.json => 73a56012085cbb67.json} (55%) rename allure-report/data/test-cases/{deed80da6e08bd69.json => 73db1f36a5925004.json} (60%) create mode 100644 allure-report/data/test-cases/73f30fbb9798a5d5.json create mode 100644 allure-report/data/test-cases/749e2bcfe9e98a99.json create mode 100644 allure-report/data/test-cases/74b0969e7db4effb.json rename allure-report/data/test-cases/{6ea719d6e8a376fb.json => 74c746ac3dc42135.json} (58%) create mode 100644 allure-report/data/test-cases/751027d0ac0cc021.json create mode 100644 allure-report/data/test-cases/7560669431ea4aa8.json rename allure-report/data/test-cases/{13e77cd2d97ddcd8.json => 75ba956cc9ee13f9.json} (61%) rename allure-report/data/test-cases/{57efbea0ccf3907a.json => 76dad62f743b3603.json} (64%) rename allure-report/data/test-cases/{fd395297ed368b03.json => 7718694e0e976912.json} (59%) create mode 100644 allure-report/data/test-cases/772347d4d5d65952.json rename allure-report/data/test-cases/{585949d19b46a5d2.json => 772c9d6fdd465a8a.json} (61%) create mode 100644 allure-report/data/test-cases/777edc280c74020d.json rename allure-report/data/test-cases/{a54c934450b934d7.json => 77e868a9cd944330.json} (81%) create mode 100644 allure-report/data/test-cases/784b6f629ce5c547.json rename allure-report/data/test-cases/{2cfa19c331ab824b.json => 7a3ebc7dbd092b26.json} (68%) rename allure-report/data/test-cases/{a70ffb4d0a92e5c8.json => 7b13f1197b1367b6.json} (58%) rename allure-report/data/test-cases/{d946600dafcc1f6d.json => 7be232a1c65ba711.json} (54%) rename allure-report/data/test-cases/{df0cebb647c4d6ba.json => 7c9ea3ba0070bf05.json} (69%) create mode 100644 allure-report/data/test-cases/7cc0844ab5ecf216.json create mode 100644 allure-report/data/test-cases/7d6c6bb6b47e11d4.json rename allure-report/data/test-cases/{e6a3da330525d2f4.json => 7d905be84b5c0b77.json} (55%) rename allure-report/data/test-cases/{7fd5632b0213855d.json => 7da87d8449dbfb8b.json} (57%) create mode 100644 allure-report/data/test-cases/7e357cecc68f801.json rename allure-report/data/test-cases/{82619e3fb0e84d4d.json => 7e5150fbd4a33237.json} (66%) create mode 100644 allure-report/data/test-cases/7e997a5018ff0710.json rename allure-report/data/test-cases/{5baa430d724786c4.json => 80598dcd2309aaf9.json} (76%) delete mode 100644 allure-report/data/test-cases/80dd204b4961834.json rename allure-report/data/test-cases/{c799982c38b97fcc.json => 813aa9dc885c2882.json} (50%) rename allure-report/data/test-cases/{1e3570598c901af4.json => 815ff7102e2d18bc.json} (64%) rename allure-report/data/test-cases/{dee0416f79d22a0d.json => 8173581ebbb7cc32.json} (54%) create mode 100644 allure-report/data/test-cases/81c03b59fa01f666.json create mode 100644 allure-report/data/test-cases/8215947106021b54.json rename allure-report/data/test-cases/{7b2352a8e3675c67.json => 827104e07f2ca2d0.json} (64%) rename allure-report/data/test-cases/{3cf8d83dbb2d66b5.json => 82a681e3f0c8f54d.json} (62%) create mode 100644 allure-report/data/test-cases/82a8f1ffa445d40.json rename allure-report/data/test-cases/{a97caba53074497b.json => 837e4ce24ac45efb.json} (54%) rename allure-report/data/test-cases/{af543ced061d8858.json => 83b7eb2988572ef6.json} (72%) rename allure-report/data/test-cases/{8271021679b0cc06.json => 83c423646ff2d9ba.json} (76%) rename allure-report/data/test-cases/{e10517b1ea4eb479.json => 843ad9a1e8e9ca65.json} (58%) rename allure-report/data/test-cases/{fc2c5a5df6e26162.json => 844543e89f44e3d5.json} (58%) delete mode 100644 allure-report/data/test-cases/8451096f3488e82.json delete mode 100644 allure-report/data/test-cases/84aa3b23910872ae.json rename allure-report/data/test-cases/{76548c4669002681.json => 84d177b8ff2c367d.json} (50%) rename allure-report/data/test-cases/{dcb40cbe5ee38417.json => 85284c487c263073.json} (67%) rename allure-report/data/test-cases/{d7c1fb6f236110ca.json => 85b55023f525bac2.json} (60%) rename allure-report/data/test-cases/{ee4f0501c1152713.json => 85df8de56a96ab7c.json} (65%) rename allure-report/data/test-cases/{f711bbcd16ab2119.json => 863d9e582b6f3de4.json} (64%) delete mode 100644 allure-report/data/test-cases/8655885cb5db7a58.json rename allure-report/data/test-cases/{ed37a80783d347db.json => 86b489ae6b8c1d23.json} (68%) delete mode 100644 allure-report/data/test-cases/874b39a75ad8fa3b.json create mode 100644 allure-report/data/test-cases/877a76cbb202d7b3.json rename allure-report/data/test-cases/{2512233f29820ca9.json => 87c07388b10e55d5.json} (65%) rename allure-report/data/test-cases/{9b0990a97652b0f6.json => 87d2fa2dfc5fe491.json} (78%) create mode 100644 allure-report/data/test-cases/87dc5713a007f1d7.json create mode 100644 allure-report/data/test-cases/8804093a9c3b17d.json rename allure-report/data/test-cases/{6ab6caccad49b468.json => 883f1439af050615.json} (58%) rename allure-report/data/test-cases/{1ece392343bb9b12.json => 88a73a4735cff92e.json} (60%) rename allure-report/data/test-cases/{31f6e05cb2bf8e17.json => 89027a401f5af485.json} (76%) create mode 100644 allure-report/data/test-cases/891203fa0698ca9.json create mode 100644 allure-report/data/test-cases/893dcbf3da59eb02.json create mode 100644 allure-report/data/test-cases/8949506fce676285.json create mode 100644 allure-report/data/test-cases/898b5d5677e24adf.json rename allure-report/data/test-cases/{a96041a690fcc058.json => 89c602359c6f109b.json} (72%) rename allure-report/data/test-cases/{ddf52bfae3cd34f4.json => 8a9b52813983814b.json} (74%) create mode 100644 allure-report/data/test-cases/8b3214317e10e87f.json rename allure-report/data/test-cases/{87be1c294a496f4a.json => 8b80aa0a92a1ed02.json} (77%) create mode 100644 allure-report/data/test-cases/8beabd2469a668.json rename allure-report/data/test-cases/{7637c123d5cf58af.json => 8c6df3dc2deaaefa.json} (70%) rename allure-report/data/test-cases/{a50af3a4d2a7afb5.json => 8c72192846448826.json} (66%) rename allure-report/data/test-cases/{9b4ada0bf1630c0a.json => 8c7db5518444ac71.json} (64%) create mode 100644 allure-report/data/test-cases/8c8d43e9d38910da.json rename allure-report/data/test-cases/{aefb4681bbbff0c9.json => 8cdb3386cf094e1f.json} (81%) rename allure-report/data/test-cases/{debf2b82465b0240.json => 8cf44bb18023836b.json} (64%) rename allure-report/data/test-cases/{e9aaea22e808b4eb.json => 8d5ed16bbc896a22.json} (59%) create mode 100644 allure-report/data/test-cases/8da01589d3299948.json rename allure-report/data/test-cases/{645c6c05562d2f01.json => 8dcfddf689f44d1d.json} (66%) create mode 100644 allure-report/data/test-cases/8dde6031964dc28f.json rename allure-report/data/test-cases/{6d9270ca3330737a.json => 8dea57e5544d4774.json} (71%) rename allure-report/data/test-cases/{f6e7e7d9161dd5e2.json => 8e17b24d548befe2.json} (53%) create mode 100644 allure-report/data/test-cases/8e1e8d12e75298b.json rename allure-report/data/test-cases/{92297f3cbdd8ad78.json => 8e1e999ab6569b87.json} (58%) rename allure-report/data/test-cases/{148a22b7e430194f.json => 8e7bc3e134c68e92.json} (53%) create mode 100644 allure-report/data/test-cases/8ea6e5a2b5515469.json rename allure-report/data/test-cases/{22fcf1edf8ebf197.json => 8efea6185ce9f545.json} (93%) rename allure-report/data/test-cases/{17d8ff61005bb0bc.json => 8f3fc2a4deaebd0d.json} (68%) create mode 100644 allure-report/data/test-cases/900a2cbb7155295.json rename allure-report/data/test-cases/{49aa5cc4276ca55b.json => 90184d6eca761182.json} (60%) rename allure-report/data/test-cases/{7a1019ba1beb3118.json => 90a10a824ed5b372.json} (56%) rename allure-report/data/test-cases/{c8be7042d182d7bb.json => 90c86a448294d535.json} (70%) create mode 100644 allure-report/data/test-cases/90d2f619b6b55a93.json rename allure-report/data/test-cases/{1edd352618c6aa2b.json => 910c497042fbb9d7.json} (92%) create mode 100644 allure-report/data/test-cases/91c9b008755c7351.json rename allure-report/data/test-cases/{808471d4cfeae814.json => 920950efadf9f044.json} (67%) rename allure-report/data/test-cases/{b0ff51cf7a3c2781.json => 924a52587e7b2c82.json} (68%) create mode 100644 allure-report/data/test-cases/9267ea7150c527ef.json create mode 100644 allure-report/data/test-cases/92a7ecb29f4704b1.json rename allure-report/data/test-cases/{7028cdfd068e31be.json => 9326ca5c3b3bcaf3.json} (76%) rename allure-report/data/test-cases/{ed5fbc4b14885f68.json => 933ecb6fe52a564f.json} (68%) rename allure-report/data/test-cases/{4979ee3063a87441.json => 9348c64cc78f5d13.json} (72%) rename allure-report/data/test-cases/{56a28cc490d83b65.json => 937c9b1e748aadb0.json} (57%) create mode 100644 allure-report/data/test-cases/93ceeb95a47fabbf.json create mode 100644 allure-report/data/test-cases/9451201a4cae53ad.json rename allure-report/data/test-cases/{1dee8c06fd165199.json => 945a96aedc88e8fe.json} (72%) rename allure-report/data/test-cases/{23b523b580f78123.json => 94af9200e69d147a.json} (79%) rename allure-report/data/test-cases/{a9f33e581ec48813.json => 951576068e42ee36.json} (78%) delete mode 100644 allure-report/data/test-cases/95172229a5a9ad6.json create mode 100644 allure-report/data/test-cases/9521eb418a2faa99.json delete mode 100644 allure-report/data/test-cases/9525e56c1666fc0f.json rename allure-report/data/test-cases/{df11ad8a9930a85d.json => 95521fe2b6cd2563.json} (62%) rename allure-report/data/test-cases/{b1c2f2381b1441f6.json => 9557455e27a468ef.json} (61%) rename allure-report/data/test-cases/{f7ad7c048e8324d3.json => 9585be0acd74f7c1.json} (76%) rename allure-report/data/test-cases/{5e4b4c0a3aeae99e.json => 95a29a9545c416cd.json} (71%) delete mode 100644 allure-report/data/test-cases/95ddc175910ea52.json delete mode 100644 allure-report/data/test-cases/95e612b16602c749.json delete mode 100644 allure-report/data/test-cases/964ad50f448ed64d.json rename allure-report/data/test-cases/{a2fbd8f640be4431.json => 965a3663c8644328.json} (73%) create mode 100644 allure-report/data/test-cases/967fef280aa6e796.json create mode 100644 allure-report/data/test-cases/96df3e350e2ba16f.json create mode 100644 allure-report/data/test-cases/973452fbe07efc18.json rename allure-report/data/test-cases/{8a76fd0002a5824c.json => 97ad1cd914697b30.json} (57%) create mode 100644 allure-report/data/test-cases/9800852f4c3c1957.json delete mode 100644 allure-report/data/test-cases/98200e3d5ae32ca.json create mode 100644 allure-report/data/test-cases/984af3d5d8056be9.json create mode 100644 allure-report/data/test-cases/98c161ccba9924bd.json create mode 100644 allure-report/data/test-cases/996ab105867adbc9.json rename allure-report/data/test-cases/{2965d2d3db0ea08e.json => 997065a61e801d4c.json} (65%) rename allure-report/data/test-cases/{a93bd997ced3859a.json => 99b8e6f5f8a43508.json} (62%) rename allure-report/data/test-cases/{35cf25b9e515e00d.json => 99ca7a938f9d4989.json} (59%) rename allure-report/data/test-cases/{dbd8c0e7d9b1bcd0.json => 9a401d5b28fee66a.json} (74%) rename allure-report/data/test-cases/{e41551e078ed42ea.json => 9abe86e868e9efe6.json} (69%) rename allure-report/data/test-cases/{d5a389260d41a743.json => 9ac6d40036941792.json} (58%) rename allure-report/data/test-cases/{e738d6d09d0feb9e.json => 9b1bc0b9a480db3e.json} (77%) create mode 100644 allure-report/data/test-cases/9b5127c91b9deeb6.json rename allure-report/data/test-cases/{b96004f0b179053d.json => 9b613507776a0871.json} (57%) create mode 100644 allure-report/data/test-cases/9c241cc9403723af.json rename allure-report/data/test-cases/{675849fee1009391.json => 9c2fc5bac7417dd0.json} (58%) rename allure-report/data/test-cases/{b5a45493f51c1d67.json => 9c43e0c7813423da.json} (55%) create mode 100644 allure-report/data/test-cases/9c5c32029e742eac.json rename allure-report/data/test-cases/{ee325afc05dcb3e8.json => 9cbf1053b771d679.json} (69%) rename allure-report/data/test-cases/{8af4ebd0495f0e70.json => 9d10f71bfad2e1ef.json} (72%) rename allure-report/data/test-cases/{63bb569f11b7f542.json => 9dc85df7fba3a78e.json} (61%) create mode 100644 allure-report/data/test-cases/9dd5714486b51753.json rename allure-report/data/test-cases/{8c975897c57d974e.json => 9e6f93dfe778ff9a.json} (69%) rename allure-report/data/test-cases/{abba91be3722688b.json => 9ee9ff331756b11e.json} (54%) create mode 100644 allure-report/data/test-cases/9f02852e3aa10b6d.json rename allure-report/data/test-cases/{39ba63dd42027b29.json => 9f8b999462605375.json} (74%) create mode 100644 allure-report/data/test-cases/9f9422c1f71252b6.json rename allure-report/data/test-cases/{280a7287fd39d5a9.json => 9fa9266ff3a1c464.json} (64%) rename allure-report/data/test-cases/{a492d74df14be54a.json => a076808e43574371.json} (63%) rename allure-report/data/test-cases/{327fbdea3443aca5.json => a0d455d6bf21528b.json} (63%) create mode 100644 allure-report/data/test-cases/a10876da94fb2b4f.json create mode 100644 allure-report/data/test-cases/a1a7aeb13172d1f0.json rename allure-report/data/test-cases/{f4ad45627654b5fc.json => a1b53b199c1c867e.json} (93%) create mode 100644 allure-report/data/test-cases/a224a931a5567f85.json rename allure-report/data/test-cases/{ac127c4c71bf788d.json => a258a6f00a3ffda1.json} (70%) rename allure-report/data/test-cases/{99a050e28b9f808c.json => a2cc2be21cb9d7cd.json} (55%) rename allure-report/data/test-cases/{9a93b35004a87c6a.json => a3216b951d3fac8b.json} (94%) create mode 100644 allure-report/data/test-cases/a3370192ce6dd676.json create mode 100644 allure-report/data/test-cases/a3395496d8bde803.json create mode 100644 allure-report/data/test-cases/a349732eb44f62b9.json rename allure-report/data/test-cases/{ede582dcc2b34bf3.json => a3b2f77071e9a780.json} (59%) create mode 100644 allure-report/data/test-cases/a405e7d50def0411.json create mode 100644 allure-report/data/test-cases/a4849e99633e4676.json delete mode 100644 allure-report/data/test-cases/a4b7cb6ba7726224.json delete mode 100644 allure-report/data/test-cases/a4f7c6dc4c7e84.json rename allure-report/data/test-cases/{8f884e4fa29bb7d4.json => a530698ca5ed066c.json} (72%) create mode 100644 allure-report/data/test-cases/a57a3497f4402b67.json create mode 100644 allure-report/data/test-cases/a7008d20e58a9d6a.json create mode 100644 allure-report/data/test-cases/a76c277b6c0b5940.json create mode 100644 allure-report/data/test-cases/a770e6ac7d91604a.json create mode 100644 allure-report/data/test-cases/a77a517a493b3eb2.json rename allure-report/data/test-cases/{ab70ba446dcfc9e3.json => a7a27da7101eb431.json} (70%) rename allure-report/data/test-cases/{922eccc2ca8ed714.json => a7d4500da5fb8933.json} (67%) rename allure-report/data/test-cases/{bc5cb7d257f882a1.json => a8b77a6618ff7e4c.json} (94%) create mode 100644 allure-report/data/test-cases/a8ef326c3cb7b77c.json create mode 100644 allure-report/data/test-cases/aa08a95162404297.json create mode 100644 allure-report/data/test-cases/aa3ebaa27581f198.json rename allure-report/data/test-cases/{5b9aa5357d8d514d.json => ab40fd2a8eefa024.json} (67%) create mode 100644 allure-report/data/test-cases/ac136a3215f7ad6c.json create mode 100644 allure-report/data/test-cases/ac379271ec16d5ad.json rename allure-report/data/test-cases/{6fce95111dc1cc14.json => ac81c5ec86387239.json} (63%) create mode 100644 allure-report/data/test-cases/ac8683bc2703e398.json create mode 100644 allure-report/data/test-cases/acdec238a53c10e1.json create mode 100644 allure-report/data/test-cases/acf49fc01f491be4.json rename allure-report/data/test-cases/{1b8dc3acaf7dd027.json => acfebfd078f8e03c.json} (72%) rename allure-report/data/test-cases/{d57f06aa2f911f40.json => ad8dd1da3b7d646d.json} (59%) rename allure-report/data/test-cases/{371888dd705cab28.json => aeac31a6eff8ced3.json} (57%) rename allure-report/data/test-cases/{59863a86bad45fb3.json => af31da4a2f7e0b3c.json} (68%) rename allure-report/data/test-cases/{91ed862dacbec840.json => af4da168bd187f62.json} (93%) create mode 100644 allure-report/data/test-cases/af82a0c3b0cef265.json rename allure-report/data/test-cases/{2077f18aded36c8a.json => b01c60cc4e07480b.json} (72%) create mode 100644 allure-report/data/test-cases/b03752c3145720e6.json rename allure-report/data/test-cases/{a51a382d521d00cc.json => b080152571ac4adf.json} (75%) rename allure-report/data/test-cases/{b29b4bc1c1fe7917.json => b169e974f5edace2.json} (66%) create mode 100644 allure-report/data/test-cases/b1cbd478c753b1e.json create mode 100644 allure-report/data/test-cases/b1f2cc8e1be032d.json create mode 100644 allure-report/data/test-cases/b2705032891531e8.json create mode 100644 allure-report/data/test-cases/b2ea4d6d64dc027a.json delete mode 100644 allure-report/data/test-cases/b3223ce64ed8bee2.json rename allure-report/data/test-cases/{9519f48ec729ba4c.json => b325ede7f1ceeec3.json} (58%) create mode 100644 allure-report/data/test-cases/b36380d1077ce20b.json rename allure-report/data/test-cases/{4d0514d90adb5feb.json => b3c5df850665402e.json} (67%) create mode 100644 allure-report/data/test-cases/b3db9caa12a5149e.json create mode 100644 allure-report/data/test-cases/b4706ff9d2a2958c.json delete mode 100644 allure-report/data/test-cases/b48a50dffbb61197.json rename allure-report/data/test-cases/{895ce9b19a080b91.json => b4abfaf3d77f3f23.json} (77%) create mode 100644 allure-report/data/test-cases/b5a113fbe50e74ce.json delete mode 100644 allure-report/data/test-cases/b6301a55868859d.json create mode 100644 allure-report/data/test-cases/b673d7ca3af16ae5.json create mode 100644 allure-report/data/test-cases/b67813f1cae4659e.json rename allure-report/data/test-cases/{337891d8027fbc46.json => b67b48d7bd01382a.json} (58%) create mode 100644 allure-report/data/test-cases/b6d0f7b70ff35380.json create mode 100644 allure-report/data/test-cases/b7243d74fc99fb8b.json rename allure-report/data/test-cases/{59ab6d9b07f441c0.json => b7812824440b717e.json} (67%) rename allure-report/data/test-cases/{c1e0648976f6a694.json => b890a6fea083097f.json} (58%) create mode 100644 allure-report/data/test-cases/b897401968bf0d8.json delete mode 100644 allure-report/data/test-cases/b8a68af9dbc0f892.json rename allure-report/data/test-cases/{11b4e7794c00f220.json => b921129ad79b857f.json} (71%) rename allure-report/data/test-cases/{7511d5ab976a748a.json => b982073aac2c9d08.json} (61%) rename allure-report/data/test-cases/{7f90afc62f8400f4.json => b9ab4feb44c59984.json} (51%) create mode 100644 allure-report/data/test-cases/b9b6a14fc4bd1dd7.json rename allure-report/data/test-cases/{130e4ffebf4e47af.json => ba7aa507beaa1547.json} (55%) rename allure-report/data/test-cases/{d5804044d1767680.json => bc039aea1f276c5c.json} (68%) create mode 100644 allure-report/data/test-cases/bcc8c6b28fb32dd0.json rename allure-report/data/test-cases/{d9a6d590487a20fd.json => bce82edab468d2f2.json} (54%) create mode 100644 allure-report/data/test-cases/bd11ee5929c6c53a.json create mode 100644 allure-report/data/test-cases/bd4541daca134967.json create mode 100644 allure-report/data/test-cases/bd8413842923f1e.json rename allure-report/data/test-cases/{bf3022b66d91aba7.json => bdddf7ddac3322c3.json} (68%) rename allure-report/data/test-cases/{6e797d850b813669.json => be34e44ef544dd56.json} (65%) create mode 100644 allure-report/data/test-cases/be618dffc8aac711.json rename allure-report/data/test-cases/{bfd2093ec920e131.json => be628f1c5b8245e1.json} (71%) create mode 100644 allure-report/data/test-cases/be8f9e1d393606ac.json rename allure-report/data/test-cases/{bd5d964c0a6197cf.json => bf2c284d4d5bb98c.json} (71%) rename allure-report/data/test-cases/{535d557e01267994.json => bf6ae18a8ec3d384.json} (70%) rename allure-report/data/test-cases/{92083f552ecb72c4.json => bf7acd85eab5cf37.json} (57%) create mode 100644 allure-report/data/test-cases/bfc6af42137d4620.json rename allure-report/data/test-cases/{e1471afe863c97c8.json => c072892b1c739356.json} (59%) rename allure-report/data/test-cases/{a60fe7d0456e1873.json => c0d55ad9fdfb0f8a.json} (57%) create mode 100644 allure-report/data/test-cases/c0f4e1faa852c595.json rename allure-report/data/test-cases/{f1ac1e81621379df.json => c1b76ff1cacf5544.json} (57%) delete mode 100644 allure-report/data/test-cases/c1d9afec6278b1a8.json create mode 100644 allure-report/data/test-cases/c3d1eec0ca08f2cd.json create mode 100644 allure-report/data/test-cases/c42292a9c36c46f3.json rename allure-report/data/test-cases/{b8b1a20b1ac22e64.json => c4304a318e243c50.json} (57%) create mode 100644 allure-report/data/test-cases/c4a8605181ed2d7.json create mode 100644 allure-report/data/test-cases/c4d384465e183d6.json create mode 100644 allure-report/data/test-cases/c580e79550c46f66.json create mode 100644 allure-report/data/test-cases/c58cb7ae6e5a9993.json rename allure-report/data/test-cases/{f90c5e53432ea6c2.json => c5ea93b10613ec53.json} (66%) rename allure-report/data/test-cases/{2460353038ce1955.json => c5f3069d223f82c6.json} (57%) rename allure-report/data/test-cases/{e21dc9fd5c9ffdad.json => c6923016c0d7805e.json} (59%) rename allure-report/data/test-cases/{b72d4e8ad3288d1b.json => c6eafeb1b2d72c83.json} (61%) rename allure-report/data/test-cases/{b0f9b8de2eb00fed.json => c6f52d0b9e8ac3c5.json} (72%) rename allure-report/data/test-cases/{cde5d1b46b10d7ac.json => c74e320818fb9682.json} (68%) create mode 100644 allure-report/data/test-cases/c77f51e83226296c.json rename allure-report/data/test-cases/{95011c2c3c205658.json => c7a63127b0ec26d9.json} (57%) create mode 100644 allure-report/data/test-cases/c7c4b4c39dca1f7a.json create mode 100644 allure-report/data/test-cases/c7e963fd1c95dafe.json rename allure-report/data/test-cases/{90a114379d845ff7.json => c7eea171ede7ee13.json} (68%) rename allure-report/data/test-cases/{41ca81ef54591f7f.json => c8870275fadfceea.json} (70%) rename allure-report/data/test-cases/{f5f1282b0eb8a484.json => c898f599f64280c3.json} (70%) rename allure-report/data/test-cases/{826a0963540c6e75.json => c89e6a91bc0b9e52.json} (54%) rename allure-report/data/test-cases/{b97e3a9bf54f17f3.json => c8c44a676a12b5c6.json} (60%) create mode 100644 allure-report/data/test-cases/c919701b7942665.json rename allure-report/data/test-cases/{5a941d3b90762a67.json => c94aec0d920b7f7d.json} (53%) rename allure-report/data/test-cases/{a381266642fdbdd2.json => cc1bd3cedb1bfef0.json} (73%) delete mode 100644 allure-report/data/test-cases/cc5bed1d964110c.json delete mode 100644 allure-report/data/test-cases/cd862d92408a60a2.json rename allure-report/data/test-cases/{884c8d1f852cc3dc.json => cd9da9d797a3c2ab.json} (53%) rename allure-report/data/test-cases/{108c2723377a98c0.json => cda9164d86dd0b79.json} (64%) create mode 100644 allure-report/data/test-cases/cdb2fb8959394c65.json rename allure-report/data/test-cases/{fd4d83368b6d5d5e.json => cf437ca3dc1624b1.json} (72%) create mode 100644 allure-report/data/test-cases/cf71a425c4796a9.json create mode 100644 allure-report/data/test-cases/cfaf892be75c5d35.json create mode 100644 allure-report/data/test-cases/d04b40a520c97bdd.json create mode 100644 allure-report/data/test-cases/d121ae5a75cc69b9.json rename allure-report/data/test-cases/{dead64fe3d4f484d.json => d12fb82b623fefb9.json} (53%) create mode 100644 allure-report/data/test-cases/d1974f16b30f7476.json create mode 100644 allure-report/data/test-cases/d19efceb39f40f4f.json delete mode 100644 allure-report/data/test-cases/d1a80d9f422182d.json delete mode 100644 allure-report/data/test-cases/d3037fd25424c6f3.json create mode 100644 allure-report/data/test-cases/d38d4627913b0040.json rename allure-report/data/test-cases/{11ee5493e293e3de.json => d4258a66cc0cec29.json} (77%) rename allure-report/data/test-cases/{a70604cd2465a183.json => d42759854937ade9.json} (76%) create mode 100644 allure-report/data/test-cases/d4a0809a7647965.json rename allure-report/data/test-cases/{78957f7729625c40.json => d4af7c6dd9a36bc3.json} (63%) rename allure-report/data/test-cases/{52dd320a58bdb229.json => d4bd80ae04896a86.json} (59%) rename allure-report/data/test-cases/{e5ae32dea8d8e5c3.json => d4d9b4f519ec1ce3.json} (67%) create mode 100644 allure-report/data/test-cases/d562abb8385a61c5.json rename allure-report/data/test-cases/{9f6955234023cbe8.json => d58adc2ec0d31961.json} (64%) rename allure-report/data/test-cases/{19146436627ee869.json => d58da60cf24b7660.json} (73%) create mode 100644 allure-report/data/test-cases/d66079b030735db8.json create mode 100644 allure-report/data/test-cases/d7d1e3c0f9370311.json create mode 100644 allure-report/data/test-cases/d7eae685c38fccbb.json create mode 100644 allure-report/data/test-cases/d820d165ec4b4b72.json create mode 100644 allure-report/data/test-cases/d9328098007f6ade.json rename allure-report/data/test-cases/{ca423ea5ac901436.json => d936198953d58b58.json} (76%) rename allure-report/data/test-cases/{e2d8966b9a0500aa.json => d97402e929388a59.json} (66%) rename allure-report/data/test-cases/{d8d5d2ee94f4b051.json => d9af06a5366a3631.json} (56%) rename allure-report/data/test-cases/{1b018537831100fb.json => d9dd09ce35083af7.json} (74%) create mode 100644 allure-report/data/test-cases/da02dcc2ce3c4d85.json rename allure-report/data/test-cases/{8baea38a8fa67e7e.json => da6d336020bff47c.json} (76%) create mode 100644 allure-report/data/test-cases/db6f47361aae7a53.json create mode 100644 allure-report/data/test-cases/dc1c20798f5a8f0a.json rename allure-report/data/test-cases/{ce00ffd36d904f61.json => dc1f8d6367d3e66e.json} (75%) rename allure-report/data/test-cases/{ddd327d6f403c655.json => dcee0c4d2268b964.json} (74%) create mode 100644 allure-report/data/test-cases/dd6fef8ab37d71ba.json create mode 100644 allure-report/data/test-cases/dd76819b5fd836d3.json rename allure-report/data/test-cases/{d558fd9b3bcee4ae.json => ddd928ac3a4fb635.json} (60%) create mode 100644 allure-report/data/test-cases/dde0d2c7fdfdde63.json create mode 100644 allure-report/data/test-cases/de0aa71757f8badf.json rename allure-report/data/test-cases/{dcfefe9c10c1f5d2.json => dea092a037f048cd.json} (56%) rename allure-report/data/test-cases/{d6d51bdb700f78e3.json => deff2de3f9ed88f5.json} (63%) create mode 100644 allure-report/data/test-cases/e051944b31d54c14.json create mode 100644 allure-report/data/test-cases/e08b527d12d4e4df.json rename allure-report/data/test-cases/{1c454649db0c0ed2.json => e0b6b39a4d4f9bf4.json} (67%) delete mode 100644 allure-report/data/test-cases/e0e034728609b0e2.json rename allure-report/data/test-cases/{a5f55a655c70213f.json => e0f78ca1d7d1823c.json} (67%) rename allure-report/data/test-cases/{edde73c32cfd2214.json => e17b710b1ca6cef6.json} (66%) rename allure-report/data/test-cases/{de04793abb90de01.json => e186c7a758de768a.json} (67%) rename allure-report/data/test-cases/{fa5b03edd274b2cd.json => e1fe0122d9c0870d.json} (53%) rename allure-report/data/test-cases/{8a0dfae45b96d6a4.json => e2326ee427488be9.json} (60%) create mode 100644 allure-report/data/test-cases/e330dbdee7dc6874.json rename allure-report/data/test-cases/{9b82a842fdc9b867.json => e378762a5dac9d1e.json} (65%) rename allure-report/data/test-cases/{cb5c8ea3b9796931.json => e40b6e0fafdfb7a4.json} (66%) rename allure-report/data/test-cases/{e99ff83f7419b047.json => e427c3eece0f34c3.json} (73%) rename allure-report/data/test-cases/{96bc84b88ae05ea5.json => e47ebce66bbb53cd.json} (92%) rename allure-report/data/test-cases/{f534ec218cc4d08d.json => e4f24bca4471f754.json} (73%) rename allure-report/data/test-cases/{b9d7d0d5afb8734c.json => e57068c00956ea02.json} (57%) create mode 100644 allure-report/data/test-cases/e5b1f301926fe23.json create mode 100644 allure-report/data/test-cases/e69093187fd70d56.json create mode 100644 allure-report/data/test-cases/e71fa3f33c33eb50.json create mode 100644 allure-report/data/test-cases/e78e70d10bce7cf5.json delete mode 100644 allure-report/data/test-cases/e7c5e93321efe39.json rename allure-report/data/test-cases/{c707b9e0a465edac.json => e7e28dd8f45c4374.json} (74%) delete mode 100644 allure-report/data/test-cases/e7eaed29fbceb75.json rename allure-report/data/test-cases/{5274eeeb29391ba1.json => e8b3178794c4402b.json} (70%) rename allure-report/data/test-cases/{c2776ae7e29336e9.json => e8ed1f5e4a826f53.json} (65%) rename allure-report/data/test-cases/{270b5395a9143b9c.json => e911f85aab34c4e6.json} (71%) rename allure-report/data/test-cases/{19910c11538825d6.json => e97ebddff1ce0b6f.json} (55%) create mode 100644 allure-report/data/test-cases/e99ca5757342b866.json rename allure-report/data/test-cases/{c1ea0a3d5ef9530e.json => ea156c7340f7150f.json} (67%) create mode 100644 allure-report/data/test-cases/ea40d4fff96687ff.json rename allure-report/data/test-cases/{b5f6e3f148925a4f.json => eaaef6c05ba4cb98.json} (71%) rename allure-report/data/test-cases/{ae7d3fce45bf33fb.json => ebad30d100ba0d2f.json} (59%) create mode 100644 allure-report/data/test-cases/ec3117c5f0ca458.json rename allure-report/data/test-cases/{1efaf2ab015adde4.json => ed0bae89bbbcdb66.json} (59%) rename allure-report/data/test-cases/{1728ec761d912068.json => ed566371d87065db.json} (73%) rename allure-report/data/test-cases/{ec6e703f7fb1f8f7.json => edb4f03386c56c72.json} (78%) create mode 100644 allure-report/data/test-cases/ede6b0c38e1de853.json create mode 100644 allure-report/data/test-cases/ee3eb820ef7c27.json rename allure-report/data/test-cases/{fa7d64e0658fe1a2.json => eea4c328ad2eaeca.json} (68%) rename allure-report/data/test-cases/{6b00dc7a9142ab25.json => eeed6f5fdf5c1d70.json} (85%) rename allure-report/data/test-cases/{cf3552eb00513a1a.json => ef1a5cba4efb343a.json} (64%) rename allure-report/data/test-cases/{a08dd22616aac704.json => ef2d26c76c436892.json} (94%) create mode 100644 allure-report/data/test-cases/ef905ece7eeedc77.json rename allure-report/data/test-cases/{9cc84b4c3c851a20.json => f00b7b6604c5e7e4.json} (71%) rename allure-report/data/test-cases/{afae2f3faef55f2b.json => f040925d9e513197.json} (66%) rename allure-report/data/test-cases/{c7c7f21adbc73706.json => f0700b9c803f7cf9.json} (53%) rename allure-report/data/test-cases/{a6bf4a932c1ec147.json => f11813f80ada0713.json} (60%) rename allure-report/data/test-cases/{1319e1ae94efdc02.json => f12b5c3f29ddd74a.json} (69%) rename allure-report/data/test-cases/{7c2750d825fae93b.json => f1a24ca70fa28a4b.json} (61%) rename allure-report/data/test-cases/{3ceac2ca244e095b.json => f1d39787f3312e8b.json} (74%) create mode 100644 allure-report/data/test-cases/f3baf14f5477154.json rename allure-report/data/test-cases/{76f8c586f8a804f0.json => f449c3e5994db83f.json} (59%) rename allure-report/data/test-cases/{673ecd99dac0c86e.json => f4fd5b9fa6dd3840.json} (59%) create mode 100644 allure-report/data/test-cases/f5177f712a8be6da.json rename allure-report/data/test-cases/{ecfcf126e0555bf0.json => f52e2a19a3ffe707.json} (62%) rename allure-report/data/test-cases/{71d876f4d19ecd67.json => f5819c4c1535edeb.json} (59%) rename allure-report/data/test-cases/{89c677f035513057.json => f59e61b023eebd26.json} (72%) delete mode 100644 allure-report/data/test-cases/f5c85086c052dc96.json rename allure-report/data/test-cases/{715edf62d220bc66.json => f619b88d74382886.json} (53%) rename allure-report/data/test-cases/{f80099cf6c294d2b.json => f63a88604b1d062f.json} (63%) rename allure-report/data/test-cases/{4458ac38c6c9a97c.json => f649ed8d3c87f7f8.json} (72%) rename allure-report/data/test-cases/{afce902b58f1520a.json => f6fab27b83e3ab13.json} (63%) create mode 100644 allure-report/data/test-cases/f701011259e850f6.json create mode 100644 allure-report/data/test-cases/f727d28e098b30b7.json rename allure-report/data/test-cases/{9d8518015a2b07b6.json => f7656bca6b03073b.json} (78%) create mode 100644 allure-report/data/test-cases/f7d2073500029121.json rename allure-report/data/test-cases/{2d35bd18d5e6ee6b.json => f809105a155a665a.json} (59%) create mode 100644 allure-report/data/test-cases/f841b42c8d697c74.json create mode 100644 allure-report/data/test-cases/f85ab0d3a8429db7.json delete mode 100644 allure-report/data/test-cases/f8800adc39df0e11.json rename allure-report/data/test-cases/{25be1d40d6774add.json => f8d7fd46b923bc4f.json} (66%) rename allure-report/data/test-cases/{d0862b5213f7938f.json => f9099a5358c90330.json} (60%) create mode 100644 allure-report/data/test-cases/f91e38b8c375d31c.json rename allure-report/data/test-cases/{4df49eaeb4ea4daa.json => f97aaf8957be0a89.json} (66%) rename allure-report/data/test-cases/{b01fd4e8d095b60f.json => f9c645ee48c4616c.json} (62%) create mode 100644 allure-report/data/test-cases/f9df20ba5fd613f1.json create mode 100644 allure-report/data/test-cases/fb237eeb673713e3.json create mode 100644 allure-report/data/test-cases/fbd37fe4a302b125.json rename allure-report/data/test-cases/{14d00f76e0b4f9e4.json => fbd7acf611333772.json} (57%) create mode 100644 allure-report/data/test-cases/fc455123cb448d3e.json create mode 100644 allure-report/data/test-cases/fda81d5edcbfeda5.json delete mode 100644 allure-report/data/test-cases/fdff4b964fae0427.json create mode 100644 allure-report/data/test-cases/ff776776c9a8991f.json create mode 100644 allure-report/data/test-cases/ffa13a74003ae703.json diff --git a/allure-report/data/attachments/56f4811665ed892a.txt b/allure-report/data/attachments/105658932c1d51ff.txt similarity index 100% rename from allure-report/data/attachments/56f4811665ed892a.txt rename to allure-report/data/attachments/105658932c1d51ff.txt diff --git a/allure-report/data/attachments/35b0040677726bbd.txt b/allure-report/data/attachments/10b8961e386c4fec.txt similarity index 100% rename from allure-report/data/attachments/35b0040677726bbd.txt rename to allure-report/data/attachments/10b8961e386c4fec.txt diff --git a/allure-report/data/attachments/3db726a85ec26b65.txt b/allure-report/data/attachments/126d44dc6bf2e98e.txt similarity index 100% rename from allure-report/data/attachments/3db726a85ec26b65.txt rename to allure-report/data/attachments/126d44dc6bf2e98e.txt diff --git a/allure-report/data/attachments/52c3b8574c415b89.txt b/allure-report/data/attachments/12c58087789a46ca.txt similarity index 100% rename from allure-report/data/attachments/52c3b8574c415b89.txt rename to allure-report/data/attachments/12c58087789a46ca.txt diff --git a/allure-report/data/attachments/10bda13bc4365ba8.txt b/allure-report/data/attachments/12f3e703f687ed41.txt similarity index 100% rename from allure-report/data/attachments/10bda13bc4365ba8.txt rename to allure-report/data/attachments/12f3e703f687ed41.txt diff --git a/allure-report/data/attachments/75b9c5da68ec52a2.txt b/allure-report/data/attachments/14f1a5601096c54c.txt similarity index 100% rename from allure-report/data/attachments/75b9c5da68ec52a2.txt rename to allure-report/data/attachments/14f1a5601096c54c.txt diff --git a/allure-report/data/attachments/951e88f3edc608ae.txt b/allure-report/data/attachments/1629f3862628691e.txt similarity index 100% rename from allure-report/data/attachments/951e88f3edc608ae.txt rename to allure-report/data/attachments/1629f3862628691e.txt diff --git a/allure-report/data/attachments/d406966fbaffbd00.txt b/allure-report/data/attachments/169bdc8e4de5949e.txt similarity index 100% rename from allure-report/data/attachments/d406966fbaffbd00.txt rename to allure-report/data/attachments/169bdc8e4de5949e.txt diff --git a/allure-report/data/attachments/5b1486b52334c41e.txt b/allure-report/data/attachments/16b3d133c1b1141f.txt similarity index 100% rename from allure-report/data/attachments/5b1486b52334c41e.txt rename to allure-report/data/attachments/16b3d133c1b1141f.txt diff --git a/allure-report/data/attachments/29f64ed4da9c0ecc.txt b/allure-report/data/attachments/17ccb2223275d18f.txt similarity index 100% rename from allure-report/data/attachments/29f64ed4da9c0ecc.txt rename to allure-report/data/attachments/17ccb2223275d18f.txt diff --git a/allure-report/data/attachments/1c7070c159aacf2e.txt b/allure-report/data/attachments/1905a023fe62d7a5.txt similarity index 100% rename from allure-report/data/attachments/1c7070c159aacf2e.txt rename to allure-report/data/attachments/1905a023fe62d7a5.txt diff --git a/allure-report/data/attachments/4faf6d536992c308.txt b/allure-report/data/attachments/19d9a21eca90a0a9.txt similarity index 100% rename from allure-report/data/attachments/4faf6d536992c308.txt rename to allure-report/data/attachments/19d9a21eca90a0a9.txt diff --git a/allure-report/data/attachments/207d1fd44f82d410.txt b/allure-report/data/attachments/1ab4a085da0164d2.txt similarity index 100% rename from allure-report/data/attachments/207d1fd44f82d410.txt rename to allure-report/data/attachments/1ab4a085da0164d2.txt diff --git a/allure-report/data/attachments/6833583f4e17d4b6.txt b/allure-report/data/attachments/1aea611207a542f.txt similarity index 100% rename from allure-report/data/attachments/6833583f4e17d4b6.txt rename to allure-report/data/attachments/1aea611207a542f.txt diff --git a/allure-report/data/attachments/27add2ef21833533.txt b/allure-report/data/attachments/1b71217f4d0fe3a2.txt similarity index 100% rename from allure-report/data/attachments/27add2ef21833533.txt rename to allure-report/data/attachments/1b71217f4d0fe3a2.txt diff --git a/allure-report/data/attachments/c60a729cdea9a7d9.txt b/allure-report/data/attachments/1bfd50f00e4c2ad5.txt similarity index 100% rename from allure-report/data/attachments/c60a729cdea9a7d9.txt rename to allure-report/data/attachments/1bfd50f00e4c2ad5.txt diff --git a/allure-report/data/attachments/3b3328f837a21f35.txt b/allure-report/data/attachments/1ca9750c0956602d.txt similarity index 100% rename from allure-report/data/attachments/3b3328f837a21f35.txt rename to allure-report/data/attachments/1ca9750c0956602d.txt diff --git a/allure-report/data/attachments/3de7bb1aa01966ff.txt b/allure-report/data/attachments/1ce9d59c982071d0.txt similarity index 100% rename from allure-report/data/attachments/3de7bb1aa01966ff.txt rename to allure-report/data/attachments/1ce9d59c982071d0.txt diff --git a/allure-report/data/attachments/4a5ff4e66314365b.txt b/allure-report/data/attachments/1d395e740ae82411.txt similarity index 100% rename from allure-report/data/attachments/4a5ff4e66314365b.txt rename to allure-report/data/attachments/1d395e740ae82411.txt diff --git a/allure-report/data/attachments/3d08be5d3c35bf84.txt b/allure-report/data/attachments/1d5dc16fdfe05c84.txt similarity index 100% rename from allure-report/data/attachments/3d08be5d3c35bf84.txt rename to allure-report/data/attachments/1d5dc16fdfe05c84.txt diff --git a/allure-report/data/attachments/292d200c224939da.txt b/allure-report/data/attachments/1dc0d1d2e3a97f3c.txt similarity index 100% rename from allure-report/data/attachments/292d200c224939da.txt rename to allure-report/data/attachments/1dc0d1d2e3a97f3c.txt diff --git a/allure-report/data/attachments/47eb10d648ead31b.txt b/allure-report/data/attachments/1e123d763e6ea7e5.txt similarity index 100% rename from allure-report/data/attachments/47eb10d648ead31b.txt rename to allure-report/data/attachments/1e123d763e6ea7e5.txt diff --git a/allure-report/data/attachments/5bb3529b62d1131a.txt b/allure-report/data/attachments/1e1a39cd8bddfb25.txt similarity index 100% rename from allure-report/data/attachments/5bb3529b62d1131a.txt rename to allure-report/data/attachments/1e1a39cd8bddfb25.txt diff --git a/allure-report/data/attachments/99fbed72185a436d.txt b/allure-report/data/attachments/1e1f708218c48d04.txt similarity index 100% rename from allure-report/data/attachments/99fbed72185a436d.txt rename to allure-report/data/attachments/1e1f708218c48d04.txt diff --git a/allure-report/data/attachments/92abbc4fad82e6db.txt b/allure-report/data/attachments/1f33a24130d10b19.txt similarity index 100% rename from allure-report/data/attachments/92abbc4fad82e6db.txt rename to allure-report/data/attachments/1f33a24130d10b19.txt diff --git a/allure-report/data/attachments/4d3f39137718ed9c.txt b/allure-report/data/attachments/1f7ee012a96ef9b6.txt similarity index 100% rename from allure-report/data/attachments/4d3f39137718ed9c.txt rename to allure-report/data/attachments/1f7ee012a96ef9b6.txt diff --git a/allure-report/data/attachments/986dcde2e02037cb.txt b/allure-report/data/attachments/1f8aa4666b4af5af.txt similarity index 100% rename from allure-report/data/attachments/986dcde2e02037cb.txt rename to allure-report/data/attachments/1f8aa4666b4af5af.txt diff --git a/allure-report/data/attachments/4d1c728cd3990d41.txt b/allure-report/data/attachments/1fcc34d0c68ae769.txt similarity index 100% rename from allure-report/data/attachments/4d1c728cd3990d41.txt rename to allure-report/data/attachments/1fcc34d0c68ae769.txt diff --git a/allure-report/data/attachments/4646d812c4a39ce.txt b/allure-report/data/attachments/1ff678a4c7734b0.txt similarity index 100% rename from allure-report/data/attachments/4646d812c4a39ce.txt rename to allure-report/data/attachments/1ff678a4c7734b0.txt diff --git a/allure-report/data/attachments/3e1cb74f119a5c14.txt b/allure-report/data/attachments/215c30a7cf2d2e11.txt similarity index 100% rename from allure-report/data/attachments/3e1cb74f119a5c14.txt rename to allure-report/data/attachments/215c30a7cf2d2e11.txt diff --git a/allure-report/data/attachments/2fa0f7a126ad592b.txt b/allure-report/data/attachments/21cec5980af4ec14.txt similarity index 100% rename from allure-report/data/attachments/2fa0f7a126ad592b.txt rename to allure-report/data/attachments/21cec5980af4ec14.txt diff --git a/allure-report/data/attachments/5c0575d9cafe6cf6.txt b/allure-report/data/attachments/22b576ff182f36ef.txt similarity index 100% rename from allure-report/data/attachments/5c0575d9cafe6cf6.txt rename to allure-report/data/attachments/22b576ff182f36ef.txt diff --git a/allure-report/data/attachments/ba387d8fdc4ccb3b.txt b/allure-report/data/attachments/22f6f0c737bac26b.txt similarity index 100% rename from allure-report/data/attachments/ba387d8fdc4ccb3b.txt rename to allure-report/data/attachments/22f6f0c737bac26b.txt diff --git a/allure-report/data/attachments/4277e39e2fd03a2.txt b/allure-report/data/attachments/23dd45ddb469c4aa.txt similarity index 100% rename from allure-report/data/attachments/4277e39e2fd03a2.txt rename to allure-report/data/attachments/23dd45ddb469c4aa.txt diff --git a/allure-report/data/attachments/22862af9bcf091d4.txt b/allure-report/data/attachments/246dacd86be04ffa.txt similarity index 100% rename from allure-report/data/attachments/22862af9bcf091d4.txt rename to allure-report/data/attachments/246dacd86be04ffa.txt diff --git a/allure-report/data/attachments/11a60e97d1d843b1.txt b/allure-report/data/attachments/253cdd605d9ea305.txt similarity index 100% rename from allure-report/data/attachments/11a60e97d1d843b1.txt rename to allure-report/data/attachments/253cdd605d9ea305.txt diff --git a/allure-report/data/attachments/5c7638f94c1897db.txt b/allure-report/data/attachments/25583e198df733bf.txt similarity index 100% rename from allure-report/data/attachments/5c7638f94c1897db.txt rename to allure-report/data/attachments/25583e198df733bf.txt diff --git a/allure-report/data/attachments/3c7f9bf2787b94f7.txt b/allure-report/data/attachments/26557f5777ce8a7b.txt similarity index 100% rename from allure-report/data/attachments/3c7f9bf2787b94f7.txt rename to allure-report/data/attachments/26557f5777ce8a7b.txt diff --git a/allure-report/data/attachments/747e90cc8dad54fd.txt b/allure-report/data/attachments/26c18e7ac55b0476.txt similarity index 100% rename from allure-report/data/attachments/747e90cc8dad54fd.txt rename to allure-report/data/attachments/26c18e7ac55b0476.txt diff --git a/allure-report/data/attachments/d6a0933efaeb03c.txt b/allure-report/data/attachments/273b19c655c226cd.txt similarity index 100% rename from allure-report/data/attachments/d6a0933efaeb03c.txt rename to allure-report/data/attachments/273b19c655c226cd.txt diff --git a/allure-report/data/attachments/3ea6423e21d6d262.txt b/allure-report/data/attachments/27df6f7a31afa4ff.txt similarity index 100% rename from allure-report/data/attachments/3ea6423e21d6d262.txt rename to allure-report/data/attachments/27df6f7a31afa4ff.txt diff --git a/allure-report/data/attachments/25c7546e6e88bf29.txt b/allure-report/data/attachments/282ef4a825ddd5b7.txt similarity index 100% rename from allure-report/data/attachments/25c7546e6e88bf29.txt rename to allure-report/data/attachments/282ef4a825ddd5b7.txt diff --git a/allure-report/data/attachments/ad7db611240dcbc0.txt b/allure-report/data/attachments/285de4a0d9b150b3.txt similarity index 100% rename from allure-report/data/attachments/ad7db611240dcbc0.txt rename to allure-report/data/attachments/285de4a0d9b150b3.txt diff --git a/allure-report/data/attachments/7efcea1d1ffd3662.txt b/allure-report/data/attachments/2862210bad838236.txt similarity index 100% rename from allure-report/data/attachments/7efcea1d1ffd3662.txt rename to allure-report/data/attachments/2862210bad838236.txt diff --git a/allure-report/data/attachments/d920f200ffe2c729.txt b/allure-report/data/attachments/2b6038e2de6e977a.txt similarity index 100% rename from allure-report/data/attachments/d920f200ffe2c729.txt rename to allure-report/data/attachments/2b6038e2de6e977a.txt diff --git a/allure-report/data/attachments/71aab19d1a615a57.txt b/allure-report/data/attachments/2bee8bc5b94972e3.txt similarity index 100% rename from allure-report/data/attachments/71aab19d1a615a57.txt rename to allure-report/data/attachments/2bee8bc5b94972e3.txt diff --git a/allure-report/data/attachments/2738d7f17afba1b9.txt b/allure-report/data/attachments/2d3f2d22c5115b6e.txt similarity index 100% rename from allure-report/data/attachments/2738d7f17afba1b9.txt rename to allure-report/data/attachments/2d3f2d22c5115b6e.txt diff --git a/allure-report/data/attachments/6570d6c473e55397.txt b/allure-report/data/attachments/2d58a8a8ac8fa12e.txt similarity index 100% rename from allure-report/data/attachments/6570d6c473e55397.txt rename to allure-report/data/attachments/2d58a8a8ac8fa12e.txt diff --git a/allure-report/data/attachments/5a8f2e8a8daac7d4.txt b/allure-report/data/attachments/2dbf09b568ff5668.txt similarity index 100% rename from allure-report/data/attachments/5a8f2e8a8daac7d4.txt rename to allure-report/data/attachments/2dbf09b568ff5668.txt diff --git a/allure-report/data/attachments/3d05ca7bd9d20192.txt b/allure-report/data/attachments/2dd75c6915b1e704.txt similarity index 100% rename from allure-report/data/attachments/3d05ca7bd9d20192.txt rename to allure-report/data/attachments/2dd75c6915b1e704.txt diff --git a/allure-report/data/attachments/108fa13d4dc4aeec.txt b/allure-report/data/attachments/2e5a8277ac6080e3.txt similarity index 100% rename from allure-report/data/attachments/108fa13d4dc4aeec.txt rename to allure-report/data/attachments/2e5a8277ac6080e3.txt diff --git a/allure-report/data/attachments/1ae3e81e546a5a71.txt b/allure-report/data/attachments/2f3f1653d6bd83ea.txt similarity index 100% rename from allure-report/data/attachments/1ae3e81e546a5a71.txt rename to allure-report/data/attachments/2f3f1653d6bd83ea.txt diff --git a/allure-report/data/attachments/cd9f556fe34434c9.txt b/allure-report/data/attachments/2fa4e18b8435ce88.txt similarity index 100% rename from allure-report/data/attachments/cd9f556fe34434c9.txt rename to allure-report/data/attachments/2fa4e18b8435ce88.txt diff --git a/allure-report/data/attachments/1fc52e2c49c9d723.txt b/allure-report/data/attachments/2fb64bb60201538c.txt similarity index 100% rename from allure-report/data/attachments/1fc52e2c49c9d723.txt rename to allure-report/data/attachments/2fb64bb60201538c.txt diff --git a/allure-report/data/attachments/6cceaf28d236f584.txt b/allure-report/data/attachments/30a819977a6f7bba.txt similarity index 100% rename from allure-report/data/attachments/6cceaf28d236f584.txt rename to allure-report/data/attachments/30a819977a6f7bba.txt diff --git a/allure-report/data/attachments/7f080e317c4cdc0d.txt b/allure-report/data/attachments/31ba7c014fce4298.txt similarity index 100% rename from allure-report/data/attachments/7f080e317c4cdc0d.txt rename to allure-report/data/attachments/31ba7c014fce4298.txt diff --git a/allure-report/data/attachments/837e80b6f559a9c2.txt b/allure-report/data/attachments/3272d488a926cad0.txt similarity index 100% rename from allure-report/data/attachments/837e80b6f559a9c2.txt rename to allure-report/data/attachments/3272d488a926cad0.txt diff --git a/allure-report/data/attachments/1fb0e4eb0d1b73ee.txt b/allure-report/data/attachments/32849bcbd7d5b064.txt similarity index 100% rename from allure-report/data/attachments/1fb0e4eb0d1b73ee.txt rename to allure-report/data/attachments/32849bcbd7d5b064.txt diff --git a/allure-report/data/attachments/f26281521e32f10c.txt b/allure-report/data/attachments/3326f8b00659b17c.txt similarity index 100% rename from allure-report/data/attachments/f26281521e32f10c.txt rename to allure-report/data/attachments/3326f8b00659b17c.txt diff --git a/allure-report/data/attachments/1c3fe0844baefb8c.txt b/allure-report/data/attachments/34515415abccae34.txt similarity index 100% rename from allure-report/data/attachments/1c3fe0844baefb8c.txt rename to allure-report/data/attachments/34515415abccae34.txt diff --git a/allure-report/data/attachments/c72b6aed91bdc6cb.txt b/allure-report/data/attachments/36d455921a73202d.txt similarity index 100% rename from allure-report/data/attachments/c72b6aed91bdc6cb.txt rename to allure-report/data/attachments/36d455921a73202d.txt diff --git a/allure-report/data/attachments/62e987f3927afd7c.txt b/allure-report/data/attachments/36e52eee6ec1696f.txt similarity index 100% rename from allure-report/data/attachments/62e987f3927afd7c.txt rename to allure-report/data/attachments/36e52eee6ec1696f.txt diff --git a/allure-report/data/attachments/2a9f69c076428754.txt b/allure-report/data/attachments/37e73f373251accf.txt similarity index 100% rename from allure-report/data/attachments/2a9f69c076428754.txt rename to allure-report/data/attachments/37e73f373251accf.txt diff --git a/allure-report/data/attachments/7030d405852b736e.txt b/allure-report/data/attachments/394707a7900b643f.txt similarity index 100% rename from allure-report/data/attachments/7030d405852b736e.txt rename to allure-report/data/attachments/394707a7900b643f.txt diff --git a/allure-report/data/attachments/6062d7cf7b32bc2c.txt b/allure-report/data/attachments/3a4387d961fd6fe2.txt similarity index 100% rename from allure-report/data/attachments/6062d7cf7b32bc2c.txt rename to allure-report/data/attachments/3a4387d961fd6fe2.txt diff --git a/allure-report/data/attachments/cf2100e65e09b423.txt b/allure-report/data/attachments/3a4c00d99760de4b.txt similarity index 100% rename from allure-report/data/attachments/cf2100e65e09b423.txt rename to allure-report/data/attachments/3a4c00d99760de4b.txt diff --git a/allure-report/data/attachments/27155577e4b86a95.txt b/allure-report/data/attachments/3d8fef51a9e30706.txt similarity index 100% rename from allure-report/data/attachments/27155577e4b86a95.txt rename to allure-report/data/attachments/3d8fef51a9e30706.txt diff --git a/allure-report/data/attachments/78b71274c888e77b.txt b/allure-report/data/attachments/3df0050d216178a3.txt similarity index 100% rename from allure-report/data/attachments/78b71274c888e77b.txt rename to allure-report/data/attachments/3df0050d216178a3.txt diff --git a/allure-report/data/attachments/6e31fbe4dea71ee0.txt b/allure-report/data/attachments/3e088b2fc3849ac3.txt similarity index 100% rename from allure-report/data/attachments/6e31fbe4dea71ee0.txt rename to allure-report/data/attachments/3e088b2fc3849ac3.txt diff --git a/allure-report/data/attachments/8da729485857d70b.txt b/allure-report/data/attachments/3e79fdee962a6c7a.txt similarity index 100% rename from allure-report/data/attachments/8da729485857d70b.txt rename to allure-report/data/attachments/3e79fdee962a6c7a.txt diff --git a/allure-report/data/attachments/5e9be09b414388f9.txt b/allure-report/data/attachments/3f14e07d274c2e01.txt similarity index 100% rename from allure-report/data/attachments/5e9be09b414388f9.txt rename to allure-report/data/attachments/3f14e07d274c2e01.txt diff --git a/allure-report/data/attachments/6344061f744d93d.txt b/allure-report/data/attachments/3f23fd2a44d74bcb.txt similarity index 100% rename from allure-report/data/attachments/6344061f744d93d.txt rename to allure-report/data/attachments/3f23fd2a44d74bcb.txt diff --git a/allure-report/data/attachments/c9a3c6ad41839ce3.txt b/allure-report/data/attachments/3f3d8444cfb8c128.txt similarity index 100% rename from allure-report/data/attachments/c9a3c6ad41839ce3.txt rename to allure-report/data/attachments/3f3d8444cfb8c128.txt diff --git a/allure-report/data/attachments/1c3dfeaa04fe2908.txt b/allure-report/data/attachments/3fbdb209be30e4e9.txt similarity index 100% rename from allure-report/data/attachments/1c3dfeaa04fe2908.txt rename to allure-report/data/attachments/3fbdb209be30e4e9.txt diff --git a/allure-report/data/attachments/41f5ec6cee6b6454.txt b/allure-report/data/attachments/3fdf05bb544c0162.txt similarity index 100% rename from allure-report/data/attachments/41f5ec6cee6b6454.txt rename to allure-report/data/attachments/3fdf05bb544c0162.txt diff --git a/allure-report/data/attachments/270cdfea12dfee25.txt b/allure-report/data/attachments/3fe96e9fb5bb6b3f.txt similarity index 100% rename from allure-report/data/attachments/270cdfea12dfee25.txt rename to allure-report/data/attachments/3fe96e9fb5bb6b3f.txt diff --git a/allure-report/data/attachments/72d1d4db3cffe73b.txt b/allure-report/data/attachments/403983f6828d59c5.txt similarity index 100% rename from allure-report/data/attachments/72d1d4db3cffe73b.txt rename to allure-report/data/attachments/403983f6828d59c5.txt diff --git a/allure-report/data/attachments/a73c95935cebe487.txt b/allure-report/data/attachments/40789a2ed03aa082.txt similarity index 100% rename from allure-report/data/attachments/a73c95935cebe487.txt rename to allure-report/data/attachments/40789a2ed03aa082.txt diff --git a/allure-report/data/attachments/5d46e2ecc5195696.txt b/allure-report/data/attachments/4091cd5629c473be.txt similarity index 100% rename from allure-report/data/attachments/5d46e2ecc5195696.txt rename to allure-report/data/attachments/4091cd5629c473be.txt diff --git a/allure-report/data/attachments/f18b0e548340aa4f.txt b/allure-report/data/attachments/4143349f87c576ac.txt similarity index 100% rename from allure-report/data/attachments/f18b0e548340aa4f.txt rename to allure-report/data/attachments/4143349f87c576ac.txt diff --git a/allure-report/data/attachments/a8cdc7c5d92ea524.txt b/allure-report/data/attachments/419d7e1cf9a3c9b.txt similarity index 100% rename from allure-report/data/attachments/a8cdc7c5d92ea524.txt rename to allure-report/data/attachments/419d7e1cf9a3c9b.txt diff --git a/allure-report/data/attachments/54973229fb9bb954.txt b/allure-report/data/attachments/443a1d8f74495540.txt similarity index 100% rename from allure-report/data/attachments/54973229fb9bb954.txt rename to allure-report/data/attachments/443a1d8f74495540.txt diff --git a/allure-report/data/attachments/34ee6a50b9a56e7d.txt b/allure-report/data/attachments/452e28e5668d68f6.txt similarity index 100% rename from allure-report/data/attachments/34ee6a50b9a56e7d.txt rename to allure-report/data/attachments/452e28e5668d68f6.txt diff --git a/allure-report/data/attachments/1569f62e2424ff1a.txt b/allure-report/data/attachments/45655b08b75495d0.txt similarity index 100% rename from allure-report/data/attachments/1569f62e2424ff1a.txt rename to allure-report/data/attachments/45655b08b75495d0.txt diff --git a/allure-report/data/attachments/f69b6836dc35d93.txt b/allure-report/data/attachments/459e1a71d63acc96.txt similarity index 100% rename from allure-report/data/attachments/f69b6836dc35d93.txt rename to allure-report/data/attachments/459e1a71d63acc96.txt diff --git a/allure-report/data/attachments/5a90b58ce6e21a4f.txt b/allure-report/data/attachments/45d7b9435ff3c623.txt similarity index 100% rename from allure-report/data/attachments/5a90b58ce6e21a4f.txt rename to allure-report/data/attachments/45d7b9435ff3c623.txt diff --git a/allure-report/data/attachments/257782fa3edc8402.txt b/allure-report/data/attachments/464f7036130e9df9.txt similarity index 100% rename from allure-report/data/attachments/257782fa3edc8402.txt rename to allure-report/data/attachments/464f7036130e9df9.txt diff --git a/allure-report/data/attachments/e19fa4140ca62ee4.txt b/allure-report/data/attachments/47ba37195574156f.txt similarity index 100% rename from allure-report/data/attachments/e19fa4140ca62ee4.txt rename to allure-report/data/attachments/47ba37195574156f.txt diff --git a/allure-report/data/attachments/17deef7e1cb66e60.txt b/allure-report/data/attachments/484cb5d49df72338.txt similarity index 100% rename from allure-report/data/attachments/17deef7e1cb66e60.txt rename to allure-report/data/attachments/484cb5d49df72338.txt diff --git a/allure-report/data/attachments/940a8818c4ee9f6a.txt b/allure-report/data/attachments/486146c7b14fd6fd.txt similarity index 100% rename from allure-report/data/attachments/940a8818c4ee9f6a.txt rename to allure-report/data/attachments/486146c7b14fd6fd.txt diff --git a/allure-report/data/attachments/e423707f4478eb49.txt b/allure-report/data/attachments/4988f81545fa9dcf.txt similarity index 100% rename from allure-report/data/attachments/e423707f4478eb49.txt rename to allure-report/data/attachments/4988f81545fa9dcf.txt diff --git a/allure-report/data/attachments/d032b19c209c380e.txt b/allure-report/data/attachments/4a05a037b7d71615.txt similarity index 100% rename from allure-report/data/attachments/d032b19c209c380e.txt rename to allure-report/data/attachments/4a05a037b7d71615.txt diff --git a/allure-report/data/attachments/88f8e3a1f8c2be2b.txt b/allure-report/data/attachments/4a2cdaf17ee494c.txt similarity index 100% rename from allure-report/data/attachments/88f8e3a1f8c2be2b.txt rename to allure-report/data/attachments/4a2cdaf17ee494c.txt diff --git a/allure-report/data/attachments/90fac117ed2f5b2c.txt b/allure-report/data/attachments/4bafaae940d73b69.txt similarity index 100% rename from allure-report/data/attachments/90fac117ed2f5b2c.txt rename to allure-report/data/attachments/4bafaae940d73b69.txt diff --git a/allure-report/data/attachments/9e063e588b090ea7.txt b/allure-report/data/attachments/4c19c67f026536b3.txt similarity index 100% rename from allure-report/data/attachments/9e063e588b090ea7.txt rename to allure-report/data/attachments/4c19c67f026536b3.txt diff --git a/allure-report/data/attachments/8f8b0aa6406d8405.txt b/allure-report/data/attachments/4db95168982ce3dd.txt similarity index 100% rename from allure-report/data/attachments/8f8b0aa6406d8405.txt rename to allure-report/data/attachments/4db95168982ce3dd.txt diff --git a/allure-report/data/attachments/8418aaca0f21809c.txt b/allure-report/data/attachments/4e248e61461ec35c.txt similarity index 100% rename from allure-report/data/attachments/8418aaca0f21809c.txt rename to allure-report/data/attachments/4e248e61461ec35c.txt diff --git a/allure-report/data/attachments/5a6636ef2e259cf6.txt b/allure-report/data/attachments/4f617786d1167bf5.txt similarity index 100% rename from allure-report/data/attachments/5a6636ef2e259cf6.txt rename to allure-report/data/attachments/4f617786d1167bf5.txt diff --git a/allure-report/data/attachments/eb9dc4155dddb919.txt b/allure-report/data/attachments/4fea0728042fecef.txt similarity index 100% rename from allure-report/data/attachments/eb9dc4155dddb919.txt rename to allure-report/data/attachments/4fea0728042fecef.txt diff --git a/allure-report/data/attachments/4f8b5b6368092f66.txt b/allure-report/data/attachments/50b324c74021da7c.txt similarity index 100% rename from allure-report/data/attachments/4f8b5b6368092f66.txt rename to allure-report/data/attachments/50b324c74021da7c.txt diff --git a/allure-report/data/attachments/c126cf9c398e7752.txt b/allure-report/data/attachments/518d45d1073ca74.txt similarity index 100% rename from allure-report/data/attachments/c126cf9c398e7752.txt rename to allure-report/data/attachments/518d45d1073ca74.txt diff --git a/allure-report/data/attachments/3dc83265322e5aba.txt b/allure-report/data/attachments/519607e9e5d7219c.txt similarity index 100% rename from allure-report/data/attachments/3dc83265322e5aba.txt rename to allure-report/data/attachments/519607e9e5d7219c.txt diff --git a/allure-report/data/attachments/189c0101c5666165.txt b/allure-report/data/attachments/5343662cb85dce05.txt similarity index 100% rename from allure-report/data/attachments/189c0101c5666165.txt rename to allure-report/data/attachments/5343662cb85dce05.txt diff --git a/allure-report/data/attachments/9d173a5e0d4bb0c8.txt b/allure-report/data/attachments/537ecc9a719af32f.txt similarity index 100% rename from allure-report/data/attachments/9d173a5e0d4bb0c8.txt rename to allure-report/data/attachments/537ecc9a719af32f.txt diff --git a/allure-report/data/attachments/30d5c7b600785dbe.txt b/allure-report/data/attachments/546f6d6d1d510331.txt similarity index 100% rename from allure-report/data/attachments/30d5c7b600785dbe.txt rename to allure-report/data/attachments/546f6d6d1d510331.txt diff --git a/allure-report/data/attachments/dd3f4f217e87fedc.txt b/allure-report/data/attachments/54a6fca37064555a.txt similarity index 100% rename from allure-report/data/attachments/dd3f4f217e87fedc.txt rename to allure-report/data/attachments/54a6fca37064555a.txt diff --git a/allure-report/data/attachments/2704cebfbdb23ee9.txt b/allure-report/data/attachments/54a96af48234a9eb.txt similarity index 100% rename from allure-report/data/attachments/2704cebfbdb23ee9.txt rename to allure-report/data/attachments/54a96af48234a9eb.txt diff --git a/allure-report/data/attachments/b63774e9e6663cf7.txt b/allure-report/data/attachments/554fb31ae5f3473b.txt similarity index 100% rename from allure-report/data/attachments/b63774e9e6663cf7.txt rename to allure-report/data/attachments/554fb31ae5f3473b.txt diff --git a/allure-report/data/attachments/c8970b155f88dd79.txt b/allure-report/data/attachments/56be0299a0ca1906.txt similarity index 100% rename from allure-report/data/attachments/c8970b155f88dd79.txt rename to allure-report/data/attachments/56be0299a0ca1906.txt diff --git a/allure-report/data/attachments/1124405dfe872592.txt b/allure-report/data/attachments/572eaf1e6f057287.txt similarity index 100% rename from allure-report/data/attachments/1124405dfe872592.txt rename to allure-report/data/attachments/572eaf1e6f057287.txt diff --git a/allure-report/data/attachments/a5a1e9dabd89620f.txt b/allure-report/data/attachments/5ab43402bfd67bde.txt similarity index 100% rename from allure-report/data/attachments/a5a1e9dabd89620f.txt rename to allure-report/data/attachments/5ab43402bfd67bde.txt diff --git a/allure-report/data/attachments/825e5ff6c26dfc23.txt b/allure-report/data/attachments/5ab72755d6763015.txt similarity index 100% rename from allure-report/data/attachments/825e5ff6c26dfc23.txt rename to allure-report/data/attachments/5ab72755d6763015.txt diff --git a/allure-report/data/attachments/3a93f15f0e448e53.txt b/allure-report/data/attachments/5b8ca288b44682ec.txt similarity index 100% rename from allure-report/data/attachments/3a93f15f0e448e53.txt rename to allure-report/data/attachments/5b8ca288b44682ec.txt diff --git a/allure-report/data/attachments/18b79283e1874d20.txt b/allure-report/data/attachments/5c2711b7e4875740.txt similarity index 100% rename from allure-report/data/attachments/18b79283e1874d20.txt rename to allure-report/data/attachments/5c2711b7e4875740.txt diff --git a/allure-report/data/attachments/398543e2b30d0b75.txt b/allure-report/data/attachments/5c2daa57ff9298a6.txt similarity index 100% rename from allure-report/data/attachments/398543e2b30d0b75.txt rename to allure-report/data/attachments/5c2daa57ff9298a6.txt diff --git a/allure-report/data/attachments/218f40b324526f4d.txt b/allure-report/data/attachments/5d574363acc62acc.txt similarity index 100% rename from allure-report/data/attachments/218f40b324526f4d.txt rename to allure-report/data/attachments/5d574363acc62acc.txt diff --git a/allure-report/data/attachments/62bd346b3a261fc6.txt b/allure-report/data/attachments/5d5a8c5ce62738a7.txt similarity index 100% rename from allure-report/data/attachments/62bd346b3a261fc6.txt rename to allure-report/data/attachments/5d5a8c5ce62738a7.txt diff --git a/allure-report/data/attachments/187a7b2783fd6cca.txt b/allure-report/data/attachments/5d918ffd5978feb.txt similarity index 100% rename from allure-report/data/attachments/187a7b2783fd6cca.txt rename to allure-report/data/attachments/5d918ffd5978feb.txt diff --git a/allure-report/data/attachments/caa5a9b030d38c.txt b/allure-report/data/attachments/5e1e694e393088b4.txt similarity index 100% rename from allure-report/data/attachments/caa5a9b030d38c.txt rename to allure-report/data/attachments/5e1e694e393088b4.txt diff --git a/allure-report/data/attachments/5fc827b08877ee80.txt b/allure-report/data/attachments/5e25d7437b08e659.txt similarity index 100% rename from allure-report/data/attachments/5fc827b08877ee80.txt rename to allure-report/data/attachments/5e25d7437b08e659.txt diff --git a/allure-report/data/attachments/f29437b097cf88b9.txt b/allure-report/data/attachments/5f888d9c16f6ee3a.txt similarity index 100% rename from allure-report/data/attachments/f29437b097cf88b9.txt rename to allure-report/data/attachments/5f888d9c16f6ee3a.txt diff --git a/allure-report/data/attachments/13b8ab05fc59b31a.txt b/allure-report/data/attachments/6100c33a0bd08814.txt similarity index 100% rename from allure-report/data/attachments/13b8ab05fc59b31a.txt rename to allure-report/data/attachments/6100c33a0bd08814.txt diff --git a/allure-report/data/attachments/aa35c4221cf1383d.txt b/allure-report/data/attachments/62359e715edfaf26.txt similarity index 100% rename from allure-report/data/attachments/aa35c4221cf1383d.txt rename to allure-report/data/attachments/62359e715edfaf26.txt diff --git a/allure-report/data/attachments/47cde424bd281215.txt b/allure-report/data/attachments/62418f4fe99b4a3a.txt similarity index 100% rename from allure-report/data/attachments/47cde424bd281215.txt rename to allure-report/data/attachments/62418f4fe99b4a3a.txt diff --git a/allure-report/data/attachments/5763b31517fb1cf6.txt b/allure-report/data/attachments/62d969149cac19e2.txt similarity index 100% rename from allure-report/data/attachments/5763b31517fb1cf6.txt rename to allure-report/data/attachments/62d969149cac19e2.txt diff --git a/allure-report/data/attachments/b34610167fe8aa65.txt b/allure-report/data/attachments/63652035df5cd6e2.txt similarity index 100% rename from allure-report/data/attachments/b34610167fe8aa65.txt rename to allure-report/data/attachments/63652035df5cd6e2.txt diff --git a/allure-report/data/attachments/121911719c53624e.txt b/allure-report/data/attachments/63b31f8c0af20d94.txt similarity index 100% rename from allure-report/data/attachments/121911719c53624e.txt rename to allure-report/data/attachments/63b31f8c0af20d94.txt diff --git a/allure-report/data/attachments/e0ce3a7d48216112.txt b/allure-report/data/attachments/64217426bd0c7f09.txt similarity index 100% rename from allure-report/data/attachments/e0ce3a7d48216112.txt rename to allure-report/data/attachments/64217426bd0c7f09.txt diff --git a/allure-report/data/attachments/d499b60fd50eab17.txt b/allure-report/data/attachments/642ca5006c94cc7.txt similarity index 100% rename from allure-report/data/attachments/d499b60fd50eab17.txt rename to allure-report/data/attachments/642ca5006c94cc7.txt diff --git a/allure-report/data/attachments/3c5d6a8306713e1a.txt b/allure-report/data/attachments/6534e5921b3f960d.txt similarity index 100% rename from allure-report/data/attachments/3c5d6a8306713e1a.txt rename to allure-report/data/attachments/6534e5921b3f960d.txt diff --git a/allure-report/data/attachments/6ce0e167f1507713.txt b/allure-report/data/attachments/65c05475b72ce468.txt similarity index 100% rename from allure-report/data/attachments/6ce0e167f1507713.txt rename to allure-report/data/attachments/65c05475b72ce468.txt diff --git a/allure-report/data/attachments/2dcda4c0465e81d2.txt b/allure-report/data/attachments/660305aec4aa6e06.txt similarity index 100% rename from allure-report/data/attachments/2dcda4c0465e81d2.txt rename to allure-report/data/attachments/660305aec4aa6e06.txt diff --git a/allure-report/data/attachments/51a4e96e6102d985.txt b/allure-report/data/attachments/666caf8f2715f1b6.txt similarity index 100% rename from allure-report/data/attachments/51a4e96e6102d985.txt rename to allure-report/data/attachments/666caf8f2715f1b6.txt diff --git a/allure-report/data/attachments/7f52a9aa50bef455.txt b/allure-report/data/attachments/67751593ff534b14.txt similarity index 100% rename from allure-report/data/attachments/7f52a9aa50bef455.txt rename to allure-report/data/attachments/67751593ff534b14.txt diff --git a/allure-report/data/attachments/1a6c1f836394adf7.txt b/allure-report/data/attachments/678cdbc81118a45c.txt similarity index 100% rename from allure-report/data/attachments/1a6c1f836394adf7.txt rename to allure-report/data/attachments/678cdbc81118a45c.txt diff --git a/allure-report/data/attachments/59e7a80b454faae7.txt b/allure-report/data/attachments/67be9974a45dfae3.txt similarity index 100% rename from allure-report/data/attachments/59e7a80b454faae7.txt rename to allure-report/data/attachments/67be9974a45dfae3.txt diff --git a/allure-report/data/attachments/edbe93ce737c702f.txt b/allure-report/data/attachments/697ce25e72082ee1.txt similarity index 100% rename from allure-report/data/attachments/edbe93ce737c702f.txt rename to allure-report/data/attachments/697ce25e72082ee1.txt diff --git a/allure-report/data/attachments/1ffc7fe5a8d7f425.txt b/allure-report/data/attachments/697db26b4ade1966.txt similarity index 100% rename from allure-report/data/attachments/1ffc7fe5a8d7f425.txt rename to allure-report/data/attachments/697db26b4ade1966.txt diff --git a/allure-report/data/attachments/9185450f0b6d0b62.txt b/allure-report/data/attachments/69b865faf74786aa.txt similarity index 100% rename from allure-report/data/attachments/9185450f0b6d0b62.txt rename to allure-report/data/attachments/69b865faf74786aa.txt diff --git a/allure-report/data/attachments/715d12e01ffe8bd2.txt b/allure-report/data/attachments/69c2dd61a98f0df6.txt similarity index 100% rename from allure-report/data/attachments/715d12e01ffe8bd2.txt rename to allure-report/data/attachments/69c2dd61a98f0df6.txt diff --git a/allure-report/data/attachments/6bbd8e6923c5cdcc.txt b/allure-report/data/attachments/6aaa7a7ffc396f31.txt similarity index 100% rename from allure-report/data/attachments/6bbd8e6923c5cdcc.txt rename to allure-report/data/attachments/6aaa7a7ffc396f31.txt diff --git a/allure-report/data/attachments/90811aa4d663c1f1.txt b/allure-report/data/attachments/6ae645e567750bb1.txt similarity index 100% rename from allure-report/data/attachments/90811aa4d663c1f1.txt rename to allure-report/data/attachments/6ae645e567750bb1.txt diff --git a/allure-report/data/attachments/a8f23a9981f406ff.txt b/allure-report/data/attachments/6ccd74e070792411.txt similarity index 100% rename from allure-report/data/attachments/a8f23a9981f406ff.txt rename to allure-report/data/attachments/6ccd74e070792411.txt diff --git a/allure-report/data/attachments/4cfe45f98e3a162.txt b/allure-report/data/attachments/6cd50ae6a92d4a65.txt similarity index 100% rename from allure-report/data/attachments/4cfe45f98e3a162.txt rename to allure-report/data/attachments/6cd50ae6a92d4a65.txt diff --git a/allure-report/data/attachments/ba17606ecf187aae.txt b/allure-report/data/attachments/6d216ad47549f357.txt similarity index 100% rename from allure-report/data/attachments/ba17606ecf187aae.txt rename to allure-report/data/attachments/6d216ad47549f357.txt diff --git a/allure-report/data/attachments/920856e6e183642.txt b/allure-report/data/attachments/6d73a4f3af439d6.txt similarity index 100% rename from allure-report/data/attachments/920856e6e183642.txt rename to allure-report/data/attachments/6d73a4f3af439d6.txt diff --git a/allure-report/data/attachments/396239392c64a388.txt b/allure-report/data/attachments/6d7dcbe4dae3ba12.txt similarity index 100% rename from allure-report/data/attachments/396239392c64a388.txt rename to allure-report/data/attachments/6d7dcbe4dae3ba12.txt diff --git a/allure-report/data/attachments/b7bfbf78e894e0ca.txt b/allure-report/data/attachments/6dccc5ff56326cce.txt similarity index 100% rename from allure-report/data/attachments/b7bfbf78e894e0ca.txt rename to allure-report/data/attachments/6dccc5ff56326cce.txt diff --git a/allure-report/data/attachments/8e6997f43eb72f85.txt b/allure-report/data/attachments/6e968c2a309c9083.txt similarity index 100% rename from allure-report/data/attachments/8e6997f43eb72f85.txt rename to allure-report/data/attachments/6e968c2a309c9083.txt diff --git a/allure-report/data/attachments/e497f0d93067cd8e.txt b/allure-report/data/attachments/6ec9f0fb81f46c5f.txt similarity index 100% rename from allure-report/data/attachments/e497f0d93067cd8e.txt rename to allure-report/data/attachments/6ec9f0fb81f46c5f.txt diff --git a/allure-report/data/attachments/737d6b3bd85f76bf.txt b/allure-report/data/attachments/6ee6aafaeecdbf.txt similarity index 100% rename from allure-report/data/attachments/737d6b3bd85f76bf.txt rename to allure-report/data/attachments/6ee6aafaeecdbf.txt diff --git a/allure-report/data/attachments/336614ff4bde976d.txt b/allure-report/data/attachments/6f4b7e883a26cafe.txt similarity index 100% rename from allure-report/data/attachments/336614ff4bde976d.txt rename to allure-report/data/attachments/6f4b7e883a26cafe.txt diff --git a/allure-report/data/attachments/32d8e8facf5868da.txt b/allure-report/data/attachments/70a5ec7cc829789f.txt similarity index 100% rename from allure-report/data/attachments/32d8e8facf5868da.txt rename to allure-report/data/attachments/70a5ec7cc829789f.txt diff --git a/allure-report/data/attachments/29ea9005f7d14049.txt b/allure-report/data/attachments/724f9727a6725fde.txt similarity index 100% rename from allure-report/data/attachments/29ea9005f7d14049.txt rename to allure-report/data/attachments/724f9727a6725fde.txt diff --git a/allure-report/data/attachments/b8036761eae2b6cd.txt b/allure-report/data/attachments/72f4c1312eb8e355.txt similarity index 100% rename from allure-report/data/attachments/b8036761eae2b6cd.txt rename to allure-report/data/attachments/72f4c1312eb8e355.txt diff --git a/allure-report/data/attachments/981d1c1e601a3a5b.txt b/allure-report/data/attachments/730a4e5abf4ea8ba.txt similarity index 100% rename from allure-report/data/attachments/981d1c1e601a3a5b.txt rename to allure-report/data/attachments/730a4e5abf4ea8ba.txt diff --git a/allure-report/data/attachments/db194e9e67e4f8fb.txt b/allure-report/data/attachments/73d36ba66285cf8e.txt similarity index 100% rename from allure-report/data/attachments/db194e9e67e4f8fb.txt rename to allure-report/data/attachments/73d36ba66285cf8e.txt diff --git a/allure-report/data/attachments/6a878131575ef850.txt b/allure-report/data/attachments/73e237e2a607b73d.txt similarity index 100% rename from allure-report/data/attachments/6a878131575ef850.txt rename to allure-report/data/attachments/73e237e2a607b73d.txt diff --git a/allure-report/data/attachments/d0ae6f01edd6f40b.txt b/allure-report/data/attachments/75eae5551f423f5f.txt similarity index 100% rename from allure-report/data/attachments/d0ae6f01edd6f40b.txt rename to allure-report/data/attachments/75eae5551f423f5f.txt diff --git a/allure-report/data/attachments/a2b0f0b93e0e2887.txt b/allure-report/data/attachments/75f6639f39c4b7d0.txt similarity index 100% rename from allure-report/data/attachments/a2b0f0b93e0e2887.txt rename to allure-report/data/attachments/75f6639f39c4b7d0.txt diff --git a/allure-report/data/attachments/9aa90db0f884f6f0.txt b/allure-report/data/attachments/760266e95eacb400.txt similarity index 100% rename from allure-report/data/attachments/9aa90db0f884f6f0.txt rename to allure-report/data/attachments/760266e95eacb400.txt diff --git a/allure-report/data/attachments/1a0603f4ec8cac73.txt b/allure-report/data/attachments/76446d802fca4221.txt similarity index 100% rename from allure-report/data/attachments/1a0603f4ec8cac73.txt rename to allure-report/data/attachments/76446d802fca4221.txt diff --git a/allure-report/data/attachments/d5adffae1b4c5d49.txt b/allure-report/data/attachments/76d9ba77a7bb2817.txt similarity index 100% rename from allure-report/data/attachments/d5adffae1b4c5d49.txt rename to allure-report/data/attachments/76d9ba77a7bb2817.txt diff --git a/allure-report/data/attachments/3b770734c2a5e83b.txt b/allure-report/data/attachments/773f7227b3021ebf.txt similarity index 100% rename from allure-report/data/attachments/3b770734c2a5e83b.txt rename to allure-report/data/attachments/773f7227b3021ebf.txt diff --git a/allure-report/data/attachments/caf6549170870e9e.txt b/allure-report/data/attachments/7757a124114dd519.txt similarity index 100% rename from allure-report/data/attachments/caf6549170870e9e.txt rename to allure-report/data/attachments/7757a124114dd519.txt diff --git a/allure-report/data/attachments/763794db833f43e6.txt b/allure-report/data/attachments/77adc248069b48d7.txt similarity index 100% rename from allure-report/data/attachments/763794db833f43e6.txt rename to allure-report/data/attachments/77adc248069b48d7.txt diff --git a/allure-report/data/attachments/b653a3e02677ec62.txt b/allure-report/data/attachments/77c66732e5fdad66.txt similarity index 100% rename from allure-report/data/attachments/b653a3e02677ec62.txt rename to allure-report/data/attachments/77c66732e5fdad66.txt diff --git a/allure-report/data/attachments/d86f11066e8eb2f7.txt b/allure-report/data/attachments/7a383696eff0b379.txt similarity index 100% rename from allure-report/data/attachments/d86f11066e8eb2f7.txt rename to allure-report/data/attachments/7a383696eff0b379.txt diff --git a/allure-report/data/attachments/5705204dae406a16.txt b/allure-report/data/attachments/7bc78567c01b81e.txt similarity index 100% rename from allure-report/data/attachments/5705204dae406a16.txt rename to allure-report/data/attachments/7bc78567c01b81e.txt diff --git a/allure-report/data/attachments/eceb81b9185d8ebf.txt b/allure-report/data/attachments/7cd06e1d94c0b146.txt similarity index 100% rename from allure-report/data/attachments/eceb81b9185d8ebf.txt rename to allure-report/data/attachments/7cd06e1d94c0b146.txt diff --git a/allure-report/data/attachments/f8b4598a501c7d27.txt b/allure-report/data/attachments/7d49bbac8d757852.txt similarity index 100% rename from allure-report/data/attachments/f8b4598a501c7d27.txt rename to allure-report/data/attachments/7d49bbac8d757852.txt diff --git a/allure-report/data/attachments/5767980cac6ccce8.txt b/allure-report/data/attachments/7dd6b645422c34b6.txt similarity index 100% rename from allure-report/data/attachments/5767980cac6ccce8.txt rename to allure-report/data/attachments/7dd6b645422c34b6.txt diff --git a/allure-report/data/attachments/3e00d2a8f3aaa1eb.txt b/allure-report/data/attachments/7e0608ae57e6ca33.txt similarity index 100% rename from allure-report/data/attachments/3e00d2a8f3aaa1eb.txt rename to allure-report/data/attachments/7e0608ae57e6ca33.txt diff --git a/allure-report/data/attachments/e67bc3e5b3334332.txt b/allure-report/data/attachments/7f3ec04c5333a588.txt similarity index 100% rename from allure-report/data/attachments/e67bc3e5b3334332.txt rename to allure-report/data/attachments/7f3ec04c5333a588.txt diff --git a/allure-report/data/attachments/77f74c85e8c0841a.txt b/allure-report/data/attachments/7fc42db42407a1b3.txt similarity index 100% rename from allure-report/data/attachments/77f74c85e8c0841a.txt rename to allure-report/data/attachments/7fc42db42407a1b3.txt diff --git a/allure-report/data/attachments/d700c3a94542cad8.txt b/allure-report/data/attachments/81997e6990138a02.txt similarity index 100% rename from allure-report/data/attachments/d700c3a94542cad8.txt rename to allure-report/data/attachments/81997e6990138a02.txt diff --git a/allure-report/data/attachments/cfb7ba55710ea734.txt b/allure-report/data/attachments/8244325875cc8c2.txt similarity index 100% rename from allure-report/data/attachments/cfb7ba55710ea734.txt rename to allure-report/data/attachments/8244325875cc8c2.txt diff --git a/allure-report/data/attachments/78984c686d4aec41.txt b/allure-report/data/attachments/8324986f2adab578.txt similarity index 100% rename from allure-report/data/attachments/78984c686d4aec41.txt rename to allure-report/data/attachments/8324986f2adab578.txt diff --git a/allure-report/data/attachments/a5b9b2f5d2166132.txt b/allure-report/data/attachments/839cae885131e395.txt similarity index 100% rename from allure-report/data/attachments/a5b9b2f5d2166132.txt rename to allure-report/data/attachments/839cae885131e395.txt diff --git a/allure-report/data/attachments/d7e0ef7caf28d559.txt b/allure-report/data/attachments/857a5351e31f1baf.txt similarity index 100% rename from allure-report/data/attachments/d7e0ef7caf28d559.txt rename to allure-report/data/attachments/857a5351e31f1baf.txt diff --git a/allure-report/data/attachments/d071752d20b95de3.txt b/allure-report/data/attachments/880a2c92c8612a83.txt similarity index 100% rename from allure-report/data/attachments/d071752d20b95de3.txt rename to allure-report/data/attachments/880a2c92c8612a83.txt diff --git a/allure-report/data/attachments/251428633abf607e.txt b/allure-report/data/attachments/888fe7b1e08f632a.txt similarity index 100% rename from allure-report/data/attachments/251428633abf607e.txt rename to allure-report/data/attachments/888fe7b1e08f632a.txt diff --git a/allure-report/data/attachments/92e60d573610c20c.txt b/allure-report/data/attachments/8a1d25baaaa2cac0.txt similarity index 100% rename from allure-report/data/attachments/92e60d573610c20c.txt rename to allure-report/data/attachments/8a1d25baaaa2cac0.txt diff --git a/allure-report/data/attachments/6b2bb00f201470b4.txt b/allure-report/data/attachments/8a45c99b47ae5bc6.txt similarity index 100% rename from allure-report/data/attachments/6b2bb00f201470b4.txt rename to allure-report/data/attachments/8a45c99b47ae5bc6.txt diff --git a/allure-report/data/attachments/e8c4247db1945485.txt b/allure-report/data/attachments/8a8a2d0c90cfef1e.txt similarity index 100% rename from allure-report/data/attachments/e8c4247db1945485.txt rename to allure-report/data/attachments/8a8a2d0c90cfef1e.txt diff --git a/allure-report/data/attachments/9221a1b722d3e57e.txt b/allure-report/data/attachments/8ac039f3bc7f748f.txt similarity index 100% rename from allure-report/data/attachments/9221a1b722d3e57e.txt rename to allure-report/data/attachments/8ac039f3bc7f748f.txt diff --git a/allure-report/data/attachments/41f66f3f97e3d4e4.txt b/allure-report/data/attachments/8b32e9e6b9d5730c.txt similarity index 100% rename from allure-report/data/attachments/41f66f3f97e3d4e4.txt rename to allure-report/data/attachments/8b32e9e6b9d5730c.txt diff --git a/allure-report/data/attachments/c144733a0318ce29.txt b/allure-report/data/attachments/8b338c3953869594.txt similarity index 100% rename from allure-report/data/attachments/c144733a0318ce29.txt rename to allure-report/data/attachments/8b338c3953869594.txt diff --git a/allure-report/data/attachments/b8fb66a095ff9819.txt b/allure-report/data/attachments/8c002cae94869ae.txt similarity index 100% rename from allure-report/data/attachments/b8fb66a095ff9819.txt rename to allure-report/data/attachments/8c002cae94869ae.txt diff --git a/allure-report/data/attachments/fde614c2efca69df.txt b/allure-report/data/attachments/8c6b281f58e4fbe3.txt similarity index 100% rename from allure-report/data/attachments/fde614c2efca69df.txt rename to allure-report/data/attachments/8c6b281f58e4fbe3.txt diff --git a/allure-report/data/attachments/4144b9b4343fdd9e.txt b/allure-report/data/attachments/8ce1da867cdb9cd9.txt similarity index 100% rename from allure-report/data/attachments/4144b9b4343fdd9e.txt rename to allure-report/data/attachments/8ce1da867cdb9cd9.txt diff --git a/allure-report/data/attachments/56a8d88c2e7e082f.txt b/allure-report/data/attachments/8d52b389398fe1ce.txt similarity index 100% rename from allure-report/data/attachments/56a8d88c2e7e082f.txt rename to allure-report/data/attachments/8d52b389398fe1ce.txt diff --git a/allure-report/data/attachments/2143b544775b35fe.txt b/allure-report/data/attachments/8dfc11179dd2dd46.txt similarity index 100% rename from allure-report/data/attachments/2143b544775b35fe.txt rename to allure-report/data/attachments/8dfc11179dd2dd46.txt diff --git a/allure-report/data/attachments/f79ef762befefc39.txt b/allure-report/data/attachments/8e484f9bfa00ca83.txt similarity index 100% rename from allure-report/data/attachments/f79ef762befefc39.txt rename to allure-report/data/attachments/8e484f9bfa00ca83.txt diff --git a/allure-report/data/attachments/c013aca8f3f007b8.txt b/allure-report/data/attachments/8ef03709815f1ee7.txt similarity index 100% rename from allure-report/data/attachments/c013aca8f3f007b8.txt rename to allure-report/data/attachments/8ef03709815f1ee7.txt diff --git a/allure-report/data/attachments/b9b05bf139af2d32.txt b/allure-report/data/attachments/8ef3c2609186193.txt similarity index 100% rename from allure-report/data/attachments/b9b05bf139af2d32.txt rename to allure-report/data/attachments/8ef3c2609186193.txt diff --git a/allure-report/data/attachments/85aa32b5caa3d259.txt b/allure-report/data/attachments/8f909ea616537459.txt similarity index 100% rename from allure-report/data/attachments/85aa32b5caa3d259.txt rename to allure-report/data/attachments/8f909ea616537459.txt diff --git a/allure-report/data/attachments/4b46eca85ecd31e8.txt b/allure-report/data/attachments/8fe3e8aa201d424a.txt similarity index 100% rename from allure-report/data/attachments/4b46eca85ecd31e8.txt rename to allure-report/data/attachments/8fe3e8aa201d424a.txt diff --git a/allure-report/data/attachments/b013d563709aaa2b.txt b/allure-report/data/attachments/9047acd474e52c7c.txt similarity index 100% rename from allure-report/data/attachments/b013d563709aaa2b.txt rename to allure-report/data/attachments/9047acd474e52c7c.txt diff --git a/allure-report/data/attachments/1a8cbd3585c92133.txt b/allure-report/data/attachments/92375ce905d3bb32.txt similarity index 100% rename from allure-report/data/attachments/1a8cbd3585c92133.txt rename to allure-report/data/attachments/92375ce905d3bb32.txt diff --git a/allure-report/data/attachments/6968a83bd2f66f6.txt b/allure-report/data/attachments/9252a83ce892d840.txt similarity index 100% rename from allure-report/data/attachments/6968a83bd2f66f6.txt rename to allure-report/data/attachments/9252a83ce892d840.txt diff --git a/allure-report/data/attachments/36b72f15ac4ac48f.txt b/allure-report/data/attachments/929957d5beb797a6.txt similarity index 100% rename from allure-report/data/attachments/36b72f15ac4ac48f.txt rename to allure-report/data/attachments/929957d5beb797a6.txt diff --git a/allure-report/data/attachments/d1528cec1dd8dea3.txt b/allure-report/data/attachments/92cddf6ef1a2b768.txt similarity index 100% rename from allure-report/data/attachments/d1528cec1dd8dea3.txt rename to allure-report/data/attachments/92cddf6ef1a2b768.txt diff --git a/allure-report/data/attachments/3a9eebe7718e7480.txt b/allure-report/data/attachments/939b7ea8b8b69174.txt similarity index 100% rename from allure-report/data/attachments/3a9eebe7718e7480.txt rename to allure-report/data/attachments/939b7ea8b8b69174.txt diff --git a/allure-report/data/attachments/5efed1b6b7f1c808.txt b/allure-report/data/attachments/94c19824e08a6a92.txt similarity index 100% rename from allure-report/data/attachments/5efed1b6b7f1c808.txt rename to allure-report/data/attachments/94c19824e08a6a92.txt diff --git a/allure-report/data/attachments/a1cb38196225980f.txt b/allure-report/data/attachments/95dd879b5dc89b5e.txt similarity index 100% rename from allure-report/data/attachments/a1cb38196225980f.txt rename to allure-report/data/attachments/95dd879b5dc89b5e.txt diff --git a/allure-report/data/attachments/dc00b83d62a7bfbf.txt b/allure-report/data/attachments/974d8c9279e15557.txt similarity index 100% rename from allure-report/data/attachments/dc00b83d62a7bfbf.txt rename to allure-report/data/attachments/974d8c9279e15557.txt diff --git a/allure-report/data/attachments/70b6cf48eb9066a3.txt b/allure-report/data/attachments/97827ebef7dd2119.txt similarity index 100% rename from allure-report/data/attachments/70b6cf48eb9066a3.txt rename to allure-report/data/attachments/97827ebef7dd2119.txt diff --git a/allure-report/data/attachments/d4d0d11b46cc8eb0.txt b/allure-report/data/attachments/97bc633acb769f22.txt similarity index 100% rename from allure-report/data/attachments/d4d0d11b46cc8eb0.txt rename to allure-report/data/attachments/97bc633acb769f22.txt diff --git a/allure-report/data/attachments/737f4d50843fbb5.txt b/allure-report/data/attachments/9819ce1f0ac184a6.txt similarity index 100% rename from allure-report/data/attachments/737f4d50843fbb5.txt rename to allure-report/data/attachments/9819ce1f0ac184a6.txt diff --git a/allure-report/data/attachments/e6170073182411e7.txt b/allure-report/data/attachments/98b58e86a56b6f3b.txt similarity index 100% rename from allure-report/data/attachments/e6170073182411e7.txt rename to allure-report/data/attachments/98b58e86a56b6f3b.txt diff --git a/allure-report/data/attachments/c88c8283826150a7.txt b/allure-report/data/attachments/998cb255bcb4a08e.txt similarity index 100% rename from allure-report/data/attachments/c88c8283826150a7.txt rename to allure-report/data/attachments/998cb255bcb4a08e.txt diff --git a/allure-report/data/attachments/f1276b53d50f9117.txt b/allure-report/data/attachments/9b1bb88dc50af4ea.txt similarity index 100% rename from allure-report/data/attachments/f1276b53d50f9117.txt rename to allure-report/data/attachments/9b1bb88dc50af4ea.txt diff --git a/allure-report/data/attachments/7f7258c787806381.txt b/allure-report/data/attachments/9b753e8aa39a2b6c.txt similarity index 100% rename from allure-report/data/attachments/7f7258c787806381.txt rename to allure-report/data/attachments/9b753e8aa39a2b6c.txt diff --git a/allure-report/data/attachments/672a2772e24fdc9b.txt b/allure-report/data/attachments/9c17474dc274435d.txt similarity index 100% rename from allure-report/data/attachments/672a2772e24fdc9b.txt rename to allure-report/data/attachments/9c17474dc274435d.txt diff --git a/allure-report/data/attachments/22f31b147f604ade.txt b/allure-report/data/attachments/9cd8266cfd985687.txt similarity index 100% rename from allure-report/data/attachments/22f31b147f604ade.txt rename to allure-report/data/attachments/9cd8266cfd985687.txt diff --git a/allure-report/data/attachments/15c99b80ae7e843e.txt b/allure-report/data/attachments/9ef0f4c8246dad00.txt similarity index 100% rename from allure-report/data/attachments/15c99b80ae7e843e.txt rename to allure-report/data/attachments/9ef0f4c8246dad00.txt diff --git a/allure-report/data/attachments/e3d1c47094969219.txt b/allure-report/data/attachments/a05ee87cd665f265.txt similarity index 100% rename from allure-report/data/attachments/e3d1c47094969219.txt rename to allure-report/data/attachments/a05ee87cd665f265.txt diff --git a/allure-report/data/attachments/dd62b896cd445c4.txt b/allure-report/data/attachments/a1418ed9afde7ea1.txt similarity index 100% rename from allure-report/data/attachments/dd62b896cd445c4.txt rename to allure-report/data/attachments/a1418ed9afde7ea1.txt diff --git a/allure-report/data/attachments/d279b3f66291ee3.txt b/allure-report/data/attachments/a193aa0d76e6e0f1.txt similarity index 100% rename from allure-report/data/attachments/d279b3f66291ee3.txt rename to allure-report/data/attachments/a193aa0d76e6e0f1.txt diff --git a/allure-report/data/attachments/4158b1e0c4f5a122.txt b/allure-report/data/attachments/a31af19dcd964af7.txt similarity index 100% rename from allure-report/data/attachments/4158b1e0c4f5a122.txt rename to allure-report/data/attachments/a31af19dcd964af7.txt diff --git a/allure-report/data/attachments/ac514e66507a8175.txt b/allure-report/data/attachments/a3957b3e858fa9c0.txt similarity index 100% rename from allure-report/data/attachments/ac514e66507a8175.txt rename to allure-report/data/attachments/a3957b3e858fa9c0.txt diff --git a/allure-report/data/attachments/839567f1e1e69ee5.txt b/allure-report/data/attachments/a3af1182be2fa344.txt similarity index 100% rename from allure-report/data/attachments/839567f1e1e69ee5.txt rename to allure-report/data/attachments/a3af1182be2fa344.txt diff --git a/allure-report/data/attachments/7941ce7b9fdf9a23.txt b/allure-report/data/attachments/a3e3342383736358.txt similarity index 100% rename from allure-report/data/attachments/7941ce7b9fdf9a23.txt rename to allure-report/data/attachments/a3e3342383736358.txt diff --git a/allure-report/data/attachments/d9e1cc8a9d47ef26.txt b/allure-report/data/attachments/a40dc509f3c7162d.txt similarity index 100% rename from allure-report/data/attachments/d9e1cc8a9d47ef26.txt rename to allure-report/data/attachments/a40dc509f3c7162d.txt diff --git a/allure-report/data/attachments/2f602fdb5599f0ec.txt b/allure-report/data/attachments/a5fae94f2517e85b.txt similarity index 100% rename from allure-report/data/attachments/2f602fdb5599f0ec.txt rename to allure-report/data/attachments/a5fae94f2517e85b.txt diff --git a/allure-report/data/attachments/ff4563a6816a8fb1.txt b/allure-report/data/attachments/a5fe4c42944f89c8.txt similarity index 100% rename from allure-report/data/attachments/ff4563a6816a8fb1.txt rename to allure-report/data/attachments/a5fe4c42944f89c8.txt diff --git a/allure-report/data/attachments/ea676dbf2861ab6b.txt b/allure-report/data/attachments/a613cf938d78c4d4.txt similarity index 100% rename from allure-report/data/attachments/ea676dbf2861ab6b.txt rename to allure-report/data/attachments/a613cf938d78c4d4.txt diff --git a/allure-report/data/attachments/d27167744db90954.txt b/allure-report/data/attachments/a62856bc357d2685.txt similarity index 100% rename from allure-report/data/attachments/d27167744db90954.txt rename to allure-report/data/attachments/a62856bc357d2685.txt diff --git a/allure-report/data/attachments/6886fc4b238144c3.txt b/allure-report/data/attachments/a648c0041b64d7a8.txt similarity index 100% rename from allure-report/data/attachments/6886fc4b238144c3.txt rename to allure-report/data/attachments/a648c0041b64d7a8.txt diff --git a/allure-report/data/attachments/c3d16eb9cb3b239c.txt b/allure-report/data/attachments/a66ea3c1c7d07513.txt similarity index 100% rename from allure-report/data/attachments/c3d16eb9cb3b239c.txt rename to allure-report/data/attachments/a66ea3c1c7d07513.txt diff --git a/allure-report/data/attachments/47de92a1be75c8fa.txt b/allure-report/data/attachments/a73f85a8fac351b8.txt similarity index 100% rename from allure-report/data/attachments/47de92a1be75c8fa.txt rename to allure-report/data/attachments/a73f85a8fac351b8.txt diff --git a/allure-report/data/attachments/2c0b65a9daada0df.txt b/allure-report/data/attachments/a7f10bb4c8e33c64.txt similarity index 100% rename from allure-report/data/attachments/2c0b65a9daada0df.txt rename to allure-report/data/attachments/a7f10bb4c8e33c64.txt diff --git a/allure-report/data/attachments/634594d507e663ad.txt b/allure-report/data/attachments/a823a6dcaaab38a.txt similarity index 100% rename from allure-report/data/attachments/634594d507e663ad.txt rename to allure-report/data/attachments/a823a6dcaaab38a.txt diff --git a/allure-report/data/attachments/6f54ca69ed4a797e.txt b/allure-report/data/attachments/a881d3345681241e.txt similarity index 100% rename from allure-report/data/attachments/6f54ca69ed4a797e.txt rename to allure-report/data/attachments/a881d3345681241e.txt diff --git a/allure-report/data/attachments/7829271a783962e0.txt b/allure-report/data/attachments/a95c78a9496692b3.txt similarity index 100% rename from allure-report/data/attachments/7829271a783962e0.txt rename to allure-report/data/attachments/a95c78a9496692b3.txt diff --git a/allure-report/data/attachments/db0dfa2ecde82e2a.txt b/allure-report/data/attachments/a9f925f082e601ea.txt similarity index 100% rename from allure-report/data/attachments/db0dfa2ecde82e2a.txt rename to allure-report/data/attachments/a9f925f082e601ea.txt diff --git a/allure-report/data/attachments/5a779afadfd77377.txt b/allure-report/data/attachments/aa8cd00c6909033a.txt similarity index 100% rename from allure-report/data/attachments/5a779afadfd77377.txt rename to allure-report/data/attachments/aa8cd00c6909033a.txt diff --git a/allure-report/data/attachments/ddae89531089be3f.txt b/allure-report/data/attachments/ab4c5be84836fafb.txt similarity index 100% rename from allure-report/data/attachments/ddae89531089be3f.txt rename to allure-report/data/attachments/ab4c5be84836fafb.txt diff --git a/allure-report/data/attachments/55424ab646409d91.txt b/allure-report/data/attachments/ab72754d2ac3d657.txt similarity index 100% rename from allure-report/data/attachments/55424ab646409d91.txt rename to allure-report/data/attachments/ab72754d2ac3d657.txt diff --git a/allure-report/data/attachments/30383d555cbdd5c6.txt b/allure-report/data/attachments/abe246047ca80d75.txt similarity index 100% rename from allure-report/data/attachments/30383d555cbdd5c6.txt rename to allure-report/data/attachments/abe246047ca80d75.txt diff --git a/allure-report/data/attachments/a140c6342ce1ee58.txt b/allure-report/data/attachments/ad44f1f08939323f.txt similarity index 100% rename from allure-report/data/attachments/a140c6342ce1ee58.txt rename to allure-report/data/attachments/ad44f1f08939323f.txt diff --git a/allure-report/data/attachments/4273c801c4c75440.txt b/allure-report/data/attachments/addbfb5be788ff64.txt similarity index 100% rename from allure-report/data/attachments/4273c801c4c75440.txt rename to allure-report/data/attachments/addbfb5be788ff64.txt diff --git a/allure-report/data/attachments/1200393e54a2122a.txt b/allure-report/data/attachments/ae418f132f3362c9.txt similarity index 100% rename from allure-report/data/attachments/1200393e54a2122a.txt rename to allure-report/data/attachments/ae418f132f3362c9.txt diff --git a/allure-report/data/attachments/8433939b2e0016e1.txt b/allure-report/data/attachments/ae7d7256cc9cd87f.txt similarity index 100% rename from allure-report/data/attachments/8433939b2e0016e1.txt rename to allure-report/data/attachments/ae7d7256cc9cd87f.txt diff --git a/allure-report/data/attachments/838e96495b7301c2.txt b/allure-report/data/attachments/aeaa6146da01ffaa.txt similarity index 100% rename from allure-report/data/attachments/838e96495b7301c2.txt rename to allure-report/data/attachments/aeaa6146da01ffaa.txt diff --git a/allure-report/data/attachments/63766a355340dea4.txt b/allure-report/data/attachments/aef94a39bd8b19be.txt similarity index 100% rename from allure-report/data/attachments/63766a355340dea4.txt rename to allure-report/data/attachments/aef94a39bd8b19be.txt diff --git a/allure-report/data/attachments/c12b7919feb22bf.txt b/allure-report/data/attachments/b0341cfdabd60782.txt similarity index 100% rename from allure-report/data/attachments/c12b7919feb22bf.txt rename to allure-report/data/attachments/b0341cfdabd60782.txt diff --git a/allure-report/data/attachments/5ba70b78893a0ae6.txt b/allure-report/data/attachments/b102eb36f048a843.txt similarity index 100% rename from allure-report/data/attachments/5ba70b78893a0ae6.txt rename to allure-report/data/attachments/b102eb36f048a843.txt diff --git a/allure-report/data/attachments/fcb85638cafa3b09.txt b/allure-report/data/attachments/b18a61fc243fdba8.txt similarity index 100% rename from allure-report/data/attachments/fcb85638cafa3b09.txt rename to allure-report/data/attachments/b18a61fc243fdba8.txt diff --git a/allure-report/data/attachments/84f9893956705e3c.txt b/allure-report/data/attachments/b2176623a3e27602.txt similarity index 100% rename from allure-report/data/attachments/84f9893956705e3c.txt rename to allure-report/data/attachments/b2176623a3e27602.txt diff --git a/allure-report/data/attachments/143162d049c6ebb2.txt b/allure-report/data/attachments/b3d5e98a684cd625.txt similarity index 100% rename from allure-report/data/attachments/143162d049c6ebb2.txt rename to allure-report/data/attachments/b3d5e98a684cd625.txt diff --git a/allure-report/data/attachments/fcbbb87dd9240b08.txt b/allure-report/data/attachments/b436923321373575.txt similarity index 100% rename from allure-report/data/attachments/fcbbb87dd9240b08.txt rename to allure-report/data/attachments/b436923321373575.txt diff --git a/allure-report/data/attachments/7177fb466625b3ce.txt b/allure-report/data/attachments/b5b702f79cbcea35.txt similarity index 100% rename from allure-report/data/attachments/7177fb466625b3ce.txt rename to allure-report/data/attachments/b5b702f79cbcea35.txt diff --git a/allure-report/data/attachments/33928ceb3bfb16f9.txt b/allure-report/data/attachments/b650a2b5eace42e.txt similarity index 100% rename from allure-report/data/attachments/33928ceb3bfb16f9.txt rename to allure-report/data/attachments/b650a2b5eace42e.txt diff --git a/allure-report/data/attachments/87f777895eba7eaf.txt b/allure-report/data/attachments/b82715c67d99ec0e.txt similarity index 100% rename from allure-report/data/attachments/87f777895eba7eaf.txt rename to allure-report/data/attachments/b82715c67d99ec0e.txt diff --git a/allure-report/data/attachments/b4f27bd29772e298.txt b/allure-report/data/attachments/b94b97d784c6cf01.txt similarity index 100% rename from allure-report/data/attachments/b4f27bd29772e298.txt rename to allure-report/data/attachments/b94b97d784c6cf01.txt diff --git a/allure-report/data/attachments/272f73f71ea0c103.txt b/allure-report/data/attachments/ba31ccf0eed329a1.txt similarity index 100% rename from allure-report/data/attachments/272f73f71ea0c103.txt rename to allure-report/data/attachments/ba31ccf0eed329a1.txt diff --git a/allure-report/data/attachments/abb69032ea61f29c.txt b/allure-report/data/attachments/ba5b206c202bb2e0.txt similarity index 100% rename from allure-report/data/attachments/abb69032ea61f29c.txt rename to allure-report/data/attachments/ba5b206c202bb2e0.txt diff --git a/allure-report/data/attachments/c1146e7ec026151e.txt b/allure-report/data/attachments/bb1a14f7acaf229.txt similarity index 100% rename from allure-report/data/attachments/c1146e7ec026151e.txt rename to allure-report/data/attachments/bb1a14f7acaf229.txt diff --git a/allure-report/data/attachments/ea7fb2d8338c4ae8.txt b/allure-report/data/attachments/be7449bab7c02e56.txt similarity index 100% rename from allure-report/data/attachments/ea7fb2d8338c4ae8.txt rename to allure-report/data/attachments/be7449bab7c02e56.txt diff --git a/allure-report/data/attachments/a9033f7cad83170f.txt b/allure-report/data/attachments/bee515a36bc2165b.txt similarity index 100% rename from allure-report/data/attachments/a9033f7cad83170f.txt rename to allure-report/data/attachments/bee515a36bc2165b.txt diff --git a/allure-report/data/attachments/91c5a91c91d3cce8.txt b/allure-report/data/attachments/bf8644536e05f3d6.txt similarity index 100% rename from allure-report/data/attachments/91c5a91c91d3cce8.txt rename to allure-report/data/attachments/bf8644536e05f3d6.txt diff --git a/allure-report/data/attachments/f1386283fe3a63a2.txt b/allure-report/data/attachments/bfa0e041a65d579a.txt similarity index 100% rename from allure-report/data/attachments/f1386283fe3a63a2.txt rename to allure-report/data/attachments/bfa0e041a65d579a.txt diff --git a/allure-report/data/attachments/b5130ca9dc47578e.txt b/allure-report/data/attachments/bfd7eb06540fa1b6.txt similarity index 100% rename from allure-report/data/attachments/b5130ca9dc47578e.txt rename to allure-report/data/attachments/bfd7eb06540fa1b6.txt diff --git a/allure-report/data/attachments/e6af0cabbf264491.txt b/allure-report/data/attachments/c02985fbd2700004.txt similarity index 100% rename from allure-report/data/attachments/e6af0cabbf264491.txt rename to allure-report/data/attachments/c02985fbd2700004.txt diff --git a/allure-report/data/attachments/79650f7b74d71675.txt b/allure-report/data/attachments/c0c4047155365dbf.txt similarity index 100% rename from allure-report/data/attachments/79650f7b74d71675.txt rename to allure-report/data/attachments/c0c4047155365dbf.txt diff --git a/allure-report/data/attachments/e9ba7465215b13fc.txt b/allure-report/data/attachments/c258bec5b6c8eafe.txt similarity index 100% rename from allure-report/data/attachments/e9ba7465215b13fc.txt rename to allure-report/data/attachments/c258bec5b6c8eafe.txt diff --git a/allure-report/data/attachments/cc97e34ff385a06.txt b/allure-report/data/attachments/c2916b6d9a3730c2.txt similarity index 100% rename from allure-report/data/attachments/cc97e34ff385a06.txt rename to allure-report/data/attachments/c2916b6d9a3730c2.txt diff --git a/allure-report/data/attachments/e747e2d69cfbefdf.txt b/allure-report/data/attachments/c319238385a5cb6d.txt similarity index 100% rename from allure-report/data/attachments/e747e2d69cfbefdf.txt rename to allure-report/data/attachments/c319238385a5cb6d.txt diff --git a/allure-report/data/attachments/7716f7bce2ac3794.txt b/allure-report/data/attachments/c34a92b7a1b9869e.txt similarity index 100% rename from allure-report/data/attachments/7716f7bce2ac3794.txt rename to allure-report/data/attachments/c34a92b7a1b9869e.txt diff --git a/allure-report/data/attachments/52b7eb4ac34d1a3f.txt b/allure-report/data/attachments/c38727f5bb9d52ae.txt similarity index 100% rename from allure-report/data/attachments/52b7eb4ac34d1a3f.txt rename to allure-report/data/attachments/c38727f5bb9d52ae.txt diff --git a/allure-report/data/attachments/2a724e02684b391.txt b/allure-report/data/attachments/c452ee18f96c325a.txt similarity index 100% rename from allure-report/data/attachments/2a724e02684b391.txt rename to allure-report/data/attachments/c452ee18f96c325a.txt diff --git a/allure-report/data/attachments/8e2411421a238415.txt b/allure-report/data/attachments/c520dd2a3bb6ed30.txt similarity index 100% rename from allure-report/data/attachments/8e2411421a238415.txt rename to allure-report/data/attachments/c520dd2a3bb6ed30.txt diff --git a/allure-report/data/attachments/8b00f3eb19799549.txt b/allure-report/data/attachments/c52989139561013a.txt similarity index 100% rename from allure-report/data/attachments/8b00f3eb19799549.txt rename to allure-report/data/attachments/c52989139561013a.txt diff --git a/allure-report/data/attachments/894de7f1e428d962.txt b/allure-report/data/attachments/c5afc30c761eea74.txt similarity index 100% rename from allure-report/data/attachments/894de7f1e428d962.txt rename to allure-report/data/attachments/c5afc30c761eea74.txt diff --git a/allure-report/data/attachments/15329bd7c41462e0.txt b/allure-report/data/attachments/c629f823771e2123.txt similarity index 100% rename from allure-report/data/attachments/15329bd7c41462e0.txt rename to allure-report/data/attachments/c629f823771e2123.txt diff --git a/allure-report/data/attachments/8f40a615942b6a99.txt b/allure-report/data/attachments/c703e2fc1b8c856f.txt similarity index 100% rename from allure-report/data/attachments/8f40a615942b6a99.txt rename to allure-report/data/attachments/c703e2fc1b8c856f.txt diff --git a/allure-report/data/attachments/93547fa89048aa2f.txt b/allure-report/data/attachments/c77e43a426f47681.txt similarity index 100% rename from allure-report/data/attachments/93547fa89048aa2f.txt rename to allure-report/data/attachments/c77e43a426f47681.txt diff --git a/allure-report/data/attachments/90ef8c17370e6610.txt b/allure-report/data/attachments/ca0d330469f49836.txt similarity index 100% rename from allure-report/data/attachments/90ef8c17370e6610.txt rename to allure-report/data/attachments/ca0d330469f49836.txt diff --git a/allure-report/data/attachments/fb2891f4860c316.txt b/allure-report/data/attachments/ca8a9ae1b56b4086.txt similarity index 100% rename from allure-report/data/attachments/fb2891f4860c316.txt rename to allure-report/data/attachments/ca8a9ae1b56b4086.txt diff --git a/allure-report/data/attachments/839e0167efc9a3e5.txt b/allure-report/data/attachments/ca908a3276ec1f33.txt similarity index 100% rename from allure-report/data/attachments/839e0167efc9a3e5.txt rename to allure-report/data/attachments/ca908a3276ec1f33.txt diff --git a/allure-report/data/attachments/60434b32a4fa91ba.txt b/allure-report/data/attachments/cb2ee8571e9e5841.txt similarity index 100% rename from allure-report/data/attachments/60434b32a4fa91ba.txt rename to allure-report/data/attachments/cb2ee8571e9e5841.txt diff --git a/allure-report/data/attachments/120b1ea05b87d5bf.txt b/allure-report/data/attachments/cc9e92a1032075c9.txt similarity index 100% rename from allure-report/data/attachments/120b1ea05b87d5bf.txt rename to allure-report/data/attachments/cc9e92a1032075c9.txt diff --git a/allure-report/data/attachments/26c574f777b434b5.txt b/allure-report/data/attachments/cca44b266aa98436.txt similarity index 100% rename from allure-report/data/attachments/26c574f777b434b5.txt rename to allure-report/data/attachments/cca44b266aa98436.txt diff --git a/allure-report/data/attachments/6096f7399a313214.txt b/allure-report/data/attachments/ccdd1b5f063278d8.txt similarity index 100% rename from allure-report/data/attachments/6096f7399a313214.txt rename to allure-report/data/attachments/ccdd1b5f063278d8.txt diff --git a/allure-report/data/attachments/4e2e1868fac6f5c2.txt b/allure-report/data/attachments/cd5591b59d574128.txt similarity index 100% rename from allure-report/data/attachments/4e2e1868fac6f5c2.txt rename to allure-report/data/attachments/cd5591b59d574128.txt diff --git a/allure-report/data/attachments/db7ce475c42c1e48.txt b/allure-report/data/attachments/cd8ecc1f6b5a44.txt similarity index 100% rename from allure-report/data/attachments/db7ce475c42c1e48.txt rename to allure-report/data/attachments/cd8ecc1f6b5a44.txt diff --git a/allure-report/data/attachments/c6d99744fc651725.txt b/allure-report/data/attachments/cda2f56ac699fd36.txt similarity index 100% rename from allure-report/data/attachments/c6d99744fc651725.txt rename to allure-report/data/attachments/cda2f56ac699fd36.txt diff --git a/allure-report/data/attachments/1e9020a1f427ff16.txt b/allure-report/data/attachments/ce026a7ada5eb7bc.txt similarity index 100% rename from allure-report/data/attachments/1e9020a1f427ff16.txt rename to allure-report/data/attachments/ce026a7ada5eb7bc.txt diff --git a/allure-report/data/attachments/e89406beb8fb490f.txt b/allure-report/data/attachments/ce20c6dd4e02cb56.txt similarity index 100% rename from allure-report/data/attachments/e89406beb8fb490f.txt rename to allure-report/data/attachments/ce20c6dd4e02cb56.txt diff --git a/allure-report/data/attachments/f522ce9854634cf6.txt b/allure-report/data/attachments/ce2512d2a26a891e.txt similarity index 100% rename from allure-report/data/attachments/f522ce9854634cf6.txt rename to allure-report/data/attachments/ce2512d2a26a891e.txt diff --git a/allure-report/data/attachments/676a2b28cd4ab614.txt b/allure-report/data/attachments/cece8653b698fb5f.txt similarity index 100% rename from allure-report/data/attachments/676a2b28cd4ab614.txt rename to allure-report/data/attachments/cece8653b698fb5f.txt diff --git a/allure-report/data/attachments/f457bf5da9408839.txt b/allure-report/data/attachments/cfc199981b020b59.txt similarity index 100% rename from allure-report/data/attachments/f457bf5da9408839.txt rename to allure-report/data/attachments/cfc199981b020b59.txt diff --git a/allure-report/data/attachments/b43989c1fe59fe7e.txt b/allure-report/data/attachments/d0030f8b38971a56.txt similarity index 100% rename from allure-report/data/attachments/b43989c1fe59fe7e.txt rename to allure-report/data/attachments/d0030f8b38971a56.txt diff --git a/allure-report/data/attachments/754273bb670e7e63.txt b/allure-report/data/attachments/d01b1971a8a3587e.txt similarity index 100% rename from allure-report/data/attachments/754273bb670e7e63.txt rename to allure-report/data/attachments/d01b1971a8a3587e.txt diff --git a/allure-report/data/attachments/a5cbeea06209bb6e.txt b/allure-report/data/attachments/d03e7f0ed07eb16c.txt similarity index 100% rename from allure-report/data/attachments/a5cbeea06209bb6e.txt rename to allure-report/data/attachments/d03e7f0ed07eb16c.txt diff --git a/allure-report/data/attachments/fec67c535945138b.txt b/allure-report/data/attachments/d0b96f0ad42d1de6.txt similarity index 100% rename from allure-report/data/attachments/fec67c535945138b.txt rename to allure-report/data/attachments/d0b96f0ad42d1de6.txt diff --git a/allure-report/data/attachments/ebee3405e01a539f.txt b/allure-report/data/attachments/d1bf3e067845857a.txt similarity index 100% rename from allure-report/data/attachments/ebee3405e01a539f.txt rename to allure-report/data/attachments/d1bf3e067845857a.txt diff --git a/allure-report/data/attachments/d544fbd4d09ad0f7.txt b/allure-report/data/attachments/d1cecae81ecbadad.txt similarity index 100% rename from allure-report/data/attachments/d544fbd4d09ad0f7.txt rename to allure-report/data/attachments/d1cecae81ecbadad.txt diff --git a/allure-report/data/attachments/362de8ecec922d6a.txt b/allure-report/data/attachments/d2ebd6c7bb69da29.txt similarity index 100% rename from allure-report/data/attachments/362de8ecec922d6a.txt rename to allure-report/data/attachments/d2ebd6c7bb69da29.txt diff --git a/allure-report/data/attachments/45411ab5eb543e75.txt b/allure-report/data/attachments/d43641784540be20.txt similarity index 100% rename from allure-report/data/attachments/45411ab5eb543e75.txt rename to allure-report/data/attachments/d43641784540be20.txt diff --git a/allure-report/data/attachments/41eff5539d108708.txt b/allure-report/data/attachments/d4ab56b3974e742a.txt similarity index 100% rename from allure-report/data/attachments/41eff5539d108708.txt rename to allure-report/data/attachments/d4ab56b3974e742a.txt diff --git a/allure-report/data/attachments/6681f7087b7f0e75.txt b/allure-report/data/attachments/d6941eaebe2a3ba3.txt similarity index 100% rename from allure-report/data/attachments/6681f7087b7f0e75.txt rename to allure-report/data/attachments/d6941eaebe2a3ba3.txt diff --git a/allure-report/data/attachments/da9065dd6d539fab.txt b/allure-report/data/attachments/d6c5e78c2bca1b60.txt similarity index 100% rename from allure-report/data/attachments/da9065dd6d539fab.txt rename to allure-report/data/attachments/d6c5e78c2bca1b60.txt diff --git a/allure-report/data/attachments/fd4f4028774f914d.txt b/allure-report/data/attachments/d7dd41e46efca9ee.txt similarity index 100% rename from allure-report/data/attachments/fd4f4028774f914d.txt rename to allure-report/data/attachments/d7dd41e46efca9ee.txt diff --git a/allure-report/data/attachments/84bdcd72726e2c84.txt b/allure-report/data/attachments/d83a50edd6b56e2a.txt similarity index 100% rename from allure-report/data/attachments/84bdcd72726e2c84.txt rename to allure-report/data/attachments/d83a50edd6b56e2a.txt diff --git a/allure-report/data/attachments/fb14be3959747375.txt b/allure-report/data/attachments/d85ac6726b459082.txt similarity index 100% rename from allure-report/data/attachments/fb14be3959747375.txt rename to allure-report/data/attachments/d85ac6726b459082.txt diff --git a/allure-report/data/attachments/c72469286db7525d.txt b/allure-report/data/attachments/d89f3d58b0c226e8.txt similarity index 100% rename from allure-report/data/attachments/c72469286db7525d.txt rename to allure-report/data/attachments/d89f3d58b0c226e8.txt diff --git a/allure-report/data/attachments/c954d80fa61d867d.txt b/allure-report/data/attachments/d8b7ee3418e7b9e0.txt similarity index 100% rename from allure-report/data/attachments/c954d80fa61d867d.txt rename to allure-report/data/attachments/d8b7ee3418e7b9e0.txt diff --git a/allure-report/data/attachments/f25bb18adfb0c750.txt b/allure-report/data/attachments/d8ed65aadf059368.txt similarity index 100% rename from allure-report/data/attachments/f25bb18adfb0c750.txt rename to allure-report/data/attachments/d8ed65aadf059368.txt diff --git a/allure-report/data/attachments/4cd1e84a01209f22.txt b/allure-report/data/attachments/d8f05623e6466063.txt similarity index 100% rename from allure-report/data/attachments/4cd1e84a01209f22.txt rename to allure-report/data/attachments/d8f05623e6466063.txt diff --git a/allure-report/data/attachments/feeed58e51d5c7a.txt b/allure-report/data/attachments/d9853791dbf86dfe.txt similarity index 100% rename from allure-report/data/attachments/feeed58e51d5c7a.txt rename to allure-report/data/attachments/d9853791dbf86dfe.txt diff --git a/allure-report/data/attachments/6431ac3684ba417d.txt b/allure-report/data/attachments/dcb18087db2eef7c.txt similarity index 100% rename from allure-report/data/attachments/6431ac3684ba417d.txt rename to allure-report/data/attachments/dcb18087db2eef7c.txt diff --git a/allure-report/data/attachments/72f410625d43ac82.txt b/allure-report/data/attachments/dcb5cf58cdd3658a.txt similarity index 100% rename from allure-report/data/attachments/72f410625d43ac82.txt rename to allure-report/data/attachments/dcb5cf58cdd3658a.txt diff --git a/allure-report/data/attachments/4e5a0ef8eae5b1f5.txt b/allure-report/data/attachments/dd695e9095070885.txt similarity index 100% rename from allure-report/data/attachments/4e5a0ef8eae5b1f5.txt rename to allure-report/data/attachments/dd695e9095070885.txt diff --git a/allure-report/data/attachments/67735b58dfb8e3b0.txt b/allure-report/data/attachments/dd90e5bd6518035b.txt similarity index 100% rename from allure-report/data/attachments/67735b58dfb8e3b0.txt rename to allure-report/data/attachments/dd90e5bd6518035b.txt diff --git a/allure-report/data/attachments/b87eb62b93596729.txt b/allure-report/data/attachments/de83cab412c71bc2.txt similarity index 100% rename from allure-report/data/attachments/b87eb62b93596729.txt rename to allure-report/data/attachments/de83cab412c71bc2.txt diff --git a/allure-report/data/attachments/95eee5a3754aa8a2.txt b/allure-report/data/attachments/dea157c47f361971.txt similarity index 100% rename from allure-report/data/attachments/95eee5a3754aa8a2.txt rename to allure-report/data/attachments/dea157c47f361971.txt diff --git a/allure-report/data/attachments/ee2fa2d0000577e9.txt b/allure-report/data/attachments/df1294dda064bff1.txt similarity index 100% rename from allure-report/data/attachments/ee2fa2d0000577e9.txt rename to allure-report/data/attachments/df1294dda064bff1.txt diff --git a/allure-report/data/attachments/6b3bb7e070cc7a5c.txt b/allure-report/data/attachments/e04892408ba7673f.txt similarity index 100% rename from allure-report/data/attachments/6b3bb7e070cc7a5c.txt rename to allure-report/data/attachments/e04892408ba7673f.txt diff --git a/allure-report/data/attachments/eba58defe547aa99.txt b/allure-report/data/attachments/e0673a9df06bdbef.txt similarity index 100% rename from allure-report/data/attachments/eba58defe547aa99.txt rename to allure-report/data/attachments/e0673a9df06bdbef.txt diff --git a/allure-report/data/attachments/b8749033ef3225ff.txt b/allure-report/data/attachments/e11dfdc5beea1549.txt similarity index 100% rename from allure-report/data/attachments/b8749033ef3225ff.txt rename to allure-report/data/attachments/e11dfdc5beea1549.txt diff --git a/allure-report/data/attachments/f200722e18d9d59a.txt b/allure-report/data/attachments/e13819432a0a8bbc.txt similarity index 100% rename from allure-report/data/attachments/f200722e18d9d59a.txt rename to allure-report/data/attachments/e13819432a0a8bbc.txt diff --git a/allure-report/data/attachments/e46ecdc21febfa2d.txt b/allure-report/data/attachments/e160bbe65fc37bcd.txt similarity index 100% rename from allure-report/data/attachments/e46ecdc21febfa2d.txt rename to allure-report/data/attachments/e160bbe65fc37bcd.txt diff --git a/allure-report/data/attachments/6c919aa9e8f6951e.txt b/allure-report/data/attachments/e1db63f604b55e53.txt similarity index 100% rename from allure-report/data/attachments/6c919aa9e8f6951e.txt rename to allure-report/data/attachments/e1db63f604b55e53.txt diff --git a/allure-report/data/attachments/a54c971159a9735d.txt b/allure-report/data/attachments/e2e513778c4c6c4f.txt similarity index 100% rename from allure-report/data/attachments/a54c971159a9735d.txt rename to allure-report/data/attachments/e2e513778c4c6c4f.txt diff --git a/allure-report/data/attachments/60ce0e41b02093a3.txt b/allure-report/data/attachments/e321f5d691b52e57.txt similarity index 100% rename from allure-report/data/attachments/60ce0e41b02093a3.txt rename to allure-report/data/attachments/e321f5d691b52e57.txt diff --git a/allure-report/data/attachments/cb5281dd2f2e56c3.txt b/allure-report/data/attachments/e3a1df6b2bd53059.txt similarity index 100% rename from allure-report/data/attachments/cb5281dd2f2e56c3.txt rename to allure-report/data/attachments/e3a1df6b2bd53059.txt diff --git a/allure-report/data/attachments/f8c0f6bed7a29f7c.txt b/allure-report/data/attachments/e3dd9c2915855555.txt similarity index 100% rename from allure-report/data/attachments/f8c0f6bed7a29f7c.txt rename to allure-report/data/attachments/e3dd9c2915855555.txt diff --git a/allure-report/data/attachments/f93ff3c1bc3ca41c.txt b/allure-report/data/attachments/e41ceec6c0cda082.txt similarity index 100% rename from allure-report/data/attachments/f93ff3c1bc3ca41c.txt rename to allure-report/data/attachments/e41ceec6c0cda082.txt diff --git a/allure-report/data/attachments/3714b6ca536dc4d2.txt b/allure-report/data/attachments/e448201e6af0cd65.txt similarity index 100% rename from allure-report/data/attachments/3714b6ca536dc4d2.txt rename to allure-report/data/attachments/e448201e6af0cd65.txt diff --git a/allure-report/data/attachments/868a8a8788cc39fc.txt b/allure-report/data/attachments/e44deaae3b3d699a.txt similarity index 100% rename from allure-report/data/attachments/868a8a8788cc39fc.txt rename to allure-report/data/attachments/e44deaae3b3d699a.txt diff --git a/allure-report/data/attachments/e3e4221321612bf1.txt b/allure-report/data/attachments/e599d37b78101a20.txt similarity index 100% rename from allure-report/data/attachments/e3e4221321612bf1.txt rename to allure-report/data/attachments/e599d37b78101a20.txt diff --git a/allure-report/data/attachments/d682c96b1e76edae.txt b/allure-report/data/attachments/e6328cf6a3bf7297.txt similarity index 100% rename from allure-report/data/attachments/d682c96b1e76edae.txt rename to allure-report/data/attachments/e6328cf6a3bf7297.txt diff --git a/allure-report/data/attachments/e36f2ac65e2625af.txt b/allure-report/data/attachments/e7393a784e166457.txt similarity index 100% rename from allure-report/data/attachments/e36f2ac65e2625af.txt rename to allure-report/data/attachments/e7393a784e166457.txt diff --git a/allure-report/data/attachments/e11ad2661eb07ca9.txt b/allure-report/data/attachments/e7750817bf2ce3d3.txt similarity index 100% rename from allure-report/data/attachments/e11ad2661eb07ca9.txt rename to allure-report/data/attachments/e7750817bf2ce3d3.txt diff --git a/allure-report/data/attachments/47bd852e88dda4bd.txt b/allure-report/data/attachments/e7e4c2d208b9b87.txt similarity index 100% rename from allure-report/data/attachments/47bd852e88dda4bd.txt rename to allure-report/data/attachments/e7e4c2d208b9b87.txt diff --git a/allure-report/data/attachments/5e405ef5b3f740d5.txt b/allure-report/data/attachments/e806fd65a1519daa.txt similarity index 100% rename from allure-report/data/attachments/5e405ef5b3f740d5.txt rename to allure-report/data/attachments/e806fd65a1519daa.txt diff --git a/allure-report/data/attachments/faca10a249542315.txt b/allure-report/data/attachments/e89f9d3c4680bc47.txt similarity index 100% rename from allure-report/data/attachments/faca10a249542315.txt rename to allure-report/data/attachments/e89f9d3c4680bc47.txt diff --git a/allure-report/data/attachments/62a27b454b36563d.txt b/allure-report/data/attachments/e9b85a28a1d1502.txt similarity index 100% rename from allure-report/data/attachments/62a27b454b36563d.txt rename to allure-report/data/attachments/e9b85a28a1d1502.txt diff --git a/allure-report/data/attachments/c7c3f41b6f879f22.txt b/allure-report/data/attachments/eaa46cbb4e98fc76.txt similarity index 100% rename from allure-report/data/attachments/c7c3f41b6f879f22.txt rename to allure-report/data/attachments/eaa46cbb4e98fc76.txt diff --git a/allure-report/data/attachments/5da58154c309059a.txt b/allure-report/data/attachments/ed14694d3d785456.txt similarity index 100% rename from allure-report/data/attachments/5da58154c309059a.txt rename to allure-report/data/attachments/ed14694d3d785456.txt diff --git a/allure-report/data/attachments/d19d47ecb32ff1a.txt b/allure-report/data/attachments/ed71ca1a830493f6.txt similarity index 100% rename from allure-report/data/attachments/d19d47ecb32ff1a.txt rename to allure-report/data/attachments/ed71ca1a830493f6.txt diff --git a/allure-report/data/attachments/e3861efa7e547869.txt b/allure-report/data/attachments/eea11ddd2a3b1d10.txt similarity index 100% rename from allure-report/data/attachments/e3861efa7e547869.txt rename to allure-report/data/attachments/eea11ddd2a3b1d10.txt diff --git a/allure-report/data/attachments/d17644d369f719b5.txt b/allure-report/data/attachments/ef12aa7c4aaaeed2.txt similarity index 100% rename from allure-report/data/attachments/d17644d369f719b5.txt rename to allure-report/data/attachments/ef12aa7c4aaaeed2.txt diff --git a/allure-report/data/attachments/6e51aca385250e4.txt b/allure-report/data/attachments/ef14b2090647c37e.txt similarity index 100% rename from allure-report/data/attachments/6e51aca385250e4.txt rename to allure-report/data/attachments/ef14b2090647c37e.txt diff --git a/allure-report/data/attachments/e20f82a8bca3f91b.txt b/allure-report/data/attachments/ef8a05f468c4eca0.txt similarity index 100% rename from allure-report/data/attachments/e20f82a8bca3f91b.txt rename to allure-report/data/attachments/ef8a05f468c4eca0.txt diff --git a/allure-report/data/attachments/678b686f33957e9f.txt b/allure-report/data/attachments/ef954a973a3165a7.txt similarity index 100% rename from allure-report/data/attachments/678b686f33957e9f.txt rename to allure-report/data/attachments/ef954a973a3165a7.txt diff --git a/allure-report/data/attachments/fcab257bac252f0f.txt b/allure-report/data/attachments/efae8b9f43d09441.txt similarity index 100% rename from allure-report/data/attachments/fcab257bac252f0f.txt rename to allure-report/data/attachments/efae8b9f43d09441.txt diff --git a/allure-report/data/attachments/719718f24c29d8b6.txt b/allure-report/data/attachments/f0a043619d2b0689.txt similarity index 100% rename from allure-report/data/attachments/719718f24c29d8b6.txt rename to allure-report/data/attachments/f0a043619d2b0689.txt diff --git a/allure-report/data/attachments/ba01f85fc1c9de89.txt b/allure-report/data/attachments/f180498d197d8df1.txt similarity index 100% rename from allure-report/data/attachments/ba01f85fc1c9de89.txt rename to allure-report/data/attachments/f180498d197d8df1.txt diff --git a/allure-report/data/attachments/d789b0e2f7ac3471.txt b/allure-report/data/attachments/f1a162618bd1b29d.txt similarity index 100% rename from allure-report/data/attachments/d789b0e2f7ac3471.txt rename to allure-report/data/attachments/f1a162618bd1b29d.txt diff --git a/allure-report/data/attachments/57be236067b41f3e.txt b/allure-report/data/attachments/f209dfd0dcd30d55.txt similarity index 100% rename from allure-report/data/attachments/57be236067b41f3e.txt rename to allure-report/data/attachments/f209dfd0dcd30d55.txt diff --git a/allure-report/data/attachments/f753b26a6d68bf5b.txt b/allure-report/data/attachments/f24a53f1fea24b32.txt similarity index 100% rename from allure-report/data/attachments/f753b26a6d68bf5b.txt rename to allure-report/data/attachments/f24a53f1fea24b32.txt diff --git a/allure-report/data/attachments/41c90fa760e8d420.txt b/allure-report/data/attachments/f24a9f86ff4ef095.txt similarity index 100% rename from allure-report/data/attachments/41c90fa760e8d420.txt rename to allure-report/data/attachments/f24a9f86ff4ef095.txt diff --git a/allure-report/data/attachments/92552b4b1fe49529.txt b/allure-report/data/attachments/f27833c43953c1b1.txt similarity index 100% rename from allure-report/data/attachments/92552b4b1fe49529.txt rename to allure-report/data/attachments/f27833c43953c1b1.txt diff --git a/allure-report/data/attachments/c931c8cfab53b972.txt b/allure-report/data/attachments/f329250c4d2cb198.txt similarity index 100% rename from allure-report/data/attachments/c931c8cfab53b972.txt rename to allure-report/data/attachments/f329250c4d2cb198.txt diff --git a/allure-report/data/attachments/698bafa9b89cd763.txt b/allure-report/data/attachments/f375c406aca5ef66.txt similarity index 100% rename from allure-report/data/attachments/698bafa9b89cd763.txt rename to allure-report/data/attachments/f375c406aca5ef66.txt diff --git a/allure-report/data/attachments/fcdb96625b1e26db.txt b/allure-report/data/attachments/f3f8f8256722f1a9.txt similarity index 100% rename from allure-report/data/attachments/fcdb96625b1e26db.txt rename to allure-report/data/attachments/f3f8f8256722f1a9.txt diff --git a/allure-report/data/attachments/7e0d861d218b6b53.txt b/allure-report/data/attachments/f428986b0baf88be.txt similarity index 100% rename from allure-report/data/attachments/7e0d861d218b6b53.txt rename to allure-report/data/attachments/f428986b0baf88be.txt diff --git a/allure-report/data/attachments/7517e0fe4fd38ce3.txt b/allure-report/data/attachments/f509afa4d498e7c1.txt similarity index 100% rename from allure-report/data/attachments/7517e0fe4fd38ce3.txt rename to allure-report/data/attachments/f509afa4d498e7c1.txt diff --git a/allure-report/data/attachments/d352d3b8134952ea.txt b/allure-report/data/attachments/f50d22d7c09cd383.txt similarity index 100% rename from allure-report/data/attachments/d352d3b8134952ea.txt rename to allure-report/data/attachments/f50d22d7c09cd383.txt diff --git a/allure-report/data/attachments/4ee69d91518c273c.txt b/allure-report/data/attachments/f5a2b8e600c203d1.txt similarity index 100% rename from allure-report/data/attachments/4ee69d91518c273c.txt rename to allure-report/data/attachments/f5a2b8e600c203d1.txt diff --git a/allure-report/data/attachments/84cd17876f4516cf.txt b/allure-report/data/attachments/f5ae4dee965d4aad.txt similarity index 100% rename from allure-report/data/attachments/84cd17876f4516cf.txt rename to allure-report/data/attachments/f5ae4dee965d4aad.txt diff --git a/allure-report/data/attachments/faf563094f59ca6b.txt b/allure-report/data/attachments/f5c031a187e70f58.txt similarity index 100% rename from allure-report/data/attachments/faf563094f59ca6b.txt rename to allure-report/data/attachments/f5c031a187e70f58.txt diff --git a/allure-report/data/attachments/3b4c7e69e73ca20.txt b/allure-report/data/attachments/f66e1341a4df20a3.txt similarity index 100% rename from allure-report/data/attachments/3b4c7e69e73ca20.txt rename to allure-report/data/attachments/f66e1341a4df20a3.txt diff --git a/allure-report/data/attachments/841a9d92019cea7.txt b/allure-report/data/attachments/f6ed689bd033eb8a.txt similarity index 100% rename from allure-report/data/attachments/841a9d92019cea7.txt rename to allure-report/data/attachments/f6ed689bd033eb8a.txt diff --git a/allure-report/data/attachments/f1f91f89a689bba4.txt b/allure-report/data/attachments/f8b59f79bb13d8ea.txt similarity index 100% rename from allure-report/data/attachments/f1f91f89a689bba4.txt rename to allure-report/data/attachments/f8b59f79bb13d8ea.txt diff --git a/allure-report/data/attachments/a4db6f7d6cd87570.txt b/allure-report/data/attachments/fab77c156ff5bb2b.txt similarity index 100% rename from allure-report/data/attachments/a4db6f7d6cd87570.txt rename to allure-report/data/attachments/fab77c156ff5bb2b.txt diff --git a/allure-report/data/attachments/cab012145f3c31e.txt b/allure-report/data/attachments/fac594686b0a84bd.txt similarity index 100% rename from allure-report/data/attachments/cab012145f3c31e.txt rename to allure-report/data/attachments/fac594686b0a84bd.txt diff --git a/allure-report/data/attachments/e5b745fd985bd7ab.txt b/allure-report/data/attachments/fae7f8901012b2cd.txt similarity index 100% rename from allure-report/data/attachments/e5b745fd985bd7ab.txt rename to allure-report/data/attachments/fae7f8901012b2cd.txt diff --git a/allure-report/data/attachments/b55ce2a23080a57e.txt b/allure-report/data/attachments/fc0a9047ac128608.txt similarity index 100% rename from allure-report/data/attachments/b55ce2a23080a57e.txt rename to allure-report/data/attachments/fc0a9047ac128608.txt diff --git a/allure-report/data/attachments/2613f5d1bde5e090.txt b/allure-report/data/attachments/fdbdb95799e89350.txt similarity index 100% rename from allure-report/data/attachments/2613f5d1bde5e090.txt rename to allure-report/data/attachments/fdbdb95799e89350.txt diff --git a/allure-report/data/attachments/fb7e53ff5946a92d.txt b/allure-report/data/attachments/fe536534de68582a.txt similarity index 100% rename from allure-report/data/attachments/fb7e53ff5946a92d.txt rename to allure-report/data/attachments/fe536534de68582a.txt diff --git a/allure-report/data/attachments/616f142dc436d37a.txt b/allure-report/data/attachments/ff15e181fd0e6388.txt similarity index 100% rename from allure-report/data/attachments/616f142dc436d37a.txt rename to allure-report/data/attachments/ff15e181fd0e6388.txt diff --git a/allure-report/data/attachments/ac68097df5e78e9a.txt b/allure-report/data/attachments/ff2bf17d38e7cc3b.txt similarity index 100% rename from allure-report/data/attachments/ac68097df5e78e9a.txt rename to allure-report/data/attachments/ff2bf17d38e7cc3b.txt diff --git a/allure-report/data/attachments/ae1ab7427cab55e0.txt b/allure-report/data/attachments/ff867546b68da848.txt similarity index 100% rename from allure-report/data/attachments/ae1ab7427cab55e0.txt rename to allure-report/data/attachments/ff867546b68da848.txt diff --git a/allure-report/data/attachments/7dbffa484c49e1de.txt b/allure-report/data/attachments/ffe9d790c546ddb7.txt similarity index 100% rename from allure-report/data/attachments/7dbffa484c49e1de.txt rename to allure-report/data/attachments/ffe9d790c546ddb7.txt diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index 812fc7276d3..e9602829cfe 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,155 +1,157 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" -"0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" -"0","4 kyu","0","String","1","0","Strings Mix","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","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" -"0","7 kyu","0","Math","3","0","Easy Line","0" -"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" -"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" -"0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" -"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" -"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" -"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" -"0","7 kyu","0","String","1","0","V A P O R C O D E","0" -"0","5 kyu","0","String","0","1","Count IP Addresses","0" -"0","3 kyu","0","String","0","4","Line Safari - Is that a line?","0" -"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" -"0","6 kyu","0","Factorial","1","0","Color Choice","0" -"0","7 kyu","0","String","1","0","Password validator","0" -"0","6 kyu","0","String","3","0","Permute a Palindrome","0" -"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" -"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" -"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" -"0","6 kyu","0","String","1","0","Count letters in string","0" -"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" -"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" -"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" -"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" -"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" -"0","4 kyu","0","Lists","1","0","Sum by Factors","0" -"0","5 kyu","0","String","1","0","First non-repeating character","0" -"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" "0","7 kyu","0","Square Calculation","6","0","You're a square","0" -"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" -"0","6 kyu","0","Algorithms","1","0","Decipher this!","0" -"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" -"0","6 kyu","0","Classes","6","0","DefaultList","0" -"0","7 kyu","0","String","2","0","Jaden Casing Strings","0" -"0","8 kyu","0","Lists","3","0","Logical Calculator","0" -"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" -"0","No kyu","0","Utils","2","0","Testing is_prime util","0" -"0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" -"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" "0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" -"0","6 kyu","0","String","6","0","First character that repeats","0" -"0","4 kyu","0","String","1","0","Range Extraction","0" +"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" +"0","No kyu","0","Utils","2","0","Testing is_prime util","0" "0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" -"0","5 kyu","0","Lists","1","0","Sports League Table Ranking","0" -"0","6 kyu","0","String","3","0","Character frequency","0" -"0","5 kyu","0","Math","0","4","Diophantine Equation","0" -"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" -"0","8 kyu","0","Math","1","0","Will you make it?","0" -"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" -"0","7 kyu","0","String","1","0","Pull your words together, man!","0" -"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" -"0","8 kyu","0","String","1","0","Remove First and Last Character","0" -"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" "0","3 kyu","0","String","1","0","Calculator","0" -"0","8 kyu","0","String","3","0","Reversed Strings","0" -"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" -"0","8 kyu","0","Lists","4","0","Counting sheep...","0" +"0","5 kyu","0","Lists","3","0","Find the safest places in town","0" "0","6 kyu","0","Lists","1","0","Sort the odd","0" -"0","7 kyu","0","Math","1","0","Share prices","0" +"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" "0","7 kyu","0","String","1","0","Isograms","0" -"0","7 kyu","0","Lists","1","0","Always perfect","0" -"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" -"0","8 kyu","0","Lists","1","0","Swap Values","0" -"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" +"0","7 kyu","0","String","1","0","V A P O R C O D E","0" "0","5 kyu","0","Math","1","0","Human Readable Time","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","6 kyu","0","String","1","0","String subpattern recognition III","0" -"0","5 kyu","0","Lists","3","0","Find the safest places in town","0" -"0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" +"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" +"0","8 kyu","0","Addition","1","0","Messi goals function","0" +"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" +"0","6 kyu","0","Classes","6","0","DefaultList","0" +"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" +"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" +"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" +"0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" +"0","8 kyu","0","String","3","0","Reversed Strings","0" +"0","7 kyu","0","String","2","0","Jaden Casing Strings","0" +"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" +"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" +"0","8 kyu","0","Math","1","0","Will you make it?","0" +"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" +"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" +"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" +"0","8 kyu","0","String","1","0","Remove First and Last Character","0" +"0","5 kyu","0","Lists","1","0","Directions Reduction","0" "0","8 kyu","0","Tuple","1","0","Greek Sort","0" -"0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" -"0","6 kyu","0","Math","1","0","Disease Spread","0" -"0","8 kyu","0","String","1","0","Remove String Spaces","0" -"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" -"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" -"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" -"0","5 kyu","0","Math","0","1","Josephus Survivor","0" -"0","6 kyu","0","Lists","1","0","Find the odd int","0" -"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" -"0","3 kyu","0","Lists","1","0","Battleship field validator","0" -"0","6 kyu","0","Lists","1","0","Pyramid Array","0" -"0","7 kyu","0","String","1","0","Find the longest gap!","0" +"0","3 kyu","0","String","2","2","Line Safari - Is that a line?","0" "0","4 kyu","0","String","0","1","Permutations","0" -"0","8 kyu","0","Lists","1","0","Check the exam","0" "0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" -"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" -"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" -"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" -"0","6 kyu","0","String","1","0","Who likes it?","0" -"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" -"0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" -"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" -"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" -"0","6 kyu","0","String","1","0","Duplicate Encoder","0" -"0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" -"0","8 kyu","0","Date","2","0","Is your period late","0" -"0","6 kyu","0","Lists","1","0","Array to HTML table","0" -"0","3 kyu","0","Lists","1","0","Make a spiral","0" -"0","6 kyu","0","String","1","0","Your order, please","0" -"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" -"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" -"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" -"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" -"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" -"0","4 kyu","0","String","1","0","Human readable duration format","0" -"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" -"0","6 kyu","0","String","1","0","Numericals of a String","0" -"0","5 kyu","0","String","1","0","Simple Pig Latin","0" -"0","6 kyu","0","String","1","0","String subpattern recognition II","0" +"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" +"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" +"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" +"0","6 kyu","0","String","3","0","Permute a Palindrome","0" +"0","7 kyu","0","String","1","0","Significant Figures","0" "0","6 kyu","0","Algorithms","1","0","Unique In Order","0" -"0","7 kyu","0","String","1","0","Help Bob count letters and digits.","0" +"0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" +"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" +"0","7 kyu","0","Math","3","0","Easy Line","0" +"0","5 kyu","0","Math","0","4","Diophantine Equation","0" +"0","8 kyu","0","Lists","4","0","Counting sheep...","0" +"0","6 kyu","0","String","1","0","String subpattern recognition II","0" +"0","7 kyu","0","String","2","0","Help Bob count letters and digits.","0" +"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" +"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" +"0","6 kyu","0","Lists","1","0","Array.diff","0" +"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" +"0","7 kyu","0","Lists","1","0","Always perfect","0" +"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" +"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" +"0","6 kyu","0","String","1","0","Who likes it?","0" +"0","4 kyu","0","String","1","0","Strings Mix","0" +"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" "0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" -"0","5 kyu","0","String","1","0","Where my anagrams at?","0" -"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" -"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" -"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" "0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" -"0","8 kyu","0","String","1","0","MakeUpperCase","0" -"0","5 kyu","0","String","1","0","The Hashtag Generator","0" -"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" -"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" -"0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" +"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" +"0","4 kyu","0","String","1","0","Range Extraction","0" "0","5 kyu","0","String","1","0","Not very secure","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","5 kyu","0","Lists","0","1","Find the smallest","0" +"0","7 kyu","0","Math","1","0","Share prices","0" +"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" +"0","3 kyu","0","Lists","1","0","Battleship field validator","0" +"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" +"0","6 kyu","0","String","6","0","First character that repeats","0" +"0","6 kyu","0","Algorithms","1","0","Sums of Parts","0" +"0","5 kyu","0","String","1","0","The Hashtag Generator","0" +"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" +"0","7 kyu","0","Classes","1","0","Make Class","0" +"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" +"0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" +"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" "0","6 kyu","0","String","1","0","String subpattern recognition I","0" -"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" +"0","6 kyu","0","Lists","1","0","Pyramid Array","0" "0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" -"0","7 kyu","0","Formatting","1","0","Formatting decimal places #1","0" -"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" -"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" -"0","7 kyu","0","Classes","1","0","Make Class","0" "0","4 kyu","0","Lists","1","0","Snail","0" +"0","5 kyu","0","String","1","0","Where my anagrams at?","0" +"0","5 kyu","0","Lists","1","0","flatten()","0" +"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" +"0","8 kyu","0","Math","1","0","Century From Year","0" +"0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" +"0","6 kyu","0","Algorithms","1","0","Scheduling (Shortest Job First or SJF)","0" +"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" +"0","8 kyu","0","Lists","1","0","Check the exam","0" +"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" +"0","4 kyu","0","String","1","0","Human readable duration format","0" +"0","6 kyu","0","Math","1","0","Disease Spread","0" +"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" +"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" +"0","6 kyu","0","Math","1","0","Casino chips","0" +"0","8 kyu","0","Lists","3","0","Logical Calculator","0" +"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" +"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" +"0","6 kyu","0","String","3","0","Character frequency","0" +"0","3 kyu","0","Lists","1","0","Make a spiral","0" +"0","6 kyu","0","String","1","0","String subpattern recognition III","0" +"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" +"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" +"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" +"0","8 kyu","0","Multiplication","1","0","Multiply","0" +"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" +"0","8 kyu","0","Lists","1","0","Swap Values","0" +"0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" +"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" +"0","4 kyu","0","Lists","1","0","Sum by Factors","0" +"0","5 kyu","0","Lists","2","0","Sports League Table Ranking","0" +"0","5 kyu","0","String","1","0","First non-repeating character","0" "0","8 kyu","0","String","1","0","Is it a palindrome?","0" -"0","8 kyu","0","Addition","1","0","Messi goals function","0" -"0","5 kyu","0","Lists","1","0","Directions Reduction","0" -"0","4 kyu","0","String","1","0","Strip Comments","0" +"0","5 kyu","0","Lists","0","1","Find the smallest","0" +"0","7 kyu","0","String","1","0","Find the longest gap!","0" +"0","6 kyu","0","String","1","0","Numericals of a String","0" +"0","7 kyu","0","Lists","2","0","Simple Fun #152: Invite More Women?","0" +"0","5 kyu","0","String","1","0","Simple Pig Latin","0" +"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" +"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" "0","6 kyu","0","String","1","0","String transformer","0" -"0","7 kyu","0","String","1","0","Significant Figures","0" -"0","6 kyu","0","Math","1","0","Casino chips","0" +"0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" +"0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" +"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" +"0","6 kyu","0","String","1","0","Count letters in string","0" +"0","6 kyu","0","Lists","1","0","Array to HTML table","0" +"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" +"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" +"0","8 kyu","0","Conditions","1","0","Personalized greeting","0" +"0","7 kyu","0","String","1","0","Pull your words together, man!","0" +"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" +"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" +"0","7 kyu","0","Formatting","1","0","Formatting decimal places #1","0" +"0","6 kyu","0","Lists","1","0","Find the odd int","0" +"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" +"0","5 kyu","0","Math","0","1","Josephus Survivor","0" +"0","6 kyu","0","Factorial","1","0","Color Choice","0" "0","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" -"0","5 kyu","0","Lists","1","0","flatten()","0" -"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" +"0","5 kyu","0","String","0","1","Count IP Addresses","0" +"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" +"0","4 kyu","0","String","1","0","Strip Comments","0" +"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" +"0","5 kyu","0","String","1","0","String incrementer","0" "0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" -"0","6 kyu","0","Lists","1","0","Array.diff","0" -"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" +"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" "0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" -"0","8 kyu","0","Multiplication","1","0","Multiply","0" -"0","8 kyu","0","Math","1","0","Century From Year","0" +"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" +"0","6 kyu","0","String","1","0","Your order, please","0" +"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" +"0","6 kyu","0","String","1","0","Duplicate Encoder","0" +"0","6 kyu","0","Algorithms","1","0","Decipher this!","0" +"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" +"0","8 kyu","0","String","1","0","MakeUpperCase","0" +"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" +"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" +"0","8 kyu","0","String","1","0","Remove String Spaces","0" +"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" +"0","7 kyu","0","String","1","0","Password validator","0" diff --git a/allure-report/data/behaviors.json b/allure-report/data/behaviors.json index c41d4a5b2fb..6329454eb88 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"7e0d94f0ee4e397d","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":"fbd4191028146e80","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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":"eb3e9f6b3780b454","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":"b1c2f2381b1441f6","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"2d35bd18d5e6ee6b","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":"fd395297ed368b03","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":"e5ae32dea8d8e5c3","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":"92083f552ecb72c4","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":"490cf50ddd5cff83","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":"fdff4b964fae0427","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":"e0851c0ba53ec6a9","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":"a492d74df14be54a","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":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"cd862d92408a60a2","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":"9519f48ec729ba4c","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":"2b9309fd398214a5","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":"d7c1fb6f236110ca","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":"d1aabae67bc18ba0","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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 or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"33b81b348332f41f","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"884c8d1f852cc3dc","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":"9a325845218dd6ae","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"996165a0ada95681","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":"e738d6d09d0feb9e","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":"4ecd1e835300dbcf","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":"dead64fe3d4f484d","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":"b96004f0b179053d","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":"70085274c959a3cb","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"693c5b2693478689","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":"String","children":[{"name":"Calculator","children":[{"name":"Testing Calculator class","uid":"371888dd705cab28","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_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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_negatives","uid":"801bdccb4e1aa824","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":"ee4f0501c1152713","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":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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"},{"name":"Lists","children":[{"name":"Battleship field validator","children":[{"name":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"b1d54b76165521a0","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"}],"uid":"956182e9935ac64fc0622b60cfe4823a"},{"name":"4 kyu","children":[{"name":"String","children":[{"name":"Most frequently used words in a text","children":[{"name":"Testing top_3_words function","uid":"c7c7f21adbc73706","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":"Human readable duration format","children":[{"name":"Testing format_duration","uid":"47f8df09a84d8337","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":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"Range Extraction","children":[{"name":"Testing solution function","uid":"f80099cf6c294d2b","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":"Permutations","children":[{"name":"test_permutations","uid":"1319e1ae94efdc02","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":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"2460353038ce1955","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":"f711bbcd16ab2119","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":"95ddc175910ea52","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":"82619e3fb0e84d4d","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":"d6e4ebd44034ff08","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":"e03974f538ea8ee6","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"7f90afc62f8400f4","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":"ace382695affabdf","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":"1dee8c06fd165199","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":"627da61e5891aa44","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":"fd4d83368b6d5d5e","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":"42bb8c96d4cb1bcf","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":"11b652a05502070f","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":"148a22b7e430194f","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":"14d24a2946d66b00","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":"31b67858aaa81503","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":"98d0f495e6dcba7e","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":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"cb5c8ea3b9796931","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":"84fd4c67efee5295","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":"369d691aa58bf89d","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":"5e6aa533c6c0fafa","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":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"d4c41912963969d7","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 safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"Find the smallest","children":[{"name":"test_smallest","uid":"c37dfc82a096ec09","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":"57efbea0ccf3907a","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":"b9d7d0d5afb8734c","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":"38639b46d1e381a9","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":"6cad203fab564c60","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":"7fd5632b0213855d","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":"ed30e8563a89229a","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":"2965d2d3db0ea08e","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":"b29b4bc1c1fe7917","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":"Math","children":[{"name":"A Rule of Divisibility by 13","children":[{"name":"Testing 'thirt' function","uid":"585949d19b46a5d2","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":"41efd0d786aed73","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":"c1e0648976f6a694","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":"Number Zoo Patrol","children":[{"name":"Testing the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"b72d4e8ad3288d1b","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":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"debf2b82465b0240","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":"Lists","children":[{"name":"Array.diff","children":[{"name":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"e6a3da330525d2f4","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":"6ab6caccad49b468","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":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"31cd5c9e8017f83c","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":"String","children":[{"name":"Binary to Text (ASCII) Conversion","children":[{"name":"Testing binary_to_string function","uid":"2b38fe6b8a5a46","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":"d5ae1235bc27ccba","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 lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"616180d049b16d1d","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":"2b7f0b03733442e8","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":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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":"b8b1a20b1ac22e64","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":"d57f06aa2f911f40","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":"d9458c8615b9e985","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":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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 II","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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 I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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 III","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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":"704aacac2db91585","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":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"de04793abb90de01","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":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"3a2392b112899a67","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"1719ddf6913445c8","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":"84f17449b7b13451","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":"cdfe495bc85470d2","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":"9b82a842fdc9b867","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":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"dee0416f79d22a0d","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"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"15008ede7bd87a18","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"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"8451096f3488e82","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":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"76f8c586f8a804f0","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":"ae7d3fce45bf33fb","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":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"54942c51ed88331c","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":"d3037fd25424c6f3","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":"afae2f3faef55f2b","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"83105e24306c53ac","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"9f7fc4731241a976","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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"]}],"uid":"1d6c3f09e5599bcec1677f346a53fd07"},{"name":"My head is at the wrong end!","children":[{"name":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"874b39a75ad8fa3b","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 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"90eee3ddc83b1454","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":"6d9afe9fda19581e","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":"afce902b58f1520a","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":"71d876f4d19ecd67","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":"9c38060cc376f686","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":"6ea719d6e8a376fb","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":"af580569ddf3e366","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":"d1a80d9f422182d","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"1073662453fffbc9","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":"139c28ca38674b14","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":"327fbdea3443aca5","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":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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":"1efaf2ab015adde4","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":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"ed5fbc4b14885f68","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"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"9525e56c1666fc0f","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"}],"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":"69f65011f131e2b6","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":"35cf25b9e515e00d","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"3ffa72675847f113","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b36380d1077ce20b","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 (negative)","uid":"b03752c3145720e6","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"3529b67f8df1184b","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ea40d4fff96687ff","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a076808e43574371","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":"62e01ffb20b661b5","parentUid":"2c812329d9b34f7fcedf688bc9c33806","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"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"900a2cbb7155295","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"44c1e35d7a7b2adb","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9521eb418a2faa99","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"27f5e11d20d2d96c","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"9a0c160871c69941729fb974987bc16e"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3e00c2c35d282154598febaf022db8e7"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"419686fbcf063822","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd6fef8ab37d71ba","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d562abb8385a61c5","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"56ad7c473898c46d","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6660f839d8534ee2","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"649728966aa92b06","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e08b527d12d4e4df","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3e68653192929d9b","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"72a7c9402c254937","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":"d7d1e3c0f9370311","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","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"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Directions Reduction","children":[{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"String","children":[{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b89947e3a3ec46d","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cf71a425c4796a9","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6076e8e1aaaa11ab","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9b5127c91b9deeb6","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1265911f14bcd919","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_basic","uid":"a57a3497f4402b67","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"67a957cc2815c6ee","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b98fb3b88f75199","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"607f84fe70696eb5","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5d373bcba925975c","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e78e70d10bce7cf5","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Line Safari - Is that a line?","children":[{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7cc0844ab5ecf216","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f85ab0d3a8429db7","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a3395496d8bde803","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9f9422c1f71252b6","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ac136a3215f7ad6c","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"15f47b991f284575","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e051944b31d54c14","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2bfddef765c09569","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2ea4d6d64dc027a","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"fc455123cb448d3e","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"a38a360357cb186b186e0b296da9b925"},{"name":"Character frequency","children":[{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"87dc5713a007f1d7","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2e46c970e553e301","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70963d87150b1b7f","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bcc8c6b28fb32dd0","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9267ea7150c527ef","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Scheduling (Shortest Job First or SJF)","children":[{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"84a5fe3bfc444bfb52c89833f8b6b28e","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"]}],"uid":"84a5fe3bfc444bfb52c89833f8b6b28e"},{"name":"Sums of Parts","children":[{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"f2707c42d3822b9eaf4ba0c414ab6249","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"]}],"uid":"f2707c42d3822b9eaf4ba0c414ab6249"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f91e38b8c375d31c","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a1a7aeb13172d1f0","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"92a7ecb29f4704b1","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Reversed Strings","children":[{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2705032891531e8","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Lists","children":[{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"984af3d5d8056be9","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"af241db983f2d0be4c7832f6a37c6a42"},{"name":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9c241cc9403723af","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"8c8d43e9d38910da","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"784b6f629ce5c547","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"614133ca9c69e105","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6c70ddf45fea2887","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a4849e99633e4676","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"345a3bae73357330","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"}],"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":"54bb63fb3736b8ae","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd76819b5fd836d3","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 3002ee1a856..9b4df98f0a9 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"7e0d94f0ee4e397d","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":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"fbd4191028146e80","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":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"490cf50ddd5cff83","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":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"fdff4b964fae0427","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"33b81b348332f41f","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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":"e0851c0ba53ec6a9","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":"fun_with_lists_length.test_length","children":[{"name":"Testing length function","uid":"eb3e9f6b3780b454","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":"b1c2f2381b1441f6","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":"formatting_decimal_places_1.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"996165a0ada95681","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":"help_bob_count_letters_and_digits.test_count_letters_and_digits","children":[{"name":"Testing count_letters_and_digits function","uid":"a492d74df14be54a","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":"growing_plant.test_growing_plant","children":[{"name":"Testing growing_plant function","uid":"e738d6d09d0feb9e","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":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"cd862d92408a60a2","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":"dead64fe3d4f484d","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":"9519f48ec729ba4c","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":"b96004f0b179053d","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":"2b9309fd398214a5","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":"70085274c959a3cb","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"884c8d1f852cc3dc","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":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"2d35bd18d5e6ee6b","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":"fd395297ed368b03","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":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"d7c1fb6f236110ca","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":"sort_out_the_men_from_boys.test_men_from_boys","children":[{"name":"Testing men_from_boys function","uid":"e5ae32dea8d8e5c3","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":"9a325845218dd6ae","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":"d1aabae67bc18ba0","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":"4ecd1e835300dbcf","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"92083f552ecb72c4","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"693c5b2693478689","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":"calculator.test_calculator","children":[{"name":"Testing Calculator class","uid":"371888dd705cab28","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":"battleship_field_validator.test_battleship_validator","children":[{"name":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"line_safari_is_that_a_line","children":[{"name":"test_line_negative","children":[{"name":"test_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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"},{"name":"test_walker","children":[{"name":"test_starting_position_from_negatives","uid":"801bdccb4e1aa824","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":"ee4f0501c1152713","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"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"b1d54b76165521a0","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":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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":"most_frequently_used_words.test_top_3_words","children":[{"name":"Testing top_3_words function","uid":"c7c7f21adbc73706","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":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"47f8df09a84d8337","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":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"range_extraction.test_solution","children":[{"name":"Testing solution function","uid":"f80099cf6c294d2b","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":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"1319e1ae94efdc02","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":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"95ddc175910ea52","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":"2460353038ce1955","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":"f711bbcd16ab2119","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":"d6e4ebd44034ff08","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":"82619e3fb0e84d4d","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":"e03974f538ea8ee6","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"7f90afc62f8400f4","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":"ace382695affabdf","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":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"1dee8c06fd165199","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":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"98d0f495e6dcba7e","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":"diophantine_equation.test_solution","children":[{"name":"test_solution_big","uid":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"5e6aa533c6c0fafa","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":"627da61e5891aa44","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":"fibonacci_streaming.test_all_fibonacci_numbers","children":[{"name":"Testing all_fibonacci_numbers function","uid":"d4c41912963969d7","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_safest_places_in_town.test_advice","children":[{"name":"Testing agents_cleanup function","uid":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"c37dfc82a096ec09","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":"fd4d83368b6d5d5e","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":"57efbea0ccf3907a","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":"cb5c8ea3b9796931","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":"7fd5632b0213855d","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":"josephus_survivor.test_josephus_survivor","children":[{"name":"test_josephus_survivor","uid":"84fd4c67efee5295","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":"master_your_primes_sieve_with_memoization.test_primes","children":[{"name":"Testing is_prime function","uid":"ed30e8563a89229a","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":"moving_zeros_to_the_end.test_move_zeros","children":[{"name":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"number_of_trailing_zeros_of_n.test_zeros","children":[{"name":"Testing zeros function","uid":"369d691aa58bf89d","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":"not_very_secure.test_alphanumeric","children":[{"name":"Testing alphanumeric function","uid":"42bb8c96d4cb1bcf","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":"simple_pig_latin.test_pig_it","children":[{"name":"Testing pig_it function","uid":"11b652a05502070f","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":"38639b46d1e381a9","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":"148a22b7e430194f","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":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"2965d2d3db0ea08e","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":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"14d24a2946d66b00","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":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"b29b4bc1c1fe7917","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":"6cad203fab564c60","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":"31b67858aaa81503","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":"a_rule_of_divisibility_by_13.test_thirt","children":[{"name":"Testing 'thirt' function","uid":"585949d19b46a5d2","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_diff.test_array_diff","children":[{"name":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"array_to_html_table.test_list_to_html_table","children":[{"name":"Testing to_table function","uid":"e6a3da330525d2f4","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":"2b38fe6b8a5a46","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":"casino_chips.test_solve","children":[{"name":"Testing solve function","uid":"41efd0d786aed73","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":"character_frequency.test_character_frequency","children":[{"name":"All chars are in upper case","uid":"d5ae1235bc27ccba","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 lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"de04793abb90de01","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":"616180d049b16d1d","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":"decipher_this.test_decipher_this","children":[{"name":"Testing decipher_this function","uid":"3a2392b112899a67","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":"default_list.test_default_list","children":[{"name":"Testing 'DefaultList' class: append","uid":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"c1e0648976f6a694","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":"2b7f0b03733442e8","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"6ab6caccad49b468","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":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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":"b8b1a20b1ac22e64","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":"format_string_of_names.test_namelist","children":[{"name":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"1719ddf6913445c8","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":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"d57f06aa2f911f40","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":"number_zoo_patrol.test_find_missing_number","children":[{"name":"Testing the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"no_arithmetic_progressions.test_sequence","children":[{"name":"test_sequence","uid":"b72d4e8ad3288d1b","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":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"84f17449b7b13451","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":"numericals_of_string.test_numericals","children":[{"name":"Testing 'numericals' function","uid":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"cdfe495bc85470d2","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":"rotate_the_letters_of_each_element.test_group_cities","children":[{"name":"Testing the 'group_cities' function","uid":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"9b82a842fdc9b867","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":"31cd5c9e8017f83c","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_2.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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_1.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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_3.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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":"debf2b82465b0240","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":"704aacac2db91585","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":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"dee0416f79d22a0d","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":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"15008ede7bd87a18","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":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"8451096f3488e82","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":"d3037fd25424c6f3","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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":"count_the_monkeys.test_monkey_count","children":[{"name":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"counting_sheep.test_counting_sheep","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"find_the_first_non_consecutive_number.test_first_non_consecutive","children":[{"name":"Large lists","uid":"83105e24306c53ac","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"9f7fc4731241a976","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":"90eee3ddc83b1454","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":"6d9afe9fda19581e","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":"afce902b58f1520a","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":"d1a80d9f422182d","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"holiday_vi_shark_pontoon.test_shark","children":[{"name":"Testing shark function (positive)","uid":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"327fbdea3443aca5","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":"is_it_a_palindrome.test_is_palindrome","children":[{"name":"Testing is_palindrome function","uid":"76f8c586f8a804f0","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":"is_your_period_late.test_is_your_period_late","children":[{"name":"Testing period_is_late function (negative)","uid":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"71d876f4d19ecd67","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":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"1073662453fffbc9","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":"139c28ca38674b14","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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"]}],"uid":"logical_calculator.test_logical_calculator"},{"name":"make_upper_case.test_make_upper_case","children":[{"name":"Testing make_upper_case function","uid":"ae7d3fce45bf33fb","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":"my_head_is_at_the_wrong_end.test_fix_the_meerkat","children":[{"name":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"1efaf2ab015adde4","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":"remove_first_and_last_character.test_remove_char","children":[{"name":"Testing remove_char function","uid":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"ed5fbc4b14885f68","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":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"9525e56c1666fc0f","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":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"874b39a75ad8fa3b","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":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"9c38060cc376f686","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":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"54942c51ed88331c","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":"third_angle_of_triangle.test_third_angle_of_triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"6ea719d6e8a376fb","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":"well_of_ideas_easy_version.test_well_of_ideas_easy_version","children":[{"name":"Should return 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"af580569ddf3e366","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":"afae2f3faef55f2b","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"69f65011f131e2b6","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":"35cf25b9e515e00d","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"3ffa72675847f113","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"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":"a076808e43574371","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":"62e01ffb20b661b5","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","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"]}],"uid":"help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"always_perfect.test_check_root"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"900a2cbb7155295","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"de0aa71757f8badf","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"44c1e35d7a7b2adb","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d562abb8385a61c5","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3b89778e0f9a0b66","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"56ad7c473898c46d","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"growing_plant.test_growing_plant"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"649728966aa92b06","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"password_validator.test_password"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"powers_of_3.test_largest_power"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"b36380d1077ce20b","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"share_prices.test_share_price"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3529b67f8df1184b","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a349732eb44f62b9","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"419686fbcf063822","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"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 big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"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":"ea40d4fff96687ff","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"vaporcode.test_vaporcode"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Square numbers (positive)","uid":"3e68653192929d9b","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_5","children":[{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"72a7c9402c254937","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":"d7d1e3c0f9370311","parentUid":"3e59bcb34719d71bd9719866840227a7","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"]}],"uid":"sports_league_table_ranking.test_compute_ranks"},{"name":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"diophantine_equation.test_solution","children":[{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b89947e3a3ec46d","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7087926d4a83e9d4","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5cd4eeb8a4b79d6b","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cf71a425c4796a9","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"533bf937be1aa466","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7560669431ea4aa8","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70eff3ae24ccc67a","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e99ca5757342b866","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c7c4b4c39dca1f7a","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b98fb3b88f75199","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6076e8e1aaaa11ab","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cfaf892be75c5d35","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"43e7aaf3ed9f3ed0","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e78e70d10bce7cf5","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_line_negative","children":[{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b7243d74fc99fb8b","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_decoding","children":[{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"},{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f85ab0d3a8429db7","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a3395496d8bde803","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"aa08a95162404297","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9f9422c1f71252b6","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ac136a3215f7ad6c","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"751027d0ac0cc021","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"15f47b991f284575","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2bfddef765c09569","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"40c938f8f83f34f7","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","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":"d19efceb39f40f4f","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 upper case","uid":"196d34645221ebb4","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"character_frequency.test_character_frequency"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"256a10c9792b808f","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d4a0809a7647965","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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: append","uid":"2655a1e6934b1850","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5f6f3bc16b3488d6","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"87dc5713a007f1d7","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b6d0f7b70ff35380","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e051944b31d54c14","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"acdec238a53c10e1","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"numericals_of_string.test_numericals"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"25fd6f6c5cfe2b58","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"59b1922c33f3ac65","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"scheduling.test_solution","children":[{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"7da07fec565898f0b48598a1fee6b886","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"]}],"uid":"scheduling.test_solution"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3ae9a46b9a1e7c40","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2e46c970e553e301","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70963d87150b1b7f","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"sums_of_parts.test_solution","children":[{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"62a001897925dea7414ec58a1095f23c","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"]}],"uid":"sums_of_parts.test_solution"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"vasya_clerk.test_tickets"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"898b5d5677e24adf","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a1a7aeb13172d1f0","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dde0d2c7fdfdde63","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","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: positive flow","uid":"60180807c3815756","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"405cf642fa0cf7c1","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"784b6f629ce5c547","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"614133ca9c69e105","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"73f30fbb9798a5d5","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"877a76cbb202d7b3","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2951c359ba3fd421","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","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":"b3db9caa12a5149e","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 (negative)","uid":"345a3bae73357330","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a77a517a493b3eb2","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"aa3ebaa27581f198","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9c241cc9403723af","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6ca78efd90ffa643","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"92a7ecb29f4704b1","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 regular string","uid":"f701011259e850f6","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a10876da94fb2b4f","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 'Fail!'s","uid":"973452fbe07efc18","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"893dcbf3da59eb02","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2705032891531e8","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"8c8d43e9d38910da","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"54bb63fb3736b8ae","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd76819b5fd836d3","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 9bdc976232a..114c4188096 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,190 +1,193 @@ "DESCRIPTION","DURATION IN MS","NAME","PARENT SUITE","START TIME","STATUS","STOP TIME","SUB SUITE","SUITE","TEST CLASS","TEST METHOD" " - 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. + 0 is a square number :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","Zero","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing 'mix' function + Testing 'save' function: positive - 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","","" + 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","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - If there are no good ideas, - as is often the case, return 'Fail!'. + Negative tests :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 period_is_late function (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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). + Testing potion function with various test inputs :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","Testing Potion class","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Classes","","" " - The function powers takes a single parameter, - the number n, and should return an array of unique numbers. + Positive test cases for is_prime function testing :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 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","Positive test cases for is_prime function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" " - Testing 'sum_triangular_numbers' function - with negative numbers + Testing shark function -> positive :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","","" + ","1","Testing shark function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing 'sum_pairs' function + 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 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 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. - 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","","" + The function should return a list of coordinates that are the furthest + away (by Manhattan distance) from all agents. + :return: + ","4","Testing advice function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing summation function - with various test inputs + The 'sort_array' function. + + The task is to sort ascending odd numbers but + even numbers must be on their places. + + Zero isn't an odd number and you don't need to + move it. If you have an empty array, you need + to return it. + :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","","" + ","0","Testing the 'sort_array' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - The string ""This website is for losers LOL!"" - should become ""Ths wbst s fr lsrs LL!"" + Testing to_alternating_case function :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 to_alternating_case function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 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","","" + Testing 'is_isogram' function + ","0","Testing 'is_isogram' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" +" + Testing 'vaporcode' function + :return: + ","0","Testing 'vaporcode' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - 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 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) + + 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: - ","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","","" + ","0","Testing make_readable function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing 'vaporcode' function + 4 is a square number :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","","" + ","1","Square numbers (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing ips_between function - - Testing a function that receives two IPv4 addresses, - and returns the number of addresses between them - (including the first one, excluding the last one). + Testing done_or_not function - All inputs will be valid IPv4 addresses in the form - of strings. The last address will always be greater - than the first one. + 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: - ","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","","" + ","1","Testing done_or_not function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - 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","","" + Verify that the function returns Messi's + total number of goals in all three leagues. + :return: + ","1","goals function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing monkey_count function + Testing is_solved function - You take your son to the forest to see the monkeys. - You know that there are a certain number there (n), - but your son is too young to just appreciate the full - number, he has to start counting them from 1. + The function should return whether the + board's current state is solved. - As a good parent, you will sit and count with him. - Given the number (n), populate an array with all - 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","","" + 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","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 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. + Testing 'DefaultList' class: __getitem__ - 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","","" + 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 'DefaultList' class: __getitem__","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing password function with various test inputs + 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","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","","" + ","0","STesting enough function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing permute_a_palindrome function + Testing 'sum_triangular_numbers' function + with negative numbers :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 'sum_triangular_numbers' with negative numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" " - Testing string_to_array function. + The player rolls the dice and moves the number + of spaces indicated by the dice two times. - A function to split a string and - convert it into an array of words. + Pass position and roll and compare the output + to the expected result :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","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","move function tests","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - 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","","" + Test with empty list + :return: + ","0","'multiply' function verification with empty list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing max_multiple function with - various test data - + Test with empty string :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","Test with empty string","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing 'letter_count' function + Simple negative test :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","","" + ","0","Testing toJadenCase function (negative)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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. - - 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. + Assert that 'domain_name' function + returns domain name from given URL string. :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 domain_name function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing to_alternating_case function + a an b are positive numbers + :return: + ","1","a an b are positive numbers","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + Testing the function with various test data + :return: + ","2","Testing zero_fuel function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" +" + non-consecutive is a negative number. + :return: + ","0","Negative non consecutive number should be returned","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Test with regular string + :return: + ","0","Test with regular string","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + a or b is negative + :return: + ","0","a or b is negative","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + 26 is not a square number + :return: + ","1","Non square numbers (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" +" + If there are no good ideas, + as is often the case, return 'Fail!'. :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 odd_row function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Performance","","" -"","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","","" + ","0","Should return 'Fail!'s","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " Testing set_alarm function with various test inputs. @@ -200,271 +203,198 @@ 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 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing sum_for_list function + Test that 'remove_char' function + removes the first and + last characters of a string. :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 remove_char function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - 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'. + 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). - 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","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Testing all_fibonacci_numbers function + The Haskell version takes a list of directions with + data Direction = North | East | West | South. - You're going to provide a needy programmer a - utility method that generates an infinite sized, - sequential IntStream (in Python generator) - which contains all the numbers in a fibonacci - sequence. + The Clojure version returns nil when the path is + reduced to nothing. - A fibonacci sequence starts with two 1s. - Every element afterwards is the sum of - the two previous elements. + The Rust version takes a slice of enum Direction + {NORTH, SOUTH, EAST, WEST}. :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","","" + ","0","Testing dir_reduc function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - 0 is a square number + Testing greek_comparator function + with various test inputs :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 'greek_comparator' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" " - a an b are positive numbers - :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","test_sequence","Novice","Mon Aug 26 22:05:28 PDT 2024","skipped","Mon Aug 26 22:05:28 PDT 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 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 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","","" -" - Negative test cases for gen_primes function testing - :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","","" -" - 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","","" -" - Simple negative test - :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","","" -" - 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 permutations function - :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","'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","","" + 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 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " 25 is a square number :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","","" -" - Negative test cases for is_prime function testing - :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","Square numbers (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing two_decimal_places function - with various test inputs. + Testing check_for_factor function. - 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. + This function should test if the + factor is a factor of base. + + Return false if it is not a factor. :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","","" -" - 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","Testing check_for_factor function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - 26 is not a square number + Testing 'sum_triangular_numbers' function + with positive numbers :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 'sum_triangular_numbers' with positive numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" " - Advanced/random test case + Testing easy_diagonal function + :param self: :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","","" + ","717","Testing easy_diagonal function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'DefaultList' class: __getitem__ + Testing growing_plant function - 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 '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","","" -" - Testing 'save' function: positive + Task - 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","","" + Each day a plant is growing by upSpeed meters. + Each night that plant's height decreases by downSpeed + meters due to the lack of sun heat. Initially, plant + is 0 meters tall. We plant the seed at the beginning + of a day. We want to know when the height of the plant + will reach a certain level. + + Example + + For upSpeed = 100, downSpeed = 10 and desiredHeight = 910, + the output should be 10. + + For upSpeed = 10, downSpeed = 9 and desiredHeight = 4, + the output should be 1. Because the plant reach to the desired + height at day 1(10 meters). + + Input/Output + + [input] integer upSpeed + A positive integer representing the daily growth. + Constraints: 5 ≤ upSpeed ≤ 100. + + [input] integer downSpeed + A positive integer representing the nightly decline. + Constraints: 2 ≤ downSpeed < upSpeed. + + [input] integer desiredHeight + A positive integer representing the threshold. + Constraints: 4 ≤ desiredHeight ≤ 1000. + + [output] an integer + + 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","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Test string with no duplicate chars + The string ""This website is for losers LOL!"" + should become ""Ths wbst s fr lsrs LL!"" :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","","" + ","0","a and b are equal","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " - 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 Walker class + Testing starting position property based on positive grids + ","1","Testing Walker class - position property from positive grids","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - Testing shark function -> positive + Negative testing permute_a_palindrome function :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","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - 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 number_of_sigfigs function + with various test inputs :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","Testing number_of_sigfigs function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Testing letter_frequency function - where all chars are in lower case + Testing the 'unique_in_order' function + with various test data :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","test_solution_big","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'unique_in_order' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " - 4 is a square number + Testing summation function + with various test inputs :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","Testing 'summation' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" " - 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","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + Testing Warrior class >>> tom + ","1","Testing Warrior class >>> tom","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" " - 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. + Testing calc_combinations_per_row function :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","Testing calc_combinations_per_row function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'DefaultList' class: remove + Testing using basic test data :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","test_solution_basic","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing 'sum_triangular_numbers' function - with big number as an input + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like null/undefined :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 zero_fuel function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","1","Testing 'count_sheeps' function: bad input","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - 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. + Returns [] if list has only one element :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","","" + ","3","'multiply' function verification with one element list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing 'sentencify' function. - - The function should: + 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. 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. + 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 '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","Testing 'thirt' function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" -" - Test that 'remove_char' function - removes the first and - last characters of a string. - :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","","" -" - 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","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 2) function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" +"","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","","" " - Large lists + Testing first_non_repeated function :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","","" -" - 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 - ","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","","" + ","0","Testing first_non_repeated function with various inputs","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Test with empty string + Positive test cases for gen_primes function testing :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 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","Positive test cases for gen_primes function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like mixed list + Testing array_diff function :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 array_diff function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" " - The 'sort_array' function. + Testing next_bigger function - The task is to sort ascending odd numbers but - even numbers must be on their places. + You have to test a function that takes a positive integer + number and returns the next bigger number formed by the same digits: - Zero isn't an odd number and you don't need to - move it. If you have an empty array, you need - to return it. + 12 ==> 21 + 513 ==> 531 + 2017 ==> 2071 - :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 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","","" -" - Testing share_price function - with multiple test inputs - :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","","" -" - 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","","" + If no bigger number can be composed using those digits, return -1 + ","0","Testing next_bigger function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " Testing check_root function with various test inputs @@ -479,242 +409,323 @@ If string contains 4 numbers but not consecutive it returns ""not consecutive"". :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 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","Testing check_root function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - 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","","" + if there are more than 2 return + 'I smell a series!'. + :return: + ","1","Should return 'I smell a series!'","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Testing 'thirt' function with various test data + :return: + ","0","Testing 'thirt' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" +" + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". + :return: + ","0","Wolf at the beginning of the queue","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" +" + If there are one or two good ideas, + return 'Publish!', + :return: + ","0","Should return 'Publish!'","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " Testing 'count_sheeps' function Hint: Don't forget to check for - bad values like empty list + bad values like mixed 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","","" + ","1","Testing 'count_sheeps' function: mixed list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - 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 likes function 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 likes function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - 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) - - 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 'mix' function - The maximum time never exceeds 359999 (99:59:59) + Given two strings s1 and s2, the 'mix' function + should visualize how different the two strings are. + ","2","Testing 'mix' function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" +" + 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 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","Testing move_zeros function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Test string with mixed type of chars + Testing 'DefaultList' class: pop :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 'DefaultList' class: pop","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Use conditionals to to verify that greet - function returns the proper message. + 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","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","","" + ","0","Testing 'solution' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing 'DefaultList' class: append :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 'DefaultList' class: append","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Verify that 'has_subpattern' function + 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. - 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). + The function should remove all agents that are outside of the city boundaries. :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","","" + ","1","Testing agents_cleanup function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 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. + 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 function should return a list of coordinates that are the furthest - away (by Manhattan distance) from all agents. + The board is always 9 cells by 9 cells, and every + cell only contains integers from 0 to 9. + :return: + ","1","Testing validSolution","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" +" + 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. :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","","" + ","1","Testing sum_of_intervals function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " Testing solution function + ","2","Testing solution function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" +" + Testing alphanumeric function with + various test inputs - If we list all the natural numbers below 10 - that are multiples of 3 or 5, we get 3, 5, 6 and 9. - The sum of these multiples is 23. + The string has the following conditions + to be alphanumeric only - Finish the solution so that it returns the sum of - all the multiples of 3 or 5 below the number passed in. + 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 - Note: If the number is a multiple of both 3 and 5, - only count it once. + :return: None + ","0","Testing alphanumeric function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Advanced Language Features","","" +" + Testing share_price function + with multiple test inputs :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","","" + ","1","Testing share_price function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Testing 'DefaultList' class: insert + Testing all_fibonacci_numbers function + + You're going to provide a needy programmer a + utility method that generates an infinite sized, + sequential IntStream (in Python generator) + which contains all the numbers in a fibonacci + sequence. + + A fibonacci sequence starts with two 1s. + Every element afterwards is the sum of + the two previous elements. :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 all_fibonacci_numbers function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing greek_comparator function - with various test inputs + Testing Battleship field validator + + 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","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" +" + If the whole array is consecutive then return + null or Nothing or None. :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","","" + ","1","Non is expected","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Positive test cases for is_prime function testing + Testing list_squared function + :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","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","test_solution_empty","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","132","Testing list_squared function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + 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","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 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 'longest_repetition' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Test that no_space function removes the spaces - from the string, then return the resultant string. + Testing 'parts_sums' function with various test data :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","Testing 'parts_sums' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Test an algorithm that takes an array and moves all of the - zeros to the end, preserving the order of the other elements. + Negative test cases for is_prime function testing :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","Negative test cases for is_prime function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" " - 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","","" + Testing Battle method + ","0","Testing Battle method","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" " - non-consecutive is a negative number. - :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","","" + Testing 'generate_hashtag' function + ","0","Testing 'generate_hashtag' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - 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","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","","" + Test top_3_words function + ","1","Testing top_3_words function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - 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. + Test lists with multiple digits :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","'multiply' function verification: lists with multiple digits","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Repeating char is a space + Testing make_class function :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 make_class function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","OOP","","" " - In this kata you have to correctly return who - is the ""survivor"", ie: the last element of a - Josephus permutation. + Testing max_multiple function with + various test data + :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 max_multiple function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Sample testing. - Expected result is 5 + Testing using big test data :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","test_solution_big","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - a or b is negative + -1: Negative numbers cannot be square numbers :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","Negative numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing 'sum_triangular_numbers' function - with positive numbers + 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 '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","","" + ","1","Testing 'count_sheeps' function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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. + Testing solution function - Examples + If we list all the natural numbers below 10 + that are multiples of 3 or 5, we get 3, 5, 6 and 9. + The sum of these multiples is 23. - ""()"" => true - "")(()))"" => false - ""("" => false - ""(())((()())())"" => true + Finish the solution so that it returns the sum of + all the multiples of 3 or 5 below the number passed in. + + Note: If the number is a multiple of both 3 and 5, + only count it once. :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","","" + ","1","Testing the 'solution' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Basic test case + Returns a list that misses only one element :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","","" + ","2","'multiply' function verification with random list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing Battleship field validator + 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. - 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","","" + 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: + ","1","Testing the 'group_cities' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + String subpattern recognition I + + 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","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " The 'pyramid' function should return an Array of ascending length subarrays. Note: the subarrays should be filled with 1s. :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","","" + ","1","Testing the 'pyramid' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - 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","","" + Testing calculate function with various test data + :return: + ","1","Testing calculate function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Testing gap function with various test inputs + Testing Warrior class >>> bruce_lee + ","0","Testing Warrior class >>> bruce_lee","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" +" + Testing 'snail' function - A binary gap within a positive number num is - any sequence of consecutive zeros that is - surrounded by ones at both ends in the binary - representation of num. + 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 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. + :return: + ","0","Testing anagrams function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" +" + 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 gap function should return the length of - its longest binary gap. + The following are examples of how this function would be + used and what the expected results would be: - The function should return 0 if num doesn't - contain a binary gap. + 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","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 flatten function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing permutations function + Testing Encoding functionality + ","0","Testing Encoding functionality","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" +" + Large lists + :return: + ","0","Large lists","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Testing century function + ","0","Testing century function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Numbers","","" +" + Test with one char only + :return: + ","0","Test with one char only","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Testing next_smaller 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","","" + 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 + ","1","Testing next_smaller function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - Testing 'sum_triangular_numbers' function - with zero as an input + Testing 'shortest_job_first' function with various test data :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","","" + ","1","Testing 'shortest_job_first(' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Testing shark function -> negative + Basic test case :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","","" + ","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 check_exam function @@ -725,525 +736,503 @@ answer(empty string). :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","","" -" - Basic test case - :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 check_exam function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing check_for_factor function. + Testing hoop_count function (positive) - This function should test if the - factor is a factor of base. + 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"". - 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","","" + ","0","Testing hoop_count function (positive test case)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" " - 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 using medium test data :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","test_solution_medium","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Test namelist - - Given: - an array containing hashes of names - - 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. - + Testing easy line function exception :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","","" + ","1","Testing easy_line function exception message","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - 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","","" -"","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","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","","" + Testing permute_a_palindrome function with empty string + :return: + ","0","Testing permute_a_palindrome (empty string)","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Testing shark function -> positive + 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. :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 format_duration","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - Test with empty list + Testing epidemic function :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","","" + ","3","Testing epidemic function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" " - Test string with alphabet chars only + Positive tests :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 period_is_late function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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 fix_the_meerkat 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","fix_the_meerkat function function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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). - + Testing Decoding functionality + ","2","Testing Decoding functionality","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" +" + Test sum_two_smallest_numbers function + The function should return the sum of + the two lowest positive numbers :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","Two smallest numbers in the start of the list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing duplicate_encode function - with various test inputs + Testing 'solve' function with various test data :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","Testing solve function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing next_smaller function - - You have to test a function that takes a positive integer number - and returns the next smaller number formed by the same digits: + Exclusive or or exclusive disjunction is a + logical operation that outputs true only when + inputs differ (one is true, the other is false). - 21 ==> 12 - 531 ==> 513 - 2071 ==> 2017 + XOR outputs true whenever the inputs differ: - 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","","" -" - Returns a list that misses only one element + Source: + https://en.wikipedia.org/wiki/Exclusive_or :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","","" + ","1","XOR logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Negative tests + 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 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","","" + ","1","Testing length function where head = None","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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","","" -"","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","","" + 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. + :return: + ","0","Testing Sudoku class","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Returns [] if list has only one element + Testing letter_frequency function + where all chars are in lower case :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","","" + ","0","All chars are in lower case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " 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","","" + ","1","Testing spiralize function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - 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). + And (∧) is the truth-functional + operator of logical conjunction - 3. If the input string is empty, return an empty string. The words in the - input String will only contain valid consecutive numbers. + The and of a set of operands is true + if and only if all of its operands are true. - :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","","" -" - 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. + Source: + https://en.wikipedia.org/wiki/Logical_conjunction - 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","","" + ","0","AND logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing get_size function with various inputs - :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","","" -" - 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 + In logic and mathematics, or is the + truth-functional operator of (inclusive) + disjunction, also known as alternation. - Write a program where Alex can input (n) how many times - the hoop goes round and it will return him an encouraging message + The or of a set of operands is true if + and only if one or more of its operands is true. - - 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"". + Source: + https://en.wikipedia.org/wiki/Logical_disjunction :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","","" -"","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","","" + ","1","OR logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing enough function - with various test data + Testing length function - If there is enough space, return 0, - and if there isn't, return the number - of passengers he can't take. + The method length, which accepts a linked list + (head), and returns the length of the list. :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","","" + ","1","Testing length function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing litres function with various test inputs + Testing the function with various test data :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 count_letters_and_digits function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - 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","","" -" - 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 string with no duplicate chars. + :return: + ","1","String with no duplicate chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Test with one char only + Verify that 'has_subpattern' function + + 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","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 'has_subpattern' (part 3) function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " - if there are more than 2 return - 'I smell a series!'. + Testing 'sum_triangular_numbers' function + with big number as an input :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","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" " - Testing next_bigger function + Test namelist - You have to test a function that takes a positive integer - number and returns the next bigger number formed by the same digits: + Given: + an array containing hashes of names - 12 ==> 21 - 513 ==> 531 - 2017 ==> 2071 + 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. - 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","","" + :return: + ","0","String with no duplicate chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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 'DefaultList' class: extend :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","","" + ","2","Testing 'DefaultList' class: extend","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - 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 calculate_damage with various test data :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","","" + ","0","Testing calculate_damage function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Games","","" " - Test a function which formats a duration, - given as a number of seconds, in a human-friendly way. + 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 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","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'find_missing_number' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Testing letter_frequency function - where all chars are in mixed case - :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","","" + Testing Line Safari functionality + Positive test cases + ","0","test_line_positive","Competent","Sat Nov 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" " - Testing Sudoku class + 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. - 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. + The function should generate city map with coordinates. :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","","" + ","1","Testing create_city_map function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing 'numericals' function + Verify that multiply function + returns correct result :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","","" + ","0","'multiply' function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - 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. + Testing permute_a_palindrome function :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","","" + ","1","Testing permute_a_palindrome (positive)","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - 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 calc class + Given a mathematical expression as a string you + must return the result as a number. + ","0","Testing calc function","Proficient","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" +" + 3 is not a square number :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","Non square numbers (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing the 'unique_in_order' function - with various test data + Testing letter_frequency function + where all chars are in upper case :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","All chars are in upper case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) + Testing 'sum_triangular_numbers' function + with zero as an input :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","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","","" + ","1","Testing 'sum_triangular_numbers' with zero","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" +" + Testing swap_values function + ","0","Testing swap_values function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing 'solution' function. + Testing two_decimal_places function + with various test inputs. - The should return a formatted string. - The return value should equal ""Value is VALUE"" - where value is a 5 digit padded number. + 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 'solution' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","1","Testing two_decimal_places function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - If the whole array is consecutive then return - null or Nothing or None. + In this kata, you must create a digital root function. + + 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","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 digital_root function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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. - - For example: - - anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa'] - anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer'] - anagrams('laser', ['lazing', 'lazy', 'lacer']) => [] + Testing sum_for_list function :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","","" + ","60","Testing sum_for_list function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing easy_diagonal function - :param self: + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :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","","" -"","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 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","Wolf in the middle of the queue","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" " - Testing 'save' function: negative - - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + Testing 'DefaultList' class: insert :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","","" + ","1","Testing 'DefaultList' class: insert","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - If there are one or two good ideas, - return 'Publish!', + Testing shark function -> negative :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","","" + ","1","Testing shark function (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing list_squared function + 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: - ","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","","" -" - 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","Testing compute_ranks","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Assert that 'domain_name' function - returns domain name from given URL string. + 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 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","Testing first_non_repeating_letter function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing 'DefaultList' class: pop + 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","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Test a function `smallest` which will return an array or a tuple or a string + depending on the language (see ""Sample Tests""). :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","test_smallest","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 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. + Testing gap function with various test inputs - The board is always 9 cells by 9 cells, and every - cell only contains integers from 0 to 9. + A binary gap within a positive number num is + any sequence of consecutive zeros that is + surrounded by ones at both ends in the binary + representation of num. + + The gap function should return the length of + its longest binary gap. + + The function should return 0 if num doesn't + contain a binary gap. :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","","" + ","1","Testing gap function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " - Test string with no alphabet chars + Testing Line Safari functionality + Negative test cases + ","0","test_line_negative","Competent","Sat Nov 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'numericals' function :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 'numericals' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Simple positive test + Basic test case :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","","" + ","1","test_triangle","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Sample Tests for make_upper_case function + Simple Fun #152: Invite More Women? + Testing invite_more_women function (positive) :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","","" + ","1","Testing invite_more_women function (positive)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Test lists with multiple digits + 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","'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","","" + ","1","Testing pig_it function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - -1: Negative numbers cannot be square numbers + 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). + :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 is_prime function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 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 odd_row function with various test data + :return: + ","0","Testing odd_row function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Performance","","" " - Testing growing_plant function - - Task - - Each day a plant is growing by upSpeed meters. - Each night that plant's height decreases by downSpeed - meters due to the lack of sun heat. Initially, plant - is 0 meters tall. We plant the seed at the beginning - of a day. We want to know when the height of the plant - will reach a certain level. - - Example - - For upSpeed = 100, downSpeed = 10 and desiredHeight = 910, - the output should be 10. - - For upSpeed = 10, downSpeed = 9 and desiredHeight = 4, - the output should be 1. Because the plant reach to the desired - height at day 1(10 meters). - - Input/Output - - [input] integer upSpeed - A positive integer representing the daily growth. - Constraints: 5 ≤ upSpeed ≤ 100. + Testing string_transformer function + with multiple test data. - [input] integer downSpeed - A positive integer representing the nightly decline. - Constraints: 2 ≤ downSpeed < upSpeed. + Given a string, return a new string that has + transformed based on the input: - [input] integer desiredHeight - A positive integer representing the threshold. - Constraints: 4 ≤ desiredHeight ≤ 1000. + 1. Change case of every character, ie. lower + case to upper case, upper case to lower case. - [output] an integer + 2. Reverse the order of words from the input. - 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","","" -"","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","","" + :return: + ","0","Testing string_transformer function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing alphabet_war function - - 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. - - Task - Write a function that accepts battlefield string - and returns letters that survived the nuclear strike. + Testing tickets function with various test inputs. - 1. The battlefield string consists of only small letters, #,[ and ]. + 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. - 2. The nuclear shelter is represented by square brackets []. - The letters inside the square brackets represent letters - inside the shelter. + Vasya is currently working as a clerk. + He wants to sell a ticket to every single person + in this line. - 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 ). + 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? - 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. + 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: - ","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 tickets function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" " 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 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - 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","","" + Testing litres function with various test inputs + :return: + ","0","Testing litres function with various test inputs","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - In this kata, you must create a digital root function. + Testing 'letter_count' function + :return: + ","0","Testing 'letter_count' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 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","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Testing to_table with various test data + :return: + ","0","Testing to_table function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" +" + Testing get_size function with various inputs + :return: + ","0","get_size function tests","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" +" + Testing string_to_array function. - 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. + A function to split a string and + convert it into an array of words. :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 string_to_array function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing a function named increment_string + Use conditionals to to verify that greet + function returns the proper message. + :return: + ","0","Verify that greet function returns the proper message","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" +" + 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","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","Testing 'solution' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Test a function `smallest` which will return an array or a tuple or a string - depending on the language (see ""Sample Tests"") with + 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. - 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. + 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. + 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","test_smallest","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'feast' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - String subpattern recognition I - - 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. + Negative test cases for gen_primes function testing :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","Negative test cases for gen_primes function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" " - Testing length function + Test string with no alphabet chars. + :return: + ","0","String with no alphabet chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + Testing men_from_boys function with + various test inputs - The method length, which accepts a linked list - (head), and returns the length of the list. + 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 length 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 calculate function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" + ","1","Testing men_from_boys function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " Testing two_decimal_places function with various test inputs @@ -1260,199 +1249,306 @@ 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 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Testing first_non_repeated function + Sample testing. :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","","" + ","0","Find the int that appears an odd number of times","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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","","" + Advanced/random test case + :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","","" " - Positive tests + Testing the 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","Testing row_sum_odd_numbers function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" " - Positive test cases for gen_primes function testing + In this kata you have to correctly return who + is the ""survivor"", ie: the last element of a + Josephus permutation. :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","test_josephus_survivor","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing make_class function + Testing letter_frequency function + where all chars are in mixed case :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","All chars are in mixed case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing 'snail' function + 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. - 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","","" + 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" " - Testing is_palindrome function - with various test inputs + Testing 'factorial' function - 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","","" + 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","Testing 'factorial' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - Verify that the function returns Messi's - total number of goals in all three leagues. + Testing binary_to_string function + with various test data :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","Testing binary_to_string function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Character Encodings","","" " - 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. + Testing ips_between function - The Clojure version returns nil when the path is - reduced to nothing. + 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 Rust version takes a slice of enum Direction - {NORTH, SOUTH, EAST, WEST}. + 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 dirReduc 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 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 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","","" + ","0","Testing 'solution' function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - 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. + Testing monkey_count function - 2. Reverse the order of words from the input. + You take your son to the forest to see the monkeys. + You know that there are a certain number there (n), + but your son is too young to just appreciate the full + number, he has to start counting them from 1. + As a good parent, you will sit and count with him. + Given the number (n), populate an array with all + numbers up to and including that number, but excluding + zero. :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","","" + ","0","Testing monkey_count function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" " - Testing number_of_sigfigs function - with various test inputs + a and b are equal :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","","" -"","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","","" -"","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","a and b are equal","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - 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'] + Testing a function named increment_string :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","Testing increment_string function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing largestPower function + Testing 'save' function: negative + + 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 largestPower function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'save' function: negative","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 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. + Test string with mixed type of chars. :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","String with mixed type of chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - a and b are equal + Testing shark function -> positive :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","","" + ","1","Testing shark function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " You are given two angles (in degrees) of a triangle. Find the 3rd. :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","","" + ","1","You are given two angles -> find the 3rd.","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing 'DefaultList' class: append + A function f(n), should returns the n-th member of sequence. + :return: + ","0","test_sequence","Novice","Sat Nov 23 22:03:15 PST 2024","skipped","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + Testing easy_line function + :return: + ","1","Testing easy_line function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" +" + 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 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" +" + Testing the function with various test data + :return: + ","0","Testing take function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Simple Fun #152: Invite More Women? + Testing invite_more_women function (negative) + :return: + ","0","Testing invite_more_women function (negative)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" +" + Simple positive test + :return: + ","1","Testing toJadenCase function (positive)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" +" + Testing hoop_count function (negative) + :return: + ","2","Testing hoop_count function (negative test case)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" +" + Test string with alphabet chars only. + :return: + ","0","String with alphabet chars only","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + Testing alphabet_war function + + 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. + + Task + Write a function that accepts battlefield string + and returns letters that survived the nuclear strike. + + 1. The battlefield string consists of only small letters, #,[ and ]. + + 2. The nuclear shelter is represented by square brackets []. + The letters inside the square brackets represent letters + inside the shelter. + + 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","Testing alphabet_war function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Advanced Language Features","","" +" + 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" +" + 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: - ","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 'order' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " Testing check_for_factor function. This function should test if the factor is a factor of base. - Return false if it is not a factor. + 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","","" + ","1","Testing check_for_factor function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" " - Testing letter_frequency function - where all chars are in upper case + Testing stock_list function with various test data :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","","" + ","0","Testing stock_list function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" " - Test with regular string + Testing using empty test data :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","","" -"","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","test_solution_empty","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - 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 + Repeating char is a space. :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","String alphabet chars and spaces","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " - 3 is not a square number + Testing duplicate_encode function + with various test inputs :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 take 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 duplicate_encode function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + Testing decipher_this function + :param self: :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 decipher_this function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" " - Verify that multiply function - returns correct result + 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 + + ""()"" => true + "")(()))"" => false + ""("" => false + ""(())((()())())"" => true :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 valid_parentheses function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" " - Testing length function - where head = None - - The method length, which accepts a linked list - (head), and returns the length of the list. + Sample Tests for make_upper_case function :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 make_upper_case function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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 'DefaultList' class: remove + :return: + ","1","Testing 'DefaultList' class: remove","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" " - 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","","" + The function powers takes a single parameter, + the number n, and should return an array of + unique numbers. + :return: + ","0","powers function should return an array of unique numbers","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" +" + Testing largestPower function + :return: + ","0","Testing largestPower function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" " Testing 'count_sheeps' function Hint: Don't forget to check for - bad values like null/undefined + bad values like empty list + :return: + ","0","Testing 'count_sheeps' function: empty list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" +" + Test that no_space function removes the spaces + from the string, then return the resultant string. + :return: + ","0","Test that no_space function removes the spaces","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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 + ","0","Testing zeros function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" +" + Testing password function with various test inputs :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","","" + ","0","Testing password function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" diff --git a/allure-report/data/suites.json b/allure-report/data/suites.json index f31b3493c3d..f4f0447feb0 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":"6c1504a4fcfadf69","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":"280a7287fd39d5a9","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":"fbd4191028146e80","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":"7e0d94f0ee4e397d","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":"1ece392343bb9b12","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":"6a1d96979e635e7f","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 length function","uid":"eb3e9f6b3780b454","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 two_decimal_places function","uid":"996165a0ada95681","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":"b1c2f2381b1441f6","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":"a60fe7d0456e1873","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":"f1ac1e81621379df","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":"9519f48ec729ba4c","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":"2b9309fd398214a5","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 empty list","uid":"52dd320a58bdb229","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 one element list","uid":"c1d9afec6278b1a8","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":"1f991ba5bad9e7e9","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":"c799982c38b97fcc","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":"2d35bd18d5e6ee6b","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 men_from_boys function","uid":"e5ae32dea8d8e5c3","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 invite_more_women function (positive)","uid":"fd395297ed368b03","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":"9a325845218dd6ae","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":"d1aabae67bc18ba0","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":"92083f552ecb72c4","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":"5a22d7a269c3ca06","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":"8a0dfae45b96d6a4","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":"8451096f3488e82","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":"52715db4a1ce5955","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":"da49bdf1737798b8","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 monkey_count function","uid":"5b9aa5357d8d514d","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: positive flow","uid":"a10d36c92cf89a63","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":"7c3ec7eab2e0be6d","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 'count_sheeps' function: mixed list","uid":"504baf7c4d256536","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":"e0d5281d75a0b4df","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":"83105e24306c53ac","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":"9f7fc4731241a976","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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":"1c922c5f58027b49","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":"90eee3ddc83b1454","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":"76f8c586f8a804f0","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":"c35da98b55fb5e6b","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":"64a44b1c9018ad85","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"AND logical operator","uid":"52187b3daff300ae","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":"7ac9af93b3d2f297","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":"Testing make_upper_case function","uid":"ae7d3fce45bf33fb","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":"deed80da6e08bd69","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":"f50d911c93ffbcb0","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":"130e4ffebf4e47af","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":"56a28cc490d83b65","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":"2acb560e089cb7c8","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":"e10517b1ea4eb479","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":"ed5fbc4b14885f68","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":"874b39a75ad8fa3b","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":"54942c51ed88331c","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 'Fail!'s","uid":"ede582dcc2b34bf3","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 'Publish!'","uid":"d5a389260d41a743","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":"92297f3cbdd8ad78","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":"490cf50ddd5cff83","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":"5a941d3b90762a67","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":"df0c490941a6877a","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":"2aa3a63b6fff605a","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":"a492d74df14be54a","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":"cd862d92408a60a2","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":"327fbdea3443aca5","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":"1073662453fffbc9","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":"139c28ca38674b14","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 or b is negative","uid":"dcfefe9c10c1f5d2","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 and b are equal","uid":"449aa1de0e8221e9","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":"76548c4669002681","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":"33b81b348332f41f","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":"e738d6d09d0feb9e","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":"b96004f0b179053d","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":"70085274c959a3cb","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":"884c8d1f852cc3dc","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":"d7c1fb6f236110ca","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":"4ecd1e835300dbcf","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":"9393151991be7f33","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":"e7eaed29fbceb75","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":"49aa5cc4276ca55b","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":"39c69409f76377e7","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":"afae2f3faef55f2b","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":"fdff4b964fae0427","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":"e0851c0ba53ec6a9","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":"dead64fe3d4f484d","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":"Square numbers (positive)","uid":"95011c2c3c205658","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":"e1471afe863c97c8","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":"14d00f76e0b4f9e4","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":"Negative numbers","uid":"673ecd99dac0c86e","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":"7a1019ba1beb3118","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":"e6d62aae7d602336","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":"6d9afe9fda19581e","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":"Testing check_for_factor function: positive flow","uid":"afce902b58f1520a","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":"goals function verification","uid":"d1a80d9f422182d","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 shark function (positive)","uid":"972d0622d29729c4","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":"26cf86ca9eda4b5","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":"cde5d1b46b10d7ac","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":"71d876f4d19ecd67","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":"1efaf2ab015adde4","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":"9525e56c1666fc0f","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":"9c38060cc376f686","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":"6ea719d6e8a376fb","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":"af580569ddf3e366","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":"d3037fd25424c6f3","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":"b6301a55868859d","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":"1188dda60b67ea96","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":"8427b8f31ff35d6c","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 at the beginning of the queue","uid":"bfe92f9ff640a644","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 in the middle of the queue","uid":"7c2750d825fae93b","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":"693c5b2693478689","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 Calculator class","uid":"371888dd705cab28","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":"Testing validate_battlefield function","uid":"5dad026541a05e65","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":"test_line_negative","uid":"88c7e92ae3f035ea","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":"cf3552eb00513a1a","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_starting_position_from_negatives","uid":"801bdccb4e1aa824","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_starting_position_from_positives","uid":"ee4f0501c1152713","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 spiralize function","uid":"b1d54b76165521a0","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":"Testing Encoding functionality","uid":"8a76fd0002a5824c","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":"d9a6d590487a20fd","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 top_3_words function","uid":"c7c7f21adbc73706","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 format_duration","uid":"47f8df09a84d8337","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 next_smaller function","uid":"b01fd4e8d095b60f","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":"7b2352a8e3675c67","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":"Testing solution function","uid":"f80099cf6c294d2b","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":"test_permutations","uid":"1319e1ae94efdc02","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 'snail' function","uid":"95ddc175910ea52","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":"f711bbcd16ab2119","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":"d6e4ebd44034ff08","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":"82619e3fb0e84d4d","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":"e03974f538ea8ee6","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":"7f90afc62f8400f4","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":"2460353038ce1955","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":"d558fd9b3bcee4ae","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":"37b95a78feb35857","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":"675849fee1009391","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":"ace382695affabdf","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":"42bb8c96d4cb1bcf","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 2) function","uid":"9e5b993187ac8b27","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 1) function","uid":"98200e3d5ae32ca","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 3) function","uid":"59863a86bad45fb3","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 tickets function","uid":"dee0416f79d22a0d","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 the 'unique_in_order' function","uid":"15008ede7bd87a18","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":"test_ips_between","uid":"1dee8c06fd165199","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":"Testing done_or_not function","uid":"98d0f495e6dcba7e","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_solution_big","uid":"a6bf4a932c1ec147","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":"d6d51bdb700f78e3","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":"39245131d70863d6","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":"87acfa055dcbe26a","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":"5e6aa533c6c0fafa","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":"627da61e5891aa44","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 all_fibonacci_numbers function","uid":"d4c41912963969d7","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":"645c6c05562d2f01","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 create_city_map function","uid":"614b9e2de4457676","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":"9cb8749ab5d5d5c7","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":"c37dfc82a096ec09","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":"fd4d83368b6d5d5e","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":"57efbea0ccf3907a","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":"cb5c8ea3b9796931","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":"7fd5632b0213855d","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":"test_josephus_survivor","uid":"84fd4c67efee5295","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 is_prime function","uid":"ed30e8563a89229a","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":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"369d691aa58bf89d","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":"11b652a05502070f","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":"38639b46d1e381a9","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":"148a22b7e430194f","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 done_or_not function","uid":"2965d2d3db0ea08e","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 'generate_hashtag' function","uid":"14d24a2946d66b00","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 valid_parentheses function","uid":"b29b4bc1c1fe7917","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":"6cad203fab564c60","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":"31b67858aaa81503","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":"Testing solve function","uid":"41efd0d786aed73","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 upper case","uid":"d5ae1235bc27ccba","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":"All chars are in lower case","uid":"fc2c5a5df6e26162","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 mixed case","uid":"a70ffb4d0a92e5c8","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":"2b7f0b03733442e8","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":"e9aaea22e808b4eb","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 duplicate chars","uid":"d8d5d2ee94f4b051","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":"d946600dafcc1f6d","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 alphabet chars","uid":"337891d8027fbc46","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 alphabet chars and spaces","uid":"b8b1a20b1ac22e64","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":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"Testing 'longest_repetition' function","uid":"d57f06aa2f911f40","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 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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":"test_sequence","uid":"b72d4e8ad3288d1b","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 'solution' function","uid":"84f17449b7b13451","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":"Testing 'numericals' function","uid":"42383b817b641e4e","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 (positive)","uid":"715edf62d220bc66","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":"9098856200f13690","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 (empty string)","uid":"51971bf7ad109ed2","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":"8655885cb5db7a58","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":"fa5b03edd274b2cd","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":"31cd5c9e8017f83c","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":"debf2b82465b0240","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 'thirt' function","uid":"585949d19b46a5d2","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 array_diff function","uid":"dc29e000a4adcd25","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 to_table function","uid":"e6a3da330525d2f4","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":"de04793abb90de01","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":"3a2392b112899a67","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":"c1e0648976f6a694","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":"964ad50f448ed64d","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":"19910c11538825d6","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":"1719ddf6913445c8","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":"d7357eaa8c15ec47","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":"ee325afc05dcb3e8","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":"2b38fe6b8a5a46","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":"616180d049b16d1d","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":"6ab6caccad49b468","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":"704aacac2db91585","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":"b5a45493f51c1d67","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: extend","uid":"826a0963540c6e75","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: __getitem__","uid":"ef7e94367cfcafa4","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":"51a9aec46de8d878","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: insert","uid":"2c78d4954ac14f9e","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: pop","uid":"99a050e28b9f808c","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":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"90a24ba96aea3cfc","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":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"cdfe495bc85470d2","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":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"9b82a842fdc9b867","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":"69f65011f131e2b6","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":"b97e3a9bf54f17f3","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":"1b3bd0a5ea1aa072","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":"35cf25b9e515e00d","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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"dc1c20798f5a8f0a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"3ffa72675847f113","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"d562abb8385a61c5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"b36380d1077ce20b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing men_from_boys function","uid":"3529b67f8df1184b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"419686fbcf063822","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Two smallest numbers in the start of the list","uid":"ea40d4fff96687ff","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"a1a7aeb13172d1f0","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"784b6f629ce5c547","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"345a3bae73357330","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"fix_the_meerkat function function verification","uid":"9c241cc9403723af","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test that no_space function removes the spaces","uid":"92a7ecb29f4704b1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a076808e43574371","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":"fbd37fe4a302b125","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"62e01ffb20b661b5","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","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 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"56ad7c473898c46d","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"649728966aa92b06","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"b2705032891531e8","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"900a2cbb7155295","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"44c1e35d7a7b2adb","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5af3f258cf327b2a","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3e68653192929d9b","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"614133ca9c69e105","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"698c99dcac4b0d93","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Wolf at the end of the queue","uid":"8c8d43e9d38910da","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"72a7c9402c254937","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":"e5b1f301926fe23","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing domain_name function","uid":"2b89947e3a3ec46d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeating_letter function","uid":"cf71a425c4796a9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"2b98fb3b88f75199","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"6076e8e1aaaa11ab","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"d7d1e3c0f9370311","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","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":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"87dc5713a007f1d7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'find_missing_number' function","uid":"e051944b31d54c14","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5d8c14adba840438","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"2e46c970e553e301","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"70963d87150b1b7f","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"2bfddef765c09569","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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 likes function","uid":"fb237eeb673713e3","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"ea2292968a342cdc2f3e82fe12bc3a60"}],"uid":"fa9a202351dae141f823df5882ab8297"},{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"e78e70d10bce7cf5","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"f85ab0d3a8429db7","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"a3395496d8bde803","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"9f9422c1f71252b6","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"15f47b991f284575","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2cc2dcb2d1d8eb43","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"ac136a3215f7ad6c","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"54bb63fb3736b8ae","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for gen_primes function testing","uid":"dd76819b5fd836d3","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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/83f04a2f029479df.json b/allure-report/data/test-cases/100aeca8c0207022.json similarity index 75% rename from allure-report/data/test-cases/83f04a2f029479df.json rename to allure-report/data/test-cases/100aeca8c0207022.json index 9b814e50541..1876a366151 100644 --- a/allure-report/data/test-cases/83f04a2f029479df.json +++ b/allure-report/data/test-cases/100aeca8c0207022.json @@ -1 +1 @@ -{"uid":"83f04a2f029479df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7829271a783962e0","name":"stdout","source":"7829271a783962e0.txt","type":"text/plain","size":185}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"83f04a2f029479df.json","parameterValues":[]} \ No newline at end of file +{"uid":"100aeca8c0207022","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a95c78a9496692b3","name":"stdout","source":"a95c78a9496692b3.txt","type":"text/plain","size":185}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"100aeca8c0207022.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90eee3ddc83b1454.json b/allure-report/data/test-cases/10105e91d30d0887.json similarity index 63% rename from allure-report/data/test-cases/90eee3ddc83b1454.json rename to allure-report/data/test-cases/10105e91d30d0887.json index 7eff5edf5ca..aadc3615cfe 100644 --- a/allure-report/data/test-cases/90eee3ddc83b1454.json +++ b/allure-report/data/test-cases/10105e91d30d0887.json @@ -1 +1 @@ -{"uid":"90eee3ddc83b1454","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"17deef7e1cb66e60","name":"stdout","source":"17deef7e1cb66e60.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"89c677f035513057","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"90eee3ddc83b1454.json","parameterValues":[]} \ No newline at end of file +{"uid":"10105e91d30d0887","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"484cb5d49df72338","name":"stdout","source":"484cb5d49df72338.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"10105e91d30d0887.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bbe34ba42279f71.json b/allure-report/data/test-cases/102a91ff9d2e2c1f.json similarity index 72% rename from allure-report/data/test-cases/1bbe34ba42279f71.json rename to allure-report/data/test-cases/102a91ff9d2e2c1f.json index a0d77b23299..dadc1a7ca77 100644 --- a/allure-report/data/test-cases/1bbe34ba42279f71.json +++ b/allure-report/data/test-cases/102a91ff9d2e2c1f.json @@ -1 +1 @@ -{"uid":"1bbe34ba42279f71","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1fc52e2c49c9d723","name":"stdout","source":"1fc52e2c49c9d723.txt","type":"text/plain","size":225}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1bbe34ba42279f71.json","parameterValues":[]} \ No newline at end of file +{"uid":"102a91ff9d2e2c1f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2fb64bb60201538c","name":"stdout","source":"2fb64bb60201538c.txt","type":"text/plain","size":225}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"102a91ff9d2e2c1f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7c3ec7eab2e0be6d.json b/allure-report/data/test-cases/108dd2ab8a90859d.json similarity index 61% rename from allure-report/data/test-cases/7c3ec7eab2e0be6d.json rename to allure-report/data/test-cases/108dd2ab8a90859d.json index 7c7683c1b09..3b8b067f22b 100644 --- a/allure-report/data/test-cases/7c3ec7eab2e0be6d.json +++ b/allure-report/data/test-cases/108dd2ab8a90859d.json @@ -1 +1 @@ -{"uid":"7c3ec7eab2e0be6d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1ae3e81e546a5a71","name":"stdout","source":"1ae3e81e546a5a71.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"500c62fc4806377c","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7c3ec7eab2e0be6d.json","parameterValues":[]} \ No newline at end of file +{"uid":"108dd2ab8a90859d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"2f3f1653d6bd83ea","name":"stdout","source":"2f3f1653d6bd83ea.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"108dd2ab8a90859d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11fa683d801b6c42.json b/allure-report/data/test-cases/11fa683d801b6c42.json new file mode 100644 index 00000000000..32362cc791d --- /dev/null +++ b/allure-report/data/test-cases/11fa683d801b6c42.json @@ -0,0 +1 @@ +{"uid":"11fa683d801b6c42","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732428196392,"stop":1732428196392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732428196394,"stop":1732428196394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Swap Values"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"tag","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_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"96df3e350e2ba16f","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e0f78ca1d7d1823c","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"874b39a75ad8fa3b","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"11fa683d801b6c42.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8427b8f31ff35d6c.json b/allure-report/data/test-cases/12432569c8b8923f.json similarity index 64% rename from allure-report/data/test-cases/8427b8f31ff35d6c.json rename to allure-report/data/test-cases/12432569c8b8923f.json index 7d42514e48d..c6fff389ea2 100644 --- a/allure-report/data/test-cases/8427b8f31ff35d6c.json +++ b/allure-report/data/test-cases/12432569c8b8923f.json @@ -1 +1 @@ -{"uid":"8427b8f31ff35d6c","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ddae89531089be3f","name":"stdout","source":"ddae89531089be3f.txt","type":"text/plain","size":90}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"87be1c294a496f4a","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8427b8f31ff35d6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"12432569c8b8923f","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"97bc633acb769f22","name":"stdout","source":"97bc633acb769f22.txt","type":"text/plain","size":90}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"12432569c8b8923f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1265911f14bcd919.json b/allure-report/data/test-cases/1265911f14bcd919.json new file mode 100644 index 00000000000..77fa8634fea --- /dev/null +++ b/allure-report/data/test-cases/1265911f14bcd919.json @@ -0,0 +1 @@ +{"uid":"1265911f14bcd919","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732428194179,"stop":1732428194179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"33fff97900a7d8bc","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"54043a9fba80789b","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1265911f14bcd919.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12688af3a6e6b4d.json b/allure-report/data/test-cases/12688af3a6e6b4d.json new file mode 100644 index 00000000000..95027662db0 --- /dev/null +++ b/allure-report/data/test-cases/12688af3a6e6b4d.json @@ -0,0 +1 @@ +{"uid":"12688af3a6e6b4d","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5fae94f2517e85b","name":"stdout","source":"a5fae94f2517e85b.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"12688af3a6e6b4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef7e94367cfcafa4.json b/allure-report/data/test-cases/12ac45051c49f01a.json similarity index 59% rename from allure-report/data/test-cases/ef7e94367cfcafa4.json rename to allure-report/data/test-cases/12ac45051c49f01a.json index c8c09b50a38..15d547d0033 100644 --- a/allure-report/data/test-cases/ef7e94367cfcafa4.json +++ b/allure-report/data/test-cases/12ac45051c49f01a.json @@ -1 +1 @@ -{"uid":"ef7e94367cfcafa4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a140c6342ce1ee58","name":"stdout","source":"a140c6342ce1ee58.txt","type":"text/plain","size":371}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cc5bed1d964110c","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"14e29fc6b385d9d8","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"ef7e94367cfcafa4.json","parameterValues":[]} \ No newline at end of file +{"uid":"12ac45051c49f01a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ad44f1f08939323f","name":"stdout","source":"ad44f1f08939323f.txt","type":"text/plain","size":371}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"12ac45051c49f01a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12f0442ef33f054e.json b/allure-report/data/test-cases/12f0442ef33f054e.json new file mode 100644 index 00000000000..0f9f7bd2dd9 --- /dev/null +++ b/allure-report/data/test-cases/12f0442ef33f054e.json @@ -0,0 +1 @@ +{"uid":"12f0442ef33f054e","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":1732428195473,"stop":1732428195473,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8d5ed16bbc896a22","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"e911f85aab34c4e6","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e9aaea22e808b4eb","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"12f0442ef33f054e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ace382695affabdf.json b/allure-report/data/test-cases/13ca3a7cd8b0e3af.json similarity index 66% rename from allure-report/data/test-cases/ace382695affabdf.json rename to allure-report/data/test-cases/13ca3a7cd8b0e3af.json index 59760096114..c373a6443e1 100644 --- a/allure-report/data/test-cases/ace382695affabdf.json +++ b/allure-report/data/test-cases/13ca3a7cd8b0e3af.json @@ -1 +1 @@ -{"uid":"ace382695affabdf","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ee2fa2d0000577e9","name":"stdout","source":"ee2fa2d0000577e9.txt","type":"text/plain","size":908}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":14,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2348115dae27ed81","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"ace382695affabdf.json","parameterValues":[]} \ No newline at end of file +{"uid":"13ca3a7cd8b0e3af","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a4c00d99760de4b","name":"stdout","source":"3a4c00d99760de4b.txt","type":"text/plain","size":908}],"parameters":[],"hasContent":true,"stepsCount":14,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"13ca3a7cd8b0e3af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15008ede7bd87a18.json b/allure-report/data/test-cases/15008ede7bd87a18.json deleted file mode 100644 index bc081686813..00000000000 --- a/allure-report/data/test-cases/15008ede7bd87a18.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"15008ede7bd87a18","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"920856e6e183642","name":"stdout","source":"920856e6e183642.txt","type":"text/plain","size":202}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e52950a202e2f6f","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":[]},"source":"15008ede7bd87a18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c35da98b55fb5e6b.json b/allure-report/data/test-cases/1506cf302ecd21f1.json similarity index 53% rename from allure-report/data/test-cases/c35da98b55fb5e6b.json rename to allure-report/data/test-cases/1506cf302ecd21f1.json index 9c4d9754034..22b344e7f9b 100644 --- a/allure-report/data/test-cases/c35da98b55fb5e6b.json +++ b/allure-report/data/test-cases/1506cf302ecd21f1.json @@ -1 +1 @@ -{"uid":"c35da98b55fb5e6b","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a0603f4ec8cac73","name":"stdout","source":"1a0603f4ec8cac73.txt","type":"text/plain","size":480}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7f4165c790464aa","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"c35da98b55fb5e6b.json","parameterValues":[]} \ No newline at end of file +{"uid":"1506cf302ecd21f1","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"76446d802fca4221","name":"stdout","source":"76446d802fca4221.txt","type":"text/plain","size":480}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1506cf302ecd21f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1532fae746d0bb3a.json b/allure-report/data/test-cases/1532fae746d0bb3a.json new file mode 100644 index 00000000000..0a104a4165d --- /dev/null +++ b/allure-report/data/test-cases/1532fae746d0bb3a.json @@ -0,0 +1 @@ +{"uid":"1532fae746d0bb3a","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":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194667,"stop":1732428194667,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f02852e3aa10b6d","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"693d19da33d622de","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1532fae746d0bb3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/158f20a061140f84.json b/allure-report/data/test-cases/158f20a061140f84.json new file mode 100644 index 00000000000..21e9c4255e3 --- /dev/null +++ b/allure-report/data/test-cases/158f20a061140f84.json @@ -0,0 +1 @@ +{"uid":"158f20a061140f84","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":1732428196079,"stop":1732428196079,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4bb422e9ca9901c8","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"f649ed8d3c87f7f8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e6d62aae7d602336","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"158f20a061140f84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e6aa533c6c0fafa.json b/allure-report/data/test-cases/15dbab6d625f40d3.json similarity index 71% rename from allure-report/data/test-cases/5e6aa533c6c0fafa.json rename to allure-report/data/test-cases/15dbab6d625f40d3.json index 4e589eda29d..040c403ea3f 100644 --- a/allure-report/data/test-cases/5e6aa533c6c0fafa.json +++ b/allure-report/data/test-cases/15dbab6d625f40d3.json @@ -1 +1 @@ -{"uid":"5e6aa533c6c0fafa","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3dc83265322e5aba","name":"stdout","source":"3dc83265322e5aba.txt","type":"text/plain","size":204}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aefb4681bbbff0c9","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d65c16a1b47d468e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"5e6aa533c6c0fafa.json","parameterValues":[]} \ No newline at end of file +{"uid":"15dbab6d625f40d3","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"880a2c92c8612a83","name":"stdout","source":"880a2c92c8612a83.txt","type":"text/plain","size":204}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"15dbab6d625f40d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15f47b991f284575.json b/allure-report/data/test-cases/15f47b991f284575.json new file mode 100644 index 00000000000..c7e20dc063a --- /dev/null +++ b/allure-report/data/test-cases/15f47b991f284575.json @@ -0,0 +1 @@ +{"uid":"15f47b991f284575","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":30,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1732428194156,"stop":1732428194156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b9ab4feb44c59984","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"837e4ce24ac45efb","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"15f47b991f284575.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/161e5fcc0f247.json b/allure-report/data/test-cases/161e5fcc0f247.json new file mode 100644 index 00000000000..3fdf9b7217e --- /dev/null +++ b/allure-report/data/test-cases/161e5fcc0f247.json @@ -0,0 +1 @@ +{"uid":"161e5fcc0f247","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d01b1971a8a3587e","name":"stdout","source":"d01b1971a8a3587e.txt","type":"text/plain","size":336}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"161e5fcc0f247.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fcd8cc6f9f4777c4.json b/allure-report/data/test-cases/167f34fe4187417a.json similarity index 74% rename from allure-report/data/test-cases/fcd8cc6f9f4777c4.json rename to allure-report/data/test-cases/167f34fe4187417a.json index 986a3820e3e..128657f34ad 100644 --- a/allure-report/data/test-cases/fcd8cc6f9f4777c4.json +++ b/allure-report/data/test-cases/167f34fe4187417a.json @@ -1 +1 @@ -{"uid":"fcd8cc6f9f4777c4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e423707f4478eb49","name":"stdout","source":"e423707f4478eb49.txt","type":"text/plain","size":120}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fcd8cc6f9f4777c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"167f34fe4187417a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e3dd9c2915855555","name":"stdout","source":"e3dd9c2915855555.txt","type":"text/plain","size":120}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"167f34fe4187417a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a793815cad01bd2.json b/allure-report/data/test-cases/16a9ca9919e5cef5.json similarity index 62% rename from allure-report/data/test-cases/6a793815cad01bd2.json rename to allure-report/data/test-cases/16a9ca9919e5cef5.json index 63f049006f5..27765a5eeed 100644 --- a/allure-report/data/test-cases/6a793815cad01bd2.json +++ b/allure-report/data/test-cases/16a9ca9919e5cef5.json @@ -1 +1 @@ -{"uid":"6a793815cad01bd2","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"da9065dd6d539fab","name":"stdout","source":"da9065dd6d539fab.txt","type":"text/plain","size":2146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6a793815cad01bd2.json","parameterValues":[]} \ No newline at end of file +{"uid":"16a9ca9919e5cef5","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d6c5e78c2bca1b60","name":"stdout","source":"d6c5e78c2bca1b60.txt","type":"text/plain","size":2146}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"16a9ca9919e5cef5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12ce3777e030dbb5.json b/allure-report/data/test-cases/16f7f5e029216efb.json similarity index 66% rename from allure-report/data/test-cases/12ce3777e030dbb5.json rename to allure-report/data/test-cases/16f7f5e029216efb.json index 7956fbaf5f6..bc7f09ed7da 100644 --- a/allure-report/data/test-cases/12ce3777e030dbb5.json +++ b/allure-report/data/test-cases/16f7f5e029216efb.json @@ -1 +1 @@ -{"uid":"12ce3777e030dbb5","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"715d12e01ffe8bd2","name":"stdout","source":"715d12e01ffe8bd2.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"12ce3777e030dbb5.json","parameterValues":[]} \ No newline at end of file +{"uid":"16f7f5e029216efb","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a1418ed9afde7ea1","name":"stdout","source":"a1418ed9afde7ea1.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"16f7f5e029216efb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1700dd3f253e8636.json b/allure-report/data/test-cases/1700dd3f253e8636.json new file mode 100644 index 00000000000..3bffdeab72f --- /dev/null +++ b/allure-report/data/test-cases/1700dd3f253e8636.json @@ -0,0 +1 @@ +{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

Basic test: level, experience, rank

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c2fc5bac7417dd0","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"3d13030ecd2583e8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1700dd3f253e8636.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/17f807e7e2cad355.json b/allure-report/data/test-cases/17f807e7e2cad355.json deleted file mode 100644 index 92b0a9b2109..00000000000 --- a/allure-report/data/test-cases/17f807e7e2cad355.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"17f807e7e2cad355","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1124405dfe872592","name":"stdout","source":"1124405dfe872592.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"17f807e7e2cad355.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/191f183f3ba0c8ea.json b/allure-report/data/test-cases/191f183f3ba0c8ea.json new file mode 100644 index 00000000000..01a37f7f951 --- /dev/null +++ b/allure-report/data/test-cases/191f183f3ba0c8ea.json @@ -0,0 +1 @@ +{"uid":"191f183f3ba0c8ea","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":1732428195692,"stop":1732428195692,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732428195693,"stop":1732428195693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Unique In Order"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f841b42c8d697c74","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"65d5a47944859245","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"15008ede7bd87a18","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"191f183f3ba0c8ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1938e37bf1525466.json b/allure-report/data/test-cases/1938e37bf1525466.json new file mode 100644 index 00000000000..50eaaf2c106 --- /dev/null +++ b/allure-report/data/test-cases/1938e37bf1525466.json @@ -0,0 +1 @@ +{"uid":"1938e37bf1525466","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e123d763e6ea7e5","name":"stdout","source":"1e123d763e6ea7e5.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":12,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"1938e37bf1525466.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/196d34645221ebb4.json b/allure-report/data/test-cases/196d34645221ebb4.json new file mode 100644 index 00000000000..c7bff6ccd81 --- /dev/null +++ b/allure-report/data/test-cases/196d34645221ebb4.json @@ -0,0 +1 @@ +{"uid":"196d34645221ebb4","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":1732428194595,"stop":1732428194595,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4aa405db56695158","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"40819c186d07d3de","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d5ae1235bc27ccba","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"196d34645221ebb4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19b258c1195772c5.json b/allure-report/data/test-cases/19b258c1195772c5.json new file mode 100644 index 00000000000..9011765fdd1 --- /dev/null +++ b/allure-report/data/test-cases/19b258c1195772c5.json @@ -0,0 +1 @@ +{"uid":"19b258c1195772c5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"c2916b6d9a3730c2","name":"stdout","source":"c2916b6d9a3730c2.txt","type":"text/plain","size":48}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"19b258c1195772c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e0d94f0ee4e397d.json b/allure-report/data/test-cases/1a1c24c0cb125454.json similarity index 58% rename from allure-report/data/test-cases/7e0d94f0ee4e397d.json rename to allure-report/data/test-cases/1a1c24c0cb125454.json index ea657a22add..6b59f700121 100644 --- a/allure-report/data/test-cases/7e0d94f0ee4e397d.json +++ b/allure-report/data/test-cases/1a1c24c0cb125454.json @@ -1 +1 @@ -{"uid":"7e0d94f0ee4e397d","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"676a2b28cd4ab614","name":"stdout","source":"676a2b28cd4ab614.txt","type":"text/plain","size":1079}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2d65aaadaa20d5c2","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"7e0d94f0ee4e397d.json","parameterValues":[]} \ No newline at end of file +{"uid":"1a1c24c0cb125454","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cece8653b698fb5f","name":"stdout","source":"cece8653b698fb5f.txt","type":"text/plain","size":1079}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"1a1c24c0cb125454.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbd4191028146e80.json b/allure-report/data/test-cases/1a8ee4991fa5fcbc.json similarity index 68% rename from allure-report/data/test-cases/fbd4191028146e80.json rename to allure-report/data/test-cases/1a8ee4991fa5fcbc.json index 432740b3449..2c190a62fcf 100644 --- a/allure-report/data/test-cases/fbd4191028146e80.json +++ b/allure-report/data/test-cases/1a8ee4991fa5fcbc.json @@ -1 +1 @@ -{"uid":"fbd4191028146e80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"99fbed72185a436d","name":"stdout","source":"99fbed72185a436d.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23b523b580f78123","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"tags":[]},"source":"fbd4191028146e80.json","parameterValues":[]} \ No newline at end of file +{"uid":"1a8ee4991fa5fcbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c319238385a5cb6d","name":"stdout","source":"c319238385a5cb6d.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1a8ee4991fa5fcbc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1aaf298f74019608.json b/allure-report/data/test-cases/1aaf298f74019608.json new file mode 100644 index 00000000000..af70111ec02 --- /dev/null +++ b/allure-report/data/test-cases/1aaf298f74019608.json @@ -0,0 +1 @@ +{"uid":"1aaf298f74019608","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9099a5358c90330","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"ee3eb820ef7c27","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d0862b5213f7938f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1aaf298f74019608.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b6b658aae9aa73c.json b/allure-report/data/test-cases/1b6b658aae9aa73c.json new file mode 100644 index 00000000000..8bb9607c42f --- /dev/null +++ b/allure-report/data/test-cases/1b6b658aae9aa73c.json @@ -0,0 +1 @@ +{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732428194447,"stop":1732428194447,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732428194446,"stop":1732428194446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732428194457,"stop":1732428194457,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5795c1991578aaeb","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"d4258a66cc0cec29","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ed30e8563a89229a","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"1b6b658aae9aa73c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1baceb9fc9699f7.json b/allure-report/data/test-cases/1baceb9fc9699f7.json new file mode 100644 index 00000000000..4bee9227e4e --- /dev/null +++ b/allure-report/data/test-cases/1baceb9fc9699f7.json @@ -0,0 +1 @@ +{"uid":"1baceb9fc9699f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"14f1a5601096c54c","name":"stdout","source":"14f1a5601096c54c.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1baceb9fc9699f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7357eaa8c15ec47.json b/allure-report/data/test-cases/1bdb6e0764902ab4.json similarity index 61% rename from allure-report/data/test-cases/d7357eaa8c15ec47.json rename to allure-report/data/test-cases/1bdb6e0764902ab4.json index 2c415ce3143..e23354733a3 100644 --- a/allure-report/data/test-cases/d7357eaa8c15ec47.json +++ b/allure-report/data/test-cases/1bdb6e0764902ab4.json @@ -1 +1 @@ -{"uid":"d7357eaa8c15ec47","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3a93f15f0e448e53","name":"stdout","source":"3a93f15f0e448e53.txt","type":"text/plain","size":348}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddf52bfae3cd34f4","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"d7357eaa8c15ec47.json","parameterValues":[]} \ No newline at end of file +{"uid":"1bdb6e0764902ab4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e321f5d691b52e57","name":"stdout","source":"e321f5d691b52e57.txt","type":"text/plain","size":348}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"1bdb6e0764902ab4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11b0f4fd11e05b10.json b/allure-report/data/test-cases/1bef76bb610cc3bd.json similarity index 71% rename from allure-report/data/test-cases/11b0f4fd11e05b10.json rename to allure-report/data/test-cases/1bef76bb610cc3bd.json index 7e46fe7efc4..266c7fd85ff 100644 --- a/allure-report/data/test-cases/11b0f4fd11e05b10.json +++ b/allure-report/data/test-cases/1bef76bb610cc3bd.json @@ -1 +1 @@ -{"uid":"11b0f4fd11e05b10","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4273c801c4c75440","name":"stdout","source":"4273c801c4c75440.txt","type":"text/plain","size":72}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"11b0f4fd11e05b10.json","parameterValues":[]} \ No newline at end of file +{"uid":"1bef76bb610cc3bd","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5c031a187e70f58","name":"stdout","source":"f5c031a187e70f58.txt","type":"text/plain","size":72}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"1bef76bb610cc3bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5781ea9a417efe48.json b/allure-report/data/test-cases/1bf2db2d5f0c7414.json similarity index 52% rename from allure-report/data/test-cases/5781ea9a417efe48.json rename to allure-report/data/test-cases/1bf2db2d5f0c7414.json index ad58579416d..9c52f5d2a1e 100644 --- a/allure-report/data/test-cases/5781ea9a417efe48.json +++ b/allure-report/data/test-cases/1bf2db2d5f0c7414.json @@ -1 +1 @@ -{"uid":"5781ea9a417efe48","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e36f2ac65e2625af","name":"stdout","source":"e36f2ac65e2625af.txt","type":"text/plain","size":1195}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":16,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5781ea9a417efe48.json","parameterValues":[]} \ No newline at end of file +{"uid":"1bf2db2d5f0c7414","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cc9e92a1032075c9","name":"stdout","source":"cc9e92a1032075c9.txt","type":"text/plain","size":1195}],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1bf2db2d5f0c7414.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c0de6c68e45d781.json b/allure-report/data/test-cases/1c0de6c68e45d781.json deleted file mode 100644 index 89bfe0d1ed2..00000000000 --- a/allure-report/data/test-cases/1c0de6c68e45d781.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1c0de6c68e45d781","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5ba70b78893a0ae6","name":"stdout","source":"5ba70b78893a0ae6.txt","type":"text/plain","size":556}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1c0de6c68e45d781.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c59e45321407518.json b/allure-report/data/test-cases/1c59e45321407518.json new file mode 100644 index 00000000000..67600adfdbc --- /dev/null +++ b/allure-report/data/test-cases/1c59e45321407518.json @@ -0,0 +1 @@ +{"uid":"1c59e45321407518","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eaa46cbb4e98fc76","name":"stdout","source":"eaa46cbb4e98fc76.txt","type":"text/plain","size":170}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"1c59e45321407518.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c8c3b6600a20e75.json b/allure-report/data/test-cases/1c8c3b6600a20e75.json new file mode 100644 index 00000000000..eaf80b39ab3 --- /dev/null +++ b/allure-report/data/test-cases/1c8c3b6600a20e75.json @@ -0,0 +1 @@ +{"uid":"1c8c3b6600a20e75","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":1732428195568,"stop":1732428195568,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"500ac2fecd2b527c","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"332b728d7cfdedcf","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9098856200f13690","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"1c8c3b6600a20e75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6566b62febd2f997.json b/allure-report/data/test-cases/1ca9562da84c64b4.json similarity index 72% rename from allure-report/data/test-cases/6566b62febd2f997.json rename to allure-report/data/test-cases/1ca9562da84c64b4.json index 73ab57db222..c2cc6c8d6b7 100644 --- a/allure-report/data/test-cases/6566b62febd2f997.json +++ b/allure-report/data/test-cases/1ca9562da84c64b4.json @@ -1 +1 @@ -{"uid":"6566b62febd2f997","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5cbeea06209bb6e","name":"stdout","source":"a5cbeea06209bb6e.txt","type":"text/plain","size":510}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6566b62febd2f997.json","parameterValues":[]} \ No newline at end of file +{"uid":"1ca9562da84c64b4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d03e7f0ed07eb16c","name":"stdout","source":"d03e7f0ed07eb16c.txt","type":"text/plain","size":510}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1ca9562da84c64b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/613579922cc04140.json b/allure-report/data/test-cases/1cf942af51db20a3.json similarity index 75% rename from allure-report/data/test-cases/613579922cc04140.json rename to allure-report/data/test-cases/1cf942af51db20a3.json index ace0e7ef0dd..5fed3e42d85 100644 --- a/allure-report/data/test-cases/613579922cc04140.json +++ b/allure-report/data/test-cases/1cf942af51db20a3.json @@ -1 +1 @@ -{"uid":"613579922cc04140","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55424ab646409d91","name":"stdout","source":"55424ab646409d91.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"613579922cc04140.json","parameterValues":[]} \ No newline at end of file +{"uid":"1cf942af51db20a3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ab72754d2ac3d657","name":"stdout","source":"ab72754d2ac3d657.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"1cf942af51db20a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d2104b5fa1d29b.json b/allure-report/data/test-cases/1d2104b5fa1d29b.json new file mode 100644 index 00000000000..744571b9174 --- /dev/null +++ b/allure-report/data/test-cases/1d2104b5fa1d29b.json @@ -0,0 +1 @@ +{"uid":"1d2104b5fa1d29b","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":1732428194577,"stop":1732428194577,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1732428194580,"stop":1732428194580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8949506fce676285","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"f00b7b6604c5e7e4","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b38fe6b8a5a46","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"1d2104b5fa1d29b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1da47ab927a8de42.json b/allure-report/data/test-cases/1da47ab927a8de42.json new file mode 100644 index 00000000000..8f5b6deecc4 --- /dev/null +++ b/allure-report/data/test-cases/1da47ab927a8de42.json @@ -0,0 +1 @@ +{"uid":"1da47ab927a8de42","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"64217426bd0c7f09","name":"stdout","source":"64217426bd0c7f09.txt","type":"text/plain","size":299}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1da47ab927a8de42.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e52950a202e2f6f.json b/allure-report/data/test-cases/1e52950a202e2f6f.json deleted file mode 100644 index 08a22eb5f4b..00000000000 --- a/allure-report/data/test-cases/1e52950a202e2f6f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1e52950a202e2f6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ffc7fe5a8d7f425","name":"stdout","source":"1ffc7fe5a8d7f425.txt","type":"text/plain","size":202}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1e52950a202e2f6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f7fc4731241a976.json b/allure-report/data/test-cases/1f14a6ccebe34b08.json similarity index 58% rename from allure-report/data/test-cases/9f7fc4731241a976.json rename to allure-report/data/test-cases/1f14a6ccebe34b08.json index f5776d5607a..997b31b9cd0 100644 --- a/allure-report/data/test-cases/9f7fc4731241a976.json +++ b/allure-report/data/test-cases/1f14a6ccebe34b08.json @@ -1 +1 @@ -{"uid":"9f7fc4731241a976","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3e00d2a8f3aaa1eb","name":"stdout","source":"3e00d2a8f3aaa1eb.txt","type":"text/plain","size":253}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"808471d4cfeae814","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cd298347a8b67e93","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"9f7fc4731241a976.json","parameterValues":[]} \ No newline at end of file +{"uid":"1f14a6ccebe34b08","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f27833c43953c1b1","name":"stdout","source":"f27833c43953c1b1.txt","type":"text/plain","size":253}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1f14a6ccebe34b08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11b652a05502070f.json b/allure-report/data/test-cases/20ae87fc51fb9338.json similarity index 62% rename from allure-report/data/test-cases/11b652a05502070f.json rename to allure-report/data/test-cases/20ae87fc51fb9338.json index e6d484e06b1..1ffd86d1543 100644 --- a/allure-report/data/test-cases/11b652a05502070f.json +++ b/allure-report/data/test-cases/20ae87fc51fb9338.json @@ -1 +1 @@ -{"uid":"11b652a05502070f","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3de7bb1aa01966ff","name":"stdout","source":"3de7bb1aa01966ff.txt","type":"text/plain","size":272}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f81d7a6e8f8b1259","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"11b652a05502070f.json","parameterValues":[]} \ No newline at end of file +{"uid":"20ae87fc51fb9338","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ce9d59c982071d0","name":"stdout","source":"1ce9d59c982071d0.txt","type":"text/plain","size":272}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"20ae87fc51fb9338.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/21f08ae936e1de27.json b/allure-report/data/test-cases/21f08ae936e1de27.json new file mode 100644 index 00000000000..afaab650531 --- /dev/null +++ b/allure-report/data/test-cases/21f08ae936e1de27.json @@ -0,0 +1 @@ +{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732428195838,"stop":1732428195839,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195838,"stop":1732428195838,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9557455e27a468ef","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"d9dd09ce35083af7","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b1c2f2381b1441f6","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"21f08ae936e1de27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1188dda60b67ea96.json b/allure-report/data/test-cases/21f553aee2e150e3.json similarity index 58% rename from allure-report/data/test-cases/1188dda60b67ea96.json rename to allure-report/data/test-cases/21f553aee2e150e3.json index 773ac471a31..2fc241e8919 100644 --- a/allure-report/data/test-cases/1188dda60b67ea96.json +++ b/allure-report/data/test-cases/21f553aee2e150e3.json @@ -1 +1 @@ -{"uid":"1188dda60b67ea96","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7177fb466625b3ce","name":"stdout","source":"7177fb466625b3ce.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c454649db0c0ed2","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"1188dda60b67ea96.json","parameterValues":[]} \ No newline at end of file +{"uid":"21f553aee2e150e3","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b5b702f79cbcea35","name":"stdout","source":"b5b702f79cbcea35.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"21f553aee2e150e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/239a317b6e090fd8.json b/allure-report/data/test-cases/239a317b6e090fd8.json new file mode 100644 index 00000000000..6b7496c2da1 --- /dev/null +++ b/allure-report/data/test-cases/239a317b6e090fd8.json @@ -0,0 +1 @@ +{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194678,"stop":1732428194678,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5519a1e9b61f2ca3","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"4b8d012f19a4e1e6","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"239a317b6e090fd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6a0450be3f30fe6.json b/allure-report/data/test-cases/23e61e29448b9218.json similarity index 64% rename from allure-report/data/test-cases/a6a0450be3f30fe6.json rename to allure-report/data/test-cases/23e61e29448b9218.json index 1448c24eadf..5235a6041b0 100644 --- a/allure-report/data/test-cases/a6a0450be3f30fe6.json +++ b/allure-report/data/test-cases/23e61e29448b9218.json @@ -1 +1 @@ -{"uid":"a6a0450be3f30fe6","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e2e1868fac6f5c2","name":"stdout","source":"4e2e1868fac6f5c2.txt","type":"text/plain","size":375}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a6a0450be3f30fe6.json","parameterValues":[]} \ No newline at end of file +{"uid":"23e61e29448b9218","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd5591b59d574128","name":"stdout","source":"cd5591b59d574128.txt","type":"text/plain","size":375}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"23e61e29448b9218.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/256a10c9792b808f.json b/allure-report/data/test-cases/256a10c9792b808f.json new file mode 100644 index 00000000000..f889295b23f --- /dev/null +++ b/allure-report/data/test-cases/256a10c9792b808f.json @@ -0,0 +1 @@ +{"uid":"256a10c9792b808f","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":1732428194628,"stop":1732428194628,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732428194630,"stop":1732428194630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"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":"HASHES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25a09c2c9e3c88b1","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"d4af7c6dd9a36bc3","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"616180d049b16d1d","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"256a10c9792b808f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/616180d049b16d1d.json b/allure-report/data/test-cases/25a09c2c9e3c88b1.json similarity index 54% rename from allure-report/data/test-cases/616180d049b16d1d.json rename to allure-report/data/test-cases/25a09c2c9e3c88b1.json index 56c9338e4ea..b67e6e1af00 100644 --- a/allure-report/data/test-cases/616180d049b16d1d.json +++ b/allure-report/data/test-cases/25a09c2c9e3c88b1.json @@ -1 +1 @@ -{"uid":"616180d049b16d1d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9aa90db0f884f6f0","name":"stdout","source":"9aa90db0f884f6f0.txt","type":"text/plain","size":476}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"78957f7729625c40","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"616180d049b16d1d.json","parameterValues":[]} \ No newline at end of file +{"uid":"25a09c2c9e3c88b1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"666caf8f2715f1b6","name":"stdout","source":"666caf8f2715f1b6.txt","type":"text/plain","size":476}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"25a09c2c9e3c88b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25fd6f6c5cfe2b58.json b/allure-report/data/test-cases/25fd6f6c5cfe2b58.json new file mode 100644 index 00000000000..6970ef43fb4 --- /dev/null +++ b/allure-report/data/test-cases/25fd6f6c5cfe2b58.json @@ -0,0 +1 @@ +{"uid":"25fd6f6c5cfe2b58","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732428195606,"stop":1732428195606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1732428195610,"stop":1732428195610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f1172fa5620cc18","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"924a52587e7b2c82","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"25fd6f6c5cfe2b58.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2655a1e6934b1850.json b/allure-report/data/test-cases/2655a1e6934b1850.json new file mode 100644 index 00000000000..ad1adb517d9 --- /dev/null +++ b/allure-report/data/test-cases/2655a1e6934b1850.json @@ -0,0 +1 @@ +{"uid":"2655a1e6934b1850","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":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c43e0c7813423da","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"c5ea93b10613ec53","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2655a1e6934b1850.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26764a4bab46b2bf.json b/allure-report/data/test-cases/26764a4bab46b2bf.json new file mode 100644 index 00000000000..652bd5dabce --- /dev/null +++ b/allure-report/data/test-cases/26764a4bab46b2bf.json @@ -0,0 +1 @@ +{"uid":"26764a4bab46b2bf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7393a784e166457","name":"stdout","source":"e7393a784e166457.txt","type":"text/plain","size":1195}],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"26764a4bab46b2bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26cf86ca9eda4b5.json b/allure-report/data/test-cases/26cf86ca9eda4b5.json deleted file mode 100644 index de4d2af0ed4..00000000000 --- a/allure-report/data/test-cases/26cf86ca9eda4b5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"26cf86ca9eda4b5","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5eb9c17e95fe424","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"26cf86ca9eda4b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cdb95614a08f7813.json b/allure-report/data/test-cases/26f23a936b51b328.json similarity index 65% rename from allure-report/data/test-cases/cdb95614a08f7813.json rename to allure-report/data/test-cases/26f23a936b51b328.json index 766e70b8a1d..b837cdf069f 100644 --- a/allure-report/data/test-cases/cdb95614a08f7813.json +++ b/allure-report/data/test-cases/26f23a936b51b328.json @@ -1 +1 @@ -{"uid":"cdb95614a08f7813","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3db726a85ec26b65","name":"stdout","source":"3db726a85ec26b65.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cdb95614a08f7813.json","parameterValues":[]} \ No newline at end of file +{"uid":"26f23a936b51b328","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"126d44dc6bf2e98e","name":"stdout","source":"126d44dc6bf2e98e.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"26f23a936b51b328.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/58ec93395b112a8f.json b/allure-report/data/test-cases/27b26e7a6523571a.json similarity index 63% rename from allure-report/data/test-cases/58ec93395b112a8f.json rename to allure-report/data/test-cases/27b26e7a6523571a.json index 91019e97dde..d3822f605e5 100644 --- a/allure-report/data/test-cases/58ec93395b112a8f.json +++ b/allure-report/data/test-cases/27b26e7a6523571a.json @@ -1 +1 @@ -{"uid":"58ec93395b112a8f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60434b32a4fa91ba","name":"stdout","source":"60434b32a4fa91ba.txt","type":"text/plain","size":530}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"58ec93395b112a8f.json","parameterValues":[]} \ No newline at end of file +{"uid":"27b26e7a6523571a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cb2ee8571e9e5841","name":"stdout","source":"cb2ee8571e9e5841.txt","type":"text/plain","size":530}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"27b26e7a6523571a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27d124696efa8c6c.json b/allure-report/data/test-cases/27d124696efa8c6c.json new file mode 100644 index 00000000000..a418574431d --- /dev/null +++ b/allure-report/data/test-cases/27d124696efa8c6c.json @@ -0,0 +1 @@ +{"uid":"27d124696efa8c6c","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":1732428196144,"stop":1732428196144,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51c4ad89c4a768de","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"d58da60cf24b7660","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e0d5281d75a0b4df","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"27d124696efa8c6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27f5e11d20d2d96c.json b/allure-report/data/test-cases/27f5e11d20d2d96c.json new file mode 100644 index 00000000000..594aa848a1e --- /dev/null +++ b/allure-report/data/test-cases/27f5e11d20d2d96c.json @@ -0,0 +1 @@ +{"uid":"27f5e11d20d2d96c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732428196043,"stop":1732428196044,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732428196046,"stop":1732428196046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2326ee427488be9","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"5d1981370251e5ca","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8a0dfae45b96d6a4","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"27f5e11d20d2d96c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/284ee1b80abfdb89.json b/allure-report/data/test-cases/284ee1b80abfdb89.json new file mode 100644 index 00000000000..538466f052c --- /dev/null +++ b/allure-report/data/test-cases/284ee1b80abfdb89.json @@ -0,0 +1 @@ +{"uid":"284ee1b80abfdb89","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732428196330,"stop":1732428196330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Multiply"},{"name":"feature","value":"Multiplication"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"tag","value":"INTRODUCTION"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed0bae89bbbcdb66","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"a7a27da7101eb431","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1efaf2ab015adde4","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"284ee1b80abfdb89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/72010ab4f2692ae4.json b/allure-report/data/test-cases/286a2c6d22a3ea0b.json similarity index 52% rename from allure-report/data/test-cases/72010ab4f2692ae4.json rename to allure-report/data/test-cases/286a2c6d22a3ea0b.json index 0a77cba4969..e6d14080153 100644 --- a/allure-report/data/test-cases/72010ab4f2692ae4.json +++ b/allure-report/data/test-cases/286a2c6d22a3ea0b.json @@ -1 +1 @@ -{"uid":"72010ab4f2692ae4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8b00f3eb19799549","name":"stdout","source":"8b00f3eb19799549.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":12,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"72010ab4f2692ae4.json","parameterValues":[]} \ No newline at end of file +{"uid":"286a2c6d22a3ea0b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c52989139561013a","name":"stdout","source":"c52989139561013a.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":12,"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":[],"hasContent":false,"stepsCount":0,"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":"286a2c6d22a3ea0b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28c03a6c5cc24cef.json b/allure-report/data/test-cases/28c03a6c5cc24cef.json new file mode 100644 index 00000000000..89aef4cbda0 --- /dev/null +++ b/allure-report/data/test-cases/28c03a6c5cc24cef.json @@ -0,0 +1 @@ +{"uid":"28c03a6c5cc24cef","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"38365b0f6f350ca5","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"64d00badde981bd3","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"28c03a6c5cc24cef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2951c359ba3fd421.json b/allure-report/data/test-cases/2951c359ba3fd421.json new file mode 100644 index 00000000000..7c0a39d4fef --- /dev/null +++ b/allure-report/data/test-cases/2951c359ba3fd421.json @@ -0,0 +1 @@ +{"uid":"2951c359ba3fd421","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"48abcc67292a5aa2","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"5b3fc84157197066","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"972d0622d29729c4","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2951c359ba3fd421.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/204251456ada0752.json b/allure-report/data/test-cases/2980fd5af6447b30.json similarity index 72% rename from allure-report/data/test-cases/204251456ada0752.json rename to allure-report/data/test-cases/2980fd5af6447b30.json index 0fa4d6760b9..746d049f3c8 100644 --- a/allure-report/data/test-cases/204251456ada0752.json +++ b/allure-report/data/test-cases/2980fd5af6447b30.json @@ -1 +1 @@ -{"uid":"204251456ada0752","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2dcda4c0465e81d2","name":"stdout","source":"2dcda4c0465e81d2.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"204251456ada0752.json","parameterValues":[]} \ No newline at end of file +{"uid":"2980fd5af6447b30","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"660305aec4aa6e06","name":"stdout","source":"660305aec4aa6e06.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"2980fd5af6447b30.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2aa3a63b6fff605a.json b/allure-report/data/test-cases/2aa3a63b6fff605a.json deleted file mode 100644 index a6af894e487..00000000000 --- a/allure-report/data/test-cases/2aa3a63b6fff605a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2aa3a63b6fff605a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47bd852e88dda4bd","name":"stdout","source":"47bd852e88dda4bd.txt","type":"text/plain","size":554}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8cc7e1ba1a4852f","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fb3ce43e36479ba0","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2aa3a63b6fff605a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b38fe6b8a5a46.json b/allure-report/data/test-cases/2b38fe6b8a5a46.json deleted file mode 100644 index 70db00d2a78..00000000000 --- a/allure-report/data/test-cases/2b38fe6b8a5a46.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2b38fe6b8a5a46","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6cceaf28d236f584","name":"stdout","source":"6cceaf28d236f584.txt","type":"text/plain","size":1380}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9cc84b4c3c851a20","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"2b38fe6b8a5a46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90a24ba96aea3cfc.json b/allure-report/data/test-cases/2b5bdabfec79d6cf.json similarity index 59% rename from allure-report/data/test-cases/90a24ba96aea3cfc.json rename to allure-report/data/test-cases/2b5bdabfec79d6cf.json index fcf14851caa..2ff60b878f1 100644 --- a/allure-report/data/test-cases/90a24ba96aea3cfc.json +++ b/allure-report/data/test-cases/2b5bdabfec79d6cf.json @@ -1 +1 @@ -{"uid":"90a24ba96aea3cfc","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7efcea1d1ffd3662","name":"stdout","source":"7efcea1d1ffd3662.txt","type":"text/plain","size":544}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dcb40cbe5ee38417","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"396df158495e2556","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"90a24ba96aea3cfc.json","parameterValues":[]} \ No newline at end of file +{"uid":"2b5bdabfec79d6cf","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2862210bad838236","name":"stdout","source":"2862210bad838236.txt","type":"text/plain","size":544}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"2b5bdabfec79d6cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c37dfc82a096ec09.json b/allure-report/data/test-cases/2b5d1a28c2e7859f.json similarity index 72% rename from allure-report/data/test-cases/c37dfc82a096ec09.json rename to allure-report/data/test-cases/2b5d1a28c2e7859f.json index 943ecad9823..f7479b18fb2 100644 --- a/allure-report/data/test-cases/c37dfc82a096ec09.json +++ b/allure-report/data/test-cases/2b5d1a28c2e7859f.json @@ -1 +1 @@ -{"uid":"c37dfc82a096ec09","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":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":"20308d2341c6b899","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"c37dfc82a096ec09.json","parameterValues":[]} \ No newline at end of file +{"uid":"2b5d1a28c2e7859f","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":"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":"2b5d1a28c2e7859f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b76b55d8c8f82d1.json b/allure-report/data/test-cases/2b76b55d8c8f82d1.json new file mode 100644 index 00000000000..23c0e6bb4e5 --- /dev/null +++ b/allure-report/data/test-cases/2b76b55d8c8f82d1.json @@ -0,0 +1 @@ +{"uid":"2b76b55d8c8f82d1","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":1732428194237,"stop":1732428194238,"duration":1},"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":"

Codewars badge:

Test Description:

The function should generate city map with coordinates.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b153d545c48d264","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"a530698ca5ed066c","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2b76b55d8c8f82d1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b89947e3a3ec46d.json b/allure-report/data/test-cases/2b89947e3a3ec46d.json new file mode 100644 index 00000000000..a180555d5b1 --- /dev/null +++ b/allure-report/data/test-cases/2b89947e3a3ec46d.json @@ -0,0 +1 @@ +{"uid":"2b89947e3a3ec46d","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":1732428194216,"stop":1732428194216,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Assert that 'domain_name' function returns domain name from given URL string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732428194215,"stop":1732428194215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1732428194217,"stop":1732428194217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90d2f619b6b55a93","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"eaaef6c05ba4cb98","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2b89947e3a3ec46d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b9309fd398214a5.json b/allure-report/data/test-cases/2b9309fd398214a5.json deleted file mode 100644 index 72d4199f7da..00000000000 --- a/allure-report/data/test-cases/2b9309fd398214a5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2b9309fd398214a5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"754273bb670e7e63","name":"stdout","source":"754273bb670e7e63.txt","type":"text/plain","size":336}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"30fbee992b0ca53e","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":[]},"source":"2b9309fd398214a5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b98fb3b88f75199.json b/allure-report/data/test-cases/2b98fb3b88f75199.json new file mode 100644 index 00000000000..901854975b5 --- /dev/null +++ b/allure-report/data/test-cases/2b98fb3b88f75199.json @@ -0,0 +1 @@ +{"uid":"2b98fb3b88f75199","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732428194482,"stop":1732428194482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Number of trailing zeros of N!"},{"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":"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3baf14f5477154","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"dcee0c4d2268b964","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"369d691aa58bf89d","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"2b98fb3b88f75199.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2baefc3521a1da2a.json b/allure-report/data/test-cases/2baefc3521a1da2a.json new file mode 100644 index 00000000000..bb2bca1a8a5 --- /dev/null +++ b/allure-report/data/test-cases/2baefc3521a1da2a.json @@ -0,0 +1 @@ +{"uid":"2baefc3521a1da2a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84d177b8ff2c367d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"9dc85df7fba3a78e","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"76548c4669002681","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"2baefc3521a1da2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2bfddef765c09569.json b/allure-report/data/test-cases/2bfddef765c09569.json new file mode 100644 index 00000000000..32eace7c761 --- /dev/null +++ b/allure-report/data/test-cases/2bfddef765c09569.json @@ -0,0 +1 @@ +{"uid":"2bfddef765c09569","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1732428194561,"stop":1732428194561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ea31191e1f5ab3b","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"ac81c5ec86387239","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2bfddef765c09569.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c6c8c712bf1892f.json b/allure-report/data/test-cases/2c6c8c712bf1892f.json new file mode 100644 index 00000000000..fb4408f2c99 --- /dev/null +++ b/allure-report/data/test-cases/2c6c8c712bf1892f.json @@ -0,0 +1 @@ +{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string aba and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string moOse and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1732428195862,"stop":1732428195862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"428efcfcd43d2531","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"691701add6daaf89","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2c6c8c712bf1892f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c78d4954ac14f9e.json b/allure-report/data/test-cases/2c78d4954ac14f9e.json deleted file mode 100644 index 9df8d71c9a9..00000000000 --- a/allure-report/data/test-cases/2c78d4954ac14f9e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2c78d4954ac14f9e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6344061f744d93d","name":"stdout","source":"6344061f744d93d.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"474af6c568bdf675","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"93b3042e12ae0dc2","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"2c78d4954ac14f9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cc2dcb2d1d8eb43.json b/allure-report/data/test-cases/2cc2dcb2d1d8eb43.json new file mode 100644 index 00000000000..463ead7268d --- /dev/null +++ b/allure-report/data/test-cases/2cc2dcb2d1d8eb43.json @@ -0,0 +1 @@ +{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732428194022,"stop":1732428194022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1732428194026,"stop":1732428194026,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5f3069d223f82c6","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"68ae9688c7c99a04","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2cc2dcb2d1d8eb43.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ce701a458e1cd31.json b/allure-report/data/test-cases/2ce701a458e1cd31.json new file mode 100644 index 00000000000..ddcd20ca909 --- /dev/null +++ b/allure-report/data/test-cases/2ce701a458e1cd31.json @@ -0,0 +1 @@ +{"uid":"2ce701a458e1cd31","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a823a6dcaaab38a","name":"stdout","source":"a823a6dcaaab38a.txt","type":"text/plain","size":32}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2ce701a458e1cd31.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d25cb87282ab722.json b/allure-report/data/test-cases/2d25cb87282ab722.json deleted file mode 100644 index 78b7ee8c639..00000000000 --- a/allure-report/data/test-cases/2d25cb87282ab722.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2d25cb87282ab722","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4277e39e2fd03a2","name":"stdout","source":"4277e39e2fd03a2.txt","type":"text/plain","size":37}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2d25cb87282ab722.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fab8ff7d7139e20.json b/allure-report/data/test-cases/2db5e1fafcf7f4e1.json similarity index 71% rename from allure-report/data/test-cases/3fab8ff7d7139e20.json rename to allure-report/data/test-cases/2db5e1fafcf7f4e1.json index 3f331acaa98..c7ad708daed 100644 --- a/allure-report/data/test-cases/3fab8ff7d7139e20.json +++ b/allure-report/data/test-cases/2db5e1fafcf7f4e1.json @@ -1 +1 @@ -{"uid":"3fab8ff7d7139e20","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a8cbd3585c92133","name":"stdout","source":"1a8cbd3585c92133.txt","type":"text/plain","size":59}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3fab8ff7d7139e20.json","parameterValues":[]} \ No newline at end of file +{"uid":"2db5e1fafcf7f4e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"92375ce905d3bb32","name":"stdout","source":"92375ce905d3bb32.txt","type":"text/plain","size":59}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2db5e1fafcf7f4e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df0c490941a6877a.json b/allure-report/data/test-cases/2dc119e05306bc09.json similarity index 61% rename from allure-report/data/test-cases/df0c490941a6877a.json rename to allure-report/data/test-cases/2dc119e05306bc09.json index 591cb4a4747..7dc6a7b3477 100644 --- a/allure-report/data/test-cases/df0c490941a6877a.json +++ b/allure-report/data/test-cases/2dc119e05306bc09.json @@ -1 +1 @@ -{"uid":"df0c490941a6877a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ca423ea5ac901436","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c7106989a12e3c0a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"df0c490941a6877a.json","parameterValues":[]} \ No newline at end of file +{"uid":"2dc119e05306bc09","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2dc119e05306bc09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/458ee4cae9834334.json b/allure-report/data/test-cases/2dcd793cb9c1cce4.json similarity index 73% rename from allure-report/data/test-cases/458ee4cae9834334.json rename to allure-report/data/test-cases/2dcd793cb9c1cce4.json index deefd5f1ee7..f8ae4018de5 100644 --- a/allure-report/data/test-cases/458ee4cae9834334.json +++ b/allure-report/data/test-cases/2dcd793cb9c1cce4.json @@ -1 +1 @@ -{"uid":"458ee4cae9834334","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"986dcde2e02037cb","name":"stdout","source":"986dcde2e02037cb.txt","type":"text/plain","size":411}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"458ee4cae9834334.json","parameterValues":[]} \ No newline at end of file +{"uid":"2dcd793cb9c1cce4","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1f8aa4666b4af5af","name":"stdout","source":"1f8aa4666b4af5af.txt","type":"text/plain","size":411}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"2dcd793cb9c1cce4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2de3f7cf44554fd8.json b/allure-report/data/test-cases/2de3f7cf44554fd8.json new file mode 100644 index 00000000000..7f1ff0ac7d8 --- /dev/null +++ b/allure-report/data/test-cases/2de3f7cf44554fd8.json @@ -0,0 +1 @@ +{"uid":"2de3f7cf44554fd8","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732428196400,"stop":1732428196400,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732428196399,"stop":1732428196399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732428196401,"stop":1732428196401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"342dee44f5f15fde","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e8ed1f5e4a826f53","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9c38060cc376f686","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"2de3f7cf44554fd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e46c970e553e301.json b/allure-report/data/test-cases/2e46c970e553e301.json new file mode 100644 index 00000000000..4c9a033a140 --- /dev/null +++ b/allure-report/data/test-cases/2e46c970e553e301.json @@ -0,0 +1 @@ +{"uid":"2e46c970e553e301","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":1732428195651,"stop":1732428195651,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195652,"stop":1732428195652,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition II"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"64c2df72a296b62e","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"e4f24bca4471f754","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9e5b993187ac8b27","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"2e46c970e553e301.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9a0c341753d9526.json b/allure-report/data/test-cases/2e9a9a4090c00445.json similarity index 72% rename from allure-report/data/test-cases/e9a0c341753d9526.json rename to allure-report/data/test-cases/2e9a9a4090c00445.json index 6cab4199f5c..700dfd7cf67 100644 --- a/allure-report/data/test-cases/e9a0c341753d9526.json +++ b/allure-report/data/test-cases/2e9a9a4090c00445.json @@ -1 +1 @@ -{"uid":"e9a0c341753d9526","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22f31b147f604ade","name":"stdout","source":"22f31b147f604ade.txt","type":"text/plain","size":1013}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e9a0c341753d9526.json","parameterValues":[]} \ No newline at end of file +{"uid":"2e9a9a4090c00445","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9cd8266cfd985687","name":"stdout","source":"9cd8266cfd985687.txt","type":"text/plain","size":1013}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"2e9a9a4090c00445.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d22e154a5a83d80.json b/allure-report/data/test-cases/2f407878af91b1de.json similarity index 71% rename from allure-report/data/test-cases/6d22e154a5a83d80.json rename to allure-report/data/test-cases/2f407878af91b1de.json index 0b0db2d2d57..9ec0e1b2511 100644 --- a/allure-report/data/test-cases/6d22e154a5a83d80.json +++ b/allure-report/data/test-cases/2f407878af91b1de.json @@ -1 +1 @@ -{"uid":"6d22e154a5a83d80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6d22e154a5a83d80.json","parameterValues":[]} \ No newline at end of file +{"uid":"2f407878af91b1de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"2f407878af91b1de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/500c62fc4806377c.json b/allure-report/data/test-cases/2f4ba657dc51e0d2.json similarity index 75% rename from allure-report/data/test-cases/500c62fc4806377c.json rename to allure-report/data/test-cases/2f4ba657dc51e0d2.json index 7e61853e0c9..0a72bf106fe 100644 --- a/allure-report/data/test-cases/500c62fc4806377c.json +++ b/allure-report/data/test-cases/2f4ba657dc51e0d2.json @@ -1 +1 @@ -{"uid":"500c62fc4806377c","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"270cdfea12dfee25","name":"stdout","source":"270cdfea12dfee25.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"500c62fc4806377c.json","parameterValues":[]} \ No newline at end of file +{"uid":"2f4ba657dc51e0d2","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3fe96e9fb5bb6b3f","name":"stdout","source":"3fe96e9fb5bb6b3f.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2f4ba657dc51e0d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3ffd9201b6a1ce3.json b/allure-report/data/test-cases/2f4dd2b3858b1ec4.json similarity index 69% rename from allure-report/data/test-cases/f3ffd9201b6a1ce3.json rename to allure-report/data/test-cases/2f4dd2b3858b1ec4.json index f0d7fdbba78..a005236e5a6 100644 --- a/allure-report/data/test-cases/f3ffd9201b6a1ce3.json +++ b/allure-report/data/test-cases/2f4dd2b3858b1ec4.json @@ -1 +1 @@ -{"uid":"f3ffd9201b6a1ce3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29ea9005f7d14049","name":"stdout","source":"29ea9005f7d14049.txt","type":"text/plain","size":53}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f3ffd9201b6a1ce3.json","parameterValues":[]} \ No newline at end of file +{"uid":"2f4dd2b3858b1ec4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7757a124114dd519","name":"stdout","source":"7757a124114dd519.txt","type":"text/plain","size":53}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"2f4dd2b3858b1ec4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87acfa055dcbe26a.json b/allure-report/data/test-cases/2f520e29faf9fa03.json similarity index 63% rename from allure-report/data/test-cases/87acfa055dcbe26a.json rename to allure-report/data/test-cases/2f520e29faf9fa03.json index 6c12c228585..6f2faf92c07 100644 --- a/allure-report/data/test-cases/87acfa055dcbe26a.json +++ b/allure-report/data/test-cases/2f520e29faf9fa03.json @@ -1 +1 @@ -{"uid":"87acfa055dcbe26a","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":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":"6e940c353ac4ade9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"87acfa055dcbe26a.json","parameterValues":[]} \ No newline at end of file +{"uid":"2f520e29faf9fa03","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":"2f520e29faf9fa03.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/743e871493ba28b4.json b/allure-report/data/test-cases/30218f5e2dbf6894.json similarity index 69% rename from allure-report/data/test-cases/743e871493ba28b4.json rename to allure-report/data/test-cases/30218f5e2dbf6894.json index 1a49a9f3b0c..ec285a649f8 100644 --- a/allure-report/data/test-cases/743e871493ba28b4.json +++ b/allure-report/data/test-cases/30218f5e2dbf6894.json @@ -1 +1 @@ -{"uid":"743e871493ba28b4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eceb81b9185d8ebf","name":"stdout","source":"eceb81b9185d8ebf.txt","type":"text/plain","size":281}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"743e871493ba28b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"30218f5e2dbf6894","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7cd06e1d94c0b146","name":"stdout","source":"7cd06e1d94c0b146.txt","type":"text/plain","size":281}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30218f5e2dbf6894.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a325845218dd6ae.json b/allure-report/data/test-cases/302b8c55161cc361.json similarity index 57% rename from allure-report/data/test-cases/9a325845218dd6ae.json rename to allure-report/data/test-cases/302b8c55161cc361.json index 92a433757e4..58843d0f2e4 100644 --- a/allure-report/data/test-cases/9a325845218dd6ae.json +++ b/allure-report/data/test-cases/302b8c55161cc361.json @@ -1 +1 @@ -{"uid":"9a325845218dd6ae","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a54c971159a9735d","name":"stdout","source":"a54c971159a9735d.txt","type":"text/plain","size":213}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a50af3a4d2a7afb5","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d837297408a13c1e","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"9a325845218dd6ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"302b8c55161cc361","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e2e513778c4c6c4f","name":"stdout","source":"e2e513778c4c6c4f.txt","type":"text/plain","size":213}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"302b8c55161cc361.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1aabae67bc18ba0.json b/allure-report/data/test-cases/307a8cec4e791e32.json similarity index 61% rename from allure-report/data/test-cases/d1aabae67bc18ba0.json rename to allure-report/data/test-cases/307a8cec4e791e32.json index 6bd38ed2d11..b7db9d7b3e9 100644 --- a/allure-report/data/test-cases/d1aabae67bc18ba0.json +++ b/allure-report/data/test-cases/307a8cec4e791e32.json @@ -1 +1 @@ -{"uid":"d1aabae67bc18ba0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57be236067b41f3e","name":"stdout","source":"57be236067b41f3e.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"776765eba79884f4","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"d1aabae67bc18ba0.json","parameterValues":[]} \ No newline at end of file +{"uid":"307a8cec4e791e32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce026a7ada5eb7bc","name":"stdout","source":"ce026a7ada5eb7bc.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"307a8cec4e791e32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47a613697aa0c71f.json b/allure-report/data/test-cases/30b1174850b5a822.json similarity index 93% rename from allure-report/data/test-cases/47a613697aa0c71f.json rename to allure-report/data/test-cases/30b1174850b5a822.json index 88a7296e1d0..79e8f8a4d6b 100644 --- a/allure-report/data/test-cases/47a613697aa0c71f.json +++ b/allure-report/data/test-cases/30b1174850b5a822.json @@ -1 +1 @@ -{"uid":"47a613697aa0c71f","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":1724733472327,"stop":1724733472327,"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":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":"47a613697aa0c71f.json","parameterValues":[]} \ No newline at end of file +{"uid":"30b1174850b5a822","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":1724733472327,"stop":1724733472327,"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":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":"30b1174850b5a822.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47f8df09a84d8337.json b/allure-report/data/test-cases/31050b40d7651adc.json similarity index 64% rename from allure-report/data/test-cases/47f8df09a84d8337.json rename to allure-report/data/test-cases/31050b40d7651adc.json index f7a836a8cc2..4c0699ed4e2 100644 --- a/allure-report/data/test-cases/47f8df09a84d8337.json +++ b/allure-report/data/test-cases/31050b40d7651adc.json @@ -1 +1 @@ -{"uid":"47f8df09a84d8337","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6c919aa9e8f6951e","name":"stdout","source":"6c919aa9e8f6951e.txt","type":"text/plain","size":1515}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5804044d1767680","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"47f8df09a84d8337.json","parameterValues":[]} \ No newline at end of file +{"uid":"31050b40d7651adc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"12f3e703f687ed41","name":"stdout","source":"12f3e703f687ed41.txt","type":"text/plain","size":1515}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"31050b40d7651adc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52187b3daff300ae.json b/allure-report/data/test-cases/32703c37c2f9cfbd.json similarity index 55% rename from allure-report/data/test-cases/52187b3daff300ae.json rename to allure-report/data/test-cases/32703c37c2f9cfbd.json index f65cc4e16cb..e29f1c08659 100644 --- a/allure-report/data/test-cases/52187b3daff300ae.json +++ b/allure-report/data/test-cases/32703c37c2f9cfbd.json @@ -1 +1 @@ -{"uid":"52187b3daff300ae","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcdb96625b1e26db","name":"stdout","source":"fcdb96625b1e26db.txt","type":"text/plain","size":637}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b8a68af9dbc0f892","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"52187b3daff300ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"32703c37c2f9cfbd","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f3f8f8256722f1a9","name":"stdout","source":"f3f8f8256722f1a9.txt","type":"text/plain","size":637}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"32703c37c2f9cfbd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4fb6cdf4d1895f5.json b/allure-report/data/test-cases/3287e9af1a22ed8b.json similarity index 73% rename from allure-report/data/test-cases/b4fb6cdf4d1895f5.json rename to allure-report/data/test-cases/3287e9af1a22ed8b.json index 9c8520d8a0e..a5453547c39 100644 --- a/allure-report/data/test-cases/b4fb6cdf4d1895f5.json +++ b/allure-report/data/test-cases/3287e9af1a22ed8b.json @@ -1 +1 @@ -{"uid":"b4fb6cdf4d1895f5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"a73c95935cebe487","name":"stdout","source":"a73c95935cebe487.txt","type":"text/plain","size":48}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b4fb6cdf4d1895f5.json","parameterValues":[]} \ No newline at end of file +{"uid":"3287e9af1a22ed8b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"40789a2ed03aa082","name":"stdout","source":"40789a2ed03aa082.txt","type":"text/plain","size":48}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3287e9af1a22ed8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db267da7b8a1b004.json b/allure-report/data/test-cases/32b8a7a180fb722f.json similarity index 61% rename from allure-report/data/test-cases/db267da7b8a1b004.json rename to allure-report/data/test-cases/32b8a7a180fb722f.json index 52ced21b3a0..b45c5626125 100644 --- a/allure-report/data/test-cases/db267da7b8a1b004.json +++ b/allure-report/data/test-cases/32b8a7a180fb722f.json @@ -1 +1 @@ -{"uid":"db267da7b8a1b004","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8418aaca0f21809c","name":"stdout","source":"8418aaca0f21809c.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"db267da7b8a1b004.json","parameterValues":[]} \ No newline at end of file +{"uid":"32b8a7a180fb722f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"697ce25e72082ee1","name":"stdout","source":"697ce25e72082ee1.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"32b8a7a180fb722f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/332b728d7cfdedcf.json b/allure-report/data/test-cases/332b728d7cfdedcf.json new file mode 100644 index 00000000000..f38026afdeb --- /dev/null +++ b/allure-report/data/test-cases/332b728d7cfdedcf.json @@ -0,0 +1 @@ +{"uid":"332b728d7cfdedcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d43641784540be20","name":"stdout","source":"d43641784540be20.txt","type":"text/plain","size":129}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"332b728d7cfdedcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23cc390416e7aa52.json b/allure-report/data/test-cases/33a4a469899e9868.json similarity index 65% rename from allure-report/data/test-cases/23cc390416e7aa52.json rename to allure-report/data/test-cases/33a4a469899e9868.json index 2f58852879a..79f7b0c0fa6 100644 --- a/allure-report/data/test-cases/23cc390416e7aa52.json +++ b/allure-report/data/test-cases/33a4a469899e9868.json @@ -1 +1 @@ -{"uid":"23cc390416e7aa52","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e67bc3e5b3334332","name":"stdout","source":"e67bc3e5b3334332.txt","type":"text/plain","size":298}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23cc390416e7aa52.json","parameterValues":[]} \ No newline at end of file +{"uid":"33a4a469899e9868","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"17ccb2223275d18f","name":"stdout","source":"17ccb2223275d18f.txt","type":"text/plain","size":298}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"33a4a469899e9868.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33a7277db5231ef9.json b/allure-report/data/test-cases/33a7277db5231ef9.json new file mode 100644 index 00000000000..a0ad60f2a3a --- /dev/null +++ b/allure-report/data/test-cases/33a7277db5231ef9.json @@ -0,0 +1 @@ +{"uid":"33a7277db5231ef9","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"459e1a71d63acc96","name":"stdout","source":"459e1a71d63acc96.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"33a7277db5231ef9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33b81b348332f41f.json b/allure-report/data/test-cases/33b81b348332f41f.json deleted file mode 100644 index 5a47ce2e400..00000000000 --- a/allure-report/data/test-cases/33b81b348332f41f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"feeed58e51d5c7a","name":"stdout","source":"feeed58e51d5c7a.txt","type":"text/plain","size":216}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7028cdfd068e31be","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":[]},"source":"33b81b348332f41f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb0af84ecb430495.json b/allure-report/data/test-cases/33bc4a62afa9ed1a.json similarity index 78% rename from allure-report/data/test-cases/bb0af84ecb430495.json rename to allure-report/data/test-cases/33bc4a62afa9ed1a.json index 4ce467492b3..c92e54a0eef 100644 --- a/allure-report/data/test-cases/bb0af84ecb430495.json +++ b/allure-report/data/test-cases/33bc4a62afa9ed1a.json @@ -1 +1 @@ -{"uid":"bb0af84ecb430495","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3714b6ca536dc4d2","name":"stdout","source":"3714b6ca536dc4d2.txt","type":"text/plain","size":210}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"bb0af84ecb430495.json","parameterValues":[]} \ No newline at end of file +{"uid":"33bc4a62afa9ed1a","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"546f6d6d1d510331","name":"stdout","source":"546f6d6d1d510331.txt","type":"text/plain","size":210}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"33bc4a62afa9ed1a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33e90a465d3b6e95.json b/allure-report/data/test-cases/33e90a465d3b6e95.json new file mode 100644 index 00000000000..dc688792b8e --- /dev/null +++ b/allure-report/data/test-cases/33e90a465d3b6e95.json @@ -0,0 +1 @@ +{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7b13f1197b1367b6","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"30218f5e2dbf6894","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a70ffb4d0a92e5c8","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"33e90a465d3b6e95.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98d0f495e6dcba7e.json b/allure-report/data/test-cases/33fff97900a7d8bc.json similarity index 61% rename from allure-report/data/test-cases/98d0f495e6dcba7e.json rename to allure-report/data/test-cases/33fff97900a7d8bc.json index bcc32e2bd1f..c02695af556 100644 --- a/allure-report/data/test-cases/98d0f495e6dcba7e.json +++ b/allure-report/data/test-cases/33fff97900a7d8bc.json @@ -1 +1 @@ -{"uid":"98d0f495e6dcba7e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62bd346b3a261fc6","name":"stdout","source":"62bd346b3a261fc6.txt","type":"text/plain","size":676}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"252f381a068f762f","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":"98d0f495e6dcba7e.json","parameterValues":[]} \ No newline at end of file +{"uid":"33fff97900a7d8bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d5a8c5ce62738a7","name":"stdout","source":"5d5a8c5ce62738a7.txt","type":"text/plain","size":676}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"33fff97900a7d8bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c38060cc376f686.json b/allure-report/data/test-cases/342dee44f5f15fde.json similarity index 56% rename from allure-report/data/test-cases/9c38060cc376f686.json rename to allure-report/data/test-cases/342dee44f5f15fde.json index ca0f8da7bf9..32f18939b58 100644 --- a/allure-report/data/test-cases/9c38060cc376f686.json +++ b/allure-report/data/test-cases/342dee44f5f15fde.json @@ -1 +1 @@ -{"uid":"9c38060cc376f686","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5fc827b08877ee80","name":"stdout","source":"5fc827b08877ee80.txt","type":"text/plain","size":131}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c2776ae7e29336e9","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"9c38060cc376f686.json","parameterValues":[]} \ No newline at end of file +{"uid":"342dee44f5f15fde","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5e25d7437b08e659","name":"stdout","source":"5e25d7437b08e659.txt","type":"text/plain","size":131}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"342dee44f5f15fde.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/345a3bae73357330.json b/allure-report/data/test-cases/345a3bae73357330.json new file mode 100644 index 00000000000..05e90f5b516 --- /dev/null +++ b/allure-report/data/test-cases/345a3bae73357330.json @@ -0,0 +1 @@ +{"uid":"345a3bae73357330","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":1732428196265,"stop":1732428196265,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1506cf302ecd21f1","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"38b436d46d6537ee","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c35da98b55fb5e6b","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"345a3bae73357330.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/398c0a461bbe2313.json b/allure-report/data/test-cases/34783e6754d286ec.json similarity index 75% rename from allure-report/data/test-cases/398c0a461bbe2313.json rename to allure-report/data/test-cases/34783e6754d286ec.json index c41953b2747..62d11344364 100644 --- a/allure-report/data/test-cases/398c0a461bbe2313.json +++ b/allure-report/data/test-cases/34783e6754d286ec.json @@ -1 +1 @@ -{"uid":"398c0a461bbe2313","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b013d563709aaa2b","name":"stdout","source":"b013d563709aaa2b.txt","type":"text/plain","size":150}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"398c0a461bbe2313.json","parameterValues":[]} \ No newline at end of file +{"uid":"34783e6754d286ec","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9047acd474e52c7c","name":"stdout","source":"9047acd474e52c7c.txt","type":"text/plain","size":150}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"34783e6754d286ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34a84f898de954b5.json b/allure-report/data/test-cases/34a84f898de954b5.json new file mode 100644 index 00000000000..a08d9c9cb02 --- /dev/null +++ b/allure-report/data/test-cases/34a84f898de954b5.json @@ -0,0 +1 @@ +{"uid":"34a84f898de954b5","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732428194619,"stop":1732428194619,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732428194618,"stop":1732428194618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1732428194621,"stop":1732428194621,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e186c7a758de768a","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"9348c64cc78f5d13","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"34a84f898de954b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3529b67f8df1184b.json b/allure-report/data/test-cases/3529b67f8df1184b.json new file mode 100644 index 00000000000..ebb9f44f2fe --- /dev/null +++ b/allure-report/data/test-cases/3529b67f8df1184b.json @@ -0,0 +1 @@ +{"uid":"3529b67f8df1184b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732428195975,"stop":1732428195975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Sort Out The Men From Boys"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Lists"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4d9b4f519ec1ce3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"80598dcd2309aaf9","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e5ae32dea8d8e5c3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"3529b67f8df1184b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7b9876690035f17.json b/allure-report/data/test-cases/35836d979e37575.json similarity index 68% rename from allure-report/data/test-cases/7b9876690035f17.json rename to allure-report/data/test-cases/35836d979e37575.json index 1a1629f4efb..1427de9d15c 100644 --- a/allure-report/data/test-cases/7b9876690035f17.json +++ b/allure-report/data/test-cases/35836d979e37575.json @@ -1 +1 @@ -{"uid":"7b9876690035f17","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f52a9aa50bef455","name":"stdout","source":"7f52a9aa50bef455.txt","type":"text/plain","size":1009}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"7b9876690035f17.json","parameterValues":[]} \ No newline at end of file +{"uid":"35836d979e37575","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67751593ff534b14","name":"stdout","source":"67751593ff534b14.txt","type":"text/plain","size":1009}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"35836d979e37575.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35f08e300f5635d6.json b/allure-report/data/test-cases/35f08e300f5635d6.json new file mode 100644 index 00000000000..00ca86acc3d --- /dev/null +++ b/allure-report/data/test-cases/35f08e300f5635d6.json @@ -0,0 +1 @@ +{"uid":"35f08e300f5635d6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19b258c1195772c5","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"3287e9af1a22ed8b","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"504baf7c4d256536","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"35f08e300f5635d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36685d778f756fae.json b/allure-report/data/test-cases/36685d778f756fae.json new file mode 100644 index 00000000000..3d9e0c2a315 --- /dev/null +++ b/allure-report/data/test-cases/36685d778f756fae.json @@ -0,0 +1 @@ +{"uid":"36685d778f756fae","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":1732428196138,"stop":1732428196139,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"108dd2ab8a90859d","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"2f4ba657dc51e0d2","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7c3ec7eab2e0be6d","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"36685d778f756fae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/368118acc0dadb7d.json b/allure-report/data/test-cases/368118acc0dadb7d.json new file mode 100644 index 00000000000..cf073b4c4e8 --- /dev/null +++ b/allure-report/data/test-cases/368118acc0dadb7d.json @@ -0,0 +1 @@ +{"uid":"368118acc0dadb7d","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4a8605181ed2d7","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"8dea57e5544d4774","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"4fb2a019463cdbdf","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"368118acc0dadb7d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/369d691aa58bf89d.json b/allure-report/data/test-cases/369d691aa58bf89d.json deleted file mode 100644 index 3da71cf73a6..00000000000 --- a/allure-report/data/test-cases/369d691aa58bf89d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"369d691aa58bf89d","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"894de7f1e428d962","name":"stdout","source":"894de7f1e428d962.txt","type":"text/plain","size":311}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddd327d6f403c655","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"369d691aa58bf89d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1ce4d34a0cdd5eb.json b/allure-report/data/test-cases/36b60db7bef82294.json similarity index 64% rename from allure-report/data/test-cases/b1ce4d34a0cdd5eb.json rename to allure-report/data/test-cases/36b60db7bef82294.json index 7b8ff09cc18..9eafca65175 100644 --- a/allure-report/data/test-cases/b1ce4d34a0cdd5eb.json +++ b/allure-report/data/test-cases/36b60db7bef82294.json @@ -1 +1 @@ -{"uid":"b1ce4d34a0cdd5eb","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3c7f9bf2787b94f7","name":"stdout","source":"3c7f9bf2787b94f7.txt","type":"text/plain","size":353}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"b1ce4d34a0cdd5eb.json","parameterValues":[]} \ No newline at end of file +{"uid":"36b60db7bef82294","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d216ad47549f357","name":"stdout","source":"6d216ad47549f357.txt","type":"text/plain","size":353}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"36b60db7bef82294.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36b7cb5a27235272.json b/allure-report/data/test-cases/36b7cb5a27235272.json new file mode 100644 index 00000000000..0344fb881c6 --- /dev/null +++ b/allure-report/data/test-cases/36b7cb5a27235272.json @@ -0,0 +1 @@ +{"uid":"36b7cb5a27235272","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732428196200,"stop":1732428196200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6fab27b83e3ab13","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"100aeca8c0207022","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"afce902b58f1520a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"36b7cb5a27235272.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/371c743cf6f64f1d.json b/allure-report/data/test-cases/371c743cf6f64f1d.json new file mode 100644 index 00000000000..1743d6e1f67 --- /dev/null +++ b/allure-report/data/test-cases/371c743cf6f64f1d.json @@ -0,0 +1 @@ +{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d7f7d9659ba7dd5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"4961a0c52d810ec1","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"26cf86ca9eda4b5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"371c743cf6f64f1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37b95a78feb35857.json b/allure-report/data/test-cases/37b95a78feb35857.json deleted file mode 100644 index 7c7d402b6ff..00000000000 --- a/allure-report/data/test-cases/37b95a78feb35857.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"37b95a78feb35857","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47eb10d648ead31b","name":"stdout","source":"47eb10d648ead31b.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":12,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"72010ab4f2692ae4","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bc3230f80ad8864d","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"37b95a78feb35857.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d05bbd591902299.json b/allure-report/data/test-cases/37f24af32c057862.json similarity index 92% rename from allure-report/data/test-cases/8d05bbd591902299.json rename to allure-report/data/test-cases/37f24af32c057862.json index 1a8b9042acd..79c37159f34 100644 --- a/allure-report/data/test-cases/8d05bbd591902299.json +++ b/allure-report/data/test-cases/37f24af32c057862.json @@ -1 +1 @@ -{"uid":"8d05bbd591902299","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":"8d05bbd591902299.json","parameterValues":[]} \ No newline at end of file +{"uid":"37f24af32c057862","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":"37f24af32c057862.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38365b0f6f350ca5.json b/allure-report/data/test-cases/38365b0f6f350ca5.json new file mode 100644 index 00000000000..399ae11c850 --- /dev/null +++ b/allure-report/data/test-cases/38365b0f6f350ca5.json @@ -0,0 +1 @@ +{"uid":"38365b0f6f350ca5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ff678a4c7734b0","name":"stdout","source":"1ff678a4c7734b0.txt","type":"text/plain","size":554}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"38365b0f6f350ca5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7f4165c790464aa.json b/allure-report/data/test-cases/38b436d46d6537ee.json similarity index 61% rename from allure-report/data/test-cases/e7f4165c790464aa.json rename to allure-report/data/test-cases/38b436d46d6537ee.json index f6b439ef12b..060d186231f 100644 --- a/allure-report/data/test-cases/e7f4165c790464aa.json +++ b/allure-report/data/test-cases/38b436d46d6537ee.json @@ -1 +1 @@ -{"uid":"e7f4165c790464aa","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d9e1cc8a9d47ef26","name":"stdout","source":"d9e1cc8a9d47ef26.txt","type":"text/plain","size":480}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e7f4165c790464aa.json","parameterValues":[]} \ No newline at end of file +{"uid":"38b436d46d6537ee","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a40dc509f3c7162d","name":"stdout","source":"a40dc509f3c7162d.txt","type":"text/plain","size":480}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"38b436d46d6537ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e03974f538ea8ee6.json b/allure-report/data/test-cases/39376204dc517df6.json similarity index 67% rename from allure-report/data/test-cases/e03974f538ea8ee6.json rename to allure-report/data/test-cases/39376204dc517df6.json index 7b2eb1dbba5..2c7b0370170 100644 --- a/allure-report/data/test-cases/e03974f538ea8ee6.json +++ b/allure-report/data/test-cases/39376204dc517df6.json @@ -1 +1 @@ -{"uid":"e03974f538ea8ee6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"56a8d88c2e7e082f","name":"stdout","source":"56a8d88c2e7e082f.txt","type":"text/plain","size":639}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1728ec761d912068","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"acc95e26a53d92ff","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"e03974f538ea8ee6.json","parameterValues":[]} \ No newline at end of file +{"uid":"39376204dc517df6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8d52b389398fe1ce","name":"stdout","source":"8d52b389398fe1ce.txt","type":"text/plain","size":639}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"39376204dc517df6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/103efa7b767774fa.json b/allure-report/data/test-cases/39a19c10cf88efee.json similarity index 57% rename from allure-report/data/test-cases/103efa7b767774fa.json rename to allure-report/data/test-cases/39a19c10cf88efee.json index 83a565835db..0ce48bf2a99 100644 --- a/allure-report/data/test-cases/103efa7b767774fa.json +++ b/allure-report/data/test-cases/39a19c10cf88efee.json @@ -1 +1 @@ -{"uid":"103efa7b767774fa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"737f4d50843fbb5","name":"stdout","source":"737f4d50843fbb5.txt","type":"text/plain","size":392}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"103efa7b767774fa.json","parameterValues":[]} \ No newline at end of file +{"uid":"39a19c10cf88efee","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"394707a7900b643f","name":"stdout","source":"394707a7900b643f.txt","type":"text/plain","size":392}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"39a19c10cf88efee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af580569ddf3e366.json b/allure-report/data/test-cases/3a0034b3910c9f0c.json similarity index 65% rename from allure-report/data/test-cases/af580569ddf3e366.json rename to allure-report/data/test-cases/3a0034b3910c9f0c.json index 3a32da51c3f..a46b48d2329 100644 --- a/allure-report/data/test-cases/af580569ddf3e366.json +++ b/allure-report/data/test-cases/3a0034b3910c9f0c.json @@ -1 +1 @@ -{"uid":"af580569ddf3e366","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cd9f556fe34434c9","name":"stdout","source":"cd9f556fe34434c9.txt","type":"text/plain","size":142}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31f6e05cb2bf8e17","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"af580569ddf3e366.json","parameterValues":[]} \ No newline at end of file +{"uid":"3a0034b3910c9f0c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"27df6f7a31afa4ff","name":"stdout","source":"27df6f7a31afa4ff.txt","type":"text/plain","size":142}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"3a0034b3910c9f0c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a2392b112899a67.json b/allure-report/data/test-cases/3a2392b112899a67.json deleted file mode 100644 index 9511b5de9d9..00000000000 --- a/allure-report/data/test-cases/3a2392b112899a67.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3a2392b112899a67","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"33928ceb3bfb16f9","name":"stdout","source":"33928ceb3bfb16f9.txt","type":"text/plain","size":992}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"edde73c32cfd2214","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"3a2392b112899a67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/311e6a6343f5272c.json b/allure-report/data/test-cases/3aa67525242f5614.json similarity index 92% rename from allure-report/data/test-cases/311e6a6343f5272c.json rename to allure-report/data/test-cases/3aa67525242f5614.json index 1c6cd98b7cb..a4b9ac7be8f 100644 --- a/allure-report/data/test-cases/311e6a6343f5272c.json +++ b/allure-report/data/test-cases/3aa67525242f5614.json @@ -1 +1 @@ -{"uid":"311e6a6343f5272c","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"311e6a6343f5272c.json","parameterValues":[]} \ No newline at end of file +{"uid":"3aa67525242f5614","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"3aa67525242f5614.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ae9a46b9a1e7c40.json b/allure-report/data/test-cases/3ae9a46b9a1e7c40.json new file mode 100644 index 00000000000..32153eb0187 --- /dev/null +++ b/allure-report/data/test-cases/3ae9a46b9a1e7c40.json @@ -0,0 +1 @@ +{"uid":"3ae9a46b9a1e7c40","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":1732428195641,"stop":1732428195641,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195643,"stop":1732428195643,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3c17e0f5363e3016","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"d42759854937ade9","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"98200e3d5ae32ca","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3ae9a46b9a1e7c40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b395c1683e127a4.json b/allure-report/data/test-cases/3b395c1683e127a4.json new file mode 100644 index 00000000000..6cd2fbfff54 --- /dev/null +++ b/allure-report/data/test-cases/3b395c1683e127a4.json @@ -0,0 +1 @@ +{"uid":"3b395c1683e127a4","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":1732428195740,"stop":1732428195740,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"409a2a4f316497c6","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"a8ef326c3cb7b77c","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"449aa1de0e8221e9","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"3b395c1683e127a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39c69409f76377e7.json b/allure-report/data/test-cases/3b580876a88f5382.json similarity index 55% rename from allure-report/data/test-cases/39c69409f76377e7.json rename to allure-report/data/test-cases/3b580876a88f5382.json index 25faabb0870..39ea682937b 100644 --- a/allure-report/data/test-cases/39c69409f76377e7.json +++ b/allure-report/data/test-cases/3b580876a88f5382.json @@ -1 +1 @@ -{"uid":"39c69409f76377e7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1569f62e2424ff1a","name":"stdout","source":"1569f62e2424ff1a.txt","type":"text/plain","size":27}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"266702a52edb0749","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":[]},"source":"39c69409f76377e7.json","parameterValues":[]} \ No newline at end of file +{"uid":"3b580876a88f5382","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e3a1df6b2bd53059","name":"stdout","source":"e3a1df6b2bd53059.txt","type":"text/plain","size":27}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b580876a88f5382.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b89778e0f9a0b66.json b/allure-report/data/test-cases/3b89778e0f9a0b66.json new file mode 100644 index 00000000000..84551939a58 --- /dev/null +++ b/allure-report/data/test-cases/3b89778e0f9a0b66.json @@ -0,0 +1 @@ +{"uid":"3b89778e0f9a0b66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195833,"stop":1732428195833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fda510dc29832db","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"bf6ae18a8ec3d384","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"eb3e9f6b3780b454","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"3b89778e0f9a0b66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/801bdccb4e1aa824.json b/allure-report/data/test-cases/3c0afff932465669.json similarity index 65% rename from allure-report/data/test-cases/801bdccb4e1aa824.json rename to allure-report/data/test-cases/3c0afff932465669.json index 8027dbc354b..1fc9fa46a1d 100644 --- a/allure-report/data/test-cases/801bdccb4e1aa824.json +++ b/allure-report/data/test-cases/3c0afff932465669.json @@ -1 +1 @@ -{"uid":"801bdccb4e1aa824","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":"47a613697aa0c71f","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":0,"unknown":0,"total":2},"items":[{"uid":"92b17e5074e54ef7","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":"801bdccb4e1aa824.json","parameterValues":[]} \ No newline at end of file +{"uid":"3c0afff932465669","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":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":"3c0afff932465669.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c17e0f5363e3016.json b/allure-report/data/test-cases/3c17e0f5363e3016.json new file mode 100644 index 00000000000..d6a58039119 --- /dev/null +++ b/allure-report/data/test-cases/3c17e0f5363e3016.json @@ -0,0 +1 @@ +{"uid":"3c17e0f5363e3016","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2bee8bc5b94972e3","name":"stdout","source":"2bee8bc5b94972e3.txt","type":"text/plain","size":12051}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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 PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3c17e0f5363e3016.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c3a8d947ad77b59.json b/allure-report/data/test-cases/3c3a8d947ad77b59.json new file mode 100644 index 00000000000..1e13bb84dbe --- /dev/null +++ b/allure-report/data/test-cases/3c3a8d947ad77b59.json @@ -0,0 +1 @@ +{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732428196069,"stop":1732428196069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fbd7acf611333772","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"b01c60cc4e07480b","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"14d00f76e0b4f9e4","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"3c3a8d947ad77b59.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20308d2341c6b899.json b/allure-report/data/test-cases/3c944fe792fcd179.json similarity index 94% rename from allure-report/data/test-cases/20308d2341c6b899.json rename to allure-report/data/test-cases/3c944fe792fcd179.json index 35c5835e4bb..f968a4a711a 100644 --- a/allure-report/data/test-cases/20308d2341c6b899.json +++ b/allure-report/data/test-cases/3c944fe792fcd179.json @@ -1 +1 @@ -{"uid":"20308d2341c6b899","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":"20308d2341c6b899.json","parameterValues":[]} \ No newline at end of file +{"uid":"3c944fe792fcd179","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":"3c944fe792fcd179.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b3bd0a5ea1aa072.json b/allure-report/data/test-cases/3cb4765f4f4fe8e7.json similarity index 60% rename from allure-report/data/test-cases/1b3bd0a5ea1aa072.json rename to allure-report/data/test-cases/3cb4765f4f4fe8e7.json index 9be4f3ee3f5..853bbc5d9ba 100644 --- a/allure-report/data/test-cases/1b3bd0a5ea1aa072.json +++ b/allure-report/data/test-cases/3cb4765f4f4fe8e7.json @@ -1 +1 @@ -{"uid":"1b3bd0a5ea1aa072","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"35b0040677726bbd","name":"stdout","source":"35b0040677726bbd.txt","type":"text/plain","size":22}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"a381266642fdbdd2","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2030ea00b6998f67","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"1b3bd0a5ea1aa072.json","parameterValues":[]} \ No newline at end of file +{"uid":"3cb4765f4f4fe8e7","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"69b865faf74786aa","name":"stdout","source":"69b865faf74786aa.txt","type":"text/plain","size":22}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"3cb4765f4f4fe8e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1571db34190da47.json b/allure-report/data/test-cases/3cd6da35a1920265.json similarity index 73% rename from allure-report/data/test-cases/a1571db34190da47.json rename to allure-report/data/test-cases/3cd6da35a1920265.json index 0b54612d5e1..b2630267d02 100644 --- a/allure-report/data/test-cases/a1571db34190da47.json +++ b/allure-report/data/test-cases/3cd6da35a1920265.json @@ -1 +1 @@ -{"uid":"a1571db34190da47","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"f522ce9854634cf6","name":"stdout","source":"f522ce9854634cf6.txt","type":"text/plain","size":146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"a1571db34190da47.json","parameterValues":[]} \ No newline at end of file +{"uid":"3cd6da35a1920265","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ce2512d2a26a891e","name":"stdout","source":"ce2512d2a26a891e.txt","type":"text/plain","size":146}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"3cd6da35a1920265.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cabe377ec9af3c98.json b/allure-report/data/test-cases/3d13030ecd2583e8.json similarity index 68% rename from allure-report/data/test-cases/cabe377ec9af3c98.json rename to allure-report/data/test-cases/3d13030ecd2583e8.json index 73f28058cd9..f50d979dd03 100644 --- a/allure-report/data/test-cases/cabe377ec9af3c98.json +++ b/allure-report/data/test-cases/3d13030ecd2583e8.json @@ -1 +1 @@ -{"uid":"cabe377ec9af3c98","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"292d200c224939da","name":"stdout","source":"292d200c224939da.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"cabe377ec9af3c98.json","parameterValues":[]} \ No newline at end of file +{"uid":"3d13030ecd2583e8","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1dc0d1d2e3a97f3c","name":"stdout","source":"1dc0d1d2e3a97f3c.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"3d13030ecd2583e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d4f8cb2de087cf.json b/allure-report/data/test-cases/3d4f8cb2de087cf.json new file mode 100644 index 00000000000..187578d715c --- /dev/null +++ b/allure-report/data/test-cases/3d4f8cb2de087cf.json @@ -0,0 +1 @@ +{"uid":"3d4f8cb2de087cf","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77adc248069b48d7","name":"stdout","source":"77adc248069b48d7.txt","type":"text/plain","size":410}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"3d4f8cb2de087cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/996165a0ada95681.json b/allure-report/data/test-cases/3d6e5f0961d8c06a.json similarity index 63% rename from allure-report/data/test-cases/996165a0ada95681.json rename to allure-report/data/test-cases/3d6e5f0961d8c06a.json index 49dd7945e72..520792833c0 100644 --- a/allure-report/data/test-cases/996165a0ada95681.json +++ b/allure-report/data/test-cases/3d6e5f0961d8c06a.json @@ -1 +1 @@ -{"uid":"996165a0ada95681","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"257782fa3edc8402","name":"stdout","source":"257782fa3edc8402.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fa0c36654622313","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"996165a0ada95681.json","parameterValues":[]} \ No newline at end of file +{"uid":"3d6e5f0961d8c06a","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"464f7036130e9df9","name":"stdout","source":"464f7036130e9df9.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3d6e5f0961d8c06a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e354a7b4ef8aa9f.json b/allure-report/data/test-cases/3e354a7b4ef8aa9f.json deleted file mode 100644 index 7f5807bdeab..00000000000 --- a/allure-report/data/test-cases/3e354a7b4ef8aa9f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3e354a7b4ef8aa9f","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cab012145f3c31e","name":"stdout","source":"cab012145f3c31e.txt","type":"text/plain","size":96}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3e354a7b4ef8aa9f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e68653192929d9b.json b/allure-report/data/test-cases/3e68653192929d9b.json new file mode 100644 index 00000000000..05a61141031 --- /dev/null +++ b/allure-report/data/test-cases/3e68653192929d9b.json @@ -0,0 +1 @@ +{"uid":"3e68653192929d9b","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7a63127b0ec26d9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"73100341c811e8de","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"95011c2c3c205658","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"3e68653192929d9b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e8741eae0b44214.json b/allure-report/data/test-cases/3e8741eae0b44214.json new file mode 100644 index 00000000000..3f3ff6aa7ea --- /dev/null +++ b/allure-report/data/test-cases/3e8741eae0b44214.json @@ -0,0 +1 @@ +{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1732428193985,"stop":1732428193985,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"827104e07f2ca2d0","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"614d8ec123787b56","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7b2352a8e3675c67","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"3e8741eae0b44214.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14d24a2946d66b00.json b/allure-report/data/test-cases/3ec407d8e8742f0d.json similarity index 55% rename from allure-report/data/test-cases/14d24a2946d66b00.json rename to allure-report/data/test-cases/3ec407d8e8742f0d.json index 1b3f7969c12..6b3dfe50ec6 100644 --- a/allure-report/data/test-cases/14d24a2946d66b00.json +++ b/allure-report/data/test-cases/3ec407d8e8742f0d.json @@ -1 +1 @@ -{"uid":"14d24a2946d66b00","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"207d1fd44f82d410","name":"stdout","source":"207d1fd44f82d410.txt","type":"text/plain","size":1367}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13e77cd2d97ddcd8","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["SORTING","ALGORITHMS"]},"source":"14d24a2946d66b00.json","parameterValues":[]} \ No newline at end of file +{"uid":"3ec407d8e8742f0d","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"486146c7b14fd6fd","name":"stdout","source":"486146c7b14fd6fd.txt","type":"text/plain","size":1367}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"3ec407d8e8742f0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82e3ff5b5bd4ac62.json b/allure-report/data/test-cases/3ee1470ea7ce07a6.json similarity index 68% rename from allure-report/data/test-cases/82e3ff5b5bd4ac62.json rename to allure-report/data/test-cases/3ee1470ea7ce07a6.json index aa6fcd67e2b..c8bb764aa71 100644 --- a/allure-report/data/test-cases/82e3ff5b5bd4ac62.json +++ b/allure-report/data/test-cases/3ee1470ea7ce07a6.json @@ -1 +1 @@ -{"uid":"82e3ff5b5bd4ac62","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"95eee5a3754aa8a2","name":"stdout","source":"95eee5a3754aa8a2.txt","type":"text/plain","size":111}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"82e3ff5b5bd4ac62.json","parameterValues":[]} \ No newline at end of file +{"uid":"3ee1470ea7ce07a6","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dcb5cf58cdd3658a","name":"stdout","source":"dcb5cf58cdd3658a.txt","type":"text/plain","size":111}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"3ee1470ea7ce07a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3eea5577d98c581f.json b/allure-report/data/test-cases/3eea5577d98c581f.json new file mode 100644 index 00000000000..f20cc12171a --- /dev/null +++ b/allure-report/data/test-cases/3eea5577d98c581f.json @@ -0,0 +1 @@ +{"uid":"3eea5577d98c581f","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":1732428195495,"stop":1732428195495,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4304a318e243c50","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"67f932ff555edbd0","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b8b1a20b1ac22e64","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"3eea5577d98c581f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f3af6e95d4ded07.json b/allure-report/data/test-cases/3f2abb7dc9376332.json similarity index 75% rename from allure-report/data/test-cases/3f3af6e95d4ded07.json rename to allure-report/data/test-cases/3f2abb7dc9376332.json index a2cbdf58425..08d181b20ed 100644 --- a/allure-report/data/test-cases/3f3af6e95d4ded07.json +++ b/allure-report/data/test-cases/3f2abb7dc9376332.json @@ -1 +1 @@ -{"uid":"3f3af6e95d4ded07","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5767980cac6ccce8","name":"stdout","source":"5767980cac6ccce8.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f3af6e95d4ded07.json","parameterValues":[]} \ No newline at end of file +{"uid":"3f2abb7dc9376332","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"215c30a7cf2d2e11","name":"stdout","source":"215c30a7cf2d2e11.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f2abb7dc9376332.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c922c5f58027b49.json b/allure-report/data/test-cases/3f94de18ab2e95fb.json similarity index 58% rename from allure-report/data/test-cases/1c922c5f58027b49.json rename to allure-report/data/test-cases/3f94de18ab2e95fb.json index 47e56281e5e..dd1df8686b6 100644 --- a/allure-report/data/test-cases/1c922c5f58027b49.json +++ b/allure-report/data/test-cases/3f94de18ab2e95fb.json @@ -1 +1 @@ -{"uid":"1c922c5f58027b49","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba01f85fc1c9de89","name":"stdout","source":"ba01f85fc1c9de89.txt","type":"text/plain","size":96}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e354a7b4ef8aa9f","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1c922c5f58027b49.json","parameterValues":[]} \ No newline at end of file +{"uid":"3f94de18ab2e95fb","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f180498d197d8df1","name":"stdout","source":"f180498d197d8df1.txt","type":"text/plain","size":96}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f94de18ab2e95fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4c41912963969d7.json b/allure-report/data/test-cases/3fd800b8d3602698.json similarity index 65% rename from allure-report/data/test-cases/d4c41912963969d7.json rename to allure-report/data/test-cases/3fd800b8d3602698.json index 82ac2cb1fbf..1e368ea2f44 100644 --- a/allure-report/data/test-cases/d4c41912963969d7.json +++ b/allure-report/data/test-cases/3fd800b8d3602698.json @@ -1 +1 @@ -{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"143162d049c6ebb2","name":"stdout","source":"143162d049c6ebb2.txt","type":"text/plain","size":354}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c707b9e0a465edac","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"d4c41912963969d7.json","parameterValues":[]} \ No newline at end of file +{"uid":"3fd800b8d3602698","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5a2b8e600c203d1","name":"stdout","source":"f5a2b8e600c203d1.txt","type":"text/plain","size":354}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"3fd800b8d3602698.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ffa72675847f113.json b/allure-report/data/test-cases/3ffa72675847f113.json new file mode 100644 index 00000000000..617329384ce --- /dev/null +++ b/allure-report/data/test-cases/3ffa72675847f113.json @@ -0,0 +1 @@ +{"uid":"3ffa72675847f113","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":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732428195758,"stop":1732428195758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1732428195762,"stop":1732428195762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a1c24c0cb125454","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"3ffa72675847f113.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4045abc0bf075d90.json b/allure-report/data/test-cases/4045abc0bf075d90.json new file mode 100644 index 00000000000..3b6069a6981 --- /dev/null +++ b/allure-report/data/test-cases/4045abc0bf075d90.json @@ -0,0 +1 @@ +{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732428196409,"stop":1732428196409,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732428196411,"stop":1732428196411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51e0b16785f0d461","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"77e868a9cd944330","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"54942c51ed88331c","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"4045abc0bf075d90.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/405cf642fa0cf7c1.json b/allure-report/data/test-cases/405cf642fa0cf7c1.json new file mode 100644 index 00000000000..dc0ae2f547e --- /dev/null +++ b/allure-report/data/test-cases/405cf642fa0cf7c1.json @@ -0,0 +1 @@ +{"uid":"405cf642fa0cf7c1","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"416790ca79634ed0","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"86b489ae6b8c1d23","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"83105e24306c53ac","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"405cf642fa0cf7c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e940c353ac4ade9.json b/allure-report/data/test-cases/4073719ea3c0e8fe.json similarity index 91% rename from allure-report/data/test-cases/6e940c353ac4ade9.json rename to allure-report/data/test-cases/4073719ea3c0e8fe.json index 208e9bd5e69..8efb7338af8 100644 --- a/allure-report/data/test-cases/6e940c353ac4ade9.json +++ b/allure-report/data/test-cases/4073719ea3c0e8fe.json @@ -1 +1 @@ -{"uid":"6e940c353ac4ade9","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"6e940c353ac4ade9.json","parameterValues":[]} \ No newline at end of file +{"uid":"4073719ea3c0e8fe","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"4073719ea3c0e8fe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40819c186d07d3de.json b/allure-report/data/test-cases/40819c186d07d3de.json new file mode 100644 index 00000000000..d17b36bb451 --- /dev/null +++ b/allure-report/data/test-cases/40819c186d07d3de.json @@ -0,0 +1 @@ +{"uid":"40819c186d07d3de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bb1a14f7acaf229","name":"stdout","source":"bb1a14f7acaf229.txt","type":"text/plain","size":302}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"40819c186d07d3de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/449aa1de0e8221e9.json b/allure-report/data/test-cases/409a2a4f316497c6.json similarity index 57% rename from allure-report/data/test-cases/449aa1de0e8221e9.json rename to allure-report/data/test-cases/409a2a4f316497c6.json index af98564cdbd..940e6fd68c6 100644 --- a/allure-report/data/test-cases/449aa1de0e8221e9.json +++ b/allure-report/data/test-cases/409a2a4f316497c6.json @@ -1 +1 @@ -{"uid":"449aa1de0e8221e9","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6886fc4b238144c3","name":"stdout","source":"6886fc4b238144c3.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"80dd204b4961834","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"449aa1de0e8221e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"409a2a4f316497c6","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a648c0041b64d7a8","name":"stdout","source":"a648c0041b64d7a8.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"409a2a4f316497c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40c938f8f83f34f7.json b/allure-report/data/test-cases/40c938f8f83f34f7.json new file mode 100644 index 00000000000..a8ce806400d --- /dev/null +++ b/allure-report/data/test-cases/40c938f8f83f34f7.json @@ -0,0 +1 @@ +{"uid":"40c938f8f83f34f7","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":1732428194567,"stop":1732428194567,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732428194566,"stop":1732428194566,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1732428194569,"stop":1732428194569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7d905be84b5c0b77","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"16a9ca9919e5cef5","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"40c938f8f83f34f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/413fd3063d3e7dc4.json b/allure-report/data/test-cases/413fd3063d3e7dc4.json new file mode 100644 index 00000000000..ed82539be85 --- /dev/null +++ b/allure-report/data/test-cases/413fd3063d3e7dc4.json @@ -0,0 +1 @@ +{"uid":"413fd3063d3e7dc4","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":1732428193933,"stop":1732428193934,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on positive grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"85df8de56a96ab7c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"af4da168bd187f62","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":1,"unknown":0,"total":3},"items":[{"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":"413fd3063d3e7dc4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83105e24306c53ac.json b/allure-report/data/test-cases/416790ca79634ed0.json similarity index 57% rename from allure-report/data/test-cases/83105e24306c53ac.json rename to allure-report/data/test-cases/416790ca79634ed0.json index 2b920eb77ed..5900826d760 100644 --- a/allure-report/data/test-cases/83105e24306c53ac.json +++ b/allure-report/data/test-cases/416790ca79634ed0.json @@ -1 +1 @@ -{"uid":"83105e24306c53ac","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d682c96b1e76edae","name":"stdout","source":"d682c96b1e76edae.txt","type":"text/plain","size":1155}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed37a80783d347db","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"83105e24306c53ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"416790ca79634ed0","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e6328cf6a3bf7297","name":"stdout","source":"e6328cf6a3bf7297.txt","type":"text/plain","size":1155}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"416790ca79634ed0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/419686fbcf063822.json b/allure-report/data/test-cases/419686fbcf063822.json new file mode 100644 index 00000000000..5632569e629 --- /dev/null +++ b/allure-report/data/test-cases/419686fbcf063822.json @@ -0,0 +1 @@ +{"uid":"419686fbcf063822","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195989,"stop":1732428195989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195991,"stop":1732428195991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"302b8c55161cc361","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"8c72192846448826","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"419686fbcf063822.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41efd0d786aed73.json b/allure-report/data/test-cases/41efd0d786aed73.json deleted file mode 100644 index 33731f93b64..00000000000 --- a/allure-report/data/test-cases/41efd0d786aed73.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"41efd0d786aed73","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90ef8c17370e6610","name":"stdout","source":"90ef8c17370e6610.txt","type":"text/plain","size":640}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"650faaf602cc8f99","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d1585e7c78fd8d06","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"41efd0d786aed73.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/42383b817b641e4e.json b/allure-report/data/test-cases/42383b817b641e4e.json deleted file mode 100644 index 689d097f597..00000000000 --- a/allure-report/data/test-cases/42383b817b641e4e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb2891f4860c316","name":"stdout","source":"fb2891f4860c316.txt","type":"text/plain","size":299}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a93bd997ced3859a","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"tags":[]},"source":"42383b817b641e4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/428efcfcd43d2531.json b/allure-report/data/test-cases/428efcfcd43d2531.json new file mode 100644 index 00000000000..61625af506b --- /dev/null +++ b/allure-report/data/test-cases/428efcfcd43d2531.json @@ -0,0 +1 @@ +{"uid":"428efcfcd43d2531","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7bc78567c01b81e","name":"stdout","source":"7bc78567c01b81e.txt","type":"text/plain","size":401}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"428efcfcd43d2531.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/42bb8c96d4cb1bcf.json b/allure-report/data/test-cases/42bb8c96d4cb1bcf.json deleted file mode 100644 index 6742861f026..00000000000 --- a/allure-report/data/test-cases/42bb8c96d4cb1bcf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"42bb8c96d4cb1bcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9221a1b722d3e57e","name":"stdout","source":"9221a1b722d3e57e.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8baea38a8fa67e7e","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"42bb8c96d4cb1bcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43e7aaf3ed9f3ed0.json b/allure-report/data/test-cases/43e7aaf3ed9f3ed0.json new file mode 100644 index 00000000000..c8e788a26d0 --- /dev/null +++ b/allure-report/data/test-cases/43e7aaf3ed9f3ed0.json @@ -0,0 +1 @@ +{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732428194544,"stop":1732428194544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"702c9f7aebde64af","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"1c59e45321407518","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"31b67858aaa81503","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"43e7aaf3ed9f3ed0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0851c0ba53ec6a9.json b/allure-report/data/test-cases/4433323b946a1c32.json similarity index 64% rename from allure-report/data/test-cases/e0851c0ba53ec6a9.json rename to allure-report/data/test-cases/4433323b946a1c32.json index 4a53fdc4a35..19cb59cd217 100644 --- a/allure-report/data/test-cases/e0851c0ba53ec6a9.json +++ b/allure-report/data/test-cases/4433323b946a1c32.json @@ -1 +1 @@ -{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8c0f6bed7a29f7c","name":"stdout","source":"f8c0f6bed7a29f7c.txt","type":"text/plain","size":120}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fcd8cc6f9f4777c4","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":[]},"source":"e0851c0ba53ec6a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"4433323b946a1c32","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4988f81545fa9dcf","name":"stdout","source":"4988f81545fa9dcf.txt","type":"text/plain","size":120}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4433323b946a1c32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88c7e92ae3f035ea.json b/allure-report/data/test-cases/445f2e59cb6a4191.json similarity index 64% rename from allure-report/data/test-cases/88c7e92ae3f035ea.json rename to allure-report/data/test-cases/445f2e59cb6a4191.json index 26a17a3a152..f4bdc451ed8 100644 --- a/allure-report/data/test-cases/88c7e92ae3f035ea.json +++ b/allure-report/data/test-cases/445f2e59cb6a4191.json @@ -1 +1 @@ -{"uid":"88c7e92ae3f035ea","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":"22fcf1edf8ebf197","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"88c7e92ae3f035ea.json","parameterValues":[]} \ No newline at end of file +{"uid":"445f2e59cb6a4191","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":"445f2e59cb6a4191.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44c1e35d7a7b2adb.json b/allure-report/data/test-cases/44c1e35d7a7b2adb.json new file mode 100644 index 00000000000..3c5b25f5af4 --- /dev/null +++ b/allure-report/data/test-cases/44c1e35d7a7b2adb.json @@ -0,0 +1 @@ +{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732428195819,"stop":1732428195819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4433323b946a1c32","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"167f34fe4187417a","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e0851c0ba53ec6a9","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"44c1e35d7a7b2adb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9458c8615b9e985.json b/allure-report/data/test-cases/4544ac5de6415953.json similarity index 65% rename from allure-report/data/test-cases/d9458c8615b9e985.json rename to allure-report/data/test-cases/4544ac5de6415953.json index a6fab1d1e87..f679bb9b861 100644 --- a/allure-report/data/test-cases/d9458c8615b9e985.json +++ b/allure-report/data/test-cases/4544ac5de6415953.json @@ -1 +1 @@ -{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"7941ce7b9fdf9a23","name":"stdout","source":"7941ce7b9fdf9a23.txt","type":"text/plain","size":717}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a9f33e581ec48813","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"d9458c8615b9e985.json","parameterValues":[]} \ No newline at end of file +{"uid":"4544ac5de6415953","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"a3e3342383736358","name":"stdout","source":"a3e3342383736358.txt","type":"text/plain","size":717}],"parameters":[],"hasContent":true,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"4544ac5de6415953.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef7cb2e79441187e.json b/allure-report/data/test-cases/45f16c4708137d2d.json similarity index 65% rename from allure-report/data/test-cases/ef7cb2e79441187e.json rename to allure-report/data/test-cases/45f16c4708137d2d.json index b7f7db0e0ec..023601727a6 100644 --- a/allure-report/data/test-cases/ef7cb2e79441187e.json +++ b/allure-report/data/test-cases/45f16c4708137d2d.json @@ -1 +1 @@ -{"uid":"ef7cb2e79441187e","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e497f0d93067cd8e","name":"stdout","source":"e497f0d93067cd8e.txt","type":"text/plain","size":378}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ef7cb2e79441187e.json","parameterValues":[]} \ No newline at end of file +{"uid":"45f16c4708137d2d","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ec9f0fb81f46c5f","name":"stdout","source":"6ec9f0fb81f46c5f.txt","type":"text/plain","size":378}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"45f16c4708137d2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/461527a27e50c04a.json b/allure-report/data/test-cases/461527a27e50c04a.json new file mode 100644 index 00000000000..c4d40ba625a --- /dev/null +++ b/allure-report/data/test-cases/461527a27e50c04a.json @@ -0,0 +1 @@ +{"uid":"461527a27e50c04a","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732428194015,"stop":1732428194015,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1732428194017,"stop":1732428194017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ede6b0c38e1de853","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"35836d979e37575","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"461527a27e50c04a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ac9af93b3d2f297.json b/allure-report/data/test-cases/462780a7368c9ffd.json similarity index 56% rename from allure-report/data/test-cases/7ac9af93b3d2f297.json rename to allure-report/data/test-cases/462780a7368c9ffd.json index 6b176581742..92ec3bbd124 100644 --- a/allure-report/data/test-cases/7ac9af93b3d2f297.json +++ b/allure-report/data/test-cases/462780a7368c9ffd.json @@ -1 +1 @@ -{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d17644d369f719b5","name":"stdout","source":"d17644d369f719b5.txt","type":"text/plain","size":985}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6e797d850b813669","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7ac9af93b3d2f297.json","parameterValues":[]} \ No newline at end of file +{"uid":"462780a7368c9ffd","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef12aa7c4aaaeed2","name":"stdout","source":"ef12aa7c4aaaeed2.txt","type":"text/plain","size":985}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"462780a7368c9ffd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cdfe495bc85470d2.json b/allure-report/data/test-cases/47068bee5b06a234.json similarity index 58% rename from allure-report/data/test-cases/cdfe495bc85470d2.json rename to allure-report/data/test-cases/47068bee5b06a234.json index ed12150a44f..e8f3ee7457f 100644 --- a/allure-report/data/test-cases/cdfe495bc85470d2.json +++ b/allure-report/data/test-cases/47068bee5b06a234.json @@ -1 +1 @@ -{"uid":"cdfe495bc85470d2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e4b4c0a3aeae99e","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7d1621a20d6f8fe7","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"cdfe495bc85470d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"47068bee5b06a234","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"47068bee5b06a234.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4750955362b24610.json b/allure-report/data/test-cases/4750955362b24610.json new file mode 100644 index 00000000000..c583eb5dcf8 --- /dev/null +++ b/allure-report/data/test-cases/4750955362b24610.json @@ -0,0 +1 @@ +{"uid":"4750955362b24610","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732428195946,"stop":1732428195946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732428195947,"stop":1732428195947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Share prices"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cd9da9d797a3c2ab","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"33a4a469899e9868","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"884c8d1f852cc3dc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"4750955362b24610.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f81d7a6e8f8b1259.json b/allure-report/data/test-cases/47bce28013711283.json similarity index 74% rename from allure-report/data/test-cases/f81d7a6e8f8b1259.json rename to allure-report/data/test-cases/47bce28013711283.json index f5f45bd2e9e..30b149bc596 100644 --- a/allure-report/data/test-cases/f81d7a6e8f8b1259.json +++ b/allure-report/data/test-cases/47bce28013711283.json @@ -1 +1 @@ -{"uid":"f81d7a6e8f8b1259","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fde614c2efca69df","name":"stdout","source":"fde614c2efca69df.txt","type":"text/plain","size":272}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f81d7a6e8f8b1259.json","parameterValues":[]} \ No newline at end of file +{"uid":"47bce28013711283","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c6b281f58e4fbe3","name":"stdout","source":"8c6b281f58e4fbe3.txt","type":"text/plain","size":272}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"47bce28013711283.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47cc31f6ebf12c13.json b/allure-report/data/test-cases/47cc31f6ebf12c13.json new file mode 100644 index 00000000000..f35334246f0 --- /dev/null +++ b/allure-report/data/test-cases/47cc31f6ebf12c13.json @@ -0,0 +1 @@ +{"uid":"47cc31f6ebf12c13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c0d55ad9fdfb0f8a","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"33a7277db5231ef9","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a60fe7d0456e1873","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"47cc31f6ebf12c13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/972d0622d29729c4.json b/allure-report/data/test-cases/48abcc67292a5aa2.json similarity index 68% rename from allure-report/data/test-cases/972d0622d29729c4.json rename to allure-report/data/test-cases/48abcc67292a5aa2.json index 2d5860f1772..3a6164ca567 100644 --- a/allure-report/data/test-cases/972d0622d29729c4.json +++ b/allure-report/data/test-cases/48abcc67292a5aa2.json @@ -1 +1 @@ -{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1467bda4d9665eda","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"972d0622d29729c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"48abcc67292a5aa2","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"48abcc67292a5aa2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fa0c36654622313.json b/allure-report/data/test-cases/48ff8cbb530a1868.json similarity index 73% rename from allure-report/data/test-cases/5fa0c36654622313.json rename to allure-report/data/test-cases/48ff8cbb530a1868.json index 82b5c5ae863..3c7f7e67dfe 100644 --- a/allure-report/data/test-cases/5fa0c36654622313.json +++ b/allure-report/data/test-cases/48ff8cbb530a1868.json @@ -1 +1 @@ -{"uid":"5fa0c36654622313","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd3f4f217e87fedc","name":"stdout","source":"dd3f4f217e87fedc.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5fa0c36654622313.json","parameterValues":[]} \ No newline at end of file +{"uid":"48ff8cbb530a1868","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"54a6fca37064555a","name":"stdout","source":"54a6fca37064555a.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48ff8cbb530a1868.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5dad026541a05e65.json b/allure-report/data/test-cases/49355004a4136993.json similarity index 59% rename from allure-report/data/test-cases/5dad026541a05e65.json rename to allure-report/data/test-cases/49355004a4136993.json index dddac88a30a..bfdea462ad7 100644 --- a/allure-report/data/test-cases/5dad026541a05e65.json +++ b/allure-report/data/test-cases/49355004a4136993.json @@ -1 +1 @@ -{"uid":"5dad026541a05e65","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e46ecdc21febfa2d","name":"stdout","source":"e46ecdc21febfa2d.txt","type":"text/plain","size":3898}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b99ca9a8ecf19524","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"36b9e5073b489f49","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}}]},"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"5dad026541a05e65.json","parameterValues":[]} \ No newline at end of file +{"uid":"49355004a4136993","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e160bbe65fc37bcd","name":"stdout","source":"e160bbe65fc37bcd.txt","type":"text/plain","size":3898}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"49355004a4136993.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4942ac4be65ef1b0.json b/allure-report/data/test-cases/4942ac4be65ef1b0.json new file mode 100644 index 00000000000..e2e848b7755 --- /dev/null +++ b/allure-report/data/test-cases/4942ac4be65ef1b0.json @@ -0,0 +1 @@ +{"uid":"4942ac4be65ef1b0","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732428193998,"stop":1732428193998,"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', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f12b5c3f29ddd74a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"ef2d26c76c436892","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"4942ac4be65ef1b0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5eb9c17e95fe424.json b/allure-report/data/test-cases/4961a0c52d810ec1.json similarity index 79% rename from allure-report/data/test-cases/d5eb9c17e95fe424.json rename to allure-report/data/test-cases/4961a0c52d810ec1.json index 587351ef1f6..b7c6d3cb366 100644 --- a/allure-report/data/test-cases/d5eb9c17e95fe424.json +++ b/allure-report/data/test-cases/4961a0c52d810ec1.json @@ -1 +1 @@ -{"uid":"d5eb9c17e95fe424","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d5eb9c17e95fe424.json","parameterValues":[]} \ No newline at end of file +{"uid":"4961a0c52d810ec1","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"4961a0c52d810ec1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aacbcab78401e86c.json b/allure-report/data/test-cases/49fb68289fb078f8.json similarity index 71% rename from allure-report/data/test-cases/aacbcab78401e86c.json rename to allure-report/data/test-cases/49fb68289fb078f8.json index 50d26ab8b14..93c51e6b74f 100644 --- a/allure-report/data/test-cases/aacbcab78401e86c.json +++ b/allure-report/data/test-cases/49fb68289fb078f8.json @@ -1 +1 @@ -{"uid":"aacbcab78401e86c","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2c0b65a9daada0df","name":"stdout","source":"2c0b65a9daada0df.txt","type":"text/plain","size":1579}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"aacbcab78401e86c.json","parameterValues":[]} \ No newline at end of file +{"uid":"49fb68289fb078f8","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aef94a39bd8b19be","name":"stdout","source":"aef94a39bd8b19be.txt","type":"text/plain","size":1579}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"49fb68289fb078f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a35a10fb92b5fdb.json b/allure-report/data/test-cases/4a35a10fb92b5fdb.json new file mode 100644 index 00000000000..a68ef6b638f --- /dev/null +++ b/allure-report/data/test-cases/4a35a10fb92b5fdb.json @@ -0,0 +1 @@ +{"uid":"4a35a10fb92b5fdb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d918ffd5978feb","name":"stdout","source":"5d918ffd5978feb.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4a35a10fb92b5fdb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a386a153d4cde6.json b/allure-report/data/test-cases/4a386a153d4cde6.json new file mode 100644 index 00000000000..3ad7c3f3fe0 --- /dev/null +++ b/allure-report/data/test-cases/4a386a153d4cde6.json @@ -0,0 +1 @@ +{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732428195456,"stop":1732428195456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e97ebddff1ce0b6f","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"8c7db5518444ac71","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"19910c11538825d6","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"4a386a153d4cde6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5ae1235bc27ccba.json b/allure-report/data/test-cases/4aa405db56695158.json similarity index 58% rename from allure-report/data/test-cases/d5ae1235bc27ccba.json rename to allure-report/data/test-cases/4aa405db56695158.json index 6dc12686890..0c8b095f8fb 100644 --- a/allure-report/data/test-cases/d5ae1235bc27ccba.json +++ b/allure-report/data/test-cases/4aa405db56695158.json @@ -1 +1 @@ -{"uid":"d5ae1235bc27ccba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4144b9b4343fdd9e","name":"stdout","source":"4144b9b4343fdd9e.txt","type":"text/plain","size":302}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5321a1bb93b59f1e","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"tags":[]},"source":"d5ae1235bc27ccba.json","parameterValues":[]} \ No newline at end of file +{"uid":"4aa405db56695158","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ce1da867cdb9cd9","name":"stdout","source":"8ce1da867cdb9cd9.txt","type":"text/plain","size":302}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4aa405db56695158.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4aa537b5c88883a7.json b/allure-report/data/test-cases/4aa537b5c88883a7.json new file mode 100644 index 00000000000..0ca8e05d90e --- /dev/null +++ b/allure-report/data/test-cases/4aa537b5c88883a7.json @@ -0,0 +1 @@ +{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732428196475,"stop":1732428196475,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f1a24ca70fa28a4b","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"2dcd793cb9c1cce4","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7c2750d825fae93b","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"4aa537b5c88883a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/266702a52edb0749.json b/allure-report/data/test-cases/4ad4524b2ee92967.json similarity index 67% rename from allure-report/data/test-cases/266702a52edb0749.json rename to allure-report/data/test-cases/4ad4524b2ee92967.json index d100cfb227d..d59a397649a 100644 --- a/allure-report/data/test-cases/266702a52edb0749.json +++ b/allure-report/data/test-cases/4ad4524b2ee92967.json @@ -1 +1 @@ -{"uid":"266702a52edb0749","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cb5281dd2f2e56c3","name":"stdout","source":"cb5281dd2f2e56c3.txt","type":"text/plain","size":27}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"266702a52edb0749.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ad4524b2ee92967","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"45655b08b75495d0","name":"stdout","source":"45655b08b75495d0.txt","type":"text/plain","size":27}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4ad4524b2ee92967.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4041d4d534df9c91.json b/allure-report/data/test-cases/4b58bd62b05a8814.json similarity index 62% rename from allure-report/data/test-cases/4041d4d534df9c91.json rename to allure-report/data/test-cases/4b58bd62b05a8814.json index ddc69c17814..dba18468e99 100644 --- a/allure-report/data/test-cases/4041d4d534df9c91.json +++ b/allure-report/data/test-cases/4b58bd62b05a8814.json @@ -1 +1 @@ -{"uid":"4041d4d534df9c91","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ff4563a6816a8fb1","name":"stdout","source":"ff4563a6816a8fb1.txt","type":"text/plain","size":316}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4041d4d534df9c91.json","parameterValues":[]} \ No newline at end of file +{"uid":"4b58bd62b05a8814","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5fe4c42944f89c8","name":"stdout","source":"a5fe4c42944f89c8.txt","type":"text/plain","size":316}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4b58bd62b05a8814.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b8219eb37520d2d.json b/allure-report/data/test-cases/4b8219eb37520d2d.json new file mode 100644 index 00000000000..4e2dce69760 --- /dev/null +++ b/allure-report/data/test-cases/4b8219eb37520d2d.json @@ -0,0 +1 @@ +{"uid":"4b8219eb37520d2d","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194034,"stop":1732428194034,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"863d9e582b6f3de4","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"102a91ff9d2e2c1f","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"4b8219eb37520d2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b8d012f19a4e1e6.json b/allure-report/data/test-cases/4b8d012f19a4e1e6.json new file mode 100644 index 00000000000..6525c429461 --- /dev/null +++ b/allure-report/data/test-cases/4b8d012f19a4e1e6.json @@ -0,0 +1 @@ +{"uid":"4b8d012f19a4e1e6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f66e1341a4df20a3","name":"stdout","source":"f66e1341a4df20a3.txt","type":"text/plain","size":254}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"4b8d012f19a4e1e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e6d62aae7d602336.json b/allure-report/data/test-cases/4bb422e9ca9901c8.json similarity index 59% rename from allure-report/data/test-cases/e6d62aae7d602336.json rename to allure-report/data/test-cases/4bb422e9ca9901c8.json index d62a62d3879..e548562848e 100644 --- a/allure-report/data/test-cases/e6d62aae7d602336.json +++ b/allure-report/data/test-cases/4bb422e9ca9901c8.json @@ -1 +1 @@ -{"uid":"e6d62aae7d602336","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4458ac38c6c9a97c","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e6d62aae7d602336.json","parameterValues":[]} \ No newline at end of file +{"uid":"4bb422e9ca9901c8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4bb422e9ca9901c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c77d97bc41048ff.json b/allure-report/data/test-cases/4c77d97bc41048ff.json new file mode 100644 index 00000000000..88209b5eccb --- /dev/null +++ b/allure-report/data/test-cases/4c77d97bc41048ff.json @@ -0,0 +1 @@ +{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"99ca7a938f9d4989","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"2980fd5af6447b30","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"4c77d97bc41048ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2348115dae27ed81.json b/allure-report/data/test-cases/4c7e13d0f61cf99a.json similarity index 71% rename from allure-report/data/test-cases/2348115dae27ed81.json rename to allure-report/data/test-cases/4c7e13d0f61cf99a.json index 62b34295e68..84e0dfe873b 100644 --- a/allure-report/data/test-cases/2348115dae27ed81.json +++ b/allure-report/data/test-cases/4c7e13d0f61cf99a.json @@ -1 +1 @@ -{"uid":"2348115dae27ed81","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cf2100e65e09b423","name":"stdout","source":"cf2100e65e09b423.txt","type":"text/plain","size":908}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":14,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2348115dae27ed81.json","parameterValues":[]} \ No newline at end of file +{"uid":"4c7e13d0f61cf99a","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"df1294dda064bff1","name":"stdout","source":"df1294dda064bff1.txt","type":"text/plain","size":908}],"parameters":[],"hasContent":true,"stepsCount":14,"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":[],"hasContent":false,"stepsCount":0,"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":"4c7e13d0f61cf99a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64a44b1c9018ad85.json b/allure-report/data/test-cases/4dc4de0a74fe7f66.json similarity index 54% rename from allure-report/data/test-cases/64a44b1c9018ad85.json rename to allure-report/data/test-cases/4dc4de0a74fe7f66.json index 036775b770f..432eef84661 100644 --- a/allure-report/data/test-cases/64a44b1c9018ad85.json +++ b/allure-report/data/test-cases/4dc4de0a74fe7f66.json @@ -1 +1 @@ -{"uid":"64a44b1c9018ad85","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"672a2772e24fdc9b","name":"stdout","source":"672a2772e24fdc9b.txt","type":"text/plain","size":316}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4041d4d534df9c91","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"64a44b1c9018ad85.json","parameterValues":[]} \ No newline at end of file +{"uid":"4dc4de0a74fe7f66","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9c17474dc274435d","name":"stdout","source":"9c17474dc274435d.txt","type":"text/plain","size":316}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4dc4de0a74fe7f66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d080f15b08c0b4f.json b/allure-report/data/test-cases/4df34ce2718b817c.json similarity index 56% rename from allure-report/data/test-cases/5d080f15b08c0b4f.json rename to allure-report/data/test-cases/4df34ce2718b817c.json index 2d33b366dc0..9f33d556472 100644 --- a/allure-report/data/test-cases/5d080f15b08c0b4f.json +++ b/allure-report/data/test-cases/4df34ce2718b817c.json @@ -1 +1 @@ -{"uid":"5d080f15b08c0b4f","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":11,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5d080f15b08c0b4f.json","parameterValues":[]} \ No newline at end of file +{"uid":"4df34ce2718b817c","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4df34ce2718b817c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f991ba5bad9e7e9.json b/allure-report/data/test-cases/4e32d03efab2941f.json similarity index 58% rename from allure-report/data/test-cases/1f991ba5bad9e7e9.json rename to allure-report/data/test-cases/4e32d03efab2941f.json index 72c41a1984b..686ff87c6fa 100644 --- a/allure-report/data/test-cases/1f991ba5bad9e7e9.json +++ b/allure-report/data/test-cases/4e32d03efab2941f.json @@ -1 +1 @@ -{"uid":"1f991ba5bad9e7e9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf3022b66d91aba7","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"1f991ba5bad9e7e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"4e32d03efab2941f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4e32d03efab2941f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc29e000a4adcd25.json b/allure-report/data/test-cases/4ea31191e1f5ab3b.json similarity index 55% rename from allure-report/data/test-cases/dc29e000a4adcd25.json rename to allure-report/data/test-cases/4ea31191e1f5ab3b.json index 2ed1d743fff..66743a7d8d5 100644 --- a/allure-report/data/test-cases/dc29e000a4adcd25.json +++ b/allure-report/data/test-cases/4ea31191e1f5ab3b.json @@ -1 +1 @@ -{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9a3c6ad41839ce3","name":"stdout","source":"c9a3c6ad41839ce3.txt","type":"text/plain","size":502}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6fce95111dc1cc14","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f52a489cb0add672","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"dc29e000a4adcd25.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ea31191e1f5ab3b","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f3d8444cfb8c128","name":"stdout","source":"3f3d8444cfb8c128.txt","type":"text/plain","size":502}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"4ea31191e1f5ab3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ecd1e835300dbcf.json b/allure-report/data/test-cases/4ecd1e835300dbcf.json deleted file mode 100644 index 212527de533..00000000000 --- a/allure-report/data/test-cases/4ecd1e835300dbcf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4ecd1e835300dbcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"120b1ea05b87d5bf","name":"stdout","source":"120b1ea05b87d5bf.txt","type":"text/plain","size":1195}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":16,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5781ea9a417efe48","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"tags":[]},"source":"4ecd1e835300dbcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fabe21d8eab469bd.json b/allure-report/data/test-cases/4f0296b5891c7763.json similarity index 72% rename from allure-report/data/test-cases/fabe21d8eab469bd.json rename to allure-report/data/test-cases/4f0296b5891c7763.json index 7a271e3f4bd..363b071722f 100644 --- a/allure-report/data/test-cases/fabe21d8eab469bd.json +++ b/allure-report/data/test-cases/4f0296b5891c7763.json @@ -1 +1 @@ -{"uid":"fabe21d8eab469bd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1200393e54a2122a","name":"stdout","source":"1200393e54a2122a.txt","type":"text/plain","size":352}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"fabe21d8eab469bd.json","parameterValues":[]} \ No newline at end of file +{"uid":"4f0296b5891c7763","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c38727f5bb9d52ae","name":"stdout","source":"c38727f5bb9d52ae.txt","type":"text/plain","size":352}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"4f0296b5891c7763.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f1172fa5620cc18.json b/allure-report/data/test-cases/4f1172fa5620cc18.json new file mode 100644 index 00000000000..e7b854dfb9f --- /dev/null +++ b/allure-report/data/test-cases/4f1172fa5620cc18.json @@ -0,0 +1 @@ +{"uid":"4f1172fa5620cc18","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9252a83ce892d840","name":"stdout","source":"9252a83ce892d840.txt","type":"text/plain","size":1536}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"4f1172fa5620cc18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f85a4b1698202d.json b/allure-report/data/test-cases/4f85a4b1698202d.json deleted file mode 100644 index 7eb911cb98d..00000000000 --- a/allure-report/data/test-cases/4f85a4b1698202d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4f85a4b1698202d","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b5130ca9dc47578e","name":"stdout","source":"b5130ca9dc47578e.txt","type":"text/plain","size":170}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"4f85a4b1698202d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4fb2a019463cdbdf.json b/allure-report/data/test-cases/4fb2a019463cdbdf.json deleted file mode 100644 index 163f62b5344..00000000000 --- a/allure-report/data/test-cases/4fb2a019463cdbdf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4fb2a019463cdbdf","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aa35c4221cf1383d","name":"stdout","source":"aa35c4221cf1383d.txt","type":"text/plain","size":560}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d9270ca3330737a","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4fb2a019463cdbdf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9098856200f13690.json b/allure-report/data/test-cases/500ac2fecd2b527c.json similarity index 51% rename from allure-report/data/test-cases/9098856200f13690.json rename to allure-report/data/test-cases/500ac2fecd2b527c.json index aaa3fcf66f8..e39400a64c3 100644 --- a/allure-report/data/test-cases/9098856200f13690.json +++ b/allure-report/data/test-cases/500ac2fecd2b527c.json @@ -1 +1 @@ -{"uid":"9098856200f13690","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45411ab5eb543e75","name":"stdout","source":"45411ab5eb543e75.txt","type":"text/plain","size":129}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59ff5157ed7e9ae","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"9098856200f13690.json","parameterValues":[]} \ No newline at end of file +{"uid":"500ac2fecd2b527c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"32849bcbd7d5b064","name":"stdout","source":"32849bcbd7d5b064.txt","type":"text/plain","size":129}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"500ac2fecd2b527c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/504baf7c4d256536.json b/allure-report/data/test-cases/504baf7c4d256536.json deleted file mode 100644 index a9ac3625783..00000000000 --- a/allure-report/data/test-cases/504baf7c4d256536.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"504baf7c4d256536","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cc97e34ff385a06","name":"stdout","source":"cc97e34ff385a06.txt","type":"text/plain","size":48}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4fb6cdf4d1895f5","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"504baf7c4d256536.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d62d5681db1186b9.json b/allure-report/data/test-cases/5187a55d5b7bcbbd.json similarity index 80% rename from allure-report/data/test-cases/d62d5681db1186b9.json rename to allure-report/data/test-cases/5187a55d5b7bcbbd.json index 2db8fcfc961..56258d38662 100644 --- a/allure-report/data/test-cases/d62d5681db1186b9.json +++ b/allure-report/data/test-cases/5187a55d5b7bcbbd.json @@ -1 +1 @@ -{"uid":"d62d5681db1186b9","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5da58154c309059a","name":"stdout","source":"5da58154c309059a.txt","type":"text/plain","size":3892}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d62d5681db1186b9.json","parameterValues":[]} \ No newline at end of file +{"uid":"5187a55d5b7bcbbd","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef954a973a3165a7","name":"stdout","source":"ef954a973a3165a7.txt","type":"text/plain","size":3892}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5187a55d5b7bcbbd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a22d7a269c3ca06.json b/allure-report/data/test-cases/518cb319be0d6f5c.json similarity index 52% rename from allure-report/data/test-cases/5a22d7a269c3ca06.json rename to allure-report/data/test-cases/518cb319be0d6f5c.json index ef808f6a488..d94d565e5e1 100644 --- a/allure-report/data/test-cases/5a22d7a269c3ca06.json +++ b/allure-report/data/test-cases/518cb319be0d6f5c.json @@ -1 +1 @@ -{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"52c3b8574c415b89","name":"stdout","source":"52c3b8574c415b89.txt","type":"text/plain","size":424}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a4f7c6dc4c7e84","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":[]},"source":"5a22d7a269c3ca06.json","parameterValues":[]} \ No newline at end of file +{"uid":"518cb319be0d6f5c","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"839cae885131e395","name":"stdout","source":"839cae885131e395.txt","type":"text/plain","size":424}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"518cb319be0d6f5c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51971bf7ad109ed2.json b/allure-report/data/test-cases/51971bf7ad109ed2.json deleted file mode 100644 index c1f85f88618..00000000000 --- a/allure-report/data/test-cases/51971bf7ad109ed2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"51971bf7ad109ed2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd62b896cd445c4","name":"stdout","source":"dd62b896cd445c4.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12ce3777e030dbb5","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"51971bf7ad109ed2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0d5281d75a0b4df.json b/allure-report/data/test-cases/51c4ad89c4a768de.json similarity index 59% rename from allure-report/data/test-cases/e0d5281d75a0b4df.json rename to allure-report/data/test-cases/51c4ad89c4a768de.json index c9d227ddf25..2dee6bd2725 100644 --- a/allure-report/data/test-cases/e0d5281d75a0b4df.json +++ b/allure-report/data/test-cases/51c4ad89c4a768de.json @@ -1 +1 @@ -{"uid":"e0d5281d75a0b4df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"398543e2b30d0b75","name":"stdout","source":"398543e2b30d0b75.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19146436627ee869","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e0d5281d75a0b4df.json","parameterValues":[]} \ No newline at end of file +{"uid":"51c4ad89c4a768de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"b2176623a3e27602","name":"stdout","source":"b2176623a3e27602.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"51c4ad89c4a768de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54942c51ed88331c.json b/allure-report/data/test-cases/51e0b16785f0d461.json similarity index 72% rename from allure-report/data/test-cases/54942c51ed88331c.json rename to allure-report/data/test-cases/51e0b16785f0d461.json index dbe28af4aa8..9ba55e16d29 100644 --- a/allure-report/data/test-cases/54942c51ed88331c.json +++ b/allure-report/data/test-cases/51e0b16785f0d461.json @@ -1 +1 @@ -{"uid":"54942c51ed88331c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba387d8fdc4ccb3b","name":"stdout","source":"ba387d8fdc4ccb3b.txt","type":"text/plain","size":193}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a54c934450b934d7","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"54942c51ed88331c.json","parameterValues":[]} \ No newline at end of file +{"uid":"51e0b16785f0d461","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"22f6f0c737bac26b","name":"stdout","source":"22f6f0c737bac26b.txt","type":"text/plain","size":193}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"51e0b16785f0d461.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52715db4a1ce5955.json b/allure-report/data/test-cases/52715db4a1ce5955.json deleted file mode 100644 index c3b6d5bb9b1..00000000000 --- a/allure-report/data/test-cases/52715db4a1ce5955.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"52715db4a1ce5955","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"88f8e3a1f8c2be2b","name":"stdout","source":"88f8e3a1f8c2be2b.txt","type":"text/plain","size":288}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8af4ebd0495f0e70","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"52715db4a1ce5955.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6e4ebd44034ff08.json b/allure-report/data/test-cases/5319ceacad5a43bc.json similarity index 71% rename from allure-report/data/test-cases/d6e4ebd44034ff08.json rename to allure-report/data/test-cases/5319ceacad5a43bc.json index b5033ddbc43..5d7757bc9a3 100644 --- a/allure-report/data/test-cases/d6e4ebd44034ff08.json +++ b/allure-report/data/test-cases/5319ceacad5a43bc.json @@ -1 +1 @@ -{"uid":"d6e4ebd44034ff08","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea7fb2d8338c4ae8","name":"stdout","source":"ea7fb2d8338c4ae8.txt","type":"text/plain","size":949}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9d8518015a2b07b6","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af3c309699fc2b8b","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}}]},"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"d6e4ebd44034ff08.json","parameterValues":[]} \ No newline at end of file +{"uid":"5319ceacad5a43bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"be7449bab7c02e56","name":"stdout","source":"be7449bab7c02e56.txt","type":"text/plain","size":949}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"5319ceacad5a43bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5320007ca0191a21.json b/allure-report/data/test-cases/5320007ca0191a21.json deleted file mode 100644 index 8b6d39775de..00000000000 --- a/allure-report/data/test-cases/5320007ca0191a21.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5320007ca0191a21","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d544fbd4d09ad0f7","name":"stdout","source":"d544fbd4d09ad0f7.txt","type":"text/plain","size":487}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5320007ca0191a21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5321a1bb93b59f1e.json b/allure-report/data/test-cases/5321a1bb93b59f1e.json deleted file mode 100644 index cc5711b1d10..00000000000 --- a/allure-report/data/test-cases/5321a1bb93b59f1e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5321a1bb93b59f1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c1146e7ec026151e","name":"stdout","source":"c1146e7ec026151e.txt","type":"text/plain","size":302}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5321a1bb93b59f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/533bf937be1aa466.json b/allure-report/data/test-cases/533bf937be1aa466.json new file mode 100644 index 00000000000..8a8b4976261 --- /dev/null +++ b/allure-report/data/test-cases/533bf937be1aa466.json @@ -0,0 +1 @@ +{"uid":"533bf937be1aa466","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732428194276,"stop":1732428194276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732428194278,"stop":1732428194278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"76dad62f743b3603","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"4f0296b5891c7763","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"57efbea0ccf3907a","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"533bf937be1aa466.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/536deebe5c2f9229.json b/allure-report/data/test-cases/536deebe5c2f9229.json deleted file mode 100644 index 003d15271cc..00000000000 --- a/allure-report/data/test-cases/536deebe5c2f9229.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"536deebe5c2f9229","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f69b6836dc35d93","name":"stdout","source":"f69b6836dc35d93.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"536deebe5c2f9229.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a10d36c92cf89a63.json b/allure-report/data/test-cases/53ac096f64d86d36.json similarity index 63% rename from allure-report/data/test-cases/a10d36c92cf89a63.json rename to allure-report/data/test-cases/53ac096f64d86d36.json index 14812581480..0fc7948da7e 100644 --- a/allure-report/data/test-cases/a10d36c92cf89a63.json +++ b/allure-report/data/test-cases/53ac096f64d86d36.json @@ -1 +1 @@ -{"uid":"a10d36c92cf89a63","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3e1cb74f119a5c14","name":"stdout","source":"3e1cb74f119a5c14.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f3af6e95d4ded07","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a10d36c92cf89a63.json","parameterValues":[]} \ No newline at end of file +{"uid":"53ac096f64d86d36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"7dd6b645422c34b6","name":"stdout","source":"7dd6b645422c34b6.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"53ac096f64d86d36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/252f381a068f762f.json b/allure-report/data/test-cases/54043a9fba80789b.json similarity index 71% rename from allure-report/data/test-cases/252f381a068f762f.json rename to allure-report/data/test-cases/54043a9fba80789b.json index 2b63931f001..b52427aee8f 100644 --- a/allure-report/data/test-cases/252f381a068f762f.json +++ b/allure-report/data/test-cases/54043a9fba80789b.json @@ -1 +1 @@ -{"uid":"252f381a068f762f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6062d7cf7b32bc2c","name":"stdout","source":"6062d7cf7b32bc2c.txt","type":"text/plain","size":676}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"252f381a068f762f.json","parameterValues":[]} \ No newline at end of file +{"uid":"54043a9fba80789b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a4387d961fd6fe2","name":"stdout","source":"3a4387d961fd6fe2.txt","type":"text/plain","size":676}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"54043a9fba80789b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54bb63fb3736b8ae.json b/allure-report/data/test-cases/54bb63fb3736b8ae.json new file mode 100644 index 00000000000..5731850b6ea --- /dev/null +++ b/allure-report/data/test-cases/54bb63fb3736b8ae.json @@ -0,0 +1 @@ +{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"c8c44a676a12b5c6","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"e427c3eece0f34c3","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"54bb63fb3736b8ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/761811e55728ed74.json b/allure-report/data/test-cases/54e4671ce8499dcf.json similarity index 64% rename from allure-report/data/test-cases/761811e55728ed74.json rename to allure-report/data/test-cases/54e4671ce8499dcf.json index 0abb38cb145..455ee254306 100644 --- a/allure-report/data/test-cases/761811e55728ed74.json +++ b/allure-report/data/test-cases/54e4671ce8499dcf.json @@ -1 +1 @@ -{"uid":"761811e55728ed74","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"336614ff4bde976d","name":"stdout","source":"336614ff4bde976d.txt","type":"text/plain","size":878}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"761811e55728ed74.json","parameterValues":[]} \ No newline at end of file +{"uid":"54e4671ce8499dcf","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6f4b7e883a26cafe","name":"stdout","source":"6f4b7e883a26cafe.txt","type":"text/plain","size":878}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"54e4671ce8499dcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51a9aec46de8d878.json b/allure-report/data/test-cases/5519a1e9b61f2ca3.json similarity index 55% rename from allure-report/data/test-cases/51a9aec46de8d878.json rename to allure-report/data/test-cases/5519a1e9b61f2ca3.json index 11399b7df03..3a07e1badec 100644 --- a/allure-report/data/test-cases/51a9aec46de8d878.json +++ b/allure-report/data/test-cases/5519a1e9b61f2ca3.json @@ -1 +1 @@ -{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c3d16eb9cb3b239c","name":"stdout","source":"c3d16eb9cb3b239c.txt","type":"text/plain","size":254}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a4b7cb6ba7726224","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"43c0068fe0a1265e","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"51a9aec46de8d878.json","parameterValues":[]} \ No newline at end of file +{"uid":"5519a1e9b61f2ca3","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a66ea3c1c7d07513","name":"stdout","source":"a66ea3c1c7d07513.txt","type":"text/plain","size":254}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"5519a1e9b61f2ca3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/650faaf602cc8f99.json b/allure-report/data/test-cases/552742d77daecee9.json similarity index 59% rename from allure-report/data/test-cases/650faaf602cc8f99.json rename to allure-report/data/test-cases/552742d77daecee9.json index 6e0f0a2e4d1..596a4982bc5 100644 --- a/allure-report/data/test-cases/650faaf602cc8f99.json +++ b/allure-report/data/test-cases/552742d77daecee9.json @@ -1 +1 @@ -{"uid":"650faaf602cc8f99","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcab257bac252f0f","name":"stdout","source":"fcab257bac252f0f.txt","type":"text/plain","size":640}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"650faaf602cc8f99.json","parameterValues":[]} \ No newline at end of file +{"uid":"552742d77daecee9","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"efae8b9f43d09441","name":"stdout","source":"efae8b9f43d09441.txt","type":"text/plain","size":640}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":"552742d77daecee9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84fd4c67efee5295.json b/allure-report/data/test-cases/55e4a84277d15d0d.json similarity index 68% rename from allure-report/data/test-cases/84fd4c67efee5295.json rename to allure-report/data/test-cases/55e4a84277d15d0d.json index b9acdc4da4d..e8e0118a880 100644 --- a/allure-report/data/test-cases/84fd4c67efee5295.json +++ b/allure-report/data/test-cases/55e4a84277d15d0d.json @@ -1 +1 @@ -{"uid":"84fd4c67efee5295","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":"bc5cb7d257f882a1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"uid":"62bf772c3a2aa5d2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"84fd4c67efee5295.json","parameterValues":[]} \ No newline at end of file +{"uid":"55e4a84277d15d0d","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":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":"55e4a84277d15d0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6e6e46de805754f.json b/allure-report/data/test-cases/566a56003ac2e703.json similarity index 57% rename from allure-report/data/test-cases/d6e6e46de805754f.json rename to allure-report/data/test-cases/566a56003ac2e703.json index 4f284f9e81e..6a1d00e00f5 100644 --- a/allure-report/data/test-cases/d6e6e46de805754f.json +++ b/allure-report/data/test-cases/566a56003ac2e703.json @@ -1 +1 @@ -{"uid":"d6e6e46de805754f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcbbb87dd9240b08","name":"stdout","source":"fcbbb87dd9240b08.txt","type":"text/plain","size":453}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"108c2723377a98c0","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d6e6e46de805754f.json","parameterValues":[]} \ No newline at end of file +{"uid":"566a56003ac2e703","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b436923321373575","name":"stdout","source":"b436923321373575.txt","type":"text/plain","size":453}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"566a56003ac2e703.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56ad7c473898c46d.json b/allure-report/data/test-cases/56ad7c473898c46d.json new file mode 100644 index 00000000000..b13f1c5a923 --- /dev/null +++ b/allure-report/data/test-cases/56ad7c473898c46d.json @@ -0,0 +1 @@ +{"uid":"56ad7c473898c46d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732428195847,"stop":1732428195847,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b1bc0b9a480db3e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"eeed6f5fdf5c1d70","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e738d6d09d0feb9e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"56ad7c473898c46d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b99ca9a8ecf19524.json b/allure-report/data/test-cases/56ae9013352b7649.json similarity index 65% rename from allure-report/data/test-cases/b99ca9a8ecf19524.json rename to allure-report/data/test-cases/56ae9013352b7649.json index 39c9f1afe0b..0271c056eb4 100644 --- a/allure-report/data/test-cases/b99ca9a8ecf19524.json +++ b/allure-report/data/test-cases/56ae9013352b7649.json @@ -1 +1 @@ -{"uid":"b99ca9a8ecf19524","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e5a0ef8eae5b1f5","name":"stdout","source":"4e5a0ef8eae5b1f5.txt","type":"text/plain","size":3898}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b99ca9a8ecf19524.json","parameterValues":[]} \ No newline at end of file +{"uid":"56ae9013352b7649","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dd695e9095070885","name":"stdout","source":"dd695e9095070885.txt","type":"text/plain","size":3898}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"56ae9013352b7649.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56cce31bdf350ac7.json b/allure-report/data/test-cases/56cce31bdf350ac7.json new file mode 100644 index 00000000000..40903401d89 --- /dev/null +++ b/allure-report/data/test-cases/56cce31bdf350ac7.json @@ -0,0 +1 @@ +{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732428195803,"stop":1732428195803,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"88a73a4735cff92e","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"acfebfd078f8e03c","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1ece392343bb9b12","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"56cce31bdf350ac7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56da494ae1701253.json b/allure-report/data/test-cases/56da494ae1701253.json new file mode 100644 index 00000000000..05312c6caa1 --- /dev/null +++ b/allure-report/data/test-cases/56da494ae1701253.json @@ -0,0 +1 @@ +{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732428194708,"stop":1732428194708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1732428195438,"stop":1732428195438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b1f2cc8e1be032d","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"6113acbf67a69117","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"56da494ae1701253.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/571176bf000b455b.json b/allure-report/data/test-cases/571176bf000b455b.json new file mode 100644 index 00000000000..2bd37daa87f --- /dev/null +++ b/allure-report/data/test-cases/571176bf000b455b.json @@ -0,0 +1 @@ +{"uid":"571176bf000b455b","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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2f520e29faf9fa03","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"4073719ea3c0e8fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"571176bf000b455b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5740cd94d023a2bf.json b/allure-report/data/test-cases/5740cd94d023a2bf.json deleted file mode 100644 index b484ec71bb7..00000000000 --- a/allure-report/data/test-cases/5740cd94d023a2bf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5740cd94d023a2bf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47cde424bd281215","name":"stdout","source":"47cde424bd281215.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5740cd94d023a2bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed30e8563a89229a.json b/allure-report/data/test-cases/5795c1991578aaeb.json similarity index 65% rename from allure-report/data/test-cases/ed30e8563a89229a.json rename to allure-report/data/test-cases/5795c1991578aaeb.json index 2c7f08f97b4..1a1fdc6aae7 100644 --- a/allure-report/data/test-cases/ed30e8563a89229a.json +++ b/allure-report/data/test-cases/5795c1991578aaeb.json @@ -1 +1 @@ -{"uid":"ed30e8563a89229a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d3f39137718ed9c","name":"stdout","source":"4d3f39137718ed9c.txt","type":"text/plain","size":793}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11ee5493e293e3de","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"ed30e8563a89229a.json","parameterValues":[]} \ No newline at end of file +{"uid":"5795c1991578aaeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dcb18087db2eef7c","name":"stdout","source":"dcb18087db2eef7c.txt","type":"text/plain","size":793}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"5795c1991578aaeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f72e37459a6b99ff.json b/allure-report/data/test-cases/57d69ca6b172040d.json similarity index 73% rename from allure-report/data/test-cases/f72e37459a6b99ff.json rename to allure-report/data/test-cases/57d69ca6b172040d.json index a5839317a96..de4e130eb92 100644 --- a/allure-report/data/test-cases/f72e37459a6b99ff.json +++ b/allure-report/data/test-cases/57d69ca6b172040d.json @@ -1 +1 @@ -{"uid":"f72e37459a6b99ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6170073182411e7","name":"stdout","source":"e6170073182411e7.txt","type":"text/plain","size":512}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f72e37459a6b99ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"57d69ca6b172040d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"31ba7c014fce4298","name":"stdout","source":"31ba7c014fce4298.txt","type":"text/plain","size":512}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"57d69ca6b172040d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a90fdb1fb3683308.json b/allure-report/data/test-cases/57e5e5f4d9d91cf6.json similarity index 62% rename from allure-report/data/test-cases/a90fdb1fb3683308.json rename to allure-report/data/test-cases/57e5e5f4d9d91cf6.json index 8e1c689d6fa..0a96ad2b710 100644 --- a/allure-report/data/test-cases/a90fdb1fb3683308.json +++ b/allure-report/data/test-cases/57e5e5f4d9d91cf6.json @@ -1 +1 @@ -{"uid":"a90fdb1fb3683308","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"18b79283e1874d20","name":"stdout","source":"18b79283e1874d20.txt","type":"text/plain","size":1904}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":21,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a90fdb1fb3683308.json","parameterValues":[]} \ No newline at end of file +{"uid":"57e5e5f4d9d91cf6","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5c2711b7e4875740","name":"stdout","source":"5c2711b7e4875740.txt","type":"text/plain","size":1904}],"parameters":[],"hasContent":true,"stepsCount":21,"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":[],"hasContent":false,"stepsCount":0,"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":"57e5e5f4d9d91cf6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e722b9059cce92a0.json b/allure-report/data/test-cases/580b983b7062983c.json similarity index 68% rename from allure-report/data/test-cases/e722b9059cce92a0.json rename to allure-report/data/test-cases/580b983b7062983c.json index e202e4ea547..35920369148 100644 --- a/allure-report/data/test-cases/e722b9059cce92a0.json +++ b/allure-report/data/test-cases/580b983b7062983c.json @@ -1 +1 @@ -{"uid":"e722b9059cce92a0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"837e80b6f559a9c2","name":"stdout","source":"837e80b6f559a9c2.txt","type":"text/plain","size":30}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e722b9059cce92a0.json","parameterValues":[]} \ No newline at end of file +{"uid":"580b983b7062983c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"998cb255bcb4a08e","name":"stdout","source":"998cb255bcb4a08e.txt","type":"text/plain","size":30}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"580b983b7062983c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9cb8749ab5d5d5c7.json b/allure-report/data/test-cases/58e0261647deccd2.json similarity index 66% rename from allure-report/data/test-cases/9cb8749ab5d5d5c7.json rename to allure-report/data/test-cases/58e0261647deccd2.json index 0069bbf1884..d842fdd9a7b 100644 --- a/allure-report/data/test-cases/9cb8749ab5d5d5c7.json +++ b/allure-report/data/test-cases/58e0261647deccd2.json @@ -1 +1 @@ -{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"79650f7b74d71675","name":"stdout","source":"79650f7b74d71675.txt","type":"text/plain","size":46002}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ce00ffd36d904f61","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2ed8dfd7ca5a3d13","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}}]},"tags":["ALGORITHMS"]},"source":"9cb8749ab5d5d5c7.json","parameterValues":[]} \ No newline at end of file +{"uid":"58e0261647deccd2","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c0c4047155365dbf","name":"stdout","source":"c0c4047155365dbf.txt","type":"text/plain","size":46002}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"58e0261647deccd2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/776765eba79884f4.json b/allure-report/data/test-cases/59120ba12cafb7e8.json similarity index 72% rename from allure-report/data/test-cases/776765eba79884f4.json rename to allure-report/data/test-cases/59120ba12cafb7e8.json index 55773dd3ce0..12c7ce5421f 100644 --- a/allure-report/data/test-cases/776765eba79884f4.json +++ b/allure-report/data/test-cases/59120ba12cafb7e8.json @@ -1 +1 @@ -{"uid":"776765eba79884f4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1e9020a1f427ff16","name":"stdout","source":"1e9020a1f427ff16.txt","type":"text/plain","size":181}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"776765eba79884f4.json","parameterValues":[]} \ No newline at end of file +{"uid":"59120ba12cafb7e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f209dfd0dcd30d55","name":"stdout","source":"f209dfd0dcd30d55.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"59120ba12cafb7e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/593778a5ba99d447.json b/allure-report/data/test-cases/593778a5ba99d447.json new file mode 100644 index 00000000000..8c664abe1b1 --- /dev/null +++ b/allure-report/data/test-cases/593778a5ba99d447.json @@ -0,0 +1 @@ +{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should raise exception for invalid n (n < 0) values.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2dc119e05306bc09","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"d936198953d58b58","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"593778a5ba99d447.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/693c5b2693478689.json b/allure-report/data/test-cases/5961f436380e11d2.json similarity index 57% rename from allure-report/data/test-cases/693c5b2693478689.json rename to allure-report/data/test-cases/5961f436380e11d2.json index 3ede8076832..2628c73b9cf 100644 --- a/allure-report/data/test-cases/693c5b2693478689.json +++ b/allure-report/data/test-cases/5961f436380e11d2.json @@ -1 +1 @@ -{"uid":"693c5b2693478689","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7517e0fe4fd38ce3","name":"stdout","source":"7517e0fe4fd38ce3.txt","type":"text/plain","size":1904}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":21,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a90fdb1fb3683308","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d6d06cbc227917e","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}}]},"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"693c5b2693478689.json","parameterValues":[]} \ No newline at end of file +{"uid":"5961f436380e11d2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f509afa4d498e7c1","name":"stdout","source":"f509afa4d498e7c1.txt","type":"text/plain","size":1904}],"parameters":[],"hasContent":true,"stepsCount":21,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"5961f436380e11d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2acb560e089cb7c8.json b/allure-report/data/test-cases/5998f9acb6d6dab8.json similarity index 57% rename from allure-report/data/test-cases/2acb560e089cb7c8.json rename to allure-report/data/test-cases/5998f9acb6d6dab8.json index 6749e4af168..19b9bd1aedf 100644 --- a/allure-report/data/test-cases/2acb560e089cb7c8.json +++ b/allure-report/data/test-cases/5998f9acb6d6dab8.json @@ -1 +1 @@ -{"uid":"2acb560e089cb7c8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"698bafa9b89cd763","name":"stdout","source":"698bafa9b89cd763.txt","type":"text/plain","size":32}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84aa3b23910872ae","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"2acb560e089cb7c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"5998f9acb6d6dab8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f375c406aca5ef66","name":"stdout","source":"f375c406aca5ef66.txt","type":"text/plain","size":32}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5998f9acb6d6dab8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59b1922c33f3ac65.json b/allure-report/data/test-cases/59b1922c33f3ac65.json new file mode 100644 index 00000000000..20ac59e121e --- /dev/null +++ b/allure-report/data/test-cases/59b1922c33f3ac65.json @@ -0,0 +1 @@ +{"uid":"59b1922c33f3ac65","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195618,"stop":1732428195618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e378762a5dac9d1e","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"2e9a9a4090c00445","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"59b1922c33f3ac65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9393151991be7f33.json b/allure-report/data/test-cases/59e6c1fe5b50c363.json similarity index 57% rename from allure-report/data/test-cases/9393151991be7f33.json rename to allure-report/data/test-cases/59e6c1fe5b50c363.json index 96127017c18..869ac3e8bd1 100644 --- a/allure-report/data/test-cases/9393151991be7f33.json +++ b/allure-report/data/test-cases/59e6c1fe5b50c363.json @@ -1 +1 @@ -{"uid":"9393151991be7f33","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5efed1b6b7f1c808","name":"stdout","source":"5efed1b6b7f1c808.txt","type":"text/plain","size":60}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3223ce64ed8bee2","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"9393151991be7f33.json","parameterValues":[]} \ No newline at end of file +{"uid":"59e6c1fe5b50c363","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"94c19824e08a6a92","name":"stdout","source":"94c19824e08a6a92.txt","type":"text/plain","size":60}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59e6c1fe5b50c363.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59ff5157ed7e9ae.json b/allure-report/data/test-cases/59ff5157ed7e9ae.json deleted file mode 100644 index 9e98e16eb58..00000000000 --- a/allure-report/data/test-cases/59ff5157ed7e9ae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"59ff5157ed7e9ae","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1fb0e4eb0d1b73ee","name":"stdout","source":"1fb0e4eb0d1b73ee.txt","type":"text/plain","size":129}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59ff5157ed7e9ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a2ae93193e5280a.json b/allure-report/data/test-cases/5a2ae93193e5280a.json new file mode 100644 index 00000000000..0f97a9f49e4 --- /dev/null +++ b/allure-report/data/test-cases/5a2ae93193e5280a.json @@ -0,0 +1 @@ +{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732428196281,"stop":1732428196281,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Keep Hydrated!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5819c4c1535edeb","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"9e6f93dfe778ff9a","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"71d876f4d19ecd67","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5a2ae93193e5280a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/490cf50ddd5cff83.json b/allure-report/data/test-cases/5a497340f38e6588.json similarity index 56% rename from allure-report/data/test-cases/490cf50ddd5cff83.json rename to allure-report/data/test-cases/5a497340f38e6588.json index 5f0007be280..6e44e4075e9 100644 --- a/allure-report/data/test-cases/490cf50ddd5cff83.json +++ b/allure-report/data/test-cases/5a497340f38e6588.json @@ -1 +1 @@ -{"uid":"490cf50ddd5cff83","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d789b0e2f7ac3471","name":"stdout","source":"d789b0e2f7ac3471.txt","type":"text/plain","size":167}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"91e2410535ccc997","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f4f9e94ec6d4f1e","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"490cf50ddd5cff83.json","parameterValues":[]} \ No newline at end of file +{"uid":"5a497340f38e6588","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f1a162618bd1b29d","name":"stdout","source":"f1a162618bd1b29d.txt","type":"text/plain","size":167}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5a497340f38e6588.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5af3f258cf327b2a.json b/allure-report/data/test-cases/5af3f258cf327b2a.json new file mode 100644 index 00000000000..5dfdc8fcd42 --- /dev/null +++ b/allure-report/data/test-cases/5af3f258cf327b2a.json @@ -0,0 +1 @@ +{"uid":"5af3f258cf327b2a","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes Dog and Dog have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes 5 and 5 have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes good and good have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes 50lb and 50lb have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes brown and brown have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1732428195883,"stop":1732428195883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d12fb82b623fefb9","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"c6923016c0d7805e","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5af3f258cf327b2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/614b9e2de4457676.json b/allure-report/data/test-cases/5b153d545c48d264.json similarity index 61% rename from allure-report/data/test-cases/614b9e2de4457676.json rename to allure-report/data/test-cases/5b153d545c48d264.json index 7b08b893812..dd2cccae088 100644 --- a/allure-report/data/test-cases/614b9e2de4457676.json +++ b/allure-report/data/test-cases/5b153d545c48d264.json @@ -1 +1 @@ -{"uid":"614b9e2de4457676","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5a1e9dabd89620f","name":"stdout","source":"a5a1e9dabd89620f.txt","type":"text/plain","size":326}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8f884e4fa29bb7d4","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e798d2f5cc38e024","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"614b9e2de4457676.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b153d545c48d264","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ab43402bfd67bde","name":"stdout","source":"5ab43402bfd67bde.txt","type":"text/plain","size":326}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"5b153d545c48d264.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b15d7c039eaff13.json b/allure-report/data/test-cases/5b15d7c039eaff13.json new file mode 100644 index 00000000000..0e614b2a958 --- /dev/null +++ b/allure-report/data/test-cases/5b15d7c039eaff13.json @@ -0,0 +1 @@ +{"uid":"5b15d7c039eaff13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732428196379,"stop":1732428196379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"933ecb6fe52a564f","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"87d2fa2dfc5fe491","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ed5fbc4b14885f68","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"5b15d7c039eaff13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1467bda4d9665eda.json b/allure-report/data/test-cases/5b3fc84157197066.json similarity index 79% rename from allure-report/data/test-cases/1467bda4d9665eda.json rename to allure-report/data/test-cases/5b3fc84157197066.json index f8505cbe76f..0dece5705a9 100644 --- a/allure-report/data/test-cases/1467bda4d9665eda.json +++ b/allure-report/data/test-cases/5b3fc84157197066.json @@ -1 +1 @@ -{"uid":"1467bda4d9665eda","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1467bda4d9665eda.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b3fc84157197066","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"5b3fc84157197066.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d880bf6ff390f682.json b/allure-report/data/test-cases/5b88f232b1f58c27.json similarity index 76% rename from allure-report/data/test-cases/d880bf6ff390f682.json rename to allure-report/data/test-cases/5b88f232b1f58c27.json index e2dab6e958d..fd9a4aa39b9 100644 --- a/allure-report/data/test-cases/d880bf6ff390f682.json +++ b/allure-report/data/test-cases/5b88f232b1f58c27.json @@ -1 +1 @@ -{"uid":"d880bf6ff390f682","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c8970b155f88dd79","name":"stdout","source":"c8970b155f88dd79.txt","type":"text/plain","size":604}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d880bf6ff390f682.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b88f232b1f58c27","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"56be0299a0ca1906","name":"stdout","source":"56be0299a0ca1906.txt","type":"text/plain","size":604}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b88f232b1f58c27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be5b8c63ffdd840d.json b/allure-report/data/test-cases/5be4a10a1a64fd59.json similarity index 72% rename from allure-report/data/test-cases/be5b8c63ffdd840d.json rename to allure-report/data/test-cases/5be4a10a1a64fd59.json index 562942ade29..1cd1a7ba4a5 100644 --- a/allure-report/data/test-cases/be5b8c63ffdd840d.json +++ b/allure-report/data/test-cases/5be4a10a1a64fd59.json @@ -1 +1 @@ -{"uid":"be5b8c63ffdd840d","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"be5b8c63ffdd840d.json","parameterValues":[]} \ No newline at end of file +{"uid":"5be4a10a1a64fd59","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5be4a10a1a64fd59.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c0b01ada3a3f14e.json b/allure-report/data/test-cases/5c0b01ada3a3f14e.json new file mode 100644 index 00000000000..4f7187543c4 --- /dev/null +++ b/allure-report/data/test-cases/5c0b01ada3a3f14e.json @@ -0,0 +1 @@ +{"uid":"5c0b01ada3a3f14e","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":1732428196430,"stop":1732428196430,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ac6d40036941792","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"1bef76bb610cc3bd","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d5a389260d41a743","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"5c0b01ada3a3f14e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/462e434377d791a9.json b/allure-report/data/test-cases/5c78d3bc5a71109a.json similarity index 71% rename from allure-report/data/test-cases/462e434377d791a9.json rename to allure-report/data/test-cases/5c78d3bc5a71109a.json index a05788fa1ab..f8784a5315c 100644 --- a/allure-report/data/test-cases/462e434377d791a9.json +++ b/allure-report/data/test-cases/5c78d3bc5a71109a.json @@ -1 +1 @@ -{"uid":"462e434377d791a9","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90fac117ed2f5b2c","name":"stdout","source":"90fac117ed2f5b2c.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"462e434377d791a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"5c78d3bc5a71109a","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4bafaae940d73b69","name":"stdout","source":"4bafaae940d73b69.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"5c78d3bc5a71109a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5cd4eeb8a4b79d6b.json b/allure-report/data/test-cases/5cd4eeb8a4b79d6b.json new file mode 100644 index 00000000000..c86e92e065d --- /dev/null +++ b/allure-report/data/test-cases/5cd4eeb8a4b79d6b.json @@ -0,0 +1 @@ +{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"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":"

Codewars badge:

Test Description:

The function should remove all agents that are outside of the city boundaries.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8dcfddf689f44d1d","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"b080152571ac4adf","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5cd4eeb8a4b79d6b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ce6881896e2614d.json b/allure-report/data/test-cases/5ce6881896e2614d.json new file mode 100644 index 00000000000..e83e72e1320 --- /dev/null +++ b/allure-report/data/test-cases/5ce6881896e2614d.json @@ -0,0 +1 @@ +{"uid":"5ce6881896e2614d","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732428195898,"stop":1732428195898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b325ede7f1ceeec3","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"ec3117c5f0ca458","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9519f48ec729ba4c","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5ce6881896e2614d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5de6808258f0151f.json b/allure-report/data/test-cases/5d1981370251e5ca.json similarity index 71% rename from allure-report/data/test-cases/5de6808258f0151f.json rename to allure-report/data/test-cases/5d1981370251e5ca.json index c08cfaab863..3679199e02e 100644 --- a/allure-report/data/test-cases/5de6808258f0151f.json +++ b/allure-report/data/test-cases/5d1981370251e5ca.json @@ -1 +1 @@ -{"uid":"5de6808258f0151f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d86f11066e8eb2f7","name":"stdout","source":"d86f11066e8eb2f7.txt","type":"text/plain","size":808}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5de6808258f0151f.json","parameterValues":[]} \ No newline at end of file +{"uid":"5d1981370251e5ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3e79fdee962a6c7a","name":"stdout","source":"3e79fdee962a6c7a.txt","type":"text/plain","size":808}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5d1981370251e5ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d373bcba925975c.json b/allure-report/data/test-cases/5d373bcba925975c.json new file mode 100644 index 00000000000..66696f89baf --- /dev/null +++ b/allure-report/data/test-cases/5d373bcba925975c.json @@ -0,0 +1 @@ +{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732428194535,"stop":1732428194535,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732428194536,"stop":1732428194536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Valid Parentheses"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b169e974f5edace2","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"83c423646ff2d9ba","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b29b4bc1c1fe7917","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"5d373bcba925975c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d8c14adba840438.json b/allure-report/data/test-cases/5d8c14adba840438.json new file mode 100644 index 00000000000..9847b3f54b5 --- /dev/null +++ b/allure-report/data/test-cases/5d8c14adba840438.json @@ -0,0 +1 @@ +{"uid":"5d8c14adba840438","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":14,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1732428194165,"stop":1732428194165,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13ca3a7cd8b0e3af","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"4c7e13d0f61cf99a","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ace382695affabdf","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},"source":"5d8c14adba840438.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c1504a4fcfadf69.json b/allure-report/data/test-cases/5ea1e8d078b774a7.json similarity index 57% rename from allure-report/data/test-cases/6c1504a4fcfadf69.json rename to allure-report/data/test-cases/5ea1e8d078b774a7.json index 5ff6e1feeea..233ead5efcc 100644 --- a/allure-report/data/test-cases/6c1504a4fcfadf69.json +++ b/allure-report/data/test-cases/5ea1e8d078b774a7.json @@ -1 +1 @@ -{"uid":"6c1504a4fcfadf69","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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f26281521e32f10c","name":"stdout","source":"f26281521e32f10c.txt","type":"text/plain","size":791}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":2,"unknown":0,"total":2},"items":[{"uid":"a83637127d81f7d9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"6c1504a4fcfadf69.json","parameterValues":[]} \ No newline at end of file +{"uid":"5ea1e8d078b774a7","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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3326f8b00659b17c","name":"stdout","source":"3326f8b00659b17c.txt","type":"text/plain","size":791}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5ea1e8d078b774a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ea5418b10cdf416.json b/allure-report/data/test-cases/5ea5418b10cdf416.json new file mode 100644 index 00000000000..20df6bb3235 --- /dev/null +++ b/allure-report/data/test-cases/5ea5418b10cdf416.json @@ -0,0 +1 @@ +{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732428194205,"stop":1732428194205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1732428194209,"stop":1732428194209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"15dbab6d625f40d3","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"8cdb3386cf094e1f","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5ea5418b10cdf416.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5eca272b3b393557.json b/allure-report/data/test-cases/5eca272b3b393557.json new file mode 100644 index 00000000000..49cbd08bc0c --- /dev/null +++ b/allure-report/data/test-cases/5eca272b3b393557.json @@ -0,0 +1 @@ +{"uid":"5eca272b3b393557","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732428193991,"stop":1732428193991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1732428193994,"stop":1732428193994,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9c645ee48c4616c","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"a7d4500da5fb8933","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b01fd4e8d095b60f","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"5eca272b3b393557.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4783529dae6eb3af.json b/allure-report/data/test-cases/5f2df3f2c9b86d77.json similarity index 79% rename from allure-report/data/test-cases/4783529dae6eb3af.json rename to allure-report/data/test-cases/5f2df3f2c9b86d77.json index 10f2226ddf1..ea7cc7b137d 100644 --- a/allure-report/data/test-cases/4783529dae6eb3af.json +++ b/allure-report/data/test-cases/5f2df3f2c9b86d77.json @@ -1 +1 @@ -{"uid":"4783529dae6eb3af","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"4783529dae6eb3af.json","parameterValues":[]} \ No newline at end of file +{"uid":"5f2df3f2c9b86d77","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"5f2df3f2c9b86d77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f6f3bc16b3488d6.json b/allure-report/data/test-cases/5f6f3bc16b3488d6.json new file mode 100644 index 00000000000..38077009085 --- /dev/null +++ b/allure-report/data/test-cases/5f6f3bc16b3488d6.json @@ -0,0 +1 @@ +{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194689,"stop":1732428194689,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1732428194691,"stop":1732428194691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b890a6fea083097f","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"6207ccc30173aa77","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5f6f3bc16b3488d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fabad9204d0747c.json b/allure-report/data/test-cases/5fabad9204d0747c.json new file mode 100644 index 00000000000..379b3a5fdfd --- /dev/null +++ b/allure-report/data/test-cases/5fabad9204d0747c.json @@ -0,0 +1 @@ +{"uid":"5fabad9204d0747c","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":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194661,"stop":1732428194662,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c89e6a91bc0b9e52","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"23e61e29448b9218","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5fabad9204d0747c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31cd5c9e8017f83c.json b/allure-report/data/test-cases/5fd184f18d9496f9.json similarity index 61% rename from allure-report/data/test-cases/31cd5c9e8017f83c.json rename to allure-report/data/test-cases/5fd184f18d9496f9.json index 79846050be2..4878057489a 100644 --- a/allure-report/data/test-cases/31cd5c9e8017f83c.json +++ b/allure-report/data/test-cases/5fd184f18d9496f9.json @@ -1 +1 @@ -{"uid":"31cd5c9e8017f83c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92abbc4fad82e6db","name":"stdout","source":"92abbc4fad82e6db.txt","type":"text/plain","size":243}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11b4e7794c00f220","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1ef3e1da7f90eb82","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"31cd5c9e8017f83c.json","parameterValues":[]} \ No newline at end of file +{"uid":"5fd184f18d9496f9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f33a24130d10b19","name":"stdout","source":"1f33a24130d10b19.txt","type":"text/plain","size":243}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"5fd184f18d9496f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb3e9f6b3780b454.json b/allure-report/data/test-cases/5fda510dc29832db.json similarity index 59% rename from allure-report/data/test-cases/eb3e9f6b3780b454.json rename to allure-report/data/test-cases/5fda510dc29832db.json index 991e4fcb516..fdcd50e14ff 100644 --- a/allure-report/data/test-cases/eb3e9f6b3780b454.json +++ b/allure-report/data/test-cases/5fda510dc29832db.json @@ -1 +1 @@ -{"uid":"eb3e9f6b3780b454","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ae1ab7427cab55e0","name":"stdout","source":"ae1ab7427cab55e0.txt","type":"text/plain","size":97}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"535d557e01267994","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"eb3e9f6b3780b454.json","parameterValues":[]} \ No newline at end of file +{"uid":"5fda510dc29832db","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff867546b68da848","name":"stdout","source":"ff867546b68da848.txt","type":"text/plain","size":97}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5fda510dc29832db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ffc43ce0a9f46c9.json b/allure-report/data/test-cases/5ffc43ce0a9f46c9.json new file mode 100644 index 00000000000..f652cd7d45b --- /dev/null +++ b/allure-report/data/test-cases/5ffc43ce0a9f46c9.json @@ -0,0 +1 @@ +{"uid":"5ffc43ce0a9f46c9","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":1732428195479,"stop":1732428195479,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7be232a1c65ba711","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"26f23a936b51b328","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d946600dafcc1f6d","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"5ffc43ce0a9f46c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60180807c3815756.json b/allure-report/data/test-cases/60180807c3815756.json new file mode 100644 index 00000000000..1de5e077558 --- /dev/null +++ b/allure-report/data/test-cases/60180807c3815756.json @@ -0,0 +1 @@ +{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"53ac096f64d86d36","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"3f2abb7dc9376332","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a10d36c92cf89a63","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"60180807c3815756.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6022cdc8b5145e28.json b/allure-report/data/test-cases/6022cdc8b5145e28.json deleted file mode 100644 index e3eaaaaf458..00000000000 --- a/allure-report/data/test-cases/6022cdc8b5145e28.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6022cdc8b5145e28","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d352d3b8134952ea","name":"stdout","source":"d352d3b8134952ea.txt","type":"text/plain","size":307}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"6022cdc8b5145e28.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1719ddf6913445c8.json b/allure-report/data/test-cases/602b6b1c829f1e7f.json similarity index 50% rename from allure-report/data/test-cases/1719ddf6913445c8.json rename to allure-report/data/test-cases/602b6b1c829f1e7f.json index e81e1adbeb3..db1a6dd753c 100644 --- a/allure-report/data/test-cases/1719ddf6913445c8.json +++ b/allure-report/data/test-cases/602b6b1c829f1e7f.json @@ -1 +1 @@ -{"uid":"1719ddf6913445c8","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8cdc7c5d92ea524","name":"stdout","source":"a8cdc7c5d92ea524.txt","type":"text/plain","size":1127}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"abba91be3722688b","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"66511dda8143933e","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"1719ddf6913445c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"602b6b1c829f1e7f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c002cae94869ae","name":"stdout","source":"8c002cae94869ae.txt","type":"text/plain","size":1127}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"602b6b1c829f1e7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6030df3a53146090.json b/allure-report/data/test-cases/6030df3a53146090.json new file mode 100644 index 00000000000..dee69bacc95 --- /dev/null +++ b/allure-report/data/test-cases/6030df3a53146090.json @@ -0,0 +1 @@ +{"uid":"6030df3a53146090","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca0d330469f49836","name":"stdout","source":"ca0d330469f49836.txt","type":"text/plain","size":640}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6030df3a53146090.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6076e8e1aaaa11ab.json b/allure-report/data/test-cases/6076e8e1aaaa11ab.json new file mode 100644 index 00000000000..259f54af06b --- /dev/null +++ b/allure-report/data/test-cases/6076e8e1aaaa11ab.json @@ -0,0 +1 @@ +{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732428194490,"stop":1732428194490,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"20ae87fc51fb9338","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"47bce28013711283","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"11b652a05502070f","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"6076e8e1aaaa11ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/607f84fe70696eb5.json b/allure-report/data/test-cases/607f84fe70696eb5.json new file mode 100644 index 00000000000..88b90b1ebcf --- /dev/null +++ b/allure-report/data/test-cases/607f84fe70696eb5.json @@ -0,0 +1 @@ +{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732428194512,"stop":1732428194512,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732428194511,"stop":1732428194511,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1732428194513,"stop":1732428194513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"997065a61e801d4c","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"b4abfaf3d77f3f23","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"607f84fe70696eb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/431c7499a8a042ca.json b/allure-report/data/test-cases/6113acbf67a69117.json similarity index 63% rename from allure-report/data/test-cases/431c7499a8a042ca.json rename to allure-report/data/test-cases/6113acbf67a69117.json index 1fe440f8c3f..8d8465a1c49 100644 --- a/allure-report/data/test-cases/431c7499a8a042ca.json +++ b/allure-report/data/test-cases/6113acbf67a69117.json @@ -1 +1 @@ -{"uid":"431c7499a8a042ca","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8749033ef3225ff","name":"stdout","source":"b8749033ef3225ff.txt","type":"text/plain","size":524}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"431c7499a8a042ca.json","parameterValues":[]} \ No newline at end of file +{"uid":"6113acbf67a69117","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6cd50ae6a92d4a65","name":"stdout","source":"6cd50ae6a92d4a65.txt","type":"text/plain","size":524}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"6113acbf67a69117.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/614133ca9c69e105.json b/allure-report/data/test-cases/614133ca9c69e105.json new file mode 100644 index 00000000000..4f21c5c2228 --- /dev/null +++ b/allure-report/data/test-cases/614133ca9c69e105.json @@ -0,0 +1 @@ +{"uid":"614133ca9c69e105","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":1732428196195,"stop":1732428196195,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"711e095503a0cf45","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"be628f1c5b8245e1","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6d9afe9fda19581e","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"614133ca9c69e105.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9035abe5e1151932.json b/allure-report/data/test-cases/614d8ec123787b56.json similarity index 53% rename from allure-report/data/test-cases/9035abe5e1151932.json rename to allure-report/data/test-cases/614d8ec123787b56.json index e909c1244f3..bce348a4d96 100644 --- a/allure-report/data/test-cases/9035abe5e1151932.json +++ b/allure-report/data/test-cases/614d8ec123787b56.json @@ -1 +1 @@ -{"uid":"9035abe5e1151932","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e51aca385250e4","name":"stdout","source":"6e51aca385250e4.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9035abe5e1151932.json","parameterValues":[]} \ No newline at end of file +{"uid":"614d8ec123787b56","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef14b2090647c37e","name":"stdout","source":"ef14b2090647c37e.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"614d8ec123787b56.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d757011cc42c205e.json b/allure-report/data/test-cases/6207ccc30173aa77.json similarity index 64% rename from allure-report/data/test-cases/d757011cc42c205e.json rename to allure-report/data/test-cases/6207ccc30173aa77.json index 44e04e6b1cd..bc15b602d44 100644 --- a/allure-report/data/test-cases/d757011cc42c205e.json +++ b/allure-report/data/test-cases/6207ccc30173aa77.json @@ -1 +1 @@ -{"uid":"d757011cc42c205e","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c954d80fa61d867d","name":"stdout","source":"c954d80fa61d867d.txt","type":"text/plain","size":1093}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d757011cc42c205e.json","parameterValues":[]} \ No newline at end of file +{"uid":"6207ccc30173aa77","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8b7ee3418e7b9e0","name":"stdout","source":"d8b7ee3418e7b9e0.txt","type":"text/plain","size":1093}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"6207ccc30173aa77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62141a9b45e036f9.json b/allure-report/data/test-cases/62141a9b45e036f9.json new file mode 100644 index 00000000000..1c996b9b4b6 --- /dev/null +++ b/allure-report/data/test-cases/62141a9b45e036f9.json @@ -0,0 +1 @@ +{"uid":"62141a9b45e036f9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732428194701,"stop":1732428194701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6feb6674f3a0e85e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"967fef280aa6e796","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b7f0b03733442e8","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"62141a9b45e036f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab4f4753656b93ab.json b/allure-report/data/test-cases/62507dec220dfd02.json similarity index 69% rename from allure-report/data/test-cases/ab4f4753656b93ab.json rename to allure-report/data/test-cases/62507dec220dfd02.json index 5a0f3981cde..d0e620d5952 100644 --- a/allure-report/data/test-cases/ab4f4753656b93ab.json +++ b/allure-report/data/test-cases/62507dec220dfd02.json @@ -1 +1 @@ -{"uid":"ab4f4753656b93ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e89406beb8fb490f","name":"stdout","source":"e89406beb8fb490f.txt","type":"text/plain","size":76}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ab4f4753656b93ab.json","parameterValues":[]} \ No newline at end of file +{"uid":"62507dec220dfd02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce20c6dd4e02cb56","name":"stdout","source":"ce20c6dd4e02cb56.txt","type":"text/plain","size":76}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"62507dec220dfd02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/627da61e5891aa44.json b/allure-report/data/test-cases/627da61e5891aa44.json deleted file mode 100644 index e45acc19ed3..00000000000 --- a/allure-report/data/test-cases/627da61e5891aa44.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"627da61e5891aa44","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c126cf9c398e7752","name":"stdout","source":"c126cf9c398e7752.txt","type":"text/plain","size":263}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b5f6e3f148925a4f","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d8e9539521c4ca00","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"627da61e5891aa44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62e01ffb20b661b5.json b/allure-report/data/test-cases/62e01ffb20b661b5.json new file mode 100644 index 00000000000..7a9af991b34 --- /dev/null +++ b/allure-report/data/test-cases/62e01ffb20b661b5.json @@ -0,0 +1 @@ +{"uid":"62e01ffb20b661b5","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":1732428195854,"stop":1732428195854,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"62e01ffb20b661b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62ef482e2cb3493b.json b/allure-report/data/test-cases/62ef482e2cb3493b.json new file mode 100644 index 00000000000..e1a62398e77 --- /dev/null +++ b/allure-report/data/test-cases/62ef482e2cb3493b.json @@ -0,0 +1 @@ +{"uid":"62ef482e2cb3493b","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":"

Codewars badge:

Test Description:

Positive test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"3cb4765f4f4fe8e7","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"cc1bd3cedb1bfef0","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"62ef482e2cb3493b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1073662453fffbc9.json b/allure-report/data/test-cases/6309fbba516976ae.json similarity index 57% rename from allure-report/data/test-cases/1073662453fffbc9.json rename to allure-report/data/test-cases/6309fbba516976ae.json index 9995afddadd..89bce92bc71 100644 --- a/allure-report/data/test-cases/1073662453fffbc9.json +++ b/allure-report/data/test-cases/6309fbba516976ae.json @@ -1 +1 @@ -{"uid":"1073662453fffbc9","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"caf6549170870e9e","name":"stdout","source":"caf6549170870e9e.txt","type":"text/plain","size":53}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3ffd9201b6a1ce3","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"1073662453fffbc9.json","parameterValues":[]} \ No newline at end of file +{"uid":"6309fbba516976ae","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"724f9727a6725fde","name":"stdout","source":"724f9727a6725fde.txt","type":"text/plain","size":53}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6309fbba516976ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6af8fedb1f0ef3c6.json b/allure-report/data/test-cases/6373ea673c2617a2.json similarity index 72% rename from allure-report/data/test-cases/6af8fedb1f0ef3c6.json rename to allure-report/data/test-cases/6373ea673c2617a2.json index c65a6fd2942..c3f2096d41c 100644 --- a/allure-report/data/test-cases/6af8fedb1f0ef3c6.json +++ b/allure-report/data/test-cases/6373ea673c2617a2.json @@ -1 +1 @@ -{"uid":"6af8fedb1f0ef3c6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b9b05bf139af2d32","name":"stdout","source":"b9b05bf139af2d32.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6af8fedb1f0ef3c6.json","parameterValues":[]} \ No newline at end of file +{"uid":"6373ea673c2617a2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a9f925f082e601ea","name":"stdout","source":"a9f925f082e601ea.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"6373ea673c2617a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f50d911c93ffbcb0.json b/allure-report/data/test-cases/6399c372aa4005f1.json similarity index 56% rename from allure-report/data/test-cases/f50d911c93ffbcb0.json rename to allure-report/data/test-cases/6399c372aa4005f1.json index 27f17000fb4..6154a4b0a69 100644 --- a/allure-report/data/test-cases/f50d911c93ffbcb0.json +++ b/allure-report/data/test-cases/6399c372aa4005f1.json @@ -1 +1 @@ -{"uid":"f50d911c93ffbcb0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72d1d4db3cffe73b","name":"stdout","source":"72d1d4db3cffe73b.txt","type":"text/plain","size":196}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25be1d40d6774add","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"f50d911c93ffbcb0.json","parameterValues":[]} \ No newline at end of file +{"uid":"6399c372aa4005f1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"72f4c1312eb8e355","name":"stdout","source":"72f4c1312eb8e355.txt","type":"text/plain","size":196}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"6399c372aa4005f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/571c043aeb64d363.json b/allure-report/data/test-cases/63e9aeb63ef06083.json similarity index 70% rename from allure-report/data/test-cases/571c043aeb64d363.json rename to allure-report/data/test-cases/63e9aeb63ef06083.json index e2b6063d20b..a0b264642f2 100644 --- a/allure-report/data/test-cases/571c043aeb64d363.json +++ b/allure-report/data/test-cases/63e9aeb63ef06083.json @@ -1 +1 @@ -{"uid":"571c043aeb64d363","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c72b6aed91bdc6cb","name":"stdout","source":"c72b6aed91bdc6cb.txt","type":"text/plain","size":81}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"571c043aeb64d363.json","parameterValues":[]} \ No newline at end of file +{"uid":"63e9aeb63ef06083","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"36d455921a73202d","name":"stdout","source":"36d455921a73202d.txt","type":"text/plain","size":81}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"63e9aeb63ef06083.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6421e8610575915.json b/allure-report/data/test-cases/6421e8610575915.json new file mode 100644 index 00000000000..de7b4b30cb7 --- /dev/null +++ b/allure-report/data/test-cases/6421e8610575915.json @@ -0,0 +1 @@ +{"uid":"6421e8610575915","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e44deaae3b3d699a","name":"stdout","source":"e44deaae3b3d699a.txt","type":"text/plain","size":556}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6421e8610575915.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/648462a68a83b780.json b/allure-report/data/test-cases/648462a68a83b780.json new file mode 100644 index 00000000000..157281da2e6 --- /dev/null +++ b/allure-report/data/test-cases/648462a68a83b780.json @@ -0,0 +1 @@ +{"uid":"648462a68a83b780","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"69c2dd61a98f0df6","name":"stdout","source":"69c2dd61a98f0df6.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"648462a68a83b780.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/649728966aa92b06.json b/allure-report/data/test-cases/649728966aa92b06.json new file mode 100644 index 00000000000..78d1eb82c6b --- /dev/null +++ b/allure-report/data/test-cases/649728966aa92b06.json @@ -0,0 +1 @@ +{"uid":"649728966aa92b06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732428195889,"stop":1732428195889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732428195891,"stop":1732428195891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Maximum Multiple"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b613507776a0871","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"64cdb3b918aa694e","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b96004f0b179053d","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"649728966aa92b06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e5b993187ac8b27.json b/allure-report/data/test-cases/64c2df72a296b62e.json similarity index 64% rename from allure-report/data/test-cases/9e5b993187ac8b27.json rename to allure-report/data/test-cases/64c2df72a296b62e.json index 34e0eb5c734..7c0b8cf6052 100644 --- a/allure-report/data/test-cases/9e5b993187ac8b27.json +++ b/allure-report/data/test-cases/64c2df72a296b62e.json @@ -1 +1 @@ -{"uid":"9e5b993187ac8b27","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"838e96495b7301c2","name":"stdout","source":"838e96495b7301c2.txt","type":"text/plain","size":1500}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f534ec218cc4d08d","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"tags":[]},"source":"9e5b993187ac8b27.json","parameterValues":[]} \ No newline at end of file +{"uid":"64c2df72a296b62e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aeaa6146da01ffaa","name":"stdout","source":"aeaa6146da01ffaa.txt","type":"text/plain","size":1500}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"64c2df72a296b62e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/587ebae959bb9619.json b/allure-report/data/test-cases/64cdb3b918aa694e.json similarity index 72% rename from allure-report/data/test-cases/587ebae959bb9619.json rename to allure-report/data/test-cases/64cdb3b918aa694e.json index f223a679d4d..1e47326ee21 100644 --- a/allure-report/data/test-cases/587ebae959bb9619.json +++ b/allure-report/data/test-cases/64cdb3b918aa694e.json @@ -1 +1 @@ -{"uid":"587ebae959bb9619","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"13b8ab05fc59b31a","name":"stdout","source":"13b8ab05fc59b31a.txt","type":"text/plain","size":539}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"587ebae959bb9619.json","parameterValues":[]} \ No newline at end of file +{"uid":"64cdb3b918aa694e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6100c33a0bd08814","name":"stdout","source":"6100c33a0bd08814.txt","type":"text/plain","size":539}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"64cdb3b918aa694e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8cc7e1ba1a4852f.json b/allure-report/data/test-cases/64d00badde981bd3.json similarity index 59% rename from allure-report/data/test-cases/f8cc7e1ba1a4852f.json rename to allure-report/data/test-cases/64d00badde981bd3.json index fc6f512e12b..99e1ef213c3 100644 --- a/allure-report/data/test-cases/f8cc7e1ba1a4852f.json +++ b/allure-report/data/test-cases/64d00badde981bd3.json @@ -1 +1 @@ -{"uid":"f8cc7e1ba1a4852f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4646d812c4a39ce","name":"stdout","source":"4646d812c4a39ce.txt","type":"text/plain","size":554}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"f8cc7e1ba1a4852f.json","parameterValues":[]} \ No newline at end of file +{"uid":"64d00badde981bd3","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7e4c2d208b9b87","name":"stdout","source":"e7e4c2d208b9b87.txt","type":"text/plain","size":554}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"64d00badde981bd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/656eaa4febf44ace.json b/allure-report/data/test-cases/656eaa4febf44ace.json new file mode 100644 index 00000000000..b5b04141102 --- /dev/null +++ b/allure-report/data/test-cases/656eaa4febf44ace.json @@ -0,0 +1 @@ +{"uid":"656eaa4febf44ace","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd8ecc1f6b5a44","name":"stdout","source":"cd8ecc1f6b5a44.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"656eaa4febf44ace.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/139c28ca38674b14.json b/allure-report/data/test-cases/65a370055ee8e2b9.json similarity index 67% rename from allure-report/data/test-cases/139c28ca38674b14.json rename to allure-report/data/test-cases/65a370055ee8e2b9.json index 8ada559e423..c00857d88e4 100644 --- a/allure-report/data/test-cases/139c28ca38674b14.json +++ b/allure-report/data/test-cases/65a370055ee8e2b9.json @@ -1 +1 @@ -{"uid":"139c28ca38674b14","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4a5ff4e66314365b","name":"stdout","source":"4a5ff4e66314365b.txt","type":"text/plain","size":55}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6e7e7d9161dd5e2","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"139c28ca38674b14.json","parameterValues":[]} \ No newline at end of file +{"uid":"65a370055ee8e2b9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1d395e740ae82411","name":"stdout","source":"1d395e740ae82411.txt","type":"text/plain","size":55}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"65a370055ee8e2b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da49bdf1737798b8.json b/allure-report/data/test-cases/65cad3353d8c115b.json similarity index 66% rename from allure-report/data/test-cases/da49bdf1737798b8.json rename to allure-report/data/test-cases/65cad3353d8c115b.json index 7307a2a05b4..c4ce205ef56 100644 --- a/allure-report/data/test-cases/da49bdf1737798b8.json +++ b/allure-report/data/test-cases/65cad3353d8c115b.json @@ -1 +1 @@ -{"uid":"da49bdf1737798b8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6833583f4e17d4b6","name":"stdout","source":"6833583f4e17d4b6.txt","type":"text/plain","size":307}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6022cdc8b5145e28","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"da49bdf1737798b8.json","parameterValues":[]} \ No newline at end of file +{"uid":"65cad3353d8c115b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f50d22d7c09cd383","name":"stdout","source":"f50d22d7c09cd383.txt","type":"text/plain","size":307}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"65cad3353d8c115b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65d5a47944859245.json b/allure-report/data/test-cases/65d5a47944859245.json new file mode 100644 index 00000000000..c2313ca5d5a --- /dev/null +++ b/allure-report/data/test-cases/65d5a47944859245.json @@ -0,0 +1 @@ +{"uid":"65d5a47944859245","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d73a4f3af439d6","name":"stdout","source":"6d73a4f3af439d6.txt","type":"text/plain","size":202}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"65d5a47944859245.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/660684096c18d05d.json b/allure-report/data/test-cases/660684096c18d05d.json new file mode 100644 index 00000000000..75dd627ba97 --- /dev/null +++ b/allure-report/data/test-cases/660684096c18d05d.json @@ -0,0 +1 @@ +{"uid":"660684096c18d05d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2dbf09b568ff5668","name":"stdout","source":"2dbf09b568ff5668.txt","type":"text/plain","size":130}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"660684096c18d05d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6660f839d8534ee2.json b/allure-report/data/test-cases/6660f839d8534ee2.json new file mode 100644 index 00000000000..5aeb9e8981b --- /dev/null +++ b/allure-report/data/test-cases/6660f839d8534ee2.json @@ -0,0 +1 @@ +{"uid":"6660f839d8534ee2","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":1732428195998,"stop":1732428195998,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732428196003,"stop":1732428196003,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of powers of 2"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"26764a4bab46b2bf","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"1bf2db2d5f0c7414","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"4ecd1e835300dbcf","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6660f839d8534ee2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67a957cc2815c6ee.json b/allure-report/data/test-cases/67a957cc2815c6ee.json new file mode 100644 index 00000000000..510ca5ba652 --- /dev/null +++ b/allure-report/data/test-cases/67a957cc2815c6ee.json @@ -0,0 +1 @@ +{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732428194283,"stop":1732428194283,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732428194285,"stop":1732428194285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Human Readable Time"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e40b6e0fafdfb7a4","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"33bc4a62afa9ed1a","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"cb5c8ea3b9796931","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"67a957cc2815c6ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/10b94291a50321ec.json b/allure-report/data/test-cases/67f932ff555edbd0.json similarity index 69% rename from allure-report/data/test-cases/10b94291a50321ec.json rename to allure-report/data/test-cases/67f932ff555edbd0.json index 1454aaeb074..03fb0450b9f 100644 --- a/allure-report/data/test-cases/10b94291a50321ec.json +++ b/allure-report/data/test-cases/67f932ff555edbd0.json @@ -1 +1 @@ -{"uid":"10b94291a50321ec","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d1c728cd3990d41","name":"stdout","source":"4d1c728cd3990d41.txt","type":"text/plain","size":41}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"10b94291a50321ec.json","parameterValues":[]} \ No newline at end of file +{"uid":"67f932ff555edbd0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1fcc34d0c68ae769","name":"stdout","source":"1fcc34d0c68ae769.txt","type":"text/plain","size":41}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"67f932ff555edbd0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91e2410535ccc997.json b/allure-report/data/test-cases/684d4d6fbb32213a.json similarity index 64% rename from allure-report/data/test-cases/91e2410535ccc997.json rename to allure-report/data/test-cases/684d4d6fbb32213a.json index 495c7fcf97b..583015da5e4 100644 --- a/allure-report/data/test-cases/91e2410535ccc997.json +++ b/allure-report/data/test-cases/684d4d6fbb32213a.json @@ -1 +1 @@ -{"uid":"91e2410535ccc997","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5763b31517fb1cf6","name":"stdout","source":"5763b31517fb1cf6.txt","type":"text/plain","size":167}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"91e2410535ccc997.json","parameterValues":[]} \ No newline at end of file +{"uid":"684d4d6fbb32213a","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62d969149cac19e2","name":"stdout","source":"62d969149cac19e2.txt","type":"text/plain","size":167}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"684d4d6fbb32213a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55d1d73293e16236.json b/allure-report/data/test-cases/68ae9688c7c99a04.json similarity index 65% rename from allure-report/data/test-cases/55d1d73293e16236.json rename to allure-report/data/test-cases/68ae9688c7c99a04.json index 69c0ae15a65..d2c88d9c39d 100644 --- a/allure-report/data/test-cases/55d1d73293e16236.json +++ b/allure-report/data/test-cases/68ae9688c7c99a04.json @@ -1 +1 @@ -{"uid":"55d1d73293e16236","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e063e588b090ea7","name":"stdout","source":"9e063e588b090ea7.txt","type":"text/plain","size":882}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"55d1d73293e16236.json","parameterValues":[]} \ No newline at end of file +{"uid":"68ae9688c7c99a04","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4c19c67f026536b3","name":"stdout","source":"4c19c67f026536b3.txt","type":"text/plain","size":882}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"68ae9688c7c99a04.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68c4a39d8a6017b.json b/allure-report/data/test-cases/68c4a39d8a6017b.json deleted file mode 100644 index 37b51f0c8b3..00000000000 --- a/allure-report/data/test-cases/68c4a39d8a6017b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"68c4a39d8a6017b","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"189c0101c5666165","name":"stdout","source":"189c0101c5666165.txt","type":"text/plain","size":3097}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"68c4a39d8a6017b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30fbee992b0ca53e.json b/allure-report/data/test-cases/68db53b8169ad957.json similarity index 74% rename from allure-report/data/test-cases/30fbee992b0ca53e.json rename to allure-report/data/test-cases/68db53b8169ad957.json index b7ecabc632f..cda4d59859b 100644 --- a/allure-report/data/test-cases/30fbee992b0ca53e.json +++ b/allure-report/data/test-cases/68db53b8169ad957.json @@ -1 +1 @@ -{"uid":"30fbee992b0ca53e","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e31fbe4dea71ee0","name":"stdout","source":"6e31fbe4dea71ee0.txt","type":"text/plain","size":336}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30fbee992b0ca53e.json","parameterValues":[]} \ No newline at end of file +{"uid":"68db53b8169ad957","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3e088b2fc3849ac3","name":"stdout","source":"3e088b2fc3849ac3.txt","type":"text/plain","size":336}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"68db53b8169ad957.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1dfdd5c5551a6420.json b/allure-report/data/test-cases/691701add6daaf89.json similarity index 63% rename from allure-report/data/test-cases/1dfdd5c5551a6420.json rename to allure-report/data/test-cases/691701add6daaf89.json index 8c836bbb2bc..016e0516ed3 100644 --- a/allure-report/data/test-cases/1dfdd5c5551a6420.json +++ b/allure-report/data/test-cases/691701add6daaf89.json @@ -1 +1 @@ -{"uid":"1dfdd5c5551a6420","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dc00b83d62a7bfbf","name":"stdout","source":"dc00b83d62a7bfbf.txt","type":"text/plain","size":401}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1dfdd5c5551a6420.json","parameterValues":[]} \ No newline at end of file +{"uid":"691701add6daaf89","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"974d8c9279e15557","name":"stdout","source":"974d8c9279e15557.txt","type":"text/plain","size":401}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"691701add6daaf89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/474af6c568bdf675.json b/allure-report/data/test-cases/693d19da33d622de.json similarity index 65% rename from allure-report/data/test-cases/474af6c568bdf675.json rename to allure-report/data/test-cases/693d19da33d622de.json index ab9df8f38fb..cb49a1a81ba 100644 --- a/allure-report/data/test-cases/474af6c568bdf675.json +++ b/allure-report/data/test-cases/693d19da33d622de.json @@ -1 +1 @@ -{"uid":"474af6c568bdf675","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41c90fa760e8d420","name":"stdout","source":"41c90fa760e8d420.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"474af6c568bdf675.json","parameterValues":[]} \ No newline at end of file +{"uid":"693d19da33d622de","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f24a9f86ff4ef095","name":"stdout","source":"f24a9f86ff4ef095.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"693d19da33d622de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/698c99dcac4b0d93.json b/allure-report/data/test-cases/698c99dcac4b0d93.json new file mode 100644 index 00000000000..0abcf57b0ef --- /dev/null +++ b/allure-report/data/test-cases/698c99dcac4b0d93.json @@ -0,0 +1 @@ +{"uid":"698c99dcac4b0d93","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732428196217,"stop":1732428196217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"21f553aee2e150e3","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"e0b6b39a4d4f9bf4","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1188dda60b67ea96","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"698c99dcac4b0d93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69f65011f131e2b6.json b/allure-report/data/test-cases/69f65011f131e2b6.json deleted file mode 100644 index 21529e817f6..00000000000 --- a/allure-report/data/test-cases/69f65011f131e2b6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b653a3e02677ec62","name":"stdout","source":"b653a3e02677ec62.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"6af8fedb1f0ef3c6","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5e4b0e05a0862f7e","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"69f65011f131e2b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a1d96979e635e7f.json b/allure-report/data/test-cases/6a1d96979e635e7f.json deleted file mode 100644 index 73fadddd7a7..00000000000 --- a/allure-report/data/test-cases/6a1d96979e635e7f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6a1d96979e635e7f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d19d47ecb32ff1a","name":"stdout","source":"d19d47ecb32ff1a.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"17f807e7e2cad355","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":[]},"source":"6a1d96979e635e7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfe92f9ff640a644.json b/allure-report/data/test-cases/6a59d6609523c5a8.json similarity index 61% rename from allure-report/data/test-cases/bfe92f9ff640a644.json rename to allure-report/data/test-cases/6a59d6609523c5a8.json index 1542028bb53..1b7b26e51df 100644 --- a/allure-report/data/test-cases/bfe92f9ff640a644.json +++ b/allure-report/data/test-cases/6a59d6609523c5a8.json @@ -1 +1 @@ -{"uid":"bfe92f9ff640a644","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d032b19c209c380e","name":"stdout","source":"d032b19c209c380e.txt","type":"text/plain","size":146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a1571db34190da47","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"bfe92f9ff640a644.json","parameterValues":[]} \ No newline at end of file +{"uid":"6a59d6609523c5a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"4a05a037b7d71615","name":"stdout","source":"4a05a037b7d71615.txt","type":"text/plain","size":146}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"6a59d6609523c5a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c70ddf45fea2887.json b/allure-report/data/test-cases/6c70ddf45fea2887.json new file mode 100644 index 00000000000..e502815c7c2 --- /dev/null +++ b/allure-report/data/test-cases/6c70ddf45fea2887.json @@ -0,0 +1 @@ +{"uid":"6c70ddf45fea2887","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196288,"stop":1732428196288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6309fbba516976ae","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"2f4dd2b3858b1ec4","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1073662453fffbc9","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"6c70ddf45fea2887.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ca78efd90ffa643.json b/allure-report/data/test-cases/6ca78efd90ffa643.json new file mode 100644 index 00000000000..2941398742f --- /dev/null +++ b/allure-report/data/test-cases/6ca78efd90ffa643.json @@ -0,0 +1 @@ +{"uid":"6ca78efd90ffa643","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732428196346,"stop":1732428196346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove First and Last Character"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6399c372aa4005f1","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"f8d7fd46b923bc4f","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f50d911c93ffbcb0","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"6ca78efd90ffa643.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d7f7d9659ba7dd5.json b/allure-report/data/test-cases/6d7f7d9659ba7dd5.json new file mode 100644 index 00000000000..51da587bd98 --- /dev/null +++ b/allure-report/data/test-cases/6d7f7d9659ba7dd5.json @@ -0,0 +1 @@ +{"uid":"6d7f7d9659ba7dd5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6d7f7d9659ba7dd5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e3ab906ce5621b5.json b/allure-report/data/test-cases/6e3ab906ce5621b5.json new file mode 100644 index 00000000000..d81114718c0 --- /dev/null +++ b/allure-report/data/test-cases/6e3ab906ce5621b5.json @@ -0,0 +1 @@ +{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732428194528,"stop":1732428194528,"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":"

Codewars badge:

Test Description:

The function should return whether the board's current state is solved.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1732428194529,"stop":1732428194529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7362d176d35d3813","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"9abe86e868e9efe6","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"6e3ab906ce5621b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e3ce129a9f8f588.json b/allure-report/data/test-cases/6e3ce129a9f8f588.json new file mode 100644 index 00000000000..bc6fcc72643 --- /dev/null +++ b/allure-report/data/test-cases/6e3ce129a9f8f588.json @@ -0,0 +1 @@ +{"uid":"6e3ce129a9f8f588","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"23dd45ddb469c4aa","name":"stdout","source":"23dd45ddb469c4aa.txt","type":"text/plain","size":37}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6e3ce129a9f8f588.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/133341d40af1e905.json b/allure-report/data/test-cases/6f0b2af516b0f755.json similarity index 77% rename from allure-report/data/test-cases/133341d40af1e905.json rename to allure-report/data/test-cases/6f0b2af516b0f755.json index 626e3693e30..9c474450b8d 100644 --- a/allure-report/data/test-cases/133341d40af1e905.json +++ b/allure-report/data/test-cases/6f0b2af516b0f755.json @@ -1 +1 @@ -{"uid":"133341d40af1e905","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b4f27bd29772e298","name":"stdout","source":"b4f27bd29772e298.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"133341d40af1e905.json","parameterValues":[]} \ No newline at end of file +{"uid":"6f0b2af516b0f755","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b94b97d784c6cf01","name":"stdout","source":"b94b97d784c6cf01.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"6f0b2af516b0f755.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84f17449b7b13451.json b/allure-report/data/test-cases/6fbd93f1e3abe9a5.json similarity index 65% rename from allure-report/data/test-cases/84f17449b7b13451.json rename to allure-report/data/test-cases/6fbd93f1e3abe9a5.json index f389ab11676..0e31b0f3103 100644 --- a/allure-report/data/test-cases/84f17449b7b13451.json +++ b/allure-report/data/test-cases/6fbd93f1e3abe9a5.json @@ -1 +1 @@ -{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7e0d861d218b6b53","name":"stdout","source":"7e0d861d218b6b53.txt","type":"text/plain","size":34}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"613579922cc04140","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"84f17449b7b13451.json","parameterValues":[]} \ No newline at end of file +{"uid":"6fbd93f1e3abe9a5","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f428986b0baf88be","name":"stdout","source":"f428986b0baf88be.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6fbd93f1e3abe9a5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b7f0b03733442e8.json b/allure-report/data/test-cases/6feb6674f3a0e85e.json similarity index 58% rename from allure-report/data/test-cases/2b7f0b03733442e8.json rename to allure-report/data/test-cases/6feb6674f3a0e85e.json index e1bdb50698c..362f7a51a61 100644 --- a/allure-report/data/test-cases/2b7f0b03733442e8.json +++ b/allure-report/data/test-cases/6feb6674f3a0e85e.json @@ -1 +1 @@ -{"uid":"2b7f0b03733442e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"737d6b3bd85f76bf","name":"stdout","source":"737d6b3bd85f76bf.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5740cd94d023a2bf","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"tags":[]},"source":"2b7f0b03733442e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"6feb6674f3a0e85e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62418f4fe99b4a3a","name":"stdout","source":"62418f4fe99b4a3a.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6feb6674f3a0e85e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70085274c959a3cb.json b/allure-report/data/test-cases/70085274c959a3cb.json deleted file mode 100644 index 2ce5bed6756..00000000000 --- a/allure-report/data/test-cases/70085274c959a3cb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"70085274c959a3cb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f602fdb5599f0ec","name":"stdout","source":"2f602fdb5599f0ec.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8800adc39df0e11","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":[]},"source":"70085274c959a3cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31b67858aaa81503.json b/allure-report/data/test-cases/702c9f7aebde64af.json similarity index 69% rename from allure-report/data/test-cases/31b67858aaa81503.json rename to allure-report/data/test-cases/702c9f7aebde64af.json index 69aeea90bcf..a91ae1a5e46 100644 --- a/allure-report/data/test-cases/31b67858aaa81503.json +++ b/allure-report/data/test-cases/702c9f7aebde64af.json @@ -1 +1 @@ -{"uid":"31b67858aaa81503","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c7c3f41b6f879f22","name":"stdout","source":"c7c3f41b6f879f22.txt","type":"text/plain","size":170}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f85a4b1698202d","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"31b67858aaa81503.json","parameterValues":[]} \ No newline at end of file +{"uid":"702c9f7aebde64af","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bfd7eb06540fa1b6","name":"stdout","source":"bfd7eb06540fa1b6.txt","type":"text/plain","size":170}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"702c9f7aebde64af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/704aacac2db91585.json b/allure-report/data/test-cases/704aacac2db91585.json deleted file mode 100644 index 5a1268a08b1..00000000000 --- a/allure-report/data/test-cases/704aacac2db91585.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"704aacac2db91585","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d406966fbaffbd00","name":"stdout","source":"d406966fbaffbd00.txt","type":"text/plain","size":1649}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"39ba63dd42027b29","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"704aacac2db91585.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7087926d4a83e9d4.json b/allure-report/data/test-cases/7087926d4a83e9d4.json new file mode 100644 index 00000000000..792f7014551 --- /dev/null +++ b/allure-report/data/test-cases/7087926d4a83e9d4.json @@ -0,0 +1 @@ +{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732428194224,"stop":1732428194224,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732428194223,"stop":1732428194223,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732428194225,"stop":1732428194225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3fd800b8d3602698","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"e7e28dd8f45c4374","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d4c41912963969d7","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"7087926d4a83e9d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70963d87150b1b7f.json b/allure-report/data/test-cases/70963d87150b1b7f.json new file mode 100644 index 00000000000..085e2177f0f --- /dev/null +++ b/allure-report/data/test-cases/70963d87150b1b7f.json @@ -0,0 +1 @@ +{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195659,"stop":1732428195659,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195661,"stop":1732428195661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af31da4a2f7e0b3c","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"5187a55d5b7bcbbd","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"59863a86bad45fb3","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"70963d87150b1b7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70eff3ae24ccc67a.json b/allure-report/data/test-cases/70eff3ae24ccc67a.json new file mode 100644 index 00000000000..309d6df99dd --- /dev/null +++ b/allure-report/data/test-cases/70eff3ae24ccc67a.json @@ -0,0 +1 @@ +{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732428194439,"stop":1732428194439,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55e4a84277d15d0d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"a8b77a6618ff7e4c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"70eff3ae24ccc67a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/711928de75b599ba.json b/allure-report/data/test-cases/711928de75b599ba.json new file mode 100644 index 00000000000..54eecf9ee2d --- /dev/null +++ b/allure-report/data/test-cases/711928de75b599ba.json @@ -0,0 +1 @@ +{"uid":"711928de75b599ba","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732428195795,"stop":1732428195795,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732428195797,"stop":1732428195797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"891203fa0698ca9","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"9326ca5c3b3bcaf3","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"33b81b348332f41f","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"711928de75b599ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d9afe9fda19581e.json b/allure-report/data/test-cases/711e095503a0cf45.json similarity index 59% rename from allure-report/data/test-cases/6d9afe9fda19581e.json rename to allure-report/data/test-cases/711e095503a0cf45.json index c6d901fe125..36c9dcc4a9b 100644 --- a/allure-report/data/test-cases/6d9afe9fda19581e.json +++ b/allure-report/data/test-cases/711e095503a0cf45.json @@ -1 +1 @@ -{"uid":"6d9afe9fda19581e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3861efa7e547869","name":"stdout","source":"e3861efa7e547869.txt","type":"text/plain","size":189}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bfd2093ec920e131","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6d9afe9fda19581e.json","parameterValues":[]} \ No newline at end of file +{"uid":"711e095503a0cf45","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eea11ddd2a3b1d10","name":"stdout","source":"eea11ddd2a3b1d10.txt","type":"text/plain","size":189}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"711e095503a0cf45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39245131d70863d6.json b/allure-report/data/test-cases/7131237025069abe.json similarity index 63% rename from allure-report/data/test-cases/39245131d70863d6.json rename to allure-report/data/test-cases/7131237025069abe.json index 967e7e696b0..a4d4c0118d1 100644 --- a/allure-report/data/test-cases/39245131d70863d6.json +++ b/allure-report/data/test-cases/7131237025069abe.json @@ -1 +1 @@ -{"uid":"39245131d70863d6","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":"8d05bbd591902299","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"39245131d70863d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"7131237025069abe","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":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":"7131237025069abe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/71e40623077306da.json b/allure-report/data/test-cases/71e40623077306da.json new file mode 100644 index 00000000000..95b67bf7b34 --- /dev/null +++ b/allure-report/data/test-cases/71e40623077306da.json @@ -0,0 +1 @@ +{"uid":"71e40623077306da","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":1732428196174,"stop":1732428196175,"duration":1},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f94de18ab2e95fb","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"d1974f16b30f7476","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1c922c5f58027b49","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"71e40623077306da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38639b46d1e381a9.json b/allure-report/data/test-cases/72a7c9402c254937.json similarity index 70% rename from allure-report/data/test-cases/38639b46d1e381a9.json rename to allure-report/data/test-cases/72a7c9402c254937.json index 0fa38574851..357a4822cc7 100644 --- a/allure-report/data/test-cases/38639b46d1e381a9.json +++ b/allure-report/data/test-cases/72a7c9402c254937.json @@ -1 +1 @@ -{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"121911719c53624e","name":"stdout","source":"121911719c53624e.txt","type":"text/plain","size":772}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dbd8c0e7d9b1bcd0","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"38639b46d1e381a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"72a7c9402c254937","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"63b31f8c0af20d94","name":"stdout","source":"63b31f8c0af20d94.txt","type":"text/plain","size":772}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9a401d5b28fee66a","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"38639b46d1e381a9","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"72a7c9402c254937.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85cc51a7df0f4a6c.json b/allure-report/data/test-cases/73100341c811e8de.json similarity index 72% rename from allure-report/data/test-cases/85cc51a7df0f4a6c.json rename to allure-report/data/test-cases/73100341c811e8de.json index fdf12b0ed09..64d8b19c4bf 100644 --- a/allure-report/data/test-cases/85cc51a7df0f4a6c.json +++ b/allure-report/data/test-cases/73100341c811e8de.json @@ -1 +1 @@ -{"uid":"85cc51a7df0f4a6c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"85cc51a7df0f4a6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"73100341c811e8de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"73100341c811e8de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6cad203fab564c60.json b/allure-report/data/test-cases/7362d176d35d3813.json similarity index 61% rename from allure-report/data/test-cases/6cad203fab564c60.json rename to allure-report/data/test-cases/7362d176d35d3813.json index 958fb09b1ee..658f2ccf576 100644 --- a/allure-report/data/test-cases/6cad203fab564c60.json +++ b/allure-report/data/test-cases/7362d176d35d3813.json @@ -1 +1 @@ -{"uid":"6cad203fab564c60","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac68097df5e78e9a","name":"stdout","source":"ac68097df5e78e9a.txt","type":"text/plain","size":277}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e41551e078ed42ea","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"63cbfe00daba1c69","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["ARRAY","ALGORITHMS"]},"source":"6cad203fab564c60.json","parameterValues":[]} \ No newline at end of file +{"uid":"7362d176d35d3813","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff2bf17d38e7cc3b","name":"stdout","source":"ff2bf17d38e7cc3b.txt","type":"text/plain","size":277}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"7362d176d35d3813.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1d54b76165521a0.json b/allure-report/data/test-cases/73a56012085cbb67.json similarity index 55% rename from allure-report/data/test-cases/b1d54b76165521a0.json rename to allure-report/data/test-cases/73a56012085cbb67.json index ff628ed7082..ff5e175accf 100644 --- a/allure-report/data/test-cases/b1d54b76165521a0.json +++ b/allure-report/data/test-cases/73a56012085cbb67.json @@ -1 +1 @@ -{"uid":"b1d54b76165521a0","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"616f142dc436d37a","name":"stdout","source":"616f142dc436d37a.txt","type":"text/plain","size":1865}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"1e3570598c901af4","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"164087ecc666d9a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"b1d54b76165521a0.json","parameterValues":[]} \ No newline at end of file +{"uid":"73a56012085cbb67","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff15e181fd0e6388","name":"stdout","source":"ff15e181fd0e6388.txt","type":"text/plain","size":1865}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"73a56012085cbb67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/deed80da6e08bd69.json b/allure-report/data/test-cases/73db1f36a5925004.json similarity index 60% rename from allure-report/data/test-cases/deed80da6e08bd69.json rename to allure-report/data/test-cases/73db1f36a5925004.json index 07dbe7724a3..69ea899156c 100644 --- a/allure-report/data/test-cases/deed80da6e08bd69.json +++ b/allure-report/data/test-cases/73db1f36a5925004.json @@ -1 +1 @@ -{"uid":"deed80da6e08bd69","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e9ba7465215b13fc","name":"stdout","source":"e9ba7465215b13fc.txt","type":"text/plain","size":611}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95172229a5a9ad6","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1152e12f582a6d83","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"deed80da6e08bd69.json","parameterValues":[]} \ No newline at end of file +{"uid":"73db1f36a5925004","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a1d25baaaa2cac0","name":"stdout","source":"8a1d25baaaa2cac0.txt","type":"text/plain","size":611}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"73db1f36a5925004.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73f30fbb9798a5d5.json b/allure-report/data/test-cases/73f30fbb9798a5d5.json new file mode 100644 index 00000000000..4415b957292 --- /dev/null +++ b/allure-report/data/test-cases/73f30fbb9798a5d5.json @@ -0,0 +1 @@ +{"uid":"73f30fbb9798a5d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732428196208,"stop":1732428196208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"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.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"660684096c18d05d","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"b3c5df850665402e","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d1a80d9f422182d","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"73f30fbb9798a5d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/749e2bcfe9e98a99.json b/allure-report/data/test-cases/749e2bcfe9e98a99.json new file mode 100644 index 00000000000..c30cbfe07bf --- /dev/null +++ b/allure-report/data/test-cases/749e2bcfe9e98a99.json @@ -0,0 +1 @@ +{"uid":"749e2bcfe9e98a99","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":1732428195966,"stop":1732428195967,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195966,"stop":1732428195966,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7718694e0e976912","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"1baceb9fc9699f7","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fd395297ed368b03","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":["GAMES","PUZZLES"]},"source":"749e2bcfe9e98a99.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74b0969e7db4effb.json b/allure-report/data/test-cases/74b0969e7db4effb.json new file mode 100644 index 00000000000..854cf69431d --- /dev/null +++ b/allure-report/data/test-cases/74b0969e7db4effb.json @@ -0,0 +1 @@ +{"uid":"74b0969e7db4effb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732428195701,"stop":1732428195701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Vasya - Clerk"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8173581ebbb7cc32","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"5b88f232b1f58c27","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"dee0416f79d22a0d","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"74b0969e7db4effb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ea719d6e8a376fb.json b/allure-report/data/test-cases/74c746ac3dc42135.json similarity index 58% rename from allure-report/data/test-cases/6ea719d6e8a376fb.json rename to allure-report/data/test-cases/74c746ac3dc42135.json index b1fa0693ca4..60b22b72335 100644 --- a/allure-report/data/test-cases/6ea719d6e8a376fb.json +++ b/allure-report/data/test-cases/74c746ac3dc42135.json @@ -1 +1 @@ -{"uid":"6ea719d6e8a376fb","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6096f7399a313214","name":"stdout","source":"6096f7399a313214.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e0e034728609b0e2","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"6ea719d6e8a376fb.json","parameterValues":[]} \ No newline at end of file +{"uid":"74c746ac3dc42135","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c452ee18f96c325a","name":"stdout","source":"c452ee18f96c325a.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"74c746ac3dc42135.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/751027d0ac0cc021.json b/allure-report/data/test-cases/751027d0ac0cc021.json new file mode 100644 index 00000000000..12f9cc12237 --- /dev/null +++ b/allure-report/data/test-cases/751027d0ac0cc021.json @@ -0,0 +1 @@ +{"uid":"751027d0ac0cc021","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":"

Codewars badge:

Test Description:

Advanced Warrior class assertions

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":12,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1938e37bf1525466","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"286a2c6d22a3ea0b","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"751027d0ac0cc021.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7560669431ea4aa8.json b/allure-report/data/test-cases/7560669431ea4aa8.json new file mode 100644 index 00000000000..02db07debc0 --- /dev/null +++ b/allure-report/data/test-cases/7560669431ea4aa8.json @@ -0,0 +1 @@ +{"uid":"7560669431ea4aa8","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732428194291,"stop":1732428194291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194324,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194324,"stop":1732428194391,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194391,"stop":1732428194424,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1732428194434,"stop":1732428194434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7da87d8449dbfb8b","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"87c07388b10e55d5","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"7560669431ea4aa8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13e77cd2d97ddcd8.json b/allure-report/data/test-cases/75ba956cc9ee13f9.json similarity index 61% rename from allure-report/data/test-cases/13e77cd2d97ddcd8.json rename to allure-report/data/test-cases/75ba956cc9ee13f9.json index 2e9eaa7b524..115a27f9038 100644 --- a/allure-report/data/test-cases/13e77cd2d97ddcd8.json +++ b/allure-report/data/test-cases/75ba956cc9ee13f9.json @@ -1 +1 @@ -{"uid":"13e77cd2d97ddcd8","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"940a8818c4ee9f6a","name":"stdout","source":"940a8818c4ee9f6a.txt","type":"text/plain","size":1367}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"13e77cd2d97ddcd8.json","parameterValues":[]} \ No newline at end of file +{"uid":"75ba956cc9ee13f9","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ab4a085da0164d2","name":"stdout","source":"1ab4a085da0164d2.txt","type":"text/plain","size":1367}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"75ba956cc9ee13f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57efbea0ccf3907a.json b/allure-report/data/test-cases/76dad62f743b3603.json similarity index 64% rename from allure-report/data/test-cases/57efbea0ccf3907a.json rename to allure-report/data/test-cases/76dad62f743b3603.json index c1ac9d8be26..66039d3377f 100644 --- a/allure-report/data/test-cases/57efbea0ccf3907a.json +++ b/allure-report/data/test-cases/76dad62f743b3603.json @@ -1 +1 @@ -{"uid":"57efbea0ccf3907a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"52b7eb4ac34d1a3f","name":"stdout","source":"52b7eb4ac34d1a3f.txt","type":"text/plain","size":352}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fabe21d8eab469bd","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"57efbea0ccf3907a.json","parameterValues":[]} \ No newline at end of file +{"uid":"76dad62f743b3603","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ae418f132f3362c9","name":"stdout","source":"ae418f132f3362c9.txt","type":"text/plain","size":352}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"76dad62f743b3603.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fd395297ed368b03.json b/allure-report/data/test-cases/7718694e0e976912.json similarity index 59% rename from allure-report/data/test-cases/fd395297ed368b03.json rename to allure-report/data/test-cases/7718694e0e976912.json index 19559a3cf09..fc5a7074d96 100644 --- a/allure-report/data/test-cases/fd395297ed368b03.json +++ b/allure-report/data/test-cases/7718694e0e976912.json @@ -1 +1 @@ -{"uid":"fd395297ed368b03","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"75b9c5da68ec52a2","name":"stdout","source":"75b9c5da68ec52a2.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b48a50dffbb61197","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":[]},"source":"fd395297ed368b03.json","parameterValues":[]} \ No newline at end of file +{"uid":"7718694e0e976912","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4db95168982ce3dd","name":"stdout","source":"4db95168982ce3dd.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7718694e0e976912.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/772347d4d5d65952.json b/allure-report/data/test-cases/772347d4d5d65952.json new file mode 100644 index 00000000000..e70091d98b8 --- /dev/null +++ b/allure-report/data/test-cases/772347d4d5d65952.json @@ -0,0 +1 @@ +{"uid":"772347d4d5d65952","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":1732428195930,"stop":1732428195933,"duration":3},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732428195930,"stop":1732428195932,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c919701b7942665","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"d66079b030735db8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c1d9afec6278b1a8","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"772347d4d5d65952.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/585949d19b46a5d2.json b/allure-report/data/test-cases/772c9d6fdd465a8a.json similarity index 61% rename from allure-report/data/test-cases/585949d19b46a5d2.json rename to allure-report/data/test-cases/772c9d6fdd465a8a.json index efc730c3d67..391f8b172f9 100644 --- a/allure-report/data/test-cases/585949d19b46a5d2.json +++ b/allure-report/data/test-cases/772c9d6fdd465a8a.json @@ -1 +1 @@ -{"uid":"585949d19b46a5d2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1528cec1dd8dea3","name":"stdout","source":"d1528cec1dd8dea3.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2cfa19c331ab824b","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"66f1b8d1e5ed1dbe","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"585949d19b46a5d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"772c9d6fdd465a8a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"92cddf6ef1a2b768","name":"stdout","source":"92cddf6ef1a2b768.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"772c9d6fdd465a8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/777edc280c74020d.json b/allure-report/data/test-cases/777edc280c74020d.json new file mode 100644 index 00000000000..d3c953ae516 --- /dev/null +++ b/allure-report/data/test-cases/777edc280c74020d.json @@ -0,0 +1 @@ +{"uid":"777edc280c74020d","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1732428194553,"stop":1732428194553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"772c9d6fdd465a8a","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"7a3ebc7dbd092b26","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"777edc280c74020d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a54c934450b934d7.json b/allure-report/data/test-cases/77e868a9cd944330.json similarity index 81% rename from allure-report/data/test-cases/a54c934450b934d7.json rename to allure-report/data/test-cases/77e868a9cd944330.json index f387fe05940..6f5d5844d72 100644 --- a/allure-report/data/test-cases/a54c934450b934d7.json +++ b/allure-report/data/test-cases/77e868a9cd944330.json @@ -1 +1 @@ -{"uid":"a54c934450b934d7","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f79ef762befefc39","name":"stdout","source":"f79ef762befefc39.txt","type":"text/plain","size":193}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"a54c934450b934d7.json","parameterValues":[]} \ No newline at end of file +{"uid":"77e868a9cd944330","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8e484f9bfa00ca83","name":"stdout","source":"8e484f9bfa00ca83.txt","type":"text/plain","size":193}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"77e868a9cd944330.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/784b6f629ce5c547.json b/allure-report/data/test-cases/784b6f629ce5c547.json new file mode 100644 index 00000000000..14d18a8148a --- /dev/null +++ b/allure-report/data/test-cases/784b6f629ce5c547.json @@ -0,0 +1 @@ +{"uid":"784b6f629ce5c547","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428196189,"stop":1732428196189,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10105e91d30d0887","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"f59e61b023eebd26","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"90eee3ddc83b1454","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"784b6f629ce5c547.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cfa19c331ab824b.json b/allure-report/data/test-cases/7a3ebc7dbd092b26.json similarity index 68% rename from allure-report/data/test-cases/2cfa19c331ab824b.json rename to allure-report/data/test-cases/7a3ebc7dbd092b26.json index 298b3e9df8a..e61f7b2588e 100644 --- a/allure-report/data/test-cases/2cfa19c331ab824b.json +++ b/allure-report/data/test-cases/7a3ebc7dbd092b26.json @@ -1 +1 @@ -{"uid":"2cfa19c331ab824b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f25bb18adfb0c750","name":"stdout","source":"f25bb18adfb0c750.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2cfa19c331ab824b.json","parameterValues":[]} \ No newline at end of file +{"uid":"7a3ebc7dbd092b26","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8ed65aadf059368","name":"stdout","source":"d8ed65aadf059368.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"7a3ebc7dbd092b26.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a70ffb4d0a92e5c8.json b/allure-report/data/test-cases/7b13f1197b1367b6.json similarity index 58% rename from allure-report/data/test-cases/a70ffb4d0a92e5c8.json rename to allure-report/data/test-cases/7b13f1197b1367b6.json index 4594d622193..0ac6dbc7515 100644 --- a/allure-report/data/test-cases/a70ffb4d0a92e5c8.json +++ b/allure-report/data/test-cases/7b13f1197b1367b6.json @@ -1 +1 @@ -{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb9dc4155dddb919","name":"stdout","source":"eb9dc4155dddb919.txt","type":"text/plain","size":281}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"743e871493ba28b4","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":[]},"source":"a70ffb4d0a92e5c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"7b13f1197b1367b6","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4fea0728042fecef","name":"stdout","source":"4fea0728042fecef.txt","type":"text/plain","size":281}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7b13f1197b1367b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d946600dafcc1f6d.json b/allure-report/data/test-cases/7be232a1c65ba711.json similarity index 54% rename from allure-report/data/test-cases/d946600dafcc1f6d.json rename to allure-report/data/test-cases/7be232a1c65ba711.json index cf5e28a68dc..1bc50b34cb8 100644 --- a/allure-report/data/test-cases/d946600dafcc1f6d.json +++ b/allure-report/data/test-cases/7be232a1c65ba711.json @@ -1 +1 @@ -{"uid":"d946600dafcc1f6d","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b34610167fe8aa65","name":"stdout","source":"b34610167fe8aa65.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cdb95614a08f7813","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"d946600dafcc1f6d.json","parameterValues":[]} \ No newline at end of file +{"uid":"7be232a1c65ba711","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"63652035df5cd6e2","name":"stdout","source":"63652035df5cd6e2.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7be232a1c65ba711.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df0cebb647c4d6ba.json b/allure-report/data/test-cases/7c9ea3ba0070bf05.json similarity index 69% rename from allure-report/data/test-cases/df0cebb647c4d6ba.json rename to allure-report/data/test-cases/7c9ea3ba0070bf05.json index 024994b915d..96983b19d50 100644 --- a/allure-report/data/test-cases/df0cebb647c4d6ba.json +++ b/allure-report/data/test-cases/7c9ea3ba0070bf05.json @@ -1 +1 @@ -{"uid":"df0cebb647c4d6ba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1c3dfeaa04fe2908","name":"stdout","source":"1c3dfeaa04fe2908.txt","type":"text/plain","size":154}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df0cebb647c4d6ba.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c9ea3ba0070bf05","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3fbdb209be30e4e9","name":"stdout","source":"3fbdb209be30e4e9.txt","type":"text/plain","size":154}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7c9ea3ba0070bf05.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7cc0844ab5ecf216.json b/allure-report/data/test-cases/7cc0844ab5ecf216.json new file mode 100644 index 00000000000..5ea38925e9d --- /dev/null +++ b/allure-report/data/test-cases/7cc0844ab5ecf216.json @@ -0,0 +1 @@ +{"uid":"7cc0844ab5ecf216","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":13,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1732428193969,"stop":1732428193969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31050b40d7651adc","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"bc039aea1f276c5c","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"47f8df09a84d8337","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"7cc0844ab5ecf216.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d6c6bb6b47e11d4.json b/allure-report/data/test-cases/7d6c6bb6b47e11d4.json new file mode 100644 index 00000000000..76293d6d2fb --- /dev/null +++ b/allure-report/data/test-cases/7d6c6bb6b47e11d4.json @@ -0,0 +1 @@ +{"uid":"7d6c6bb6b47e11d4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1b76ff1cacf5544","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"eea4c328ad2eaeca","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f1ac1e81621379df","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"7d6c6bb6b47e11d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e6a3da330525d2f4.json b/allure-report/data/test-cases/7d905be84b5c0b77.json similarity index 55% rename from allure-report/data/test-cases/e6a3da330525d2f4.json rename to allure-report/data/test-cases/7d905be84b5c0b77.json index 7a715b8029f..4d6aa9a9bdf 100644 --- a/allure-report/data/test-cases/e6a3da330525d2f4.json +++ b/allure-report/data/test-cases/7d905be84b5c0b77.json @@ -1 +1 @@ -{"uid":"e6a3da330525d2f4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a6636ef2e259cf6","name":"stdout","source":"5a6636ef2e259cf6.txt","type":"text/plain","size":2146}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6a793815cad01bd2","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b78c37ec3b0f496f","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"e6a3da330525d2f4.json","parameterValues":[]} \ No newline at end of file +{"uid":"7d905be84b5c0b77","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4f617786d1167bf5","name":"stdout","source":"4f617786d1167bf5.txt","type":"text/plain","size":2146}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"7d905be84b5c0b77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7fd5632b0213855d.json b/allure-report/data/test-cases/7da87d8449dbfb8b.json similarity index 57% rename from allure-report/data/test-cases/7fd5632b0213855d.json rename to allure-report/data/test-cases/7da87d8449dbfb8b.json index 35d2412bde0..3013b3daa23 100644 --- a/allure-report/data/test-cases/7fd5632b0213855d.json +++ b/allure-report/data/test-cases/7da87d8449dbfb8b.json @@ -1 +1 @@ -{"uid":"7fd5632b0213855d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127703,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127703,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127735,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127735,"stop":1724735127781,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127781,"stop":1724735127813,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b46eca85ecd31e8","name":"stdout","source":"4b46eca85ecd31e8.txt","type":"text/plain","size":932}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724735127813,"stop":1724735127813,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2512233f29820ca9","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"60f5877935ced5c5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}}]},"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"7fd5632b0213855d.json","parameterValues":[]} \ No newline at end of file +{"uid":"7da87d8449dbfb8b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8f05623e6466063","name":"stdout","source":"d8f05623e6466063.txt","type":"text/plain","size":932}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"7da87d8449dbfb8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e357cecc68f801.json b/allure-report/data/test-cases/7e357cecc68f801.json new file mode 100644 index 00000000000..1713cebdab0 --- /dev/null +++ b/allure-report/data/test-cases/7e357cecc68f801.json @@ -0,0 +1 @@ +{"uid":"7e357cecc68f801","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ac039f3bc7f748f","name":"stdout","source":"8ac039f3bc7f748f.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"7e357cecc68f801.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82619e3fb0e84d4d.json b/allure-report/data/test-cases/7e5150fbd4a33237.json similarity index 66% rename from allure-report/data/test-cases/82619e3fb0e84d4d.json rename to allure-report/data/test-cases/7e5150fbd4a33237.json index e97aef66332..d07055f805d 100644 --- a/allure-report/data/test-cases/82619e3fb0e84d4d.json +++ b/allure-report/data/test-cases/7e5150fbd4a33237.json @@ -1 +1 @@ -{"uid":"82619e3fb0e84d4d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"63766a355340dea4","name":"stdout","source":"63766a355340dea4.txt","type":"text/plain","size":1579}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aacbcab78401e86c","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"521b14729542d5c4","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}}]},"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"82619e3fb0e84d4d.json","parameterValues":[]} \ No newline at end of file +{"uid":"7e5150fbd4a33237","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a7f10bb4c8e33c64","name":"stdout","source":"a7f10bb4c8e33c64.txt","type":"text/plain","size":1579}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"7e5150fbd4a33237.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e997a5018ff0710.json b/allure-report/data/test-cases/7e997a5018ff0710.json new file mode 100644 index 00000000000..d63d84c602d --- /dev/null +++ b/allure-report/data/test-cases/7e997a5018ff0710.json @@ -0,0 +1 @@ +{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732428195517,"stop":1732428195517,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732428195520,"stop":1732428195520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ad8dd1da3b7d646d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"8c6df3dc2deaaefa","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d57f06aa2f911f40","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"7e997a5018ff0710.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5baa430d724786c4.json b/allure-report/data/test-cases/80598dcd2309aaf9.json similarity index 76% rename from allure-report/data/test-cases/5baa430d724786c4.json rename to allure-report/data/test-cases/80598dcd2309aaf9.json index 6699cd0fec5..c00a6bd0f44 100644 --- a/allure-report/data/test-cases/5baa430d724786c4.json +++ b/allure-report/data/test-cases/80598dcd2309aaf9.json @@ -1 +1 @@ -{"uid":"5baa430d724786c4","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abb69032ea61f29c","name":"stdout","source":"abb69032ea61f29c.txt","type":"text/plain","size":1178}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5baa430d724786c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"80598dcd2309aaf9","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b82715c67d99ec0e","name":"stdout","source":"b82715c67d99ec0e.txt","type":"text/plain","size":1178}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"80598dcd2309aaf9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80dd204b4961834.json b/allure-report/data/test-cases/80dd204b4961834.json deleted file mode 100644 index 0bf410496d8..00000000000 --- a/allure-report/data/test-cases/80dd204b4961834.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"80dd204b4961834","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a9033f7cad83170f","name":"stdout","source":"a9033f7cad83170f.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"80dd204b4961834.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c799982c38b97fcc.json b/allure-report/data/test-cases/813aa9dc885c2882.json similarity index 50% rename from allure-report/data/test-cases/c799982c38b97fcc.json rename to allure-report/data/test-cases/813aa9dc885c2882.json index 9e913f0d31d..518b2f33c0f 100644 --- a/allure-report/data/test-cases/c799982c38b97fcc.json +++ b/allure-report/data/test-cases/813aa9dc885c2882.json @@ -1 +1 @@ -{"uid":"c799982c38b97fcc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":11,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5d080f15b08c0b4f","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":[]},"source":"c799982c38b97fcc.json","parameterValues":[]} \ No newline at end of file +{"uid":"813aa9dc885c2882","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"813aa9dc885c2882.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e3570598c901af4.json b/allure-report/data/test-cases/815ff7102e2d18bc.json similarity index 64% rename from allure-report/data/test-cases/1e3570598c901af4.json rename to allure-report/data/test-cases/815ff7102e2d18bc.json index b1b686f948c..ebfc1deccc7 100644 --- a/allure-report/data/test-cases/1e3570598c901af4.json +++ b/allure-report/data/test-cases/815ff7102e2d18bc.json @@ -1 +1 @@ -{"uid":"1e3570598c901af4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4158b1e0c4f5a122","name":"stdout","source":"4158b1e0c4f5a122.txt","type":"text/plain","size":1865}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1e3570598c901af4.json","parameterValues":[]} \ No newline at end of file +{"uid":"815ff7102e2d18bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a31af19dcd964af7","name":"stdout","source":"a31af19dcd964af7.txt","type":"text/plain","size":1865}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"815ff7102e2d18bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dee0416f79d22a0d.json b/allure-report/data/test-cases/8173581ebbb7cc32.json similarity index 54% rename from allure-report/data/test-cases/dee0416f79d22a0d.json rename to allure-report/data/test-cases/8173581ebbb7cc32.json index 198fff41eef..77d5029aa36 100644 --- a/allure-report/data/test-cases/dee0416f79d22a0d.json +++ b/allure-report/data/test-cases/8173581ebbb7cc32.json @@ -1 +1 @@ -{"uid":"dee0416f79d22a0d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"caa5a9b030d38c","name":"stdout","source":"caa5a9b030d38c.txt","type":"text/plain","size":604}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d880bf6ff390f682","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":[]},"source":"dee0416f79d22a0d.json","parameterValues":[]} \ No newline at end of file +{"uid":"8173581ebbb7cc32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5e1e694e393088b4","name":"stdout","source":"5e1e694e393088b4.txt","type":"text/plain","size":604}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8173581ebbb7cc32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/81c03b59fa01f666.json b/allure-report/data/test-cases/81c03b59fa01f666.json new file mode 100644 index 00000000000..b0c48256e8e --- /dev/null +++ b/allure-report/data/test-cases/81c03b59fa01f666.json @@ -0,0 +1 @@ +{"uid":"81c03b59fa01f666","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"12c58087789a46ca","name":"stdout","source":"12c58087789a46ca.txt","type":"text/plain","size":424}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"81c03b59fa01f666.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8215947106021b54.json b/allure-report/data/test-cases/8215947106021b54.json new file mode 100644 index 00000000000..ffca75c8877 --- /dev/null +++ b/allure-report/data/test-cases/8215947106021b54.json @@ -0,0 +1 @@ +{"uid":"8215947106021b54","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":1732428196022,"stop":1732428196022,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90184d6eca761182","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"2db5e1fafcf7f4e1","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"49aa5cc4276ca55b","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"8215947106021b54.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7b2352a8e3675c67.json b/allure-report/data/test-cases/827104e07f2ca2d0.json similarity index 64% rename from allure-report/data/test-cases/7b2352a8e3675c67.json rename to allure-report/data/test-cases/827104e07f2ca2d0.json index 135f270c89d..46925444f77 100644 --- a/allure-report/data/test-cases/7b2352a8e3675c67.json +++ b/allure-report/data/test-cases/827104e07f2ca2d0.json @@ -1 +1 @@ -{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5c7638f94c1897db","name":"stdout","source":"5c7638f94c1897db.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9035abe5e1151932","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"7b2352a8e3675c67.json","parameterValues":[]} \ No newline at end of file +{"uid":"827104e07f2ca2d0","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"25583e198df733bf","name":"stdout","source":"25583e198df733bf.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"827104e07f2ca2d0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3cf8d83dbb2d66b5.json b/allure-report/data/test-cases/82a681e3f0c8f54d.json similarity index 62% rename from allure-report/data/test-cases/3cf8d83dbb2d66b5.json rename to allure-report/data/test-cases/82a681e3f0c8f54d.json index 741a7dc5422..33a5f4f91ef 100644 --- a/allure-report/data/test-cases/3cf8d83dbb2d66b5.json +++ b/allure-report/data/test-cases/82a681e3f0c8f54d.json @@ -1 +1 @@ -{"uid":"3cf8d83dbb2d66b5","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"839567f1e1e69ee5","name":"stdout","source":"839567f1e1e69ee5.txt","type":"text/plain","size":2621}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"41ca81ef54591f7f","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0e71551541527fc","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}}]},"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"3cf8d83dbb2d66b5.json","parameterValues":[]} \ No newline at end of file +{"uid":"82a681e3f0c8f54d","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a3af1182be2fa344","name":"stdout","source":"a3af1182be2fa344.txt","type":"text/plain","size":2621}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"82a681e3f0c8f54d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82a8f1ffa445d40.json b/allure-report/data/test-cases/82a8f1ffa445d40.json new file mode 100644 index 00000000000..ef3f80534cb --- /dev/null +++ b/allure-report/data/test-cases/82a8f1ffa445d40.json @@ -0,0 +1 @@ +{"uid":"82a8f1ffa445d40","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ae7d7256cc9cd87f","name":"stdout","source":"ae7d7256cc9cd87f.txt","type":"text/plain","size":637}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"82a8f1ffa445d40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a97caba53074497b.json b/allure-report/data/test-cases/837e4ce24ac45efb.json similarity index 54% rename from allure-report/data/test-cases/a97caba53074497b.json rename to allure-report/data/test-cases/837e4ce24ac45efb.json index 2a124dde051..51735f22ae5 100644 --- a/allure-report/data/test-cases/a97caba53074497b.json +++ b/allure-report/data/test-cases/837e4ce24ac45efb.json @@ -1 +1 @@ -{"uid":"a97caba53074497b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c60a729cdea9a7d9","name":"stdout","source":"c60a729cdea9a7d9.txt","type":"text/plain","size":2817}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":30,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a97caba53074497b.json","parameterValues":[]} \ No newline at end of file +{"uid":"837e4ce24ac45efb","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cda2f56ac699fd36","name":"stdout","source":"cda2f56ac699fd36.txt","type":"text/plain","size":2817}],"parameters":[],"hasContent":true,"stepsCount":30,"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":[],"hasContent":false,"stepsCount":0,"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":"837e4ce24ac45efb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af543ced061d8858.json b/allure-report/data/test-cases/83b7eb2988572ef6.json similarity index 72% rename from allure-report/data/test-cases/af543ced061d8858.json rename to allure-report/data/test-cases/83b7eb2988572ef6.json index 3098a2c7343..25bbb11fc51 100644 --- a/allure-report/data/test-cases/af543ced061d8858.json +++ b/allure-report/data/test-cases/83b7eb2988572ef6.json @@ -1 +1 @@ -{"uid":"af543ced061d8858","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"af543ced061d8858.json","parameterValues":[]} \ No newline at end of file +{"uid":"83b7eb2988572ef6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"83b7eb2988572ef6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8271021679b0cc06.json b/allure-report/data/test-cases/83c423646ff2d9ba.json similarity index 76% rename from allure-report/data/test-cases/8271021679b0cc06.json rename to allure-report/data/test-cases/83c423646ff2d9ba.json index 1d9ec684202..ab87df1afad 100644 --- a/allure-report/data/test-cases/8271021679b0cc06.json +++ b/allure-report/data/test-cases/83c423646ff2d9ba.json @@ -1 +1 @@ -{"uid":"8271021679b0cc06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"59e7a80b454faae7","name":"stdout","source":"59e7a80b454faae7.txt","type":"text/plain","size":356}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"8271021679b0cc06.json","parameterValues":[]} \ No newline at end of file +{"uid":"83c423646ff2d9ba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"73e237e2a607b73d","name":"stdout","source":"73e237e2a607b73d.txt","type":"text/plain","size":356}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"83c423646ff2d9ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e10517b1ea4eb479.json b/allure-report/data/test-cases/843ad9a1e8e9ca65.json similarity index 58% rename from allure-report/data/test-cases/e10517b1ea4eb479.json rename to allure-report/data/test-cases/843ad9a1e8e9ca65.json index a2945c88bb6..9a6b6b9e146 100644 --- a/allure-report/data/test-cases/e10517b1ea4eb479.json +++ b/allure-report/data/test-cases/843ad9a1e8e9ca65.json @@ -1 +1 @@ -{"uid":"e10517b1ea4eb479","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6681f7087b7f0e75","name":"stdout","source":"6681f7087b7f0e75.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5274eeeb29391ba1","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"e10517b1ea4eb479.json","parameterValues":[]} \ No newline at end of file +{"uid":"843ad9a1e8e9ca65","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e41ceec6c0cda082","name":"stdout","source":"e41ceec6c0cda082.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"843ad9a1e8e9ca65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc2c5a5df6e26162.json b/allure-report/data/test-cases/844543e89f44e3d5.json similarity index 58% rename from allure-report/data/test-cases/fc2c5a5df6e26162.json rename to allure-report/data/test-cases/844543e89f44e3d5.json index 435bfa0f0fd..cdff0ba4323 100644 --- a/allure-report/data/test-cases/fc2c5a5df6e26162.json +++ b/allure-report/data/test-cases/844543e89f44e3d5.json @@ -1 +1 @@ -{"uid":"fc2c5a5df6e26162","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a779afadfd77377","name":"stdout","source":"5a779afadfd77377.txt","type":"text/plain","size":154}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df0cebb647c4d6ba","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":[]},"source":"fc2c5a5df6e26162.json","parameterValues":[]} \ No newline at end of file +{"uid":"844543e89f44e3d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aa8cd00c6909033a","name":"stdout","source":"aa8cd00c6909033a.txt","type":"text/plain","size":154}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"844543e89f44e3d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8451096f3488e82.json b/allure-report/data/test-cases/8451096f3488e82.json deleted file mode 100644 index 7d647dc830b..00000000000 --- a/allure-report/data/test-cases/8451096f3488e82.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8451096f3488e82","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"981d1c1e601a3a5b","name":"stdout","source":"981d1c1e601a3a5b.txt","type":"text/plain","size":510}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6566b62febd2f997","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"tags":["FUNDAMENTALS"]},"source":"8451096f3488e82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84aa3b23910872ae.json b/allure-report/data/test-cases/84aa3b23910872ae.json deleted file mode 100644 index 10dc35f8680..00000000000 --- a/allure-report/data/test-cases/84aa3b23910872ae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"84aa3b23910872ae","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"634594d507e663ad","name":"stdout","source":"634594d507e663ad.txt","type":"text/plain","size":32}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"84aa3b23910872ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76548c4669002681.json b/allure-report/data/test-cases/84d177b8ff2c367d.json similarity index 50% rename from allure-report/data/test-cases/76548c4669002681.json rename to allure-report/data/test-cases/84d177b8ff2c367d.json index 180281c0da4..115ac6ff77a 100644 --- a/allure-report/data/test-cases/76548c4669002681.json +++ b/allure-report/data/test-cases/84d177b8ff2c367d.json @@ -1 +1 @@ -{"uid":"76548c4669002681","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3d1c47094969219","name":"stdout","source":"e3d1c47094969219.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"63bb569f11b7f542","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"76548c4669002681.json","parameterValues":[]} \ No newline at end of file +{"uid":"84d177b8ff2c367d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d1bf3e067845857a","name":"stdout","source":"d1bf3e067845857a.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"84d177b8ff2c367d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dcb40cbe5ee38417.json b/allure-report/data/test-cases/85284c487c263073.json similarity index 67% rename from allure-report/data/test-cases/dcb40cbe5ee38417.json rename to allure-report/data/test-cases/85284c487c263073.json index 57eb7eedc12..0427bb4631f 100644 --- a/allure-report/data/test-cases/dcb40cbe5ee38417.json +++ b/allure-report/data/test-cases/85284c487c263073.json @@ -1 +1 @@ -{"uid":"dcb40cbe5ee38417","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b63774e9e6663cf7","name":"stdout","source":"b63774e9e6663cf7.txt","type":"text/plain","size":544}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"dcb40cbe5ee38417.json","parameterValues":[]} \ No newline at end of file +{"uid":"85284c487c263073","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"554fb31ae5f3473b","name":"stdout","source":"554fb31ae5f3473b.txt","type":"text/plain","size":544}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"85284c487c263073.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7c1fb6f236110ca.json b/allure-report/data/test-cases/85b55023f525bac2.json similarity index 60% rename from allure-report/data/test-cases/d7c1fb6f236110ca.json rename to allure-report/data/test-cases/85b55023f525bac2.json index 74e4000e4bc..162695e504f 100644 --- a/allure-report/data/test-cases/d7c1fb6f236110ca.json +++ b/allure-report/data/test-cases/85b55023f525bac2.json @@ -1 +1 @@ -{"uid":"d7c1fb6f236110ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f080e317c4cdc0d","name":"stdout","source":"7f080e317c4cdc0d.txt","type":"text/plain","size":512}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f72e37459a6b99ff","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":[]},"source":"d7c1fb6f236110ca.json","parameterValues":[]} \ No newline at end of file +{"uid":"85b55023f525bac2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"98b58e86a56b6f3b","name":"stdout","source":"98b58e86a56b6f3b.txt","type":"text/plain","size":512}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"85b55023f525bac2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee4f0501c1152713.json b/allure-report/data/test-cases/85df8de56a96ab7c.json similarity index 65% rename from allure-report/data/test-cases/ee4f0501c1152713.json rename to allure-report/data/test-cases/85df8de56a96ab7c.json index fe8b89e6a44..888fbddf831 100644 --- a/allure-report/data/test-cases/ee4f0501c1152713.json +++ b/allure-report/data/test-cases/85df8de56a96ab7c.json @@ -1 +1 @@ -{"uid":"ee4f0501c1152713","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":1724735127188,"stop":1724735127188,"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":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":"91ed862dacbec840","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":0,"unknown":0,"total":2},"items":[{"uid":"3edaeb1c9114b312","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ee4f0501c1152713.json","parameterValues":[]} \ No newline at end of file +{"uid":"85df8de56a96ab7c","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":1724735127188,"stop":1724735127188,"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":"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":"85df8de56a96ab7c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f711bbcd16ab2119.json b/allure-report/data/test-cases/863d9e582b6f3de4.json similarity index 64% rename from allure-report/data/test-cases/f711bbcd16ab2119.json rename to allure-report/data/test-cases/863d9e582b6f3de4.json index d93fe04b8b3..0350945206d 100644 --- a/allure-report/data/test-cases/f711bbcd16ab2119.json +++ b/allure-report/data/test-cases/863d9e582b6f3de4.json @@ -1 +1 @@ -{"uid":"f711bbcd16ab2119","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9d173a5e0d4bb0c8","name":"stdout","source":"9d173a5e0d4bb0c8.txt","type":"text/plain","size":225}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bbe34ba42279f71","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5c64823a2a73f974","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"f711bbcd16ab2119.json","parameterValues":[]} \ No newline at end of file +{"uid":"863d9e582b6f3de4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"537ecc9a719af32f","name":"stdout","source":"537ecc9a719af32f.txt","type":"text/plain","size":225}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"863d9e582b6f3de4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8655885cb5db7a58.json b/allure-report/data/test-cases/8655885cb5db7a58.json deleted file mode 100644 index c47cfee1bae..00000000000 --- a/allure-report/data/test-cases/8655885cb5db7a58.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8655885cb5db7a58","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6968a83bd2f66f6","name":"stdout","source":"6968a83bd2f66f6.txt","type":"text/plain","size":1536}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0ff51cf7a3c2781","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"578c3a6cd3e7e40f","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"8655885cb5db7a58.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed37a80783d347db.json b/allure-report/data/test-cases/86b489ae6b8c1d23.json similarity index 68% rename from allure-report/data/test-cases/ed37a80783d347db.json rename to allure-report/data/test-cases/86b489ae6b8c1d23.json index 953a75296af..b80f1900f3d 100644 --- a/allure-report/data/test-cases/ed37a80783d347db.json +++ b/allure-report/data/test-cases/86b489ae6b8c1d23.json @@ -1 +1 @@ -{"uid":"ed37a80783d347db","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a90b58ce6e21a4f","name":"stdout","source":"5a90b58ce6e21a4f.txt","type":"text/plain","size":1155}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ed37a80783d347db.json","parameterValues":[]} \ No newline at end of file +{"uid":"86b489ae6b8c1d23","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"45d7b9435ff3c623","name":"stdout","source":"45d7b9435ff3c623.txt","type":"text/plain","size":1155}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"86b489ae6b8c1d23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/874b39a75ad8fa3b.json b/allure-report/data/test-cases/874b39a75ad8fa3b.json deleted file mode 100644 index c9d40f33fc2..00000000000 --- a/allure-report/data/test-cases/874b39a75ad8fa3b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"874b39a75ad8fa3b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d279b3f66291ee3","name":"stdout","source":"d279b3f66291ee3.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a5f55a655c70213f","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"874b39a75ad8fa3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/877a76cbb202d7b3.json b/allure-report/data/test-cases/877a76cbb202d7b3.json new file mode 100644 index 00000000000..4d2be7920c8 --- /dev/null +++ b/allure-report/data/test-cases/877a76cbb202d7b3.json @@ -0,0 +1 @@ +{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732428196222,"stop":1732428196222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732428196225,"stop":1732428196225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Loops"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c0f4e1faa852c595","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"bf2c284d4d5bb98c","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b6301a55868859d","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"877a76cbb202d7b3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2512233f29820ca9.json b/allure-report/data/test-cases/87c07388b10e55d5.json similarity index 65% rename from allure-report/data/test-cases/2512233f29820ca9.json rename to allure-report/data/test-cases/87c07388b10e55d5.json index 9e056a3a634..70f3460103d 100644 --- a/allure-report/data/test-cases/2512233f29820ca9.json +++ b/allure-report/data/test-cases/87c07388b10e55d5.json @@ -1 +1 @@ -{"uid":"2512233f29820ca9","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472843,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472843,"stop":1724733472890,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472890,"stop":1724733472921,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4cd1e84a01209f22","name":"stdout","source":"4cd1e84a01209f22.txt","type":"text/plain","size":932}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"2512233f29820ca9.json","parameterValues":[]} \ No newline at end of file +{"uid":"87c07388b10e55d5","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8fe3e8aa201d424a","name":"stdout","source":"8fe3e8aa201d424a.txt","type":"text/plain","size":932}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"87c07388b10e55d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b0990a97652b0f6.json b/allure-report/data/test-cases/87d2fa2dfc5fe491.json similarity index 78% rename from allure-report/data/test-cases/9b0990a97652b0f6.json rename to allure-report/data/test-cases/87d2fa2dfc5fe491.json index ff6b0ac3b85..e1b92e2189d 100644 --- a/allure-report/data/test-cases/9b0990a97652b0f6.json +++ b/allure-report/data/test-cases/87d2fa2dfc5fe491.json @@ -1 +1 @@ -{"uid":"9b0990a97652b0f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"77f74c85e8c0841a","name":"stdout","source":"77f74c85e8c0841a.txt","type":"text/plain","size":231}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"9b0990a97652b0f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"87d2fa2dfc5fe491","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7fc42db42407a1b3","name":"stdout","source":"7fc42db42407a1b3.txt","type":"text/plain","size":231}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"87d2fa2dfc5fe491.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87dc5713a007f1d7.json b/allure-report/data/test-cases/87dc5713a007f1d7.json new file mode 100644 index 00000000000..83866760356 --- /dev/null +++ b/allure-report/data/test-cases/87dc5713a007f1d7.json @@ -0,0 +1 @@ +{"uid":"87dc5713a007f1d7","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1732428195504,"stop":1732428195504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4544ac5de6415953","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"951576068e42ee36","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d9458c8615b9e985","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"87dc5713a007f1d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8804093a9c3b17d.json b/allure-report/data/test-cases/8804093a9c3b17d.json new file mode 100644 index 00000000000..e5dbc702226 --- /dev/null +++ b/allure-report/data/test-cases/8804093a9c3b17d.json @@ -0,0 +1 @@ +{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

Verify cipher function. This \"decode\" is used to decode a string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732428193949,"stop":1732428193949,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1732428193951,"stop":1732428193951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bce82edab468d2f2","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"27b26e7a6523571a","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8804093a9c3b17d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ab6caccad49b468.json b/allure-report/data/test-cases/883f1439af050615.json similarity index 58% rename from allure-report/data/test-cases/6ab6caccad49b468.json rename to allure-report/data/test-cases/883f1439af050615.json index 4cc9536ee89..f03addd048c 100644 --- a/allure-report/data/test-cases/6ab6caccad49b468.json +++ b/allure-report/data/test-cases/883f1439af050615.json @@ -1 +1 @@ -{"uid":"6ab6caccad49b468","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3c5d6a8306713e1a","name":"stdout","source":"3c5d6a8306713e1a.txt","type":"text/plain","size":86}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ac127c4c71bf788d","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":[]},"source":"6ab6caccad49b468.json","parameterValues":[]} \ No newline at end of file +{"uid":"883f1439af050615","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6534e5921b3f960d","name":"stdout","source":"6534e5921b3f960d.txt","type":"text/plain","size":86}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"883f1439af050615.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ece392343bb9b12.json b/allure-report/data/test-cases/88a73a4735cff92e.json similarity index 60% rename from allure-report/data/test-cases/1ece392343bb9b12.json rename to allure-report/data/test-cases/88a73a4735cff92e.json index 8425360bd69..825993eaac8 100644 --- a/allure-report/data/test-cases/1ece392343bb9b12.json +++ b/allure-report/data/test-cases/88a73a4735cff92e.json @@ -1 +1 @@ -{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85aa32b5caa3d259","name":"stdout","source":"85aa32b5caa3d259.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b8dc3acaf7dd027","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":[]},"source":"1ece392343bb9b12.json","parameterValues":[]} \ No newline at end of file +{"uid":"88a73a4735cff92e","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8f909ea616537459","name":"stdout","source":"8f909ea616537459.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"88a73a4735cff92e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31f6e05cb2bf8e17.json b/allure-report/data/test-cases/89027a401f5af485.json similarity index 76% rename from allure-report/data/test-cases/31f6e05cb2bf8e17.json rename to allure-report/data/test-cases/89027a401f5af485.json index 15b597f1218..3569f628701 100644 --- a/allure-report/data/test-cases/31f6e05cb2bf8e17.json +++ b/allure-report/data/test-cases/89027a401f5af485.json @@ -1 +1 @@ -{"uid":"31f6e05cb2bf8e17","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3ea6423e21d6d262","name":"stdout","source":"3ea6423e21d6d262.txt","type":"text/plain","size":142}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"31f6e05cb2bf8e17.json","parameterValues":[]} \ No newline at end of file +{"uid":"89027a401f5af485","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2fa4e18b8435ce88","name":"stdout","source":"2fa4e18b8435ce88.txt","type":"text/plain","size":142}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"89027a401f5af485.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/891203fa0698ca9.json b/allure-report/data/test-cases/891203fa0698ca9.json new file mode 100644 index 00000000000..b1392c73735 --- /dev/null +++ b/allure-report/data/test-cases/891203fa0698ca9.json @@ -0,0 +1 @@ +{"uid":"891203fa0698ca9","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8244325875cc8c2","name":"stdout","source":"8244325875cc8c2.txt","type":"text/plain","size":216}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"891203fa0698ca9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/893dcbf3da59eb02.json b/allure-report/data/test-cases/893dcbf3da59eb02.json new file mode 100644 index 00000000000..c4304940d8c --- /dev/null +++ b/allure-report/data/test-cases/893dcbf3da59eb02.json @@ -0,0 +1 @@ +{"uid":"893dcbf3da59eb02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732428196445,"stop":1732428196445,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732428196447,"stop":1732428196447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Will there be enough space?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3a0034b3910c9f0c","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"89027a401f5af485","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"af580569ddf3e366","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"893dcbf3da59eb02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8949506fce676285.json b/allure-report/data/test-cases/8949506fce676285.json new file mode 100644 index 00000000000..ee7a3bdf7d4 --- /dev/null +++ b/allure-report/data/test-cases/8949506fce676285.json @@ -0,0 +1 @@ +{"uid":"8949506fce676285","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bfa0e041a65d579a","name":"stdout","source":"bfa0e041a65d579a.txt","type":"text/plain","size":1380}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"8949506fce676285.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/898b5d5677e24adf.json b/allure-report/data/test-cases/898b5d5677e24adf.json new file mode 100644 index 00000000000..9acbe9106b2 --- /dev/null +++ b/allure-report/data/test-cases/898b5d5677e24adf.json @@ -0,0 +1 @@ +{"uid":"898b5d5677e24adf","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732428195716,"stop":1732428195716,"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732428195715,"stop":1732428195715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732428195717,"stop":1732428195717,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Your order, please"},{"name":"subSuite","value":"Unit Tests"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9cbf1053b771d679","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"9585be0acd74f7c1","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ee325afc05dcb3e8","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"898b5d5677e24adf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a96041a690fcc058.json b/allure-report/data/test-cases/89c602359c6f109b.json similarity index 72% rename from allure-report/data/test-cases/a96041a690fcc058.json rename to allure-report/data/test-cases/89c602359c6f109b.json index 24984b6b828..8212df3194e 100644 --- a/allure-report/data/test-cases/a96041a690fcc058.json +++ b/allure-report/data/test-cases/89c602359c6f109b.json @@ -1 +1 @@ -{"uid":"a96041a690fcc058","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2143b544775b35fe","name":"stdout","source":"2143b544775b35fe.txt","type":"text/plain","size":601}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a96041a690fcc058.json","parameterValues":[]} \ No newline at end of file +{"uid":"89c602359c6f109b","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f24a53f1fea24b32","name":"stdout","source":"f24a53f1fea24b32.txt","type":"text/plain","size":601}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"89c602359c6f109b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ddf52bfae3cd34f4.json b/allure-report/data/test-cases/8a9b52813983814b.json similarity index 74% rename from allure-report/data/test-cases/ddf52bfae3cd34f4.json rename to allure-report/data/test-cases/8a9b52813983814b.json index ece5c15a8c6..9a07e42ae15 100644 --- a/allure-report/data/test-cases/ddf52bfae3cd34f4.json +++ b/allure-report/data/test-cases/8a9b52813983814b.json @@ -1 +1 @@ -{"uid":"ddf52bfae3cd34f4","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60ce0e41b02093a3","name":"stdout","source":"60ce0e41b02093a3.txt","type":"text/plain","size":348}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ddf52bfae3cd34f4.json","parameterValues":[]} \ No newline at end of file +{"uid":"8a9b52813983814b","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5b8ca288b44682ec","name":"stdout","source":"5b8ca288b44682ec.txt","type":"text/plain","size":348}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"8a9b52813983814b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b3214317e10e87f.json b/allure-report/data/test-cases/8b3214317e10e87f.json new file mode 100644 index 00000000000..3bd3f59298b --- /dev/null +++ b/allure-report/data/test-cases/8b3214317e10e87f.json @@ -0,0 +1 @@ +{"uid":"8b3214317e10e87f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732428195955,"stop":1732428195955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Significant Figures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85b55023f525bac2","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"57d69ca6b172040d","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d7c1fb6f236110ca","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"8b3214317e10e87f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87be1c294a496f4a.json b/allure-report/data/test-cases/8b80aa0a92a1ed02.json similarity index 77% rename from allure-report/data/test-cases/87be1c294a496f4a.json rename to allure-report/data/test-cases/8b80aa0a92a1ed02.json index 9e05baa1afb..67d49ea7ecb 100644 --- a/allure-report/data/test-cases/87be1c294a496f4a.json +++ b/allure-report/data/test-cases/8b80aa0a92a1ed02.json @@ -1 +1 @@ -{"uid":"87be1c294a496f4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d4d0d11b46cc8eb0","name":"stdout","source":"d4d0d11b46cc8eb0.txt","type":"text/plain","size":90}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"87be1c294a496f4a.json","parameterValues":[]} \ No newline at end of file +{"uid":"8b80aa0a92a1ed02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ab4c5be84836fafb","name":"stdout","source":"ab4c5be84836fafb.txt","type":"text/plain","size":90}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8b80aa0a92a1ed02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8beabd2469a668.json b/allure-report/data/test-cases/8beabd2469a668.json new file mode 100644 index 00000000000..c2de621e63c --- /dev/null +++ b/allure-report/data/test-cases/8beabd2469a668.json @@ -0,0 +1 @@ +{"uid":"8beabd2469a668","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ef3c2609186193","name":"stdout","source":"8ef3c2609186193.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"8beabd2469a668.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7637c123d5cf58af.json b/allure-report/data/test-cases/8c6df3dc2deaaefa.json similarity index 70% rename from allure-report/data/test-cases/7637c123d5cf58af.json rename to allure-report/data/test-cases/8c6df3dc2deaaefa.json index 79e9929497c..1994bcc0393 100644 --- a/allure-report/data/test-cases/7637c123d5cf58af.json +++ b/allure-report/data/test-cases/8c6df3dc2deaaefa.json @@ -1 +1 @@ -{"uid":"7637c123d5cf58af","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"11a60e97d1d843b1","name":"stdout","source":"11a60e97d1d843b1.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7637c123d5cf58af.json","parameterValues":[]} \ No newline at end of file +{"uid":"8c6df3dc2deaaefa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"253cdd605d9ea305","name":"stdout","source":"253cdd605d9ea305.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8c6df3dc2deaaefa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a50af3a4d2a7afb5.json b/allure-report/data/test-cases/8c72192846448826.json similarity index 66% rename from allure-report/data/test-cases/a50af3a4d2a7afb5.json rename to allure-report/data/test-cases/8c72192846448826.json index a142d370148..966674c621b 100644 --- a/allure-report/data/test-cases/a50af3a4d2a7afb5.json +++ b/allure-report/data/test-cases/8c72192846448826.json @@ -1 +1 @@ -{"uid":"a50af3a4d2a7afb5","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"26c574f777b434b5","name":"stdout","source":"26c574f777b434b5.txt","type":"text/plain","size":213}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a50af3a4d2a7afb5.json","parameterValues":[]} \ No newline at end of file +{"uid":"8c72192846448826","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cca44b266aa98436","name":"stdout","source":"cca44b266aa98436.txt","type":"text/plain","size":213}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"8c72192846448826.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b4ada0bf1630c0a.json b/allure-report/data/test-cases/8c7db5518444ac71.json similarity index 64% rename from allure-report/data/test-cases/9b4ada0bf1630c0a.json rename to allure-report/data/test-cases/8c7db5518444ac71.json index 4046abfe02a..1196408a727 100644 --- a/allure-report/data/test-cases/9b4ada0bf1630c0a.json +++ b/allure-report/data/test-cases/8c7db5518444ac71.json @@ -1 +1 @@ -{"uid":"9b4ada0bf1630c0a","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"218f40b324526f4d","name":"stdout","source":"218f40b324526f4d.txt","type":"text/plain","size":1088}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"9b4ada0bf1630c0a.json","parameterValues":[]} \ No newline at end of file +{"uid":"8c7db5518444ac71","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fae7f8901012b2cd","name":"stdout","source":"fae7f8901012b2cd.txt","type":"text/plain","size":1088}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"8c7db5518444ac71.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c8d43e9d38910da.json b/allure-report/data/test-cases/8c8d43e9d38910da.json new file mode 100644 index 00000000000..812c805d834 --- /dev/null +++ b/allure-report/data/test-cases/8c8d43e9d38910da.json @@ -0,0 +1 @@ +{"uid":"8c8d43e9d38910da","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":1732428196461,"stop":1732428196461,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12432569c8b8923f","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"8b80aa0a92a1ed02","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8427b8f31ff35d6c","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8c8d43e9d38910da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aefb4681bbbff0c9.json b/allure-report/data/test-cases/8cdb3386cf094e1f.json similarity index 81% rename from allure-report/data/test-cases/aefb4681bbbff0c9.json rename to allure-report/data/test-cases/8cdb3386cf094e1f.json index cd8c8ea4995..2c99f8e1812 100644 --- a/allure-report/data/test-cases/aefb4681bbbff0c9.json +++ b/allure-report/data/test-cases/8cdb3386cf094e1f.json @@ -1 +1 @@ -{"uid":"aefb4681bbbff0c9","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d071752d20b95de3","name":"stdout","source":"d071752d20b95de3.txt","type":"text/plain","size":204}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"aefb4681bbbff0c9.json","parameterValues":[]} \ No newline at end of file +{"uid":"8cdb3386cf094e1f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"519607e9e5d7219c","name":"stdout","source":"519607e9e5d7219c.txt","type":"text/plain","size":204}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"8cdb3386cf094e1f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/debf2b82465b0240.json b/allure-report/data/test-cases/8cf44bb18023836b.json similarity index 64% rename from allure-report/data/test-cases/debf2b82465b0240.json rename to allure-report/data/test-cases/8cf44bb18023836b.json index 0e2cca495d9..54603c805f4 100644 --- a/allure-report/data/test-cases/debf2b82465b0240.json +++ b/allure-report/data/test-cases/8cf44bb18023836b.json @@ -1 +1 @@ -{"uid":"debf2b82465b0240","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ad7db611240dcbc0","name":"stdout","source":"ad7db611240dcbc0.txt","type":"text/plain","size":150}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"398c0a461bbe2313","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":[]},"source":"debf2b82465b0240.json","parameterValues":[]} \ No newline at end of file +{"uid":"8cf44bb18023836b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"285de4a0d9b150b3","name":"stdout","source":"285de4a0d9b150b3.txt","type":"text/plain","size":150}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8cf44bb18023836b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9aaea22e808b4eb.json b/allure-report/data/test-cases/8d5ed16bbc896a22.json similarity index 59% rename from allure-report/data/test-cases/e9aaea22e808b4eb.json rename to allure-report/data/test-cases/8d5ed16bbc896a22.json index 29567478033..dad8f936773 100644 --- a/allure-report/data/test-cases/e9aaea22e808b4eb.json +++ b/allure-report/data/test-cases/8d5ed16bbc896a22.json @@ -1 +1 @@ -{"uid":"e9aaea22e808b4eb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36b72f15ac4ac48f","name":"stdout","source":"36b72f15ac4ac48f.txt","type":"text/plain","size":36}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"270b5395a9143b9c","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":[]},"source":"e9aaea22e808b4eb.json","parameterValues":[]} \ No newline at end of file +{"uid":"8d5ed16bbc896a22","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"929957d5beb797a6","name":"stdout","source":"929957d5beb797a6.txt","type":"text/plain","size":36}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8d5ed16bbc896a22.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8da01589d3299948.json b/allure-report/data/test-cases/8da01589d3299948.json new file mode 100644 index 00000000000..ef8c5c2df48 --- /dev/null +++ b/allure-report/data/test-cases/8da01589d3299948.json @@ -0,0 +1 @@ +{"uid":"8da01589d3299948","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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12ac45051c49f01a","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"d7eae685c38fccbb","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8da01589d3299948.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/645c6c05562d2f01.json b/allure-report/data/test-cases/8dcfddf689f44d1d.json similarity index 66% rename from allure-report/data/test-cases/645c6c05562d2f01.json rename to allure-report/data/test-cases/8dcfddf689f44d1d.json index 22737961908..3d3b7d7afc6 100644 --- a/allure-report/data/test-cases/645c6c05562d2f01.json +++ b/allure-report/data/test-cases/8dcfddf689f44d1d.json @@ -1 +1 @@ -{"uid":"645c6c05562d2f01","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a6c1f836394adf7","name":"stdout","source":"1a6c1f836394adf7.txt","type":"text/plain","size":562}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a51a382d521d00cc","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"645c6c05562d2f01.json","parameterValues":[]} \ No newline at end of file +{"uid":"8dcfddf689f44d1d","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"678cdbc81118a45c","name":"stdout","source":"678cdbc81118a45c.txt","type":"text/plain","size":562}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"8dcfddf689f44d1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dde6031964dc28f.json b/allure-report/data/test-cases/8dde6031964dc28f.json new file mode 100644 index 00000000000..5e7d457253a --- /dev/null +++ b/allure-report/data/test-cases/8dde6031964dc28f.json @@ -0,0 +1 @@ +{"uid":"8dde6031964dc28f","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should create a NxN spiral with a given size.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732428193941,"stop":1732428193941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1732428193943,"stop":1732428193943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"73a56012085cbb67","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"815ff7102e2d18bc","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8dde6031964dc28f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d9270ca3330737a.json b/allure-report/data/test-cases/8dea57e5544d4774.json similarity index 71% rename from allure-report/data/test-cases/6d9270ca3330737a.json rename to allure-report/data/test-cases/8dea57e5544d4774.json index 4e22bc34c2c..532c94c06d3 100644 --- a/allure-report/data/test-cases/6d9270ca3330737a.json +++ b/allure-report/data/test-cases/8dea57e5544d4774.json @@ -1 +1 @@ -{"uid":"6d9270ca3330737a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2704cebfbdb23ee9","name":"stdout","source":"2704cebfbdb23ee9.txt","type":"text/plain","size":560}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6d9270ca3330737a.json","parameterValues":[]} \ No newline at end of file +{"uid":"8dea57e5544d4774","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62359e715edfaf26","name":"stdout","source":"62359e715edfaf26.txt","type":"text/plain","size":560}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8dea57e5544d4774.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6e7e7d9161dd5e2.json b/allure-report/data/test-cases/8e17b24d548befe2.json similarity index 53% rename from allure-report/data/test-cases/f6e7e7d9161dd5e2.json rename to allure-report/data/test-cases/8e17b24d548befe2.json index 7c41b34a6c8..197076101c1 100644 --- a/allure-report/data/test-cases/f6e7e7d9161dd5e2.json +++ b/allure-report/data/test-cases/8e17b24d548befe2.json @@ -1 +1 @@ -{"uid":"f6e7e7d9161dd5e2","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d6a0933efaeb03c","name":"stdout","source":"d6a0933efaeb03c.txt","type":"text/plain","size":55}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f6e7e7d9161dd5e2.json","parameterValues":[]} \ No newline at end of file +{"uid":"8e17b24d548befe2","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"273b19c655c226cd","name":"stdout","source":"273b19c655c226cd.txt","type":"text/plain","size":55}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8e17b24d548befe2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e1e8d12e75298b.json b/allure-report/data/test-cases/8e1e8d12e75298b.json new file mode 100644 index 00000000000..52b2ad594ca --- /dev/null +++ b/allure-report/data/test-cases/8e1e8d12e75298b.json @@ -0,0 +1 @@ +{"uid":"8e1e8d12e75298b","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"47ba37195574156f","name":"stdout","source":"47ba37195574156f.txt","type":"text/plain","size":232}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"8e1e8d12e75298b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92297f3cbdd8ad78.json b/allure-report/data/test-cases/8e1e999ab6569b87.json similarity index 58% rename from allure-report/data/test-cases/92297f3cbdd8ad78.json rename to allure-report/data/test-cases/8e1e999ab6569b87.json index 2e58ff1b4c5..0fdb764365d 100644 --- a/allure-report/data/test-cases/92297f3cbdd8ad78.json +++ b/allure-report/data/test-cases/8e1e999ab6569b87.json @@ -1 +1 @@ -{"uid":"92297f3cbdd8ad78","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72f410625d43ac82","name":"stdout","source":"72f410625d43ac82.txt","type":"text/plain","size":111}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"82e3ff5b5bd4ac62","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"92297f3cbdd8ad78.json","parameterValues":[]} \ No newline at end of file +{"uid":"8e1e999ab6569b87","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dea157c47f361971","name":"stdout","source":"dea157c47f361971.txt","type":"text/plain","size":111}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"8e1e999ab6569b87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/148a22b7e430194f.json b/allure-report/data/test-cases/8e7bc3e134c68e92.json similarity index 53% rename from allure-report/data/test-cases/148a22b7e430194f.json rename to allure-report/data/test-cases/8e7bc3e134c68e92.json index 143681d5c32..9a0b976a332 100644 --- a/allure-report/data/test-cases/148a22b7e430194f.json +++ b/allure-report/data/test-cases/8e7bc3e134c68e92.json @@ -1 +1 @@ -{"uid":"148a22b7e430194f","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f7258c787806381","name":"stdout","source":"7f7258c787806381.txt","type":"text/plain","size":531}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7511d5ab976a748a","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"148a22b7e430194f.json","parameterValues":[]} \ No newline at end of file +{"uid":"8e7bc3e134c68e92","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9b753e8aa39a2b6c","name":"stdout","source":"9b753e8aa39a2b6c.txt","type":"text/plain","size":531}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"8e7bc3e134c68e92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ea6e5a2b5515469.json b/allure-report/data/test-cases/8ea6e5a2b5515469.json new file mode 100644 index 00000000000..8cd6caa097c --- /dev/null +++ b/allure-report/data/test-cases/8ea6e5a2b5515469.json @@ -0,0 +1 @@ +{"uid":"8ea6e5a2b5515469","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732428195937,"stop":1732428195938,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195939,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"813aa9dc885c2882","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"4df34ce2718b817c","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c799982c38b97fcc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"8ea6e5a2b5515469.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/22fcf1edf8ebf197.json b/allure-report/data/test-cases/8efea6185ce9f545.json similarity index 93% rename from allure-report/data/test-cases/22fcf1edf8ebf197.json rename to allure-report/data/test-cases/8efea6185ce9f545.json index eff5e852cd0..5bf16d536e3 100644 --- a/allure-report/data/test-cases/22fcf1edf8ebf197.json +++ b/allure-report/data/test-cases/8efea6185ce9f545.json @@ -1 +1 @@ -{"uid":"22fcf1edf8ebf197","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"22fcf1edf8ebf197.json","parameterValues":[]} \ No newline at end of file +{"uid":"8efea6185ce9f545","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"8efea6185ce9f545.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/17d8ff61005bb0bc.json b/allure-report/data/test-cases/8f3fc2a4deaebd0d.json similarity index 68% rename from allure-report/data/test-cases/17d8ff61005bb0bc.json rename to allure-report/data/test-cases/8f3fc2a4deaebd0d.json index 538524e9b35..826204e272d 100644 --- a/allure-report/data/test-cases/17d8ff61005bb0bc.json +++ b/allure-report/data/test-cases/8f3fc2a4deaebd0d.json @@ -1 +1 @@ -{"uid":"17d8ff61005bb0bc","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"17d8ff61005bb0bc.json","parameterValues":[]} \ No newline at end of file +{"uid":"8f3fc2a4deaebd0d","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"8f3fc2a4deaebd0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/900a2cbb7155295.json b/allure-report/data/test-cases/900a2cbb7155295.json new file mode 100644 index 00000000000..be966123178 --- /dev/null +++ b/allure-report/data/test-cases/900a2cbb7155295.json @@ -0,0 +1 @@ +{"uid":"900a2cbb7155295","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732428195769,"stop":1732428195769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"656eaa4febf44ace","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"965a3663c8644328","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fdff4b964fae0427","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"900a2cbb7155295.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49aa5cc4276ca55b.json b/allure-report/data/test-cases/90184d6eca761182.json similarity index 60% rename from allure-report/data/test-cases/49aa5cc4276ca55b.json rename to allure-report/data/test-cases/90184d6eca761182.json index f4858a7f4ea..ef71cfeda3d 100644 --- a/allure-report/data/test-cases/49aa5cc4276ca55b.json +++ b/allure-report/data/test-cases/90184d6eca761182.json @@ -1 +1 @@ -{"uid":"49aa5cc4276ca55b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47de92a1be75c8fa","name":"stdout","source":"47de92a1be75c8fa.txt","type":"text/plain","size":59}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3fab8ff7d7139e20","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"49aa5cc4276ca55b.json","parameterValues":[]} \ No newline at end of file +{"uid":"90184d6eca761182","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a73f85a8fac351b8","name":"stdout","source":"a73f85a8fac351b8.txt","type":"text/plain","size":59}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"90184d6eca761182.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7a1019ba1beb3118.json b/allure-report/data/test-cases/90a10a824ed5b372.json similarity index 56% rename from allure-report/data/test-cases/7a1019ba1beb3118.json rename to allure-report/data/test-cases/90a10a824ed5b372.json index 75443f3529b..d81dbb65848 100644 --- a/allure-report/data/test-cases/7a1019ba1beb3118.json +++ b/allure-report/data/test-cases/90a10a824ed5b372.json @@ -1 +1 @@ -{"uid":"7a1019ba1beb3118","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"17d8ff61005bb0bc","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"7a1019ba1beb3118.json","parameterValues":[]} \ No newline at end of file +{"uid":"90a10a824ed5b372","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"90a10a824ed5b372.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8be7042d182d7bb.json b/allure-report/data/test-cases/90c86a448294d535.json similarity index 70% rename from allure-report/data/test-cases/c8be7042d182d7bb.json rename to allure-report/data/test-cases/90c86a448294d535.json index e0631752d8b..fe1c04b0c00 100644 --- a/allure-report/data/test-cases/c8be7042d182d7bb.json +++ b/allure-report/data/test-cases/90c86a448294d535.json @@ -1 +1 @@ -{"uid":"c8be7042d182d7bb","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41f5ec6cee6b6454","name":"stdout","source":"41f5ec6cee6b6454.txt","type":"text/plain","size":939}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"c8be7042d182d7bb.json","parameterValues":[]} \ No newline at end of file +{"uid":"90c86a448294d535","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c34a92b7a1b9869e","name":"stdout","source":"c34a92b7a1b9869e.txt","type":"text/plain","size":939}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"90c86a448294d535.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90d2f619b6b55a93.json b/allure-report/data/test-cases/90d2f619b6b55a93.json new file mode 100644 index 00000000000..d189ba7ad6d --- /dev/null +++ b/allure-report/data/test-cases/90d2f619b6b55a93.json @@ -0,0 +1 @@ +{"uid":"90d2f619b6b55a93","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"518d45d1073ca74","name":"stdout","source":"518d45d1073ca74.txt","type":"text/plain","size":263}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"90d2f619b6b55a93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1edd352618c6aa2b.json b/allure-report/data/test-cases/910c497042fbb9d7.json similarity index 92% rename from allure-report/data/test-cases/1edd352618c6aa2b.json rename to allure-report/data/test-cases/910c497042fbb9d7.json index 772fb6750df..39f503ce3f8 100644 --- a/allure-report/data/test-cases/1edd352618c6aa2b.json +++ b/allure-report/data/test-cases/910c497042fbb9d7.json @@ -1 +1 @@ -{"uid":"1edd352618c6aa2b","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"1edd352618c6aa2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"910c497042fbb9d7","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"910c497042fbb9d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91c9b008755c7351.json b/allure-report/data/test-cases/91c9b008755c7351.json new file mode 100644 index 00000000000..093a9481fe8 --- /dev/null +++ b/allure-report/data/test-cases/91c9b008755c7351.json @@ -0,0 +1 @@ +{"uid":"91c9b008755c7351","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732428194039,"stop":1732428194039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1732428194042,"stop":1732428194042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5319ceacad5a43bc","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"f7656bca6b03073b","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"91c9b008755c7351.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/808471d4cfeae814.json b/allure-report/data/test-cases/920950efadf9f044.json similarity index 67% rename from allure-report/data/test-cases/808471d4cfeae814.json rename to allure-report/data/test-cases/920950efadf9f044.json index 8529819f92f..266f6f1c304 100644 --- a/allure-report/data/test-cases/808471d4cfeae814.json +++ b/allure-report/data/test-cases/920950efadf9f044.json @@ -1 +1 @@ -{"uid":"808471d4cfeae814","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92552b4b1fe49529","name":"stdout","source":"92552b4b1fe49529.txt","type":"text/plain","size":253}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"808471d4cfeae814.json","parameterValues":[]} \ No newline at end of file +{"uid":"920950efadf9f044","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7e0608ae57e6ca33","name":"stdout","source":"7e0608ae57e6ca33.txt","type":"text/plain","size":253}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"920950efadf9f044.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0ff51cf7a3c2781.json b/allure-report/data/test-cases/924a52587e7b2c82.json similarity index 68% rename from allure-report/data/test-cases/b0ff51cf7a3c2781.json rename to allure-report/data/test-cases/924a52587e7b2c82.json index 6f06abd3180..28537f22042 100644 --- a/allure-report/data/test-cases/b0ff51cf7a3c2781.json +++ b/allure-report/data/test-cases/924a52587e7b2c82.json @@ -1 +1 @@ -{"uid":"b0ff51cf7a3c2781","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"108fa13d4dc4aeec","name":"stdout","source":"108fa13d4dc4aeec.txt","type":"text/plain","size":1536}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b0ff51cf7a3c2781.json","parameterValues":[]} \ No newline at end of file +{"uid":"924a52587e7b2c82","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2e5a8277ac6080e3","name":"stdout","source":"2e5a8277ac6080e3.txt","type":"text/plain","size":1536}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"924a52587e7b2c82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9267ea7150c527ef.json b/allure-report/data/test-cases/9267ea7150c527ef.json new file mode 100644 index 00000000000..fbd8edba102 --- /dev/null +++ b/allure-report/data/test-cases/9267ea7150c527ef.json @@ -0,0 +1 @@ +{"uid":"9267ea7150c527ef","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732428195509,"stop":1732428195510,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1732428195512,"stop":1732428195512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"602b6b1c829f1e7f","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"9ee9ff331756b11e","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9267ea7150c527ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92a7ecb29f4704b1.json b/allure-report/data/test-cases/92a7ecb29f4704b1.json new file mode 100644 index 00000000000..a6b647d51eb --- /dev/null +++ b/allure-report/data/test-cases/92a7ecb29f4704b1.json @@ -0,0 +1 @@ +{"uid":"92a7ecb29f4704b1","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":1732428196352,"stop":1732428196352,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732428196354,"stop":1732428196354,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Remove String Spaces"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ba7aa507beaa1547","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"36b60db7bef82294","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"130e4ffebf4e47af","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"92a7ecb29f4704b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7028cdfd068e31be.json b/allure-report/data/test-cases/9326ca5c3b3bcaf3.json similarity index 76% rename from allure-report/data/test-cases/7028cdfd068e31be.json rename to allure-report/data/test-cases/9326ca5c3b3bcaf3.json index 71c14b39cfa..e5aa2b29198 100644 --- a/allure-report/data/test-cases/7028cdfd068e31be.json +++ b/allure-report/data/test-cases/9326ca5c3b3bcaf3.json @@ -1 +1 @@ -{"uid":"7028cdfd068e31be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfb7ba55710ea734","name":"stdout","source":"cfb7ba55710ea734.txt","type":"text/plain","size":216}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7028cdfd068e31be.json","parameterValues":[]} \ No newline at end of file +{"uid":"9326ca5c3b3bcaf3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d9853791dbf86dfe","name":"stdout","source":"d9853791dbf86dfe.txt","type":"text/plain","size":216}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9326ca5c3b3bcaf3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed5fbc4b14885f68.json b/allure-report/data/test-cases/933ecb6fe52a564f.json similarity index 68% rename from allure-report/data/test-cases/ed5fbc4b14885f68.json rename to allure-report/data/test-cases/933ecb6fe52a564f.json index cc81b36ceba..5048664f86e 100644 --- a/allure-report/data/test-cases/ed5fbc4b14885f68.json +++ b/allure-report/data/test-cases/933ecb6fe52a564f.json @@ -1 +1 @@ -{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b770734c2a5e83b","name":"stdout","source":"3b770734c2a5e83b.txt","type":"text/plain","size":231}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b0990a97652b0f6","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"ed5fbc4b14885f68.json","parameterValues":[]} \ No newline at end of file +{"uid":"933ecb6fe52a564f","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"773f7227b3021ebf","name":"stdout","source":"773f7227b3021ebf.txt","type":"text/plain","size":231}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"933ecb6fe52a564f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4979ee3063a87441.json b/allure-report/data/test-cases/9348c64cc78f5d13.json similarity index 72% rename from allure-report/data/test-cases/4979ee3063a87441.json rename to allure-report/data/test-cases/9348c64cc78f5d13.json index 73027ab3a02..5465d764c58 100644 --- a/allure-report/data/test-cases/4979ee3063a87441.json +++ b/allure-report/data/test-cases/9348c64cc78f5d13.json @@ -1 +1 @@ -{"uid":"4979ee3063a87441","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db194e9e67e4f8fb","name":"stdout","source":"db194e9e67e4f8fb.txt","type":"text/plain","size":428}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"4979ee3063a87441.json","parameterValues":[]} \ No newline at end of file +{"uid":"9348c64cc78f5d13","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9b1bb88dc50af4ea","name":"stdout","source":"9b1bb88dc50af4ea.txt","type":"text/plain","size":428}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"9348c64cc78f5d13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56a28cc490d83b65.json b/allure-report/data/test-cases/937c9b1e748aadb0.json similarity index 57% rename from allure-report/data/test-cases/56a28cc490d83b65.json rename to allure-report/data/test-cases/937c9b1e748aadb0.json index 890844e8de4..84ad7af05b2 100644 --- a/allure-report/data/test-cases/56a28cc490d83b65.json +++ b/allure-report/data/test-cases/937c9b1e748aadb0.json @@ -1 +1 @@ -{"uid":"56a28cc490d83b65","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c88c8283826150a7","name":"stdout","source":"c88c8283826150a7.txt","type":"text/plain","size":30}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e722b9059cce92a0","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"56a28cc490d83b65.json","parameterValues":[]} \ No newline at end of file +{"uid":"937c9b1e748aadb0","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3272d488a926cad0","name":"stdout","source":"3272d488a926cad0.txt","type":"text/plain","size":30}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"937c9b1e748aadb0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93ceeb95a47fabbf.json b/allure-report/data/test-cases/93ceeb95a47fabbf.json new file mode 100644 index 00000000000..b9b20c34a40 --- /dev/null +++ b/allure-report/data/test-cases/93ceeb95a47fabbf.json @@ -0,0 +1 @@ +{"uid":"93ceeb95a47fabbf","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":1732428196029,"stop":1732428196030,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732428196029,"stop":1732428196029,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3b580876a88f5382","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"4ad4524b2ee92967","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"39c69409f76377e7","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"93ceeb95a47fabbf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9451201a4cae53ad.json b/allure-report/data/test-cases/9451201a4cae53ad.json new file mode 100644 index 00000000000..6e1f49f8a7b --- /dev/null +++ b/allure-report/data/test-cases/9451201a4cae53ad.json @@ -0,0 +1 @@ +{"uid":"9451201a4cae53ad","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f6ed689bd033eb8a","name":"stdout","source":"f6ed689bd033eb8a.txt","type":"text/plain","size":60}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9451201a4cae53ad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1dee8c06fd165199.json b/allure-report/data/test-cases/945a96aedc88e8fe.json similarity index 72% rename from allure-report/data/test-cases/1dee8c06fd165199.json rename to allure-report/data/test-cases/945a96aedc88e8fe.json index cba837c33ba..93f538db2d1 100644 --- a/allure-report/data/test-cases/1dee8c06fd165199.json +++ b/allure-report/data/test-cases/945a96aedc88e8fe.json @@ -1 +1 @@ -{"uid":"1dee8c06fd165199","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":"9a93b35004a87c6a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"1dee8c06fd165199.json","parameterValues":[]} \ No newline at end of file +{"uid":"945a96aedc88e8fe","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":"945a96aedc88e8fe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23b523b580f78123.json b/allure-report/data/test-cases/94af9200e69d147a.json similarity index 79% rename from allure-report/data/test-cases/23b523b580f78123.json rename to allure-report/data/test-cases/94af9200e69d147a.json index 6883b226109..86a0b877d03 100644 --- a/allure-report/data/test-cases/23b523b580f78123.json +++ b/allure-report/data/test-cases/94af9200e69d147a.json @@ -1 +1 @@ -{"uid":"23b523b580f78123","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e747e2d69cfbefdf","name":"stdout","source":"e747e2d69cfbefdf.txt","type":"text/plain","size":318}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23b523b580f78123.json","parameterValues":[]} \ No newline at end of file +{"uid":"94af9200e69d147a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e1f708218c48d04","name":"stdout","source":"1e1f708218c48d04.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"94af9200e69d147a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9f33e581ec48813.json b/allure-report/data/test-cases/951576068e42ee36.json similarity index 78% rename from allure-report/data/test-cases/a9f33e581ec48813.json rename to allure-report/data/test-cases/951576068e42ee36.json index 60dd76609fe..e80c52260c2 100644 --- a/allure-report/data/test-cases/a9f33e581ec48813.json +++ b/allure-report/data/test-cases/951576068e42ee36.json @@ -1 +1 @@ -{"uid":"a9f33e581ec48813","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"1c3fe0844baefb8c","name":"stdout","source":"1c3fe0844baefb8c.txt","type":"text/plain","size":717}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a9f33e581ec48813.json","parameterValues":[]} \ No newline at end of file +{"uid":"951576068e42ee36","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"34515415abccae34","name":"stdout","source":"34515415abccae34.txt","type":"text/plain","size":717}],"parameters":[],"hasContent":true,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":"951576068e42ee36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95172229a5a9ad6.json b/allure-report/data/test-cases/95172229a5a9ad6.json deleted file mode 100644 index d14c13033eb..00000000000 --- a/allure-report/data/test-cases/95172229a5a9ad6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"95172229a5a9ad6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"92e60d573610c20c","name":"stdout","source":"92e60d573610c20c.txt","type":"text/plain","size":611}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"95172229a5a9ad6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9521eb418a2faa99.json b/allure-report/data/test-cases/9521eb418a2faa99.json new file mode 100644 index 00000000000..64b7ce1e6d4 --- /dev/null +++ b/allure-report/data/test-cases/9521eb418a2faa99.json @@ -0,0 +1 @@ +{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732428195914,"stop":1732428195914,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732428195915,"stop":1732428195915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"161e5fcc0f247","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"68db53b8169ad957","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b9309fd398214a5","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"9521eb418a2faa99.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9525e56c1666fc0f.json b/allure-report/data/test-cases/9525e56c1666fc0f.json deleted file mode 100644 index 2e2bda83e13..00000000000 --- a/allure-report/data/test-cases/9525e56c1666fc0f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9525e56c1666fc0f","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62e987f3927afd7c","name":"stdout","source":"62e987f3927afd7c.txt","type":"text/plain","size":232}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4df49eaeb4ea4daa","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"9525e56c1666fc0f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df11ad8a9930a85d.json b/allure-report/data/test-cases/95521fe2b6cd2563.json similarity index 62% rename from allure-report/data/test-cases/df11ad8a9930a85d.json rename to allure-report/data/test-cases/95521fe2b6cd2563.json index 5c886edbd3a..563a8704589 100644 --- a/allure-report/data/test-cases/df11ad8a9930a85d.json +++ b/allure-report/data/test-cases/95521fe2b6cd2563.json @@ -1 +1 @@ -{"uid":"df11ad8a9930a85d","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"396239392c64a388","name":"stdout","source":"396239392c64a388.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df11ad8a9930a85d.json","parameterValues":[]} \ No newline at end of file +{"uid":"95521fe2b6cd2563","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"97827ebef7dd2119","name":"stdout","source":"97827ebef7dd2119.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95521fe2b6cd2563.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1c2f2381b1441f6.json b/allure-report/data/test-cases/9557455e27a468ef.json similarity index 61% rename from allure-report/data/test-cases/b1c2f2381b1441f6.json rename to allure-report/data/test-cases/9557455e27a468ef.json index 2748e1f1beb..f3060fdf352 100644 --- a/allure-report/data/test-cases/b1c2f2381b1441f6.json +++ b/allure-report/data/test-cases/9557455e27a468ef.json @@ -1 +1 @@ -{"uid":"b1c2f2381b1441f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b018537831100fb","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":[]},"source":"b1c2f2381b1441f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"9557455e27a468ef","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9557455e27a468ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7ad7c048e8324d3.json b/allure-report/data/test-cases/9585be0acd74f7c1.json similarity index 76% rename from allure-report/data/test-cases/f7ad7c048e8324d3.json rename to allure-report/data/test-cases/9585be0acd74f7c1.json index aae74345240..1c05cd75777 100644 --- a/allure-report/data/test-cases/f7ad7c048e8324d3.json +++ b/allure-report/data/test-cases/9585be0acd74f7c1.json @@ -1 +1 @@ -{"uid":"f7ad7c048e8324d3","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1f91f89a689bba4","name":"stdout","source":"f1f91f89a689bba4.txt","type":"text/plain","size":276}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f7ad7c048e8324d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"9585be0acd74f7c1","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"de83cab412c71bc2","name":"stdout","source":"de83cab412c71bc2.txt","type":"text/plain","size":276}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9585be0acd74f7c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e4b4c0a3aeae99e.json b/allure-report/data/test-cases/95a29a9545c416cd.json similarity index 71% rename from allure-report/data/test-cases/5e4b4c0a3aeae99e.json rename to allure-report/data/test-cases/95a29a9545c416cd.json index ada84c54968..76c42fa1f7d 100644 --- a/allure-report/data/test-cases/5e4b4c0a3aeae99e.json +++ b/allure-report/data/test-cases/95a29a9545c416cd.json @@ -1 +1 @@ -{"uid":"5e4b4c0a3aeae99e","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"5e4b4c0a3aeae99e.json","parameterValues":[]} \ No newline at end of file +{"uid":"95a29a9545c416cd","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"95a29a9545c416cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95ddc175910ea52.json b/allure-report/data/test-cases/95ddc175910ea52.json deleted file mode 100644 index 958a182617b..00000000000 --- a/allure-report/data/test-cases/95ddc175910ea52.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"95ddc175910ea52","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2fa0f7a126ad592b","name":"stdout","source":"2fa0f7a126ad592b.txt","type":"text/plain","size":1009}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7b9876690035f17","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"16026a681cee6bae","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}}]},"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"95ddc175910ea52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95e612b16602c749.json b/allure-report/data/test-cases/95e612b16602c749.json deleted file mode 100644 index 4f2c5b0f31a..00000000000 --- a/allure-report/data/test-cases/95e612b16602c749.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"95e612b16602c749","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c12b7919feb22bf","name":"stdout","source":"c12b7919feb22bf.txt","type":"text/plain","size":896}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"95e612b16602c749.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/964ad50f448ed64d.json b/allure-report/data/test-cases/964ad50f448ed64d.json deleted file mode 100644 index 312c8dd0312..00000000000 --- a/allure-report/data/test-cases/964ad50f448ed64d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4cfe45f98e3a162","name":"stdout","source":"4cfe45f98e3a162.txt","type":"text/plain","size":524}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"431c7499a8a042ca","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f2ec06c200d3086","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"964ad50f448ed64d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2fbd8f640be4431.json b/allure-report/data/test-cases/965a3663c8644328.json similarity index 73% rename from allure-report/data/test-cases/a2fbd8f640be4431.json rename to allure-report/data/test-cases/965a3663c8644328.json index 4817087afe3..4aff28c166b 100644 --- a/allure-report/data/test-cases/a2fbd8f640be4431.json +++ b/allure-report/data/test-cases/965a3663c8644328.json @@ -1 +1 @@ -{"uid":"a2fbd8f640be4431","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db7ce475c42c1e48","name":"stdout","source":"db7ce475c42c1e48.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a2fbd8f640be4431.json","parameterValues":[]} \ No newline at end of file +{"uid":"965a3663c8644328","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e968c2a309c9083","name":"stdout","source":"6e968c2a309c9083.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"965a3663c8644328.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/967fef280aa6e796.json b/allure-report/data/test-cases/967fef280aa6e796.json new file mode 100644 index 00000000000..d94bf95fa2e --- /dev/null +++ b/allure-report/data/test-cases/967fef280aa6e796.json @@ -0,0 +1 @@ +{"uid":"967fef280aa6e796","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ee6aafaeecdbf","name":"stdout","source":"6ee6aafaeecdbf.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"967fef280aa6e796.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96df3e350e2ba16f.json b/allure-report/data/test-cases/96df3e350e2ba16f.json new file mode 100644 index 00000000000..6a0e9edb43c --- /dev/null +++ b/allure-report/data/test-cases/96df3e350e2ba16f.json @@ -0,0 +1 @@ +{"uid":"96df3e350e2ba16f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d3f2d22c5115b6e","name":"stdout","source":"2d3f2d22c5115b6e.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"96df3e350e2ba16f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/973452fbe07efc18.json b/allure-report/data/test-cases/973452fbe07efc18.json new file mode 100644 index 00000000000..fc088a81b30 --- /dev/null +++ b/allure-report/data/test-cases/973452fbe07efc18.json @@ -0,0 +1 @@ +{"uid":"973452fbe07efc18","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":1732428196425,"stop":1732428196425,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a3b2f77071e9a780","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"c898f599f64280c3","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ede582dcc2b34bf3","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"973452fbe07efc18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a76fd0002a5824c.json b/allure-report/data/test-cases/97ad1cd914697b30.json similarity index 57% rename from allure-report/data/test-cases/8a76fd0002a5824c.json rename to allure-report/data/test-cases/97ad1cd914697b30.json index d805940bcbe..fc2e190d2ed 100644 --- a/allure-report/data/test-cases/8a76fd0002a5824c.json +++ b/allure-report/data/test-cases/97ad1cd914697b30.json @@ -1 +1 @@ -{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d7e0ef7caf28d559","name":"stdout","source":"d7e0ef7caf28d559.txt","type":"text/plain","size":878}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"761811e55728ed74","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3fa15071b1bee987","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"8a76fd0002a5824c.json","parameterValues":[]} \ No newline at end of file +{"uid":"97ad1cd914697b30","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"857a5351e31f1baf","name":"stdout","source":"857a5351e31f1baf.txt","type":"text/plain","size":878}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"97ad1cd914697b30.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9800852f4c3c1957.json b/allure-report/data/test-cases/9800852f4c3c1957.json new file mode 100644 index 00000000000..e77f66edb65 --- /dev/null +++ b/allure-report/data/test-cases/9800852f4c3c1957.json @@ -0,0 +1 @@ +{"uid":"9800852f4c3c1957","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732428196110,"stop":1732428196110,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732428196109,"stop":1732428196109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732428196111,"stop":1732428196111,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Check the exam"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65cad3353d8c115b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"cdb2fb8959394c65","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"da49bdf1737798b8","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"9800852f4c3c1957.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98200e3d5ae32ca.json b/allure-report/data/test-cases/98200e3d5ae32ca.json deleted file mode 100644 index bed0a352d1d..00000000000 --- a/allure-report/data/test-cases/98200e3d5ae32ca.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"98200e3d5ae32ca","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"91c5a91c91d3cce8","name":"stdout","source":"91c5a91c91d3cce8.txt","type":"text/plain","size":12051}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a70604cd2465a183","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"98200e3d5ae32ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/984af3d5d8056be9.json b/allure-report/data/test-cases/984af3d5d8056be9.json new file mode 100644 index 00000000000..2907eb03d98 --- /dev/null +++ b/allure-report/data/test-cases/984af3d5d8056be9.json @@ -0,0 +1 @@ +{"uid":"984af3d5d8056be9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732428196119,"stop":1732428196119,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Convert a string to an array"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e330dbdee7dc6874","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"9d10f71bfad2e1ef","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52715db4a1ce5955","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"984af3d5d8056be9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98c161ccba9924bd.json b/allure-report/data/test-cases/98c161ccba9924bd.json new file mode 100644 index 00000000000..522f3b85237 --- /dev/null +++ b/allure-report/data/test-cases/98c161ccba9924bd.json @@ -0,0 +1 @@ +{"uid":"98c161ccba9924bd","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":1732428196385,"stop":1732428196385,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732428196386,"stop":1732428196386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GEOMETRY"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"ALGEBRA"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e1e8d12e75298b","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"f97aaf8957be0a89","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9525e56c1666fc0f","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"98c161ccba9924bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/996ab105867adbc9.json b/allure-report/data/test-cases/996ab105867adbc9.json new file mode 100644 index 00000000000..05d4a1a091b --- /dev/null +++ b/allure-report/data/test-cases/996ab105867adbc9.json @@ -0,0 +1 @@ +{"uid":"996ab105867adbc9","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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"445f2e59cb6a4191","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"8efea6185ce9f545","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"996ab105867adbc9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2965d2d3db0ea08e.json b/allure-report/data/test-cases/997065a61e801d4c.json similarity index 65% rename from allure-report/data/test-cases/2965d2d3db0ea08e.json rename to allure-report/data/test-cases/997065a61e801d4c.json index 4918d27313a..8f330320d63 100644 --- a/allure-report/data/test-cases/2965d2d3db0ea08e.json +++ b/allure-report/data/test-cases/997065a61e801d4c.json @@ -1 +1 @@ -{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6f54ca69ed4a797e","name":"stdout","source":"6f54ca69ed4a797e.txt","type":"text/plain","size":931}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"895ce9b19a080b91","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"be5a8376fdcba717","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"2965d2d3db0ea08e.json","parameterValues":[]} \ No newline at end of file +{"uid":"997065a61e801d4c","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2dd75c6915b1e704","name":"stdout","source":"2dd75c6915b1e704.txt","type":"text/plain","size":931}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"997065a61e801d4c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a93bd997ced3859a.json b/allure-report/data/test-cases/99b8e6f5f8a43508.json similarity index 62% rename from allure-report/data/test-cases/a93bd997ced3859a.json rename to allure-report/data/test-cases/99b8e6f5f8a43508.json index 7503f9f09c4..99f51597b36 100644 --- a/allure-report/data/test-cases/a93bd997ced3859a.json +++ b/allure-report/data/test-cases/99b8e6f5f8a43508.json @@ -1 +1 @@ -{"uid":"a93bd997ced3859a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e0ce3a7d48216112","name":"stdout","source":"e0ce3a7d48216112.txt","type":"text/plain","size":299}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a93bd997ced3859a.json","parameterValues":[]} \ No newline at end of file +{"uid":"99b8e6f5f8a43508","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca8a9ae1b56b4086","name":"stdout","source":"ca8a9ae1b56b4086.txt","type":"text/plain","size":299}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"99b8e6f5f8a43508.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35cf25b9e515e00d.json b/allure-report/data/test-cases/99ca7a938f9d4989.json similarity index 59% rename from allure-report/data/test-cases/35cf25b9e515e00d.json rename to allure-report/data/test-cases/99ca7a938f9d4989.json index 0ec20ef317a..d614b052685 100644 --- a/allure-report/data/test-cases/35cf25b9e515e00d.json +++ b/allure-report/data/test-cases/99ca7a938f9d4989.json @@ -1 +1 @@ -{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"839e0167efc9a3e5","name":"stdout","source":"839e0167efc9a3e5.txt","type":"text/plain","size":434}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"204251456ada0752","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"928532982127bba0","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"35cf25b9e515e00d.json","parameterValues":[]} \ No newline at end of file +{"uid":"99ca7a938f9d4989","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca908a3276ec1f33","name":"stdout","source":"ca908a3276ec1f33.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"99ca7a938f9d4989.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json b/allure-report/data/test-cases/9a401d5b28fee66a.json similarity index 74% rename from allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json rename to allure-report/data/test-cases/9a401d5b28fee66a.json index 5371b9bf405..a0776b70fdd 100644 --- a/allure-report/data/test-cases/dbd8c0e7d9b1bcd0.json +++ b/allure-report/data/test-cases/9a401d5b28fee66a.json @@ -1 +1 @@ -{"uid":"dbd8c0e7d9b1bcd0","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"362de8ecec922d6a","name":"stdout","source":"362de8ecec922d6a.txt","type":"text/plain","size":772}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"dbd8c0e7d9b1bcd0.json","parameterValues":[]} \ No newline at end of file +{"uid":"9a401d5b28fee66a","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d2ebd6c7bb69da29","name":"stdout","source":"d2ebd6c7bb69da29.txt","type":"text/plain","size":772}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9a401d5b28fee66a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e41551e078ed42ea.json b/allure-report/data/test-cases/9abe86e868e9efe6.json similarity index 69% rename from allure-report/data/test-cases/e41551e078ed42ea.json rename to allure-report/data/test-cases/9abe86e868e9efe6.json index e35c98306a3..99f9611de71 100644 --- a/allure-report/data/test-cases/e41551e078ed42ea.json +++ b/allure-report/data/test-cases/9abe86e868e9efe6.json @@ -1 +1 @@ -{"uid":"e41551e078ed42ea","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27155577e4b86a95","name":"stdout","source":"27155577e4b86a95.txt","type":"text/plain","size":277}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e41551e078ed42ea.json","parameterValues":[]} \ No newline at end of file +{"uid":"9abe86e868e9efe6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3d8fef51a9e30706","name":"stdout","source":"3d8fef51a9e30706.txt","type":"text/plain","size":277}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"9abe86e868e9efe6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5a389260d41a743.json b/allure-report/data/test-cases/9ac6d40036941792.json similarity index 58% rename from allure-report/data/test-cases/d5a389260d41a743.json rename to allure-report/data/test-cases/9ac6d40036941792.json index 9740d2276c3..38510786d0a 100644 --- a/allure-report/data/test-cases/d5a389260d41a743.json +++ b/allure-report/data/test-cases/9ac6d40036941792.json @@ -1 +1 @@ -{"uid":"d5a389260d41a743","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"faf563094f59ca6b","name":"stdout","source":"faf563094f59ca6b.txt","type":"text/plain","size":72}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11b0f4fd11e05b10","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"d5a389260d41a743.json","parameterValues":[]} \ No newline at end of file +{"uid":"9ac6d40036941792","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"addbfb5be788ff64","name":"stdout","source":"addbfb5be788ff64.txt","type":"text/plain","size":72}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"9ac6d40036941792.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e738d6d09d0feb9e.json b/allure-report/data/test-cases/9b1bc0b9a480db3e.json similarity index 77% rename from allure-report/data/test-cases/e738d6d09d0feb9e.json rename to allure-report/data/test-cases/9b1bc0b9a480db3e.json index 42f35d2a3fb..e196c6dad75 100644 --- a/allure-report/data/test-cases/e738d6d09d0feb9e.json +++ b/allure-report/data/test-cases/9b1bc0b9a480db3e.json @@ -1 +1 @@ -{"uid":"e738d6d09d0feb9e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e20f82a8bca3f91b","name":"stdout","source":"e20f82a8bca3f91b.txt","type":"text/plain","size":227}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6b00dc7a9142ab25","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":[]},"source":"e738d6d09d0feb9e.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b1bc0b9a480db3e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"abe246047ca80d75","name":"stdout","source":"abe246047ca80d75.txt","type":"text/plain","size":227}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9b1bc0b9a480db3e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b5127c91b9deeb6.json b/allure-report/data/test-cases/9b5127c91b9deeb6.json new file mode 100644 index 00000000000..59e2b43d482 --- /dev/null +++ b/allure-report/data/test-cases/9b5127c91b9deeb6.json @@ -0,0 +1 @@ +{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732428194521,"stop":1732428194521,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ec407d8e8742f0d","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"75ba956cc9ee13f9","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"14d24a2946d66b00","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["SORTING","ALGORITHMS"]},"source":"9b5127c91b9deeb6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b96004f0b179053d.json b/allure-report/data/test-cases/9b613507776a0871.json similarity index 57% rename from allure-report/data/test-cases/b96004f0b179053d.json rename to allure-report/data/test-cases/9b613507776a0871.json index 571167306de..b17056256d6 100644 --- a/allure-report/data/test-cases/b96004f0b179053d.json +++ b/allure-report/data/test-cases/9b613507776a0871.json @@ -1 +1 @@ -{"uid":"b96004f0b179053d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"272f73f71ea0c103","name":"stdout","source":"272f73f71ea0c103.txt","type":"text/plain","size":539}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"587ebae959bb9619","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"b96004f0b179053d.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b613507776a0871","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ba31ccf0eed329a1","name":"stdout","source":"ba31ccf0eed329a1.txt","type":"text/plain","size":539}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"9b613507776a0871.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c241cc9403723af.json b/allure-report/data/test-cases/9c241cc9403723af.json new file mode 100644 index 00000000000..1f8a3289576 --- /dev/null +++ b/allure-report/data/test-cases/9c241cc9403723af.json @@ -0,0 +1 @@ +{"uid":"9c241cc9403723af","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732428196335,"stop":1732428196335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1732428196337,"stop":1732428196337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"73db1f36a5925004","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"acf49fc01f491be4","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9c241cc9403723af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/675849fee1009391.json b/allure-report/data/test-cases/9c2fc5bac7417dd0.json similarity index 58% rename from allure-report/data/test-cases/675849fee1009391.json rename to allure-report/data/test-cases/9c2fc5bac7417dd0.json index e04ffc867b1..1291c78d9f5 100644 --- a/allure-report/data/test-cases/675849fee1009391.json +++ b/allure-report/data/test-cases/9c2fc5bac7417dd0.json @@ -1 +1 @@ -{"uid":"675849fee1009391","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fec67c535945138b","name":"stdout","source":"fec67c535945138b.txt","type":"text/plain","size":67}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cabe377ec9af3c98","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c1f2317d20109e13","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"675849fee1009391.json","parameterValues":[]} \ No newline at end of file +{"uid":"9c2fc5bac7417dd0","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0b96f0ad42d1de6","name":"stdout","source":"d0b96f0ad42d1de6.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"9c2fc5bac7417dd0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5a45493f51c1d67.json b/allure-report/data/test-cases/9c43e0c7813423da.json similarity index 55% rename from allure-report/data/test-cases/b5a45493f51c1d67.json rename to allure-report/data/test-cases/9c43e0c7813423da.json index bbe8d28b5dd..a0b734da766 100644 --- a/allure-report/data/test-cases/b5a45493f51c1d67.json +++ b/allure-report/data/test-cases/9c43e0c7813423da.json @@ -1 +1 @@ -{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"93547fa89048aa2f","name":"stdout","source":"93547fa89048aa2f.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f90c5e53432ea6c2","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7f890ca68cdfc481","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"b5a45493f51c1d67.json","parameterValues":[]} \ No newline at end of file +{"uid":"9c43e0c7813423da","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c77e43a426f47681","name":"stdout","source":"c77e43a426f47681.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"9c43e0c7813423da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c5c32029e742eac.json b/allure-report/data/test-cases/9c5c32029e742eac.json new file mode 100644 index 00000000000..89534607581 --- /dev/null +++ b/allure-report/data/test-cases/9c5c32029e742eac.json @@ -0,0 +1 @@ +{"uid":"9c5c32029e742eac","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":1732428194603,"stop":1732428194603,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"844543e89f44e3d5","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"7c9ea3ba0070bf05","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fc2c5a5df6e26162","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"9c5c32029e742eac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee325afc05dcb3e8.json b/allure-report/data/test-cases/9cbf1053b771d679.json similarity index 69% rename from allure-report/data/test-cases/ee325afc05dcb3e8.json rename to allure-report/data/test-cases/9cbf1053b771d679.json index dff0b1228a7..71bac4eda3d 100644 --- a/allure-report/data/test-cases/ee325afc05dcb3e8.json +++ b/allure-report/data/test-cases/9cbf1053b771d679.json @@ -1 +1 @@ -{"uid":"ee325afc05dcb3e8","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b87eb62b93596729","name":"stdout","source":"b87eb62b93596729.txt","type":"text/plain","size":276}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7ad7c048e8324d3","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"ee325afc05dcb3e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"9cbf1053b771d679","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f8b59f79bb13d8ea","name":"stdout","source":"f8b59f79bb13d8ea.txt","type":"text/plain","size":276}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9cbf1053b771d679.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8af4ebd0495f0e70.json b/allure-report/data/test-cases/9d10f71bfad2e1ef.json similarity index 72% rename from allure-report/data/test-cases/8af4ebd0495f0e70.json rename to allure-report/data/test-cases/9d10f71bfad2e1ef.json index c157b35a931..5f932b5000d 100644 --- a/allure-report/data/test-cases/8af4ebd0495f0e70.json +++ b/allure-report/data/test-cases/9d10f71bfad2e1ef.json @@ -1 +1 @@ -{"uid":"8af4ebd0495f0e70","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c72469286db7525d","name":"stdout","source":"c72469286db7525d.txt","type":"text/plain","size":288}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8af4ebd0495f0e70.json","parameterValues":[]} \ No newline at end of file +{"uid":"9d10f71bfad2e1ef","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d89f3d58b0c226e8","name":"stdout","source":"d89f3d58b0c226e8.txt","type":"text/plain","size":288}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"9d10f71bfad2e1ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63bb569f11b7f542.json b/allure-report/data/test-cases/9dc85df7fba3a78e.json similarity index 61% rename from allure-report/data/test-cases/63bb569f11b7f542.json rename to allure-report/data/test-cases/9dc85df7fba3a78e.json index 3fd77f5ab62..00e0bf0f35f 100644 --- a/allure-report/data/test-cases/63bb569f11b7f542.json +++ b/allure-report/data/test-cases/9dc85df7fba3a78e.json @@ -1 +1 @@ -{"uid":"63bb569f11b7f542","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ebee3405e01a539f","name":"stdout","source":"ebee3405e01a539f.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"63bb569f11b7f542.json","parameterValues":[]} \ No newline at end of file +{"uid":"9dc85df7fba3a78e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a05ee87cd665f265","name":"stdout","source":"a05ee87cd665f265.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9dc85df7fba3a78e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dd5714486b51753.json b/allure-report/data/test-cases/9dd5714486b51753.json new file mode 100644 index 00000000000..1545a865052 --- /dev/null +++ b/allure-report/data/test-cases/9dd5714486b51753.json @@ -0,0 +1 @@ +{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732428193958,"stop":1732428193958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1732428193961,"stop":1732428193961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97ad1cd914697b30","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"54e4671ce8499dcf","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9dd5714486b51753.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c975897c57d974e.json b/allure-report/data/test-cases/9e6f93dfe778ff9a.json similarity index 69% rename from allure-report/data/test-cases/8c975897c57d974e.json rename to allure-report/data/test-cases/9e6f93dfe778ff9a.json index a34aed00ca8..0e340495bd1 100644 --- a/allure-report/data/test-cases/8c975897c57d974e.json +++ b/allure-report/data/test-cases/9e6f93dfe778ff9a.json @@ -1 +1 @@ -{"uid":"8c975897c57d974e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fd4f4028774f914d","name":"stdout","source":"fd4f4028774f914d.txt","type":"text/plain","size":233}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8c975897c57d974e.json","parameterValues":[]} \ No newline at end of file +{"uid":"9e6f93dfe778ff9a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"246dacd86be04ffa","name":"stdout","source":"246dacd86be04ffa.txt","type":"text/plain","size":233}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9e6f93dfe778ff9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/abba91be3722688b.json b/allure-report/data/test-cases/9ee9ff331756b11e.json similarity index 54% rename from allure-report/data/test-cases/abba91be3722688b.json rename to allure-report/data/test-cases/9ee9ff331756b11e.json index e1d7bed599e..f3b0169ab86 100644 --- a/allure-report/data/test-cases/abba91be3722688b.json +++ b/allure-report/data/test-cases/9ee9ff331756b11e.json @@ -1 +1 @@ -{"uid":"abba91be3722688b","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8fb66a095ff9819","name":"stdout","source":"b8fb66a095ff9819.txt","type":"text/plain","size":1127}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"abba91be3722688b.json","parameterValues":[]} \ No newline at end of file +{"uid":"9ee9ff331756b11e","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"419d7e1cf9a3c9b","name":"stdout","source":"419d7e1cf9a3c9b.txt","type":"text/plain","size":1127}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"9ee9ff331756b11e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f02852e3aa10b6d.json b/allure-report/data/test-cases/9f02852e3aa10b6d.json new file mode 100644 index 00000000000..31eab43797e --- /dev/null +++ b/allure-report/data/test-cases/9f02852e3aa10b6d.json @@ -0,0 +1 @@ +{"uid":"9f02852e3aa10b6d","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f23fd2a44d74bcb","name":"stdout","source":"3f23fd2a44d74bcb.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"9f02852e3aa10b6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39ba63dd42027b29.json b/allure-report/data/test-cases/9f8b999462605375.json similarity index 74% rename from allure-report/data/test-cases/39ba63dd42027b29.json rename to allure-report/data/test-cases/9f8b999462605375.json index 4de8f3c0ec9..68b26d75f4a 100644 --- a/allure-report/data/test-cases/39ba63dd42027b29.json +++ b/allure-report/data/test-cases/9f8b999462605375.json @@ -1 +1 @@ -{"uid":"39ba63dd42027b29","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d499b60fd50eab17","name":"stdout","source":"d499b60fd50eab17.txt","type":"text/plain","size":1649}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"39ba63dd42027b29.json","parameterValues":[]} \ No newline at end of file +{"uid":"9f8b999462605375","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"169bdc8e4de5949e","name":"stdout","source":"169bdc8e4de5949e.txt","type":"text/plain","size":1649}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9f8b999462605375.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f9422c1f71252b6.json b/allure-report/data/test-cases/9f9422c1f71252b6.json new file mode 100644 index 00000000000..f06db0312e7 --- /dev/null +++ b/allure-report/data/test-cases/9f9422c1f71252b6.json @@ -0,0 +1 @@ +{"uid":"9f9422c1f71252b6","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":1732428194124,"stop":1732428194125,"duration":1},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732428194123,"stop":1732428194123,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"39376204dc517df6","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"ed566371d87065db","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9f9422c1f71252b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/280a7287fd39d5a9.json b/allure-report/data/test-cases/9fa9266ff3a1c464.json similarity index 64% rename from allure-report/data/test-cases/280a7287fd39d5a9.json rename to allure-report/data/test-cases/9fa9266ff3a1c464.json index 8410d1ee7e5..0bd731032d4 100644 --- a/allure-report/data/test-cases/280a7287fd39d5a9.json +++ b/allure-report/data/test-cases/9fa9266ff3a1c464.json @@ -1 +1 @@ -{"uid":"280a7287fd39d5a9","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5b1486b52334c41e","name":"stdout","source":"5b1486b52334c41e.txt","type":"text/plain","size":222}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":2,"unknown":0,"total":2},"items":[{"uid":"f80f9bf6821c7c25","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"280a7287fd39d5a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"9fa9266ff3a1c464","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"16b3d133c1b1141f","name":"stdout","source":"16b3d133c1b1141f.txt","type":"text/plain","size":222}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9fa9266ff3a1c464.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a492d74df14be54a.json b/allure-report/data/test-cases/a076808e43574371.json similarity index 63% rename from allure-report/data/test-cases/a492d74df14be54a.json rename to allure-report/data/test-cases/a076808e43574371.json index eb86245ee10..f5a17b61689 100644 --- a/allure-report/data/test-cases/a492d74df14be54a.json +++ b/allure-report/data/test-cases/a076808e43574371.json @@ -1 +1 @@ -{"uid":"a492d74df14be54a","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c144733a0318ce29","name":"stdout","source":"c144733a0318ce29.txt","type":"text/plain","size":242}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"90a114379d845ff7","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c11bd2bbb0f17cd9","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"a492d74df14be54a.json","parameterValues":[]} \ No newline at end of file +{"uid":"a076808e43574371","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"65c05475b72ce468","name":"stdout","source":"65c05475b72ce468.txt","type":"text/plain","size":242}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c7eea171ede7ee13","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"a076808e43574371.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/327fbdea3443aca5.json b/allure-report/data/test-cases/a0d455d6bf21528b.json similarity index 63% rename from allure-report/data/test-cases/327fbdea3443aca5.json rename to allure-report/data/test-cases/a0d455d6bf21528b.json index af90a5bdf75..ebf9801dd25 100644 --- a/allure-report/data/test-cases/327fbdea3443aca5.json +++ b/allure-report/data/test-cases/a0d455d6bf21528b.json @@ -1 +1 @@ -{"uid":"327fbdea3443aca5","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7dbffa484c49e1de","name":"stdout","source":"7dbffa484c49e1de.txt","type":"text/plain","size":230}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0f9b8de2eb00fed","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c301f45b01d7d10f","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"327fbdea3443aca5.json","parameterValues":[]} \ No newline at end of file +{"uid":"a0d455d6bf21528b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ffe9d790c546ddb7","name":"stdout","source":"ffe9d790c546ddb7.txt","type":"text/plain","size":230}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a0d455d6bf21528b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a10876da94fb2b4f.json b/allure-report/data/test-cases/a10876da94fb2b4f.json new file mode 100644 index 00000000000..4ab83e44eac --- /dev/null +++ b/allure-report/data/test-cases/a10876da94fb2b4f.json @@ -0,0 +1 @@ +{"uid":"a10876da94fb2b4f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732428196416,"stop":1732428196417,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732428196419,"stop":1732428196419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"74c746ac3dc42135","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"a7008d20e58a9d6a","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6ea719d6e8a376fb","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"a10876da94fb2b4f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1a7aeb13172d1f0.json b/allure-report/data/test-cases/a1a7aeb13172d1f0.json new file mode 100644 index 00000000000..94e3b4695db --- /dev/null +++ b/allure-report/data/test-cases/a1a7aeb13172d1f0.json @@ -0,0 +1 @@ +{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732428196095,"stop":1732428196095,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d38d4627913b0040","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"1ca9562da84c64b4","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8451096f3488e82","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"tags":["FUNDAMENTALS"]},"source":"a1a7aeb13172d1f0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4ad45627654b5fc.json b/allure-report/data/test-cases/a1b53b199c1c867e.json similarity index 93% rename from allure-report/data/test-cases/f4ad45627654b5fc.json rename to allure-report/data/test-cases/a1b53b199c1c867e.json index a07b9a96c76..29fd597118d 100644 --- a/allure-report/data/test-cases/f4ad45627654b5fc.json +++ b/allure-report/data/test-cases/a1b53b199c1c867e.json @@ -1 +1 @@ -{"uid":"f4ad45627654b5fc","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":"f4ad45627654b5fc.json","parameterValues":[]} \ No newline at end of file +{"uid":"a1b53b199c1c867e","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":"a1b53b199c1c867e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a224a931a5567f85.json b/allure-report/data/test-cases/a224a931a5567f85.json new file mode 100644 index 00000000000..382325ebc62 --- /dev/null +++ b/allure-report/data/test-cases/a224a931a5567f85.json @@ -0,0 +1 @@ +{"uid":"a224a931a5567f85","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase::0","time":{"start":1732428195628,"stop":1732428195628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"a224a931a5567f85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac127c4c71bf788d.json b/allure-report/data/test-cases/a258a6f00a3ffda1.json similarity index 70% rename from allure-report/data/test-cases/ac127c4c71bf788d.json rename to allure-report/data/test-cases/a258a6f00a3ffda1.json index 356fd8346dc..8fd6a029bc7 100644 --- a/allure-report/data/test-cases/ac127c4c71bf788d.json +++ b/allure-report/data/test-cases/a258a6f00a3ffda1.json @@ -1 +1 @@ -{"uid":"ac127c4c71bf788d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e8c4247db1945485","name":"stdout","source":"e8c4247db1945485.txt","type":"text/plain","size":86}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac127c4c71bf788d.json","parameterValues":[]} \ No newline at end of file +{"uid":"a258a6f00a3ffda1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a8a2d0c90cfef1e","name":"stdout","source":"8a8a2d0c90cfef1e.txt","type":"text/plain","size":86}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a258a6f00a3ffda1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99a050e28b9f808c.json b/allure-report/data/test-cases/a2cc2be21cb9d7cd.json similarity index 55% rename from allure-report/data/test-cases/99a050e28b9f808c.json rename to allure-report/data/test-cases/a2cc2be21cb9d7cd.json index c74d194ebab..bee4795d90e 100644 --- a/allure-report/data/test-cases/99a050e28b9f808c.json +++ b/allure-report/data/test-cases/a2cc2be21cb9d7cd.json @@ -1 +1 @@ -{"uid":"99a050e28b9f808c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d920f200ffe2c729","name":"stdout","source":"d920f200ffe2c729.txt","type":"text/plain","size":378}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ef7cb2e79441187e","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a33fb2570aec1823","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"99a050e28b9f808c.json","parameterValues":[]} \ No newline at end of file +{"uid":"a2cc2be21cb9d7cd","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2b6038e2de6e977a","name":"stdout","source":"2b6038e2de6e977a.txt","type":"text/plain","size":378}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"a2cc2be21cb9d7cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a93b35004a87c6a.json b/allure-report/data/test-cases/a3216b951d3fac8b.json similarity index 94% rename from allure-report/data/test-cases/9a93b35004a87c6a.json rename to allure-report/data/test-cases/a3216b951d3fac8b.json index 9a74bf00f7a..2e104875721 100644 --- a/allure-report/data/test-cases/9a93b35004a87c6a.json +++ b/allure-report/data/test-cases/a3216b951d3fac8b.json @@ -1 +1 @@ -{"uid":"9a93b35004a87c6a","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":"9a93b35004a87c6a.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3216b951d3fac8b","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":"a3216b951d3fac8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3370192ce6dd676.json b/allure-report/data/test-cases/a3370192ce6dd676.json new file mode 100644 index 00000000000..158bb275ec2 --- /dev/null +++ b/allure-report/data/test-cases/a3370192ce6dd676.json @@ -0,0 +1 @@ +{"uid":"a3370192ce6dd676","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b67b48d7bd01382a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"62507dec220dfd02","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"337891d8027fbc46","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"a3370192ce6dd676.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3395496d8bde803.json b/allure-report/data/test-cases/a3395496d8bde803.json new file mode 100644 index 00000000000..ac5f6af9837 --- /dev/null +++ b/allure-report/data/test-cases/a3395496d8bde803.json @@ -0,0 +1 @@ +{"uid":"a3395496d8bde803","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194005,"stop":1732428194005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194006,"stop":1732428194006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194007,"stop":1732428194007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194009,"stop":1732428194009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f63a88604b1d062f","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"89c602359c6f109b","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f80099cf6c294d2b","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"a3395496d8bde803.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a349732eb44f62b9.json b/allure-report/data/test-cases/a349732eb44f62b9.json new file mode 100644 index 00000000000..5ae1056b924 --- /dev/null +++ b/allure-report/data/test-cases/a349732eb44f62b9.json @@ -0,0 +1 @@ +{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732428195982,"stop":1732428195982,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195983,"stop":1732428195983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"307a8cec4e791e32","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"59120ba12cafb7e8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d1aabae67bc18ba0","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"a349732eb44f62b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ede582dcc2b34bf3.json b/allure-report/data/test-cases/a3b2f77071e9a780.json similarity index 59% rename from allure-report/data/test-cases/ede582dcc2b34bf3.json rename to allure-report/data/test-cases/a3b2f77071e9a780.json index dbdebd2c3d9..9e0b98fbf71 100644 --- a/allure-report/data/test-cases/ede582dcc2b34bf3.json +++ b/allure-report/data/test-cases/a3b2f77071e9a780.json @@ -1 +1 @@ -{"uid":"ede582dcc2b34bf3","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41eff5539d108708","name":"stdout","source":"41eff5539d108708.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5f1282b0eb8a484","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"ede582dcc2b34bf3.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3b2f77071e9a780","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d83a50edd6b56e2a","name":"stdout","source":"d83a50edd6b56e2a.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"a3b2f77071e9a780.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a405e7d50def0411.json b/allure-report/data/test-cases/a405e7d50def0411.json new file mode 100644 index 00000000000..4a8bcf31772 --- /dev/null +++ b/allure-report/data/test-cases/a405e7d50def0411.json @@ -0,0 +1 @@ +{"uid":"a405e7d50def0411","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f619b88d74382886","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f52e2a19a3ffe707","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"715edf62d220bc66","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a405e7d50def0411.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4849e99633e4676.json b/allure-report/data/test-cases/a4849e99633e4676.json new file mode 100644 index 00000000000..447309d2c27 --- /dev/null +++ b/allure-report/data/test-cases/a4849e99633e4676.json @@ -0,0 +1 @@ +{"uid":"a4849e99633e4676","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1732428196232,"stop":1732428196232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a0d455d6bf21528b","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"c6f52d0b9e8ac3c5","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"a4849e99633e4676.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4b7cb6ba7726224.json b/allure-report/data/test-cases/a4b7cb6ba7726224.json deleted file mode 100644 index 4249097126e..00000000000 --- a/allure-report/data/test-cases/a4b7cb6ba7726224.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a4b7cb6ba7726224","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b4c7e69e73ca20","name":"stdout","source":"3b4c7e69e73ca20.txt","type":"text/plain","size":254}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a4b7cb6ba7726224.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4f7c6dc4c7e84.json b/allure-report/data/test-cases/a4f7c6dc4c7e84.json deleted file mode 100644 index a1e3ca8f032..00000000000 --- a/allure-report/data/test-cases/a4f7c6dc4c7e84.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a4f7c6dc4c7e84","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5b9b2f5d2166132","name":"stdout","source":"a5b9b2f5d2166132.txt","type":"text/plain","size":424}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a4f7c6dc4c7e84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8f884e4fa29bb7d4.json b/allure-report/data/test-cases/a530698ca5ed066c.json similarity index 72% rename from allure-report/data/test-cases/8f884e4fa29bb7d4.json rename to allure-report/data/test-cases/a530698ca5ed066c.json index e2055bfbced..9987e8c4d4e 100644 --- a/allure-report/data/test-cases/8f884e4fa29bb7d4.json +++ b/allure-report/data/test-cases/a530698ca5ed066c.json @@ -1 +1 @@ -{"uid":"8f884e4fa29bb7d4","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1c7070c159aacf2e","name":"stdout","source":"1c7070c159aacf2e.txt","type":"text/plain","size":326}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"8f884e4fa29bb7d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"a530698ca5ed066c","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1905a023fe62d7a5","name":"stdout","source":"1905a023fe62d7a5.txt","type":"text/plain","size":326}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"a530698ca5ed066c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a57a3497f4402b67.json b/allure-report/data/test-cases/a57a3497f4402b67.json new file mode 100644 index 00000000000..f9bb8fa212d --- /dev/null +++ b/allure-report/data/test-cases/a57a3497f4402b67.json @@ -0,0 +1 @@ +{"uid":"a57a3497f4402b67","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732428194185,"stop":1732428194185,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"deff2de3f9ed88f5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"e47ebce66bbb53cd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"a57a3497f4402b67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7008d20e58a9d6a.json b/allure-report/data/test-cases/a7008d20e58a9d6a.json new file mode 100644 index 00000000000..53cc0931e6f --- /dev/null +++ b/allure-report/data/test-cases/a7008d20e58a9d6a.json @@ -0,0 +1 @@ +{"uid":"a7008d20e58a9d6a","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ccdd1b5f063278d8","name":"stdout","source":"ccdd1b5f063278d8.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a7008d20e58a9d6a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a76c277b6c0b5940.json b/allure-report/data/test-cases/a76c277b6c0b5940.json new file mode 100644 index 00000000000..7e9dffea919 --- /dev/null +++ b/allure-report/data/test-cases/a76c277b6c0b5940.json @@ -0,0 +1 @@ +{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on negative grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"3c0afff932465669","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"30b1174850b5a822","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":1,"unknown":0,"total":3},"items":[{"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":"a76c277b6c0b5940.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a770e6ac7d91604a.json b/allure-report/data/test-cases/a770e6ac7d91604a.json new file mode 100644 index 00000000000..70212a30c1c --- /dev/null +++ b/allure-report/data/test-cases/a770e6ac7d91604a.json @@ -0,0 +1 @@ +{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732428195810,"stop":1732428195810,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e71fa3f33c33eb50","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"bd8413842923f1e","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6a1d96979e635e7f","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"a770e6ac7d91604a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a77a517a493b3eb2.json b/allure-report/data/test-cases/a77a517a493b3eb2.json new file mode 100644 index 00000000000..03b68b1238a --- /dev/null +++ b/allure-report/data/test-cases/a77a517a493b3eb2.json @@ -0,0 +1 @@ +{"uid":"a77a517a493b3eb2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"32703c37c2f9cfbd","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"82a8f1ffa445d40","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52187b3daff300ae","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a77a517a493b3eb2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab70ba446dcfc9e3.json b/allure-report/data/test-cases/a7a27da7101eb431.json similarity index 70% rename from allure-report/data/test-cases/ab70ba446dcfc9e3.json rename to allure-report/data/test-cases/a7a27da7101eb431.json index bf74055b360..9770fe716cc 100644 --- a/allure-report/data/test-cases/ab70ba446dcfc9e3.json +++ b/allure-report/data/test-cases/a7a27da7101eb431.json @@ -1 +1 @@ -{"uid":"ab70ba446dcfc9e3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d0ae6f01edd6f40b","name":"stdout","source":"d0ae6f01edd6f40b.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"ab70ba446dcfc9e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"a7a27da7101eb431","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"75eae5551f423f5f","name":"stdout","source":"75eae5551f423f5f.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"a7a27da7101eb431.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/922eccc2ca8ed714.json b/allure-report/data/test-cases/a7d4500da5fb8933.json similarity index 67% rename from allure-report/data/test-cases/922eccc2ca8ed714.json rename to allure-report/data/test-cases/a7d4500da5fb8933.json index 4fa062b5880..49ea2d2d281 100644 --- a/allure-report/data/test-cases/922eccc2ca8ed714.json +++ b/allure-report/data/test-cases/a7d4500da5fb8933.json @@ -1 +1 @@ -{"uid":"922eccc2ca8ed714","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eba58defe547aa99","name":"stdout","source":"eba58defe547aa99.txt","type":"text/plain","size":565}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"922eccc2ca8ed714.json","parameterValues":[]} \ No newline at end of file +{"uid":"a7d4500da5fb8933","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e0673a9df06bdbef","name":"stdout","source":"e0673a9df06bdbef.txt","type":"text/plain","size":565}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"a7d4500da5fb8933.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bc5cb7d257f882a1.json b/allure-report/data/test-cases/a8b77a6618ff7e4c.json similarity index 94% rename from allure-report/data/test-cases/bc5cb7d257f882a1.json rename to allure-report/data/test-cases/a8b77a6618ff7e4c.json index 26d8ba99672..a895f3dad63 100644 --- a/allure-report/data/test-cases/bc5cb7d257f882a1.json +++ b/allure-report/data/test-cases/a8b77a6618ff7e4c.json @@ -1 +1 @@ -{"uid":"bc5cb7d257f882a1","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"bc5cb7d257f882a1.json","parameterValues":[]} \ No newline at end of file +{"uid":"a8b77a6618ff7e4c","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"a8b77a6618ff7e4c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8ef326c3cb7b77c.json b/allure-report/data/test-cases/a8ef326c3cb7b77c.json new file mode 100644 index 00000000000..c560816e9f1 --- /dev/null +++ b/allure-report/data/test-cases/a8ef326c3cb7b77c.json @@ -0,0 +1 @@ +{"uid":"a8ef326c3cb7b77c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bee515a36bc2165b","name":"stdout","source":"bee515a36bc2165b.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a8ef326c3cb7b77c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa08a95162404297.json b/allure-report/data/test-cases/aa08a95162404297.json new file mode 100644 index 00000000000..dc668450d51 --- /dev/null +++ b/allure-report/data/test-cases/aa08a95162404297.json @@ -0,0 +1 @@ +{"uid":"aa08a95162404297","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":1732428194048,"stop":1732428194108,"duration":60},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1732428194117,"stop":1732428194117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e5150fbd4a33237","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"49fb68289fb078f8","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"aa08a95162404297.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa3ebaa27581f198.json b/allure-report/data/test-cases/aa3ebaa27581f198.json new file mode 100644 index 00000000000..1986ca57797 --- /dev/null +++ b/allure-report/data/test-cases/aa3ebaa27581f198.json @@ -0,0 +1 @@ +{"uid":"aa3ebaa27581f198","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732428196320,"stop":1732428196320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732428196323,"stop":1732428196323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"MakeUpperCase"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ebad30d100ba0d2f","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"5c78d3bc5a71109a","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ae7d3fce45bf33fb","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"aa3ebaa27581f198.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b9aa5357d8d514d.json b/allure-report/data/test-cases/ab40fd2a8eefa024.json similarity index 67% rename from allure-report/data/test-cases/5b9aa5357d8d514d.json rename to allure-report/data/test-cases/ab40fd2a8eefa024.json index ca58cada09a..243803973ff 100644 --- a/allure-report/data/test-cases/5b9aa5357d8d514d.json +++ b/allure-report/data/test-cases/ab40fd2a8eefa024.json @@ -1 +1 @@ -{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"faca10a249542315","name":"stdout","source":"faca10a249542315.txt","type":"text/plain","size":314}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ec6e703f7fb1f8f7","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"5b9aa5357d8d514d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab40fd2a8eefa024","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c703e2fc1b8c856f","name":"stdout","source":"c703e2fc1b8c856f.txt","type":"text/plain","size":314}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ab40fd2a8eefa024.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac136a3215f7ad6c.json b/allure-report/data/test-cases/ac136a3215f7ad6c.json new file mode 100644 index 00000000000..756b1a2d53e --- /dev/null +++ b/allure-report/data/test-cases/ac136a3215f7ad6c.json @@ -0,0 +1 @@ +{"uid":"ac136a3215f7ad6c","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":"

Codewars badge:

Test Description:

Testing Battle method

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1732428194134,"stop":1732428194134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddd928ac3a4fb635","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"f1d39787f3312e8b","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"ac136a3215f7ad6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac379271ec16d5ad.json b/allure-report/data/test-cases/ac379271ec16d5ad.json new file mode 100644 index 00000000000..f74b3c602e0 --- /dev/null +++ b/allure-report/data/test-cases/ac379271ec16d5ad.json @@ -0,0 +1 @@ +{"uid":"ac379271ec16d5ad","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732428195684,"stop":1732428195684,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sums of Parts"},{"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":"tag","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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"ac379271ec16d5ad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6fce95111dc1cc14.json b/allure-report/data/test-cases/ac81c5ec86387239.json similarity index 63% rename from allure-report/data/test-cases/6fce95111dc1cc14.json rename to allure-report/data/test-cases/ac81c5ec86387239.json index 4bc14200966..71b865d3667 100644 --- a/allure-report/data/test-cases/6fce95111dc1cc14.json +++ b/allure-report/data/test-cases/ac81c5ec86387239.json @@ -1 +1 @@ -{"uid":"6fce95111dc1cc14","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8b4598a501c7d27","name":"stdout","source":"f8b4598a501c7d27.txt","type":"text/plain","size":502}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"6fce95111dc1cc14.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac81c5ec86387239","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7d49bbac8d757852","name":"stdout","source":"7d49bbac8d757852.txt","type":"text/plain","size":502}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"ac81c5ec86387239.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac8683bc2703e398.json b/allure-report/data/test-cases/ac8683bc2703e398.json new file mode 100644 index 00000000000..f67aeba0744 --- /dev/null +++ b/allure-report/data/test-cases/ac8683bc2703e398.json @@ -0,0 +1 @@ +{"uid":"ac8683bc2703e398","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5998f9acb6d6dab8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2ce701a458e1cd31","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2acb560e089cb7c8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"ac8683bc2703e398.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acdec238a53c10e1.json b/allure-report/data/test-cases/acdec238a53c10e1.json new file mode 100644 index 00000000000..5130c82fc16 --- /dev/null +++ b/allure-report/data/test-cases/acdec238a53c10e1.json @@ -0,0 +1 @@ +{"uid":"acdec238a53c10e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732428195552,"stop":1732428195552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732428195556,"stop":1732428195556,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1da47ab927a8de42","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"99b8e6f5f8a43508","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"42383b817b641e4e","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"acdec238a53c10e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acf49fc01f491be4.json b/allure-report/data/test-cases/acf49fc01f491be4.json new file mode 100644 index 00000000000..5551ddd64b9 --- /dev/null +++ b/allure-report/data/test-cases/acf49fc01f491be4.json @@ -0,0 +1 @@ +{"uid":"acf49fc01f491be4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c258bec5b6c8eafe","name":"stdout","source":"c258bec5b6c8eafe.txt","type":"text/plain","size":611}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"acf49fc01f491be4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b8dc3acaf7dd027.json b/allure-report/data/test-cases/acfebfd078f8e03c.json similarity index 72% rename from allure-report/data/test-cases/1b8dc3acaf7dd027.json rename to allure-report/data/test-cases/acfebfd078f8e03c.json index 7518cc12392..68835673fcc 100644 --- a/allure-report/data/test-cases/1b8dc3acaf7dd027.json +++ b/allure-report/data/test-cases/acfebfd078f8e03c.json @@ -1 +1 @@ -{"uid":"1b8dc3acaf7dd027","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3d08be5d3c35bf84","name":"stdout","source":"3d08be5d3c35bf84.txt","type":"text/plain","size":99}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b8dc3acaf7dd027.json","parameterValues":[]} \ No newline at end of file +{"uid":"acfebfd078f8e03c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1d5dc16fdfe05c84","name":"stdout","source":"1d5dc16fdfe05c84.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"acfebfd078f8e03c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d57f06aa2f911f40.json b/allure-report/data/test-cases/ad8dd1da3b7d646d.json similarity index 59% rename from allure-report/data/test-cases/d57f06aa2f911f40.json rename to allure-report/data/test-cases/ad8dd1da3b7d646d.json index ea683d8e625..a347d120324 100644 --- a/allure-report/data/test-cases/d57f06aa2f911f40.json +++ b/allure-report/data/test-cases/ad8dd1da3b7d646d.json @@ -1 +1 @@ -{"uid":"d57f06aa2f911f40","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"825e5ff6c26dfc23","name":"stdout","source":"825e5ff6c26dfc23.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7637c123d5cf58af","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":[]},"source":"d57f06aa2f911f40.json","parameterValues":[]} \ No newline at end of file +{"uid":"ad8dd1da3b7d646d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ab72755d6763015","name":"stdout","source":"5ab72755d6763015.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ad8dd1da3b7d646d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/371888dd705cab28.json b/allure-report/data/test-cases/aeac31a6eff8ced3.json similarity index 57% rename from allure-report/data/test-cases/371888dd705cab28.json rename to allure-report/data/test-cases/aeac31a6eff8ced3.json index ebb0ec167c8..cb58caa0c07 100644 --- a/allure-report/data/test-cases/371888dd705cab28.json +++ b/allure-report/data/test-cases/aeac31a6eff8ced3.json @@ -1 +1 @@ -{"uid":"371888dd705cab28","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b2bb00f201470b4","name":"stdout","source":"6b2bb00f201470b4.txt","type":"text/plain","size":896}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95e612b16602c749","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"371888dd705cab28.json","parameterValues":[]} \ No newline at end of file +{"uid":"aeac31a6eff8ced3","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a45c99b47ae5bc6","name":"stdout","source":"8a45c99b47ae5bc6.txt","type":"text/plain","size":896}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"aeac31a6eff8ced3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59863a86bad45fb3.json b/allure-report/data/test-cases/af31da4a2f7e0b3c.json similarity index 68% rename from allure-report/data/test-cases/59863a86bad45fb3.json rename to allure-report/data/test-cases/af31da4a2f7e0b3c.json index 1a58c2da747..ae9d4ef10cb 100644 --- a/allure-report/data/test-cases/59863a86bad45fb3.json +++ b/allure-report/data/test-cases/af31da4a2f7e0b3c.json @@ -1 +1 @@ -{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"678b686f33957e9f","name":"stdout","source":"678b686f33957e9f.txt","type":"text/plain","size":3892}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d62d5681db1186b9","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"59863a86bad45fb3.json","parameterValues":[]} \ No newline at end of file +{"uid":"af31da4a2f7e0b3c","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ed14694d3d785456","name":"stdout","source":"ed14694d3d785456.txt","type":"text/plain","size":3892}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"af31da4a2f7e0b3c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91ed862dacbec840.json b/allure-report/data/test-cases/af4da168bd187f62.json similarity index 93% rename from allure-report/data/test-cases/91ed862dacbec840.json rename to allure-report/data/test-cases/af4da168bd187f62.json index 2793943af71..a3da970639a 100644 --- a/allure-report/data/test-cases/91ed862dacbec840.json +++ b/allure-report/data/test-cases/af4da168bd187f62.json @@ -1 +1 @@ -{"uid":"91ed862dacbec840","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":"91ed862dacbec840.json","parameterValues":[]} \ No newline at end of file +{"uid":"af4da168bd187f62","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":"af4da168bd187f62.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af82a0c3b0cef265.json b/allure-report/data/test-cases/af82a0c3b0cef265.json new file mode 100644 index 00000000000..98a27ef3993 --- /dev/null +++ b/allure-report/data/test-cases/af82a0c3b0cef265.json @@ -0,0 +1 @@ +{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195529,"stop":1732428195529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (200) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (-1) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (1291) and verify the output","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195531,"stop":1732428195531,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6fbd93f1e3abe9a5","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"1cf942af51db20a3","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"84f17449b7b13451","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"af82a0c3b0cef265.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2077f18aded36c8a.json b/allure-report/data/test-cases/b01c60cc4e07480b.json similarity index 72% rename from allure-report/data/test-cases/2077f18aded36c8a.json rename to allure-report/data/test-cases/b01c60cc4e07480b.json index 3623bd44c77..f0ecdee494b 100644 --- a/allure-report/data/test-cases/2077f18aded36c8a.json +++ b/allure-report/data/test-cases/b01c60cc4e07480b.json @@ -1 +1 @@ -{"uid":"2077f18aded36c8a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"2077f18aded36c8a.json","parameterValues":[]} \ No newline at end of file +{"uid":"b01c60cc4e07480b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"b01c60cc4e07480b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b03752c3145720e6.json b/allure-report/data/test-cases/b03752c3145720e6.json new file mode 100644 index 00000000000..6fc246a6978 --- /dev/null +++ b/allure-report/data/test-cases/b03752c3145720e6.json @@ -0,0 +1 @@ +{"uid":"b03752c3145720e6","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":1732428195961,"stop":1732428195961,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f809105a155a665a","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"63e9aeb63ef06083","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2d35bd18d5e6ee6b","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":["GAMES","PUZZLES"]},"source":"b03752c3145720e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a51a382d521d00cc.json b/allure-report/data/test-cases/b080152571ac4adf.json similarity index 75% rename from allure-report/data/test-cases/a51a382d521d00cc.json rename to allure-report/data/test-cases/b080152571ac4adf.json index 895606037f2..d45d46ff9eb 100644 --- a/allure-report/data/test-cases/a51a382d521d00cc.json +++ b/allure-report/data/test-cases/b080152571ac4adf.json @@ -1 +1 @@ -{"uid":"a51a382d521d00cc","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb14be3959747375","name":"stdout","source":"fb14be3959747375.txt","type":"text/plain","size":562}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a51a382d521d00cc.json","parameterValues":[]} \ No newline at end of file +{"uid":"b080152571ac4adf","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d85ac6726b459082","name":"stdout","source":"d85ac6726b459082.txt","type":"text/plain","size":562}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"b080152571ac4adf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b29b4bc1c1fe7917.json b/allure-report/data/test-cases/b169e974f5edace2.json similarity index 66% rename from allure-report/data/test-cases/b29b4bc1c1fe7917.json rename to allure-report/data/test-cases/b169e974f5edace2.json index 6056bfc17c4..deb7f693c5f 100644 --- a/allure-report/data/test-cases/b29b4bc1c1fe7917.json +++ b/allure-report/data/test-cases/b169e974f5edace2.json @@ -1 +1 @@ -{"uid":"b29b4bc1c1fe7917","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a878131575ef850","name":"stdout","source":"6a878131575ef850.txt","type":"text/plain","size":356}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8271021679b0cc06","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b29b4bc1c1fe7917.json","parameterValues":[]} \ No newline at end of file +{"uid":"b169e974f5edace2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67be9974a45dfae3","name":"stdout","source":"67be9974a45dfae3.txt","type":"text/plain","size":356}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b169e974f5edace2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1cbd478c753b1e.json b/allure-report/data/test-cases/b1cbd478c753b1e.json new file mode 100644 index 00000000000..abcfc9ee83d --- /dev/null +++ b/allure-report/data/test-cases/b1cbd478c753b1e.json @@ -0,0 +1 @@ +{"uid":"b1cbd478c753b1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6a59d6609523c5a8","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"3cd6da35a1920265","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"bfe92f9ff640a644","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"b1cbd478c753b1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1f2cc8e1be032d.json b/allure-report/data/test-cases/b1f2cc8e1be032d.json new file mode 100644 index 00000000000..fbbb3eccf48 --- /dev/null +++ b/allure-report/data/test-cases/b1f2cc8e1be032d.json @@ -0,0 +1 @@ +{"uid":"b1f2cc8e1be032d","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e11dfdc5beea1549","name":"stdout","source":"e11dfdc5beea1549.txt","type":"text/plain","size":524}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"b1f2cc8e1be032d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2705032891531e8.json b/allure-report/data/test-cases/b2705032891531e8.json new file mode 100644 index 00000000000..6ab9972060d --- /dev/null +++ b/allure-report/data/test-cases/b2705032891531e8.json @@ -0,0 +1 @@ +{"uid":"b2705032891531e8","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732428196453,"stop":1732428196453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1732428196456,"stop":1732428196456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f040925d9e513197","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"6f0b2af516b0f755","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"b2705032891531e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2ea4d6d64dc027a.json b/allure-report/data/test-cases/b2ea4d6d64dc027a.json new file mode 100644 index 00000000000..840c7cc7e54 --- /dev/null +++ b/allure-report/data/test-cases/b2ea4d6d64dc027a.json @@ -0,0 +1 @@ +{"uid":"b2ea4d6d64dc027a","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":1732428195466,"stop":1732428195466,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732428195465,"stop":1732428195465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732428195467,"stop":1732428195467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"883f1439af050615","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"a258a6f00a3ffda1","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6ab6caccad49b468","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"b2ea4d6d64dc027a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3223ce64ed8bee2.json b/allure-report/data/test-cases/b3223ce64ed8bee2.json deleted file mode 100644 index 8c60bcb75b1..00000000000 --- a/allure-report/data/test-cases/b3223ce64ed8bee2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b3223ce64ed8bee2","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"841a9d92019cea7","name":"stdout","source":"841a9d92019cea7.txt","type":"text/plain","size":60}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b3223ce64ed8bee2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9519f48ec729ba4c.json b/allure-report/data/test-cases/b325ede7f1ceeec3.json similarity index 58% rename from allure-report/data/test-cases/9519f48ec729ba4c.json rename to allure-report/data/test-cases/b325ede7f1ceeec3.json index 18f38a5014a..b27c939e6c3 100644 --- a/allure-report/data/test-cases/9519f48ec729ba4c.json +++ b/allure-report/data/test-cases/b325ede7f1ceeec3.json @@ -1 +1 @@ -{"uid":"9519f48ec729ba4c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a1cb38196225980f","name":"stdout","source":"a1cb38196225980f.txt","type":"text/plain","size":487}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5320007ca0191a21","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":[]},"source":"9519f48ec729ba4c.json","parameterValues":[]} \ No newline at end of file +{"uid":"b325ede7f1ceeec3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d1cecae81ecbadad","name":"stdout","source":"d1cecae81ecbadad.txt","type":"text/plain","size":487}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b325ede7f1ceeec3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b36380d1077ce20b.json b/allure-report/data/test-cases/b36380d1077ce20b.json new file mode 100644 index 00000000000..8edb958730e --- /dev/null +++ b/allure-report/data/test-cases/b36380d1077ce20b.json @@ -0,0 +1 @@ +{"uid":"b36380d1077ce20b","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":1732428195921,"stop":1732428195921,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4e32d03efab2941f","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"bdddf7ddac3322c3","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1f991ba5bad9e7e9","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b36380d1077ce20b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d0514d90adb5feb.json b/allure-report/data/test-cases/b3c5df850665402e.json similarity index 67% rename from allure-report/data/test-cases/4d0514d90adb5feb.json rename to allure-report/data/test-cases/b3c5df850665402e.json index b97bd7b6c81..95f84332dc3 100644 --- a/allure-report/data/test-cases/4d0514d90adb5feb.json +++ b/allure-report/data/test-cases/b3c5df850665402e.json @@ -1 +1 @@ -{"uid":"4d0514d90adb5feb","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6bbd8e6923c5cdcc","name":"stdout","source":"6bbd8e6923c5cdcc.txt","type":"text/plain","size":130}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4d0514d90adb5feb.json","parameterValues":[]} \ No newline at end of file +{"uid":"b3c5df850665402e","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6aaa7a7ffc396f31","name":"stdout","source":"6aaa7a7ffc396f31.txt","type":"text/plain","size":130}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b3c5df850665402e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3db9caa12a5149e.json b/allure-report/data/test-cases/b3db9caa12a5149e.json new file mode 100644 index 00000000000..e42a115ddb7 --- /dev/null +++ b/allure-report/data/test-cases/b3db9caa12a5149e.json @@ -0,0 +1 @@ +{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732428196258,"stop":1732428196258,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732428196257,"stop":1732428196257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732428196259,"stop":1732428196259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f449c3e5994db83f","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"6421e8610575915","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"76f8c586f8a804f0","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"b3db9caa12a5149e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4706ff9d2a2958c.json b/allure-report/data/test-cases/b4706ff9d2a2958c.json new file mode 100644 index 00000000000..68d5e72e90a --- /dev/null +++ b/allure-report/data/test-cases/b4706ff9d2a2958c.json @@ -0,0 +1 @@ +{"uid":"b4706ff9d2a2958c","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ef03709815f1ee7","name":"stdout","source":"8ef03709815f1ee7.txt","type":"text/plain","size":37}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b4706ff9d2a2958c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b48a50dffbb61197.json b/allure-report/data/test-cases/b48a50dffbb61197.json deleted file mode 100644 index a5cb35ee775..00000000000 --- a/allure-report/data/test-cases/b48a50dffbb61197.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b48a50dffbb61197","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f8b0aa6406d8405","name":"stdout","source":"8f8b0aa6406d8405.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b48a50dffbb61197.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/895ce9b19a080b91.json b/allure-report/data/test-cases/b4abfaf3d77f3f23.json similarity index 77% rename from allure-report/data/test-cases/895ce9b19a080b91.json rename to allure-report/data/test-cases/b4abfaf3d77f3f23.json index 958c76b0e81..1401be85d1b 100644 --- a/allure-report/data/test-cases/895ce9b19a080b91.json +++ b/allure-report/data/test-cases/b4abfaf3d77f3f23.json @@ -1 +1 @@ -{"uid":"895ce9b19a080b91","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3d05ca7bd9d20192","name":"stdout","source":"3d05ca7bd9d20192.txt","type":"text/plain","size":931}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"895ce9b19a080b91.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4abfaf3d77f3f23","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a881d3345681241e","name":"stdout","source":"a881d3345681241e.txt","type":"text/plain","size":931}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"b4abfaf3d77f3f23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5a113fbe50e74ce.json b/allure-report/data/test-cases/b5a113fbe50e74ce.json new file mode 100644 index 00000000000..030444d5fbf --- /dev/null +++ b/allure-report/data/test-cases/b5a113fbe50e74ce.json @@ -0,0 +1 @@ +{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"description":"\n Testing using empty test data\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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7131237025069abe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"37f24af32c057862","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b5a113fbe50e74ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6301a55868859d.json b/allure-report/data/test-cases/b6301a55868859d.json deleted file mode 100644 index 77388e947cd..00000000000 --- a/allure-report/data/test-cases/b6301a55868859d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b6301a55868859d","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"719718f24c29d8b6","name":"stdout","source":"719718f24c29d8b6.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bd5d964c0a6197cf","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"b6301a55868859d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b673d7ca3af16ae5.json b/allure-report/data/test-cases/b673d7ca3af16ae5.json new file mode 100644 index 00000000000..512073ccfb8 --- /dev/null +++ b/allure-report/data/test-cases/b673d7ca3af16ae5.json @@ -0,0 +1 @@ +{"uid":"b673d7ca3af16ae5","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":1732428196017,"stop":1732428196017,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59e6c1fe5b50c363","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"9451201a4cae53ad","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9393151991be7f33","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"b673d7ca3af16ae5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b67813f1cae4659e.json b/allure-report/data/test-cases/b67813f1cae4659e.json new file mode 100644 index 00000000000..3160ff15517 --- /dev/null +++ b/allure-report/data/test-cases/b67813f1cae4659e.json @@ -0,0 +1 @@ +{"uid":"b67813f1cae4659e","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c74e320818fb9682","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"5f2df3f2c9b86d77","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"cde5d1b46b10d7ac","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b67813f1cae4659e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/337891d8027fbc46.json b/allure-report/data/test-cases/b67b48d7bd01382a.json similarity index 58% rename from allure-report/data/test-cases/337891d8027fbc46.json rename to allure-report/data/test-cases/b67b48d7bd01382a.json index cab89a7138e..d917a2be1f2 100644 --- a/allure-report/data/test-cases/337891d8027fbc46.json +++ b/allure-report/data/test-cases/b67b48d7bd01382a.json @@ -1 +1 @@ -{"uid":"337891d8027fbc46","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15c99b80ae7e843e","name":"stdout","source":"15c99b80ae7e843e.txt","type":"text/plain","size":76}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab4f4753656b93ab","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"337891d8027fbc46.json","parameterValues":[]} \ No newline at end of file +{"uid":"b67b48d7bd01382a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9ef0f4c8246dad00","name":"stdout","source":"9ef0f4c8246dad00.txt","type":"text/plain","size":76}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b67b48d7bd01382a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6d0f7b70ff35380.json b/allure-report/data/test-cases/b6d0f7b70ff35380.json new file mode 100644 index 00000000000..2a1da48897b --- /dev/null +++ b/allure-report/data/test-cases/b6d0f7b70ff35380.json @@ -0,0 +1 @@ +{"uid":"b6d0f7b70ff35380","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732428195535,"stop":1732428195535,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c6eafeb1b2d72c83","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"910c497042fbb9d7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b6d0f7b70ff35380.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7243d74fc99fb8b.json b/allure-report/data/test-cases/b7243d74fc99fb8b.json new file mode 100644 index 00000000000..1b0556e258c --- /dev/null +++ b/allure-report/data/test-cases/b7243d74fc99fb8b.json @@ -0,0 +1 @@ +{"uid":"b7243d74fc99fb8b","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732428193918,"stop":1732428193918,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ef1a5cba4efb343a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"a1b53b199c1c867e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b7243d74fc99fb8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59ab6d9b07f441c0.json b/allure-report/data/test-cases/b7812824440b717e.json similarity index 67% rename from allure-report/data/test-cases/59ab6d9b07f441c0.json rename to allure-report/data/test-cases/b7812824440b717e.json index e3208d46d6c..b7860921b81 100644 --- a/allure-report/data/test-cases/59ab6d9b07f441c0.json +++ b/allure-report/data/test-cases/b7812824440b717e.json @@ -1 +1 @@ -{"uid":"59ab6d9b07f441c0","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59ab6d9b07f441c0.json","parameterValues":[]} \ No newline at end of file +{"uid":"b7812824440b717e","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b7812824440b717e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1e0648976f6a694.json b/allure-report/data/test-cases/b890a6fea083097f.json similarity index 58% rename from allure-report/data/test-cases/c1e0648976f6a694.json rename to allure-report/data/test-cases/b890a6fea083097f.json index 17dc2e6842d..089f817fd84 100644 --- a/allure-report/data/test-cases/c1e0648976f6a694.json +++ b/allure-report/data/test-cases/b890a6fea083097f.json @@ -1 +1 @@ -{"uid":"c1e0648976f6a694","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e11ad2661eb07ca9","name":"stdout","source":"e11ad2661eb07ca9.txt","type":"text/plain","size":1093}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d757011cc42c205e","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b3f7088fed8dedd7","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"c1e0648976f6a694.json","parameterValues":[]} \ No newline at end of file +{"uid":"b890a6fea083097f","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7750817bf2ce3d3","name":"stdout","source":"e7750817bf2ce3d3.txt","type":"text/plain","size":1093}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b890a6fea083097f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b897401968bf0d8.json b/allure-report/data/test-cases/b897401968bf0d8.json new file mode 100644 index 00000000000..8513cf733b6 --- /dev/null +++ b/allure-report/data/test-cases/b897401968bf0d8.json @@ -0,0 +1 @@ +{"uid":"b897401968bf0d8","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90a10a824ed5b372","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"8f3fc2a4deaebd0d","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7a1019ba1beb3118","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"b897401968bf0d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8a68af9dbc0f892.json b/allure-report/data/test-cases/b8a68af9dbc0f892.json deleted file mode 100644 index b205c1e5095..00000000000 --- a/allure-report/data/test-cases/b8a68af9dbc0f892.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b8a68af9dbc0f892","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8433939b2e0016e1","name":"stdout","source":"8433939b2e0016e1.txt","type":"text/plain","size":637}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b8a68af9dbc0f892.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11b4e7794c00f220.json b/allure-report/data/test-cases/b921129ad79b857f.json similarity index 71% rename from allure-report/data/test-cases/11b4e7794c00f220.json rename to allure-report/data/test-cases/b921129ad79b857f.json index 42a47eb2c94..cb43567d97f 100644 --- a/allure-report/data/test-cases/11b4e7794c00f220.json +++ b/allure-report/data/test-cases/b921129ad79b857f.json @@ -1 +1 @@ -{"uid":"11b4e7794c00f220","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c931c8cfab53b972","name":"stdout","source":"c931c8cfab53b972.txt","type":"text/plain","size":243}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"11b4e7794c00f220.json","parameterValues":[]} \ No newline at end of file +{"uid":"b921129ad79b857f","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f329250c4d2cb198","name":"stdout","source":"f329250c4d2cb198.txt","type":"text/plain","size":243}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"b921129ad79b857f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7511d5ab976a748a.json b/allure-report/data/test-cases/b982073aac2c9d08.json similarity index 61% rename from allure-report/data/test-cases/7511d5ab976a748a.json rename to allure-report/data/test-cases/b982073aac2c9d08.json index 6d560aa76dc..770c5535b1f 100644 --- a/allure-report/data/test-cases/7511d5ab976a748a.json +++ b/allure-report/data/test-cases/b982073aac2c9d08.json @@ -1 +1 @@ -{"uid":"7511d5ab976a748a","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea676dbf2861ab6b","name":"stdout","source":"ea676dbf2861ab6b.txt","type":"text/plain","size":531}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"7511d5ab976a748a.json","parameterValues":[]} \ No newline at end of file +{"uid":"b982073aac2c9d08","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a613cf938d78c4d4","name":"stdout","source":"a613cf938d78c4d4.txt","type":"text/plain","size":531}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"b982073aac2c9d08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f90afc62f8400f4.json b/allure-report/data/test-cases/b9ab4feb44c59984.json similarity index 51% rename from allure-report/data/test-cases/7f90afc62f8400f4.json rename to allure-report/data/test-cases/b9ab4feb44c59984.json index 8a91257c51b..5350754217f 100644 --- a/allure-report/data/test-cases/7f90afc62f8400f4.json +++ b/allure-report/data/test-cases/b9ab4feb44c59984.json @@ -1 +1 @@ -{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c6d99744fc651725","name":"stdout","source":"c6d99744fc651725.txt","type":"text/plain","size":2817}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":30,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a97caba53074497b","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a921030da8c9a520","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}}]},"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"7f90afc62f8400f4.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9ab4feb44c59984","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1bfd50f00e4c2ad5","name":"stdout","source":"1bfd50f00e4c2ad5.txt","type":"text/plain","size":2817}],"parameters":[],"hasContent":true,"stepsCount":30,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"b9ab4feb44c59984.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9b6a14fc4bd1dd7.json b/allure-report/data/test-cases/b9b6a14fc4bd1dd7.json new file mode 100644 index 00000000000..251074db408 --- /dev/null +++ b/allure-report/data/test-cases/b9b6a14fc4bd1dd7.json @@ -0,0 +1 @@ +{"uid":"b9b6a14fc4bd1dd7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"937c9b1e748aadb0","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"580b983b7062983c","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"56a28cc490d83b65","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"b9b6a14fc4bd1dd7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/130e4ffebf4e47af.json b/allure-report/data/test-cases/ba7aa507beaa1547.json similarity index 55% rename from allure-report/data/test-cases/130e4ffebf4e47af.json rename to allure-report/data/test-cases/ba7aa507beaa1547.json index 4be0f7c1ab1..20dc47ff7b6 100644 --- a/allure-report/data/test-cases/130e4ffebf4e47af.json +++ b/allure-report/data/test-cases/ba7aa507beaa1547.json @@ -1 +1 @@ -{"uid":"130e4ffebf4e47af","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba17606ecf187aae","name":"stdout","source":"ba17606ecf187aae.txt","type":"text/plain","size":353}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b1ce4d34a0cdd5eb","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"130e4ffebf4e47af.json","parameterValues":[]} \ No newline at end of file +{"uid":"ba7aa507beaa1547","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"26557f5777ce8a7b","name":"stdout","source":"26557f5777ce8a7b.txt","type":"text/plain","size":353}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"ba7aa507beaa1547.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5804044d1767680.json b/allure-report/data/test-cases/bc039aea1f276c5c.json similarity index 68% rename from allure-report/data/test-cases/d5804044d1767680.json rename to allure-report/data/test-cases/bc039aea1f276c5c.json index e620d99b828..4cd5845f34c 100644 --- a/allure-report/data/test-cases/d5804044d1767680.json +++ b/allure-report/data/test-cases/bc039aea1f276c5c.json @@ -1 +1 @@ -{"uid":"d5804044d1767680","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"10bda13bc4365ba8","name":"stdout","source":"10bda13bc4365ba8.txt","type":"text/plain","size":1515}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":13,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"d5804044d1767680.json","parameterValues":[]} \ No newline at end of file +{"uid":"bc039aea1f276c5c","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e1db63f604b55e53","name":"stdout","source":"e1db63f604b55e53.txt","type":"text/plain","size":1515}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":"bc039aea1f276c5c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bcc8c6b28fb32dd0.json b/allure-report/data/test-cases/bcc8c6b28fb32dd0.json new file mode 100644 index 00000000000..69db19b3ebd --- /dev/null +++ b/allure-report/data/test-cases/bcc8c6b28fb32dd0.json @@ -0,0 +1 @@ +{"uid":"bcc8c6b28fb32dd0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732428195668,"stop":1732428195668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4d384465e183d6","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"9f8b999462605375","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"704aacac2db91585","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"bcc8c6b28fb32dd0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9a6d590487a20fd.json b/allure-report/data/test-cases/bce82edab468d2f2.json similarity index 54% rename from allure-report/data/test-cases/d9a6d590487a20fd.json rename to allure-report/data/test-cases/bce82edab468d2f2.json index 66e110d1de7..c8b29ec7301 100644 --- a/allure-report/data/test-cases/d9a6d590487a20fd.json +++ b/allure-report/data/test-cases/bce82edab468d2f2.json @@ -1 +1 @@ -{"uid":"d9a6d590487a20fd","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"25c7546e6e88bf29","name":"stdout","source":"25c7546e6e88bf29.txt","type":"text/plain","size":530}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"58ec93395b112a8f","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"7e0e76f32ac7ce4e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"d9a6d590487a20fd.json","parameterValues":[]} \ No newline at end of file +{"uid":"bce82edab468d2f2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"282ef4a825ddd5b7","name":"stdout","source":"282ef4a825ddd5b7.txt","type":"text/plain","size":530}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"bce82edab468d2f2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd11ee5929c6c53a.json b/allure-report/data/test-cases/bd11ee5929c6c53a.json new file mode 100644 index 00000000000..ce5e4796cb0 --- /dev/null +++ b/allure-report/data/test-cases/bd11ee5929c6c53a.json @@ -0,0 +1 @@ +{"uid":"bd11ee5929c6c53a","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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\n by ship.\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1732428193903,"stop":1732428193903,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"49355004a4136993","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"56ae9013352b7649","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"bd11ee5929c6c53a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd4541daca134967.json b/allure-report/data/test-cases/bd4541daca134967.json new file mode 100644 index 00000000000..00f4830c445 --- /dev/null +++ b/allure-report/data/test-cases/bd4541daca134967.json @@ -0,0 +1 @@ +{"uid":"bd4541daca134967","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"462780a7368c9ffd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"be34e44ef544dd56","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7ac9af93b3d2f297","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"bd4541daca134967.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd8413842923f1e.json b/allure-report/data/test-cases/bd8413842923f1e.json new file mode 100644 index 00000000000..e26ac976cfc --- /dev/null +++ b/allure-report/data/test-cases/bd8413842923f1e.json @@ -0,0 +1 @@ +{"uid":"bd8413842923f1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ed71ca1a830493f6","name":"stdout","source":"ed71ca1a830493f6.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bd8413842923f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf3022b66d91aba7.json b/allure-report/data/test-cases/bdddf7ddac3322c3.json similarity index 68% rename from allure-report/data/test-cases/bf3022b66d91aba7.json rename to allure-report/data/test-cases/bdddf7ddac3322c3.json index 97a2e571fc8..2bd6cd8094c 100644 --- a/allure-report/data/test-cases/bf3022b66d91aba7.json +++ b/allure-report/data/test-cases/bdddf7ddac3322c3.json @@ -1 +1 @@ -{"uid":"bf3022b66d91aba7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf3022b66d91aba7.json","parameterValues":[]} \ No newline at end of file +{"uid":"bdddf7ddac3322c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bdddf7ddac3322c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e797d850b813669.json b/allure-report/data/test-cases/be34e44ef544dd56.json similarity index 65% rename from allure-report/data/test-cases/6e797d850b813669.json rename to allure-report/data/test-cases/be34e44ef544dd56.json index 270d0d3a5d3..e7045095dd8 100644 --- a/allure-report/data/test-cases/6e797d850b813669.json +++ b/allure-report/data/test-cases/be34e44ef544dd56.json @@ -1 +1 @@ -{"uid":"6e797d850b813669","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"747e90cc8dad54fd","name":"stdout","source":"747e90cc8dad54fd.txt","type":"text/plain","size":985}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6e797d850b813669.json","parameterValues":[]} \ No newline at end of file +{"uid":"be34e44ef544dd56","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"26c18e7ac55b0476","name":"stdout","source":"26c18e7ac55b0476.txt","type":"text/plain","size":985}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"be34e44ef544dd56.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be618dffc8aac711.json b/allure-report/data/test-cases/be618dffc8aac711.json new file mode 100644 index 00000000000..363188fa408 --- /dev/null +++ b/allure-report/data/test-cases/be618dffc8aac711.json @@ -0,0 +1 @@ +{"uid":"be618dffc8aac711","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e9b85a28a1d1502","name":"stdout","source":"e9b85a28a1d1502.txt","type":"text/plain","size":3097}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"be618dffc8aac711.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfd2093ec920e131.json b/allure-report/data/test-cases/be628f1c5b8245e1.json similarity index 71% rename from allure-report/data/test-cases/bfd2093ec920e131.json rename to allure-report/data/test-cases/be628f1c5b8245e1.json index 38b510f7e12..f5110870b61 100644 --- a/allure-report/data/test-cases/bfd2093ec920e131.json +++ b/allure-report/data/test-cases/be628f1c5b8245e1.json @@ -1 +1 @@ -{"uid":"bfd2093ec920e131","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d5adffae1b4c5d49","name":"stdout","source":"d5adffae1b4c5d49.txt","type":"text/plain","size":189}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bfd2093ec920e131.json","parameterValues":[]} \ No newline at end of file +{"uid":"be628f1c5b8245e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"76d9ba77a7bb2817","name":"stdout","source":"76d9ba77a7bb2817.txt","type":"text/plain","size":189}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"be628f1c5b8245e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be8f9e1d393606ac.json b/allure-report/data/test-cases/be8f9e1d393606ac.json new file mode 100644 index 00000000000..8a34f704155 --- /dev/null +++ b/allure-report/data/test-cases/be8f9e1d393606ac.json @@ -0,0 +1 @@ +{"uid":"be8f9e1d393606ac","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":1732428196270,"stop":1732428196270,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4dc4de0a74fe7f66","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"4b58bd62b05a8814","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"64a44b1c9018ad85","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"be8f9e1d393606ac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd5d964c0a6197cf.json b/allure-report/data/test-cases/bf2c284d4d5bb98c.json similarity index 71% rename from allure-report/data/test-cases/bd5d964c0a6197cf.json rename to allure-report/data/test-cases/bf2c284d4d5bb98c.json index 9098ab4238c..63584f4818f 100644 --- a/allure-report/data/test-cases/bd5d964c0a6197cf.json +++ b/allure-report/data/test-cases/bf2c284d4d5bb98c.json @@ -1 +1 @@ -{"uid":"bd5d964c0a6197cf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e405ef5b3f740d5","name":"stdout","source":"5e405ef5b3f740d5.txt","type":"text/plain","size":160}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"bd5d964c0a6197cf.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf2c284d4d5bb98c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e806fd65a1519daa","name":"stdout","source":"e806fd65a1519daa.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"bf2c284d4d5bb98c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/535d557e01267994.json b/allure-report/data/test-cases/bf6ae18a8ec3d384.json similarity index 70% rename from allure-report/data/test-cases/535d557e01267994.json rename to allure-report/data/test-cases/bf6ae18a8ec3d384.json index f5633a74230..47f5f8bdb66 100644 --- a/allure-report/data/test-cases/535d557e01267994.json +++ b/allure-report/data/test-cases/bf6ae18a8ec3d384.json @@ -1 +1 @@ -{"uid":"535d557e01267994","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2613f5d1bde5e090","name":"stdout","source":"2613f5d1bde5e090.txt","type":"text/plain","size":97}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"535d557e01267994.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf6ae18a8ec3d384","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fdbdb95799e89350","name":"stdout","source":"fdbdb95799e89350.txt","type":"text/plain","size":97}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf6ae18a8ec3d384.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92083f552ecb72c4.json b/allure-report/data/test-cases/bf7acd85eab5cf37.json similarity index 57% rename from allure-report/data/test-cases/92083f552ecb72c4.json rename to allure-report/data/test-cases/bf7acd85eab5cf37.json index 57c9f9b4ff4..edb5691113d 100644 --- a/allure-report/data/test-cases/92083f552ecb72c4.json +++ b/allure-report/data/test-cases/bf7acd85eab5cf37.json @@ -1 +1 @@ -{"uid":"92083f552ecb72c4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59ab6d9b07f441c0","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":[]},"source":"92083f552ecb72c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf7acd85eab5cf37","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf7acd85eab5cf37.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfc6af42137d4620.json b/allure-report/data/test-cases/bfc6af42137d4620.json new file mode 100644 index 00000000000..26ca54d9042 --- /dev/null +++ b/allure-report/data/test-cases/bfc6af42137d4620.json @@ -0,0 +1 @@ +{"uid":"bfc6af42137d4620","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b0341cfdabd60782","name":"stdout","source":"b0341cfdabd60782.txt","type":"text/plain","size":896}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"bfc6af42137d4620.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1471afe863c97c8.json b/allure-report/data/test-cases/c072892b1c739356.json similarity index 59% rename from allure-report/data/test-cases/e1471afe863c97c8.json rename to allure-report/data/test-cases/c072892b1c739356.json index 75a27b26e8c..545143eaa32 100644 --- a/allure-report/data/test-cases/e1471afe863c97c8.json +++ b/allure-report/data/test-cases/c072892b1c739356.json @@ -1 +1 @@ -{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af543ced061d8858","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e1471afe863c97c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"c072892b1c739356","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c072892b1c739356.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a60fe7d0456e1873.json b/allure-report/data/test-cases/c0d55ad9fdfb0f8a.json similarity index 57% rename from allure-report/data/test-cases/a60fe7d0456e1873.json rename to allure-report/data/test-cases/c0d55ad9fdfb0f8a.json index 8c723e802a8..2080224bb0e 100644 --- a/allure-report/data/test-cases/a60fe7d0456e1873.json +++ b/allure-report/data/test-cases/c0d55ad9fdfb0f8a.json @@ -1 +1 @@ -{"uid":"a60fe7d0456e1873","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcb85638cafa3b09","name":"stdout","source":"fcb85638cafa3b09.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"536deebe5c2f9229","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"a60fe7d0456e1873.json","parameterValues":[]} \ No newline at end of file +{"uid":"c0d55ad9fdfb0f8a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b18a61fc243fdba8","name":"stdout","source":"b18a61fc243fdba8.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c0d55ad9fdfb0f8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0f4e1faa852c595.json b/allure-report/data/test-cases/c0f4e1faa852c595.json new file mode 100644 index 00000000000..dba48f13b46 --- /dev/null +++ b/allure-report/data/test-cases/c0f4e1faa852c595.json @@ -0,0 +1 @@ +{"uid":"c0f4e1faa852c595","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f0a043619d2b0689","name":"stdout","source":"f0a043619d2b0689.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"c0f4e1faa852c595.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1ac1e81621379df.json b/allure-report/data/test-cases/c1b76ff1cacf5544.json similarity index 57% rename from allure-report/data/test-cases/f1ac1e81621379df.json rename to allure-report/data/test-cases/c1b76ff1cacf5544.json index 197968f7284..5922d3a1e4c 100644 --- a/allure-report/data/test-cases/f1ac1e81621379df.json +++ b/allure-report/data/test-cases/c1b76ff1cacf5544.json @@ -1 +1 @@ -{"uid":"f1ac1e81621379df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a4db6f7d6cd87570","name":"stdout","source":"a4db6f7d6cd87570.txt","type":"text/plain","size":124}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fa7d64e0658fe1a2","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f1ac1e81621379df.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1b76ff1cacf5544","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ae645e567750bb1","name":"stdout","source":"6ae645e567750bb1.txt","type":"text/plain","size":124}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c1b76ff1cacf5544.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1d9afec6278b1a8.json b/allure-report/data/test-cases/c1d9afec6278b1a8.json deleted file mode 100644 index bffe9b8e6f3..00000000000 --- a/allure-report/data/test-cases/c1d9afec6278b1a8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c1d9afec6278b1a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7c5e93321efe39","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"c1d9afec6278b1a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3d1eec0ca08f2cd.json b/allure-report/data/test-cases/c3d1eec0ca08f2cd.json new file mode 100644 index 00000000000..5a3ffa30861 --- /dev/null +++ b/allure-report/data/test-cases/c3d1eec0ca08f2cd.json @@ -0,0 +1 @@ +{"uid":"c3d1eec0ca08f2cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732428195676,"stop":1732428195676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8cf44bb18023836b","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"34783e6754d286ec","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"debf2b82465b0240","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"c3d1eec0ca08f2cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c42292a9c36c46f3.json b/allure-report/data/test-cases/c42292a9c36c46f3.json new file mode 100644 index 00000000000..699fb7feda7 --- /dev/null +++ b/allure-report/data/test-cases/c42292a9c36c46f3.json @@ -0,0 +1 @@ +{"uid":"c42292a9c36c46f3","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732428194190,"stop":1732428194190,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f11813f80ada0713","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"3aa67525242f5614","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"c42292a9c36c46f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8b1a20b1ac22e64.json b/allure-report/data/test-cases/c4304a318e243c50.json similarity index 57% rename from allure-report/data/test-cases/b8b1a20b1ac22e64.json rename to allure-report/data/test-cases/c4304a318e243c50.json index e5545a20ff9..f5bd6c58bea 100644 --- a/allure-report/data/test-cases/b8b1a20b1ac22e64.json +++ b/allure-report/data/test-cases/c4304a318e243c50.json @@ -1 +1 @@ -{"uid":"b8b1a20b1ac22e64","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27add2ef21833533","name":"stdout","source":"27add2ef21833533.txt","type":"text/plain","size":41}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10b94291a50321ec","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":[]},"source":"b8b1a20b1ac22e64.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4304a318e243c50","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1b71217f4d0fe3a2","name":"stdout","source":"1b71217f4d0fe3a2.txt","type":"text/plain","size":41}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c4304a318e243c50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4a8605181ed2d7.json b/allure-report/data/test-cases/c4a8605181ed2d7.json new file mode 100644 index 00000000000..dd4701b4b22 --- /dev/null +++ b/allure-report/data/test-cases/c4a8605181ed2d7.json @@ -0,0 +1 @@ +{"uid":"c4a8605181ed2d7","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"54a96af48234a9eb","name":"stdout","source":"54a96af48234a9eb.txt","type":"text/plain","size":560}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c4a8605181ed2d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4d384465e183d6.json b/allure-report/data/test-cases/c4d384465e183d6.json new file mode 100644 index 00000000000..a960273bb1e --- /dev/null +++ b/allure-report/data/test-cases/c4d384465e183d6.json @@ -0,0 +1 @@ +{"uid":"c4d384465e183d6","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"642ca5006c94cc7","name":"stdout","source":"642ca5006c94cc7.txt","type":"text/plain","size":1649}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c4d384465e183d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c580e79550c46f66.json b/allure-report/data/test-cases/c580e79550c46f66.json new file mode 100644 index 00000000000..7d362415ba8 --- /dev/null +++ b/allure-report/data/test-cases/c580e79550c46f66.json @@ -0,0 +1 @@ +{"uid":"c580e79550c46f66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"566a56003ac2e703","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"cda9164d86dd0b79","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d6e6e46de805754f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c580e79550c46f66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c58cb7ae6e5a9993.json b/allure-report/data/test-cases/c58cb7ae6e5a9993.json new file mode 100644 index 00000000000..1c4850ea128 --- /dev/null +++ b/allure-report/data/test-cases/c58cb7ae6e5a9993.json @@ -0,0 +1 @@ +{"uid":"c58cb7ae6e5a9993","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732428194259,"stop":1732428194259,"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\").\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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b5d1a28c2e7859f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"3c944fe792fcd179","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"c58cb7ae6e5a9993.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f90c5e53432ea6c2.json b/allure-report/data/test-cases/c5ea93b10613ec53.json similarity index 66% rename from allure-report/data/test-cases/f90c5e53432ea6c2.json rename to allure-report/data/test-cases/c5ea93b10613ec53.json index 94db8bf2c5e..81be1eb0c2c 100644 --- a/allure-report/data/test-cases/f90c5e53432ea6c2.json +++ b/allure-report/data/test-cases/c5ea93b10613ec53.json @@ -1 +1 @@ -{"uid":"f90c5e53432ea6c2","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f18b0e548340aa4f","name":"stdout","source":"f18b0e548340aa4f.txt","type":"text/plain","size":261}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"f90c5e53432ea6c2.json","parameterValues":[]} \ No newline at end of file +{"uid":"c5ea93b10613ec53","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4143349f87c576ac","name":"stdout","source":"4143349f87c576ac.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"c5ea93b10613ec53.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2460353038ce1955.json b/allure-report/data/test-cases/c5f3069d223f82c6.json similarity index 57% rename from allure-report/data/test-cases/2460353038ce1955.json rename to allure-report/data/test-cases/c5f3069d223f82c6.json index fb5f844f441..4ef8a2af8dd 100644 --- a/allure-report/data/test-cases/2460353038ce1955.json +++ b/allure-report/data/test-cases/c5f3069d223f82c6.json @@ -1 +1 @@ -{"uid":"2460353038ce1955","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b7bfbf78e894e0ca","name":"stdout","source":"b7bfbf78e894e0ca.txt","type":"text/plain","size":882}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55d1d73293e16236","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"afdaa298aab7eba8","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"2460353038ce1955.json","parameterValues":[]} \ No newline at end of file +{"uid":"c5f3069d223f82c6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6dccc5ff56326cce","name":"stdout","source":"6dccc5ff56326cce.txt","type":"text/plain","size":882}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"c5f3069d223f82c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e21dc9fd5c9ffdad.json b/allure-report/data/test-cases/c6923016c0d7805e.json similarity index 59% rename from allure-report/data/test-cases/e21dc9fd5c9ffdad.json rename to allure-report/data/test-cases/c6923016c0d7805e.json index fcfcfb28d92..e3eb1c4a2a6 100644 --- a/allure-report/data/test-cases/e21dc9fd5c9ffdad.json +++ b/allure-report/data/test-cases/c6923016c0d7805e.json @@ -1 +1 @@ -{"uid":"e21dc9fd5c9ffdad","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4f8b5b6368092f66","name":"stdout","source":"4f8b5b6368092f66.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e21dc9fd5c9ffdad.json","parameterValues":[]} \ No newline at end of file +{"uid":"c6923016c0d7805e","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"50b324c74021da7c","name":"stdout","source":"50b324c74021da7c.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"c6923016c0d7805e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b72d4e8ad3288d1b.json b/allure-report/data/test-cases/c6eafeb1b2d72c83.json similarity index 61% rename from allure-report/data/test-cases/b72d4e8ad3288d1b.json rename to allure-report/data/test-cases/c6eafeb1b2d72c83.json index 7297e2735ff..1a7b38b75ae 100644 --- a/allure-report/data/test-cases/b72d4e8ad3288d1b.json +++ b/allure-report/data/test-cases/c6eafeb1b2d72c83.json @@ -1 +1 @@ -{"uid":"b72d4e8ad3288d1b","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1edd352618c6aa2b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"b72d4e8ad3288d1b.json","parameterValues":[]} \ No newline at end of file +{"uid":"c6eafeb1b2d72c83","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c6eafeb1b2d72c83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0f9b8de2eb00fed.json b/allure-report/data/test-cases/c6f52d0b9e8ac3c5.json similarity index 72% rename from allure-report/data/test-cases/b0f9b8de2eb00fed.json rename to allure-report/data/test-cases/c6f52d0b9e8ac3c5.json index c06f343b0ff..c292f81dd96 100644 --- a/allure-report/data/test-cases/b0f9b8de2eb00fed.json +++ b/allure-report/data/test-cases/c6f52d0b9e8ac3c5.json @@ -1 +1 @@ -{"uid":"b0f9b8de2eb00fed","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"67735b58dfb8e3b0","name":"stdout","source":"67735b58dfb8e3b0.txt","type":"text/plain","size":230}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b0f9b8de2eb00fed.json","parameterValues":[]} \ No newline at end of file +{"uid":"c6f52d0b9e8ac3c5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dd90e5bd6518035b","name":"stdout","source":"dd90e5bd6518035b.txt","type":"text/plain","size":230}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"c6f52d0b9e8ac3c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cde5d1b46b10d7ac.json b/allure-report/data/test-cases/c74e320818fb9682.json similarity index 68% rename from allure-report/data/test-cases/cde5d1b46b10d7ac.json rename to allure-report/data/test-cases/c74e320818fb9682.json index 44a95e1dba3..b39ba2d554b 100644 --- a/allure-report/data/test-cases/cde5d1b46b10d7ac.json +++ b/allure-report/data/test-cases/c74e320818fb9682.json @@ -1 +1 @@ -{"uid":"cde5d1b46b10d7ac","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4783529dae6eb3af","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"cde5d1b46b10d7ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"c74e320818fb9682","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c74e320818fb9682.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c77f51e83226296c.json b/allure-report/data/test-cases/c77f51e83226296c.json new file mode 100644 index 00000000000..073c7f2abbe --- /dev/null +++ b/allure-report/data/test-cases/c77f51e83226296c.json @@ -0,0 +1 @@ +{"uid":"c77f51e83226296c","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732428193889,"stop":1732428193889,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":21,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1732428193894,"stop":1732428193894,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5961f436380e11d2","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"57e5e5f4d9d91cf6","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"c77f51e83226296c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95011c2c3c205658.json b/allure-report/data/test-cases/c7a63127b0ec26d9.json similarity index 57% rename from allure-report/data/test-cases/95011c2c3c205658.json rename to allure-report/data/test-cases/c7a63127b0ec26d9.json index 5f4a197887d..1c2dcb22531 100644 --- a/allure-report/data/test-cases/95011c2c3c205658.json +++ b/allure-report/data/test-cases/c7a63127b0ec26d9.json @@ -1 +1 @@ -{"uid":"95011c2c3c205658","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85cc51a7df0f4a6c","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"95011c2c3c205658.json","parameterValues":[]} \ No newline at end of file +{"uid":"c7a63127b0ec26d9","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c7a63127b0ec26d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7c4b4c39dca1f7a.json b/allure-report/data/test-cases/c7c4b4c39dca1f7a.json new file mode 100644 index 00000000000..d1a17570def --- /dev/null +++ b/allure-report/data/test-cases/c7c4b4c39dca1f7a.json @@ -0,0 +1 @@ +{"uid":"c7c4b4c39dca1f7a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732428194472,"stop":1732428194472,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e357cecc68f801","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"da6d336020bff47c","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"42bb8c96d4cb1bcf","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c7c4b4c39dca1f7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7e963fd1c95dafe.json b/allure-report/data/test-cases/c7e963fd1c95dafe.json new file mode 100644 index 00000000000..8d7b5957f67 --- /dev/null +++ b/allure-report/data/test-cases/c7e963fd1c95dafe.json @@ -0,0 +1 @@ +{"uid":"c7e963fd1c95dafe","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":"

Codewars badge:

Test Description:

Given a year, the function should return the century it is in.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732428196100,"stop":1732428196101,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1732428196102,"stop":1732428196102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d4f8cb2de087cf","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"d58adc2ec0d31961","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"c7e963fd1c95dafe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90a114379d845ff7.json b/allure-report/data/test-cases/c7eea171ede7ee13.json similarity index 68% rename from allure-report/data/test-cases/90a114379d845ff7.json rename to allure-report/data/test-cases/c7eea171ede7ee13.json index 00e1529dfa5..0d268cbf43f 100644 --- a/allure-report/data/test-cases/90a114379d845ff7.json +++ b/allure-report/data/test-cases/c7eea171ede7ee13.json @@ -1 +1 @@ -{"uid":"90a114379d845ff7","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6ce0e167f1507713","name":"stdout","source":"6ce0e167f1507713.txt","type":"text/plain","size":242}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"90a114379d845ff7.json","parameterValues":[]} \ No newline at end of file +{"uid":"c7eea171ede7ee13","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b338c3953869594","name":"stdout","source":"8b338c3953869594.txt","type":"text/plain","size":242}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c7eea171ede7ee13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41ca81ef54591f7f.json b/allure-report/data/test-cases/c8870275fadfceea.json similarity index 70% rename from allure-report/data/test-cases/41ca81ef54591f7f.json rename to allure-report/data/test-cases/c8870275fadfceea.json index 89f6940f240..6e87679bc77 100644 --- a/allure-report/data/test-cases/41ca81ef54591f7f.json +++ b/allure-report/data/test-cases/c8870275fadfceea.json @@ -1 +1 @@ -{"uid":"41ca81ef54591f7f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3a9eebe7718e7480","name":"stdout","source":"3a9eebe7718e7480.txt","type":"text/plain","size":2621}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"41ca81ef54591f7f.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8870275fadfceea","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"939b7ea8b8b69174","name":"stdout","source":"939b7ea8b8b69174.txt","type":"text/plain","size":2621}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c8870275fadfceea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5f1282b0eb8a484.json b/allure-report/data/test-cases/c898f599f64280c3.json similarity index 70% rename from allure-report/data/test-cases/f5f1282b0eb8a484.json rename to allure-report/data/test-cases/c898f599f64280c3.json index 0ac111b5bcc..f6cd601b993 100644 --- a/allure-report/data/test-cases/f5f1282b0eb8a484.json +++ b/allure-report/data/test-cases/c898f599f64280c3.json @@ -1 +1 @@ -{"uid":"f5f1282b0eb8a484","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84bdcd72726e2c84","name":"stdout","source":"84bdcd72726e2c84.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"f5f1282b0eb8a484.json","parameterValues":[]} \ No newline at end of file +{"uid":"c898f599f64280c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d4ab56b3974e742a","name":"stdout","source":"d4ab56b3974e742a.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"c898f599f64280c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/826a0963540c6e75.json b/allure-report/data/test-cases/c89e6a91bc0b9e52.json similarity index 54% rename from allure-report/data/test-cases/826a0963540c6e75.json rename to allure-report/data/test-cases/c89e6a91bc0b9e52.json index 65dda47263b..39455d69e36 100644 --- a/allure-report/data/test-cases/826a0963540c6e75.json +++ b/allure-report/data/test-cases/c89e6a91bc0b9e52.json @@ -1 +1 @@ -{"uid":"826a0963540c6e75","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15329bd7c41462e0","name":"stdout","source":"15329bd7c41462e0.txt","type":"text/plain","size":375}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6a0450be3f30fe6","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4359475f5ec554bd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"826a0963540c6e75.json","parameterValues":[]} \ No newline at end of file +{"uid":"c89e6a91bc0b9e52","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c629f823771e2123","name":"stdout","source":"c629f823771e2123.txt","type":"text/plain","size":375}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"c89e6a91bc0b9e52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b97e3a9bf54f17f3.json b/allure-report/data/test-cases/c8c44a676a12b5c6.json similarity index 60% rename from allure-report/data/test-cases/b97e3a9bf54f17f3.json rename to allure-report/data/test-cases/c8c44a676a12b5c6.json index 168e10f0995..ca8e957439d 100644 --- a/allure-report/data/test-cases/b97e3a9bf54f17f3.json +++ b/allure-report/data/test-cases/c8c44a676a12b5c6.json @@ -1 +1 @@ -{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db0dfa2ecde82e2a","name":"stdout","source":"db0dfa2ecde82e2a.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"e99ff83f7419b047","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"73d92f8f0c07772d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"b97e3a9bf54f17f3.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8c44a676a12b5c6","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e13819432a0a8bbc","name":"stdout","source":"e13819432a0a8bbc.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"c8c44a676a12b5c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c919701b7942665.json b/allure-report/data/test-cases/c919701b7942665.json new file mode 100644 index 00000000000..686e5793ba6 --- /dev/null +++ b/allure-report/data/test-cases/c919701b7942665.json @@ -0,0 +1 @@ +{"uid":"c919701b7942665","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c919701b7942665.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a941d3b90762a67.json b/allure-report/data/test-cases/c94aec0d920b7f7d.json similarity index 53% rename from allure-report/data/test-cases/5a941d3b90762a67.json rename to allure-report/data/test-cases/c94aec0d920b7f7d.json index 16391a694f1..b0a9747c58d 100644 --- a/allure-report/data/test-cases/5a941d3b90762a67.json +++ b/allure-report/data/test-cases/c94aec0d920b7f7d.json @@ -1 +1 @@ -{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"edbe93ce737c702f","name":"stdout","source":"edbe93ce737c702f.txt","type":"text/plain","size":304}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"db267da7b8a1b004","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5ef0ca25b0e8e9c5","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5a941d3b90762a67.json","parameterValues":[]} \ No newline at end of file +{"uid":"c94aec0d920b7f7d","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4e248e61461ec35c","name":"stdout","source":"4e248e61461ec35c.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c94aec0d920b7f7d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a381266642fdbdd2.json b/allure-report/data/test-cases/cc1bd3cedb1bfef0.json similarity index 73% rename from allure-report/data/test-cases/a381266642fdbdd2.json rename to allure-report/data/test-cases/cc1bd3cedb1bfef0.json index f2eae654a24..9feba626e70 100644 --- a/allure-report/data/test-cases/a381266642fdbdd2.json +++ b/allure-report/data/test-cases/cc1bd3cedb1bfef0.json @@ -1 +1 @@ -{"uid":"a381266642fdbdd2","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9185450f0b6d0b62","name":"stdout","source":"9185450f0b6d0b62.txt","type":"text/plain","size":22}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"a381266642fdbdd2.json","parameterValues":[]} \ No newline at end of file +{"uid":"cc1bd3cedb1bfef0","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"10b8961e386c4fec","name":"stdout","source":"10b8961e386c4fec.txt","type":"text/plain","size":22}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"cc1bd3cedb1bfef0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc5bed1d964110c.json b/allure-report/data/test-cases/cc5bed1d964110c.json deleted file mode 100644 index 68cc9663ea6..00000000000 --- a/allure-report/data/test-cases/cc5bed1d964110c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cc5bed1d964110c","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8f23a9981f406ff","name":"stdout","source":"a8f23a9981f406ff.txt","type":"text/plain","size":371}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"cc5bed1d964110c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd862d92408a60a2.json b/allure-report/data/test-cases/cd862d92408a60a2.json deleted file mode 100644 index 3ae6a2521f8..00000000000 --- a/allure-report/data/test-cases/cd862d92408a60a2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cd862d92408a60a2","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5705204dae406a16","name":"stdout","source":"5705204dae406a16.txt","type":"text/plain","size":401}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1dfdd5c5551a6420","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3bd61bc704b417e2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"cd862d92408a60a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/884c8d1f852cc3dc.json b/allure-report/data/test-cases/cd9da9d797a3c2ab.json similarity index 53% rename from allure-report/data/test-cases/884c8d1f852cc3dc.json rename to allure-report/data/test-cases/cd9da9d797a3c2ab.json index e50aeb44bde..a08d6a00a55 100644 --- a/allure-report/data/test-cases/884c8d1f852cc3dc.json +++ b/allure-report/data/test-cases/cd9da9d797a3c2ab.json @@ -1 +1 @@ -{"uid":"884c8d1f852cc3dc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29f64ed4da9c0ecc","name":"stdout","source":"29f64ed4da9c0ecc.txt","type":"text/plain","size":298}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23cc390416e7aa52","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":[]},"source":"884c8d1f852cc3dc.json","parameterValues":[]} \ No newline at end of file +{"uid":"cd9da9d797a3c2ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7f3ec04c5333a588","name":"stdout","source":"7f3ec04c5333a588.txt","type":"text/plain","size":298}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cd9da9d797a3c2ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/108c2723377a98c0.json b/allure-report/data/test-cases/cda9164d86dd0b79.json similarity index 64% rename from allure-report/data/test-cases/108c2723377a98c0.json rename to allure-report/data/test-cases/cda9164d86dd0b79.json index f68580f346f..64c97754ef6 100644 --- a/allure-report/data/test-cases/108c2723377a98c0.json +++ b/allure-report/data/test-cases/cda9164d86dd0b79.json @@ -1 +1 @@ -{"uid":"108c2723377a98c0","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a2b0f0b93e0e2887","name":"stdout","source":"a2b0f0b93e0e2887.txt","type":"text/plain","size":453}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"108c2723377a98c0.json","parameterValues":[]} \ No newline at end of file +{"uid":"cda9164d86dd0b79","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"75f6639f39c4b7d0","name":"stdout","source":"75f6639f39c4b7d0.txt","type":"text/plain","size":453}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cda9164d86dd0b79.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cdb2fb8959394c65.json b/allure-report/data/test-cases/cdb2fb8959394c65.json new file mode 100644 index 00000000000..f22b115d56c --- /dev/null +++ b/allure-report/data/test-cases/cdb2fb8959394c65.json @@ -0,0 +1 @@ +{"uid":"cdb2fb8959394c65","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1aea611207a542f","name":"stdout","source":"1aea611207a542f.txt","type":"text/plain","size":307}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"cdb2fb8959394c65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fd4d83368b6d5d5e.json b/allure-report/data/test-cases/cf437ca3dc1624b1.json similarity index 72% rename from allure-report/data/test-cases/fd4d83368b6d5d5e.json rename to allure-report/data/test-cases/cf437ca3dc1624b1.json index ffa0c8c748d..a20d3e1ccb2 100644 --- a/allure-report/data/test-cases/fd4d83368b6d5d5e.json +++ b/allure-report/data/test-cases/cf437ca3dc1624b1.json @@ -1 +1 @@ -{"uid":"fd4d83368b6d5d5e","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7030d405852b736e","name":"stdout","source":"7030d405852b736e.txt","type":"text/plain","size":392}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"103efa7b767774fa","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"fd4d83368b6d5d5e.json","parameterValues":[]} \ No newline at end of file +{"uid":"cf437ca3dc1624b1","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9819ce1f0ac184a6","name":"stdout","source":"9819ce1f0ac184a6.txt","type":"text/plain","size":392}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"cf437ca3dc1624b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf71a425c4796a9.json b/allure-report/data/test-cases/cf71a425c4796a9.json new file mode 100644 index 00000000000..a2f2c0745e6 --- /dev/null +++ b/allure-report/data/test-cases/cf71a425c4796a9.json @@ -0,0 +1 @@ +{"uid":"cf71a425c4796a9","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":1732428194268,"stop":1732428194268,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732428194270,"stop":1732428194270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"First non-repeating character"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SEARCH"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf437ca3dc1624b1","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"39a19c10cf88efee","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fd4d83368b6d5d5e","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"cf71a425c4796a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cfaf892be75c5d35.json b/allure-report/data/test-cases/cfaf892be75c5d35.json new file mode 100644 index 00000000000..efaa0ad1241 --- /dev/null +++ b/allure-report/data/test-cases/cfaf892be75c5d35.json @@ -0,0 +1 @@ +{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732428194502,"stop":1732428194502,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732428194504,"stop":1732428194504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS PARSING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e7bc3e134c68e92","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"b982073aac2c9d08","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"148a22b7e430194f","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"cfaf892be75c5d35.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d04b40a520c97bdd.json b/allure-report/data/test-cases/d04b40a520c97bdd.json new file mode 100644 index 00000000000..a96cdc4ebd9 --- /dev/null +++ b/allure-report/data/test-cases/d04b40a520c97bdd.json @@ -0,0 +1 @@ +{"uid":"d04b40a520c97bdd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732428196436,"stop":1732428196436,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e1e999ab6569b87","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"3ee1470ea7ce07a6","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"92297f3cbdd8ad78","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"d04b40a520c97bdd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d121ae5a75cc69b9.json b/allure-report/data/test-cases/d121ae5a75cc69b9.json new file mode 100644 index 00000000000..3b2bbae67fe --- /dev/null +++ b/allure-report/data/test-cases/d121ae5a75cc69b9.json @@ -0,0 +1 @@ +{"uid":"d121ae5a75cc69b9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65a370055ee8e2b9","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"8e17b24d548befe2","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"139c28ca38674b14","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"d121ae5a75cc69b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dead64fe3d4f484d.json b/allure-report/data/test-cases/d12fb82b623fefb9.json similarity index 53% rename from allure-report/data/test-cases/dead64fe3d4f484d.json rename to allure-report/data/test-cases/d12fb82b623fefb9.json index 46c98d0f9f6..5c74fedfc3d 100644 --- a/allure-report/data/test-cases/dead64fe3d4f484d.json +++ b/allure-report/data/test-cases/d12fb82b623fefb9.json @@ -1 +1 @@ -{"uid":"dead64fe3d4f484d","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b3bb7e070cc7a5c","name":"stdout","source":"6b3bb7e070cc7a5c.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":7,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e21dc9fd5c9ffdad","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"91ff78dc5a767b91","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":[]},"source":"dead64fe3d4f484d.json","parameterValues":[]} \ No newline at end of file +{"uid":"d12fb82b623fefb9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e04892408ba7673f","name":"stdout","source":"e04892408ba7673f.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d12fb82b623fefb9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1974f16b30f7476.json b/allure-report/data/test-cases/d1974f16b30f7476.json new file mode 100644 index 00000000000..427c1d5ad01 --- /dev/null +++ b/allure-report/data/test-cases/d1974f16b30f7476.json @@ -0,0 +1 @@ +{"uid":"d1974f16b30f7476","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fac594686b0a84bd","name":"stdout","source":"fac594686b0a84bd.txt","type":"text/plain","size":96}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d1974f16b30f7476.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d19efceb39f40f4f.json b/allure-report/data/test-cases/d19efceb39f40f4f.json new file mode 100644 index 00000000000..68bf219f3c9 --- /dev/null +++ b/allure-report/data/test-cases/d19efceb39f40f4f.json @@ -0,0 +1 @@ +{"uid":"d19efceb39f40f4f","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732428194586,"stop":1732428194586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":13,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1732428194588,"stop":1732428194588,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6030df3a53146090","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"552742d77daecee9","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d19efceb39f40f4f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1a80d9f422182d.json b/allure-report/data/test-cases/d1a80d9f422182d.json deleted file mode 100644 index bd06f3e1a25..00000000000 --- a/allure-report/data/test-cases/d1a80d9f422182d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d1a80d9f422182d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a8f2e8a8daac7d4","name":"stdout","source":"5a8f2e8a8daac7d4.txt","type":"text/plain","size":130}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4d0514d90adb5feb","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"d1a80d9f422182d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d3037fd25424c6f3.json b/allure-report/data/test-cases/d3037fd25424c6f3.json deleted file mode 100644 index 864e616dda1..00000000000 --- a/allure-report/data/test-cases/d3037fd25424c6f3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d3037fd25424c6f3","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"763794db833f43e6","name":"stdout","source":"763794db833f43e6.txt","type":"text/plain","size":410}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f6955234023cbe8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"1d2c6842ef40288f","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"d3037fd25424c6f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d38d4627913b0040.json b/allure-report/data/test-cases/d38d4627913b0040.json new file mode 100644 index 00000000000..3b87829cf49 --- /dev/null +++ b/allure-report/data/test-cases/d38d4627913b0040.json @@ -0,0 +1 @@ +{"uid":"d38d4627913b0040","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"730a4e5abf4ea8ba","name":"stdout","source":"730a4e5abf4ea8ba.txt","type":"text/plain","size":510}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d38d4627913b0040.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11ee5493e293e3de.json b/allure-report/data/test-cases/d4258a66cc0cec29.json similarity index 77% rename from allure-report/data/test-cases/11ee5493e293e3de.json rename to allure-report/data/test-cases/d4258a66cc0cec29.json index d6846566ab1..784521313a2 100644 --- a/allure-report/data/test-cases/11ee5493e293e3de.json +++ b/allure-report/data/test-cases/d4258a66cc0cec29.json @@ -1 +1 @@ -{"uid":"11ee5493e293e3de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6431ac3684ba417d","name":"stdout","source":"6431ac3684ba417d.txt","type":"text/plain","size":793}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"11ee5493e293e3de.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4258a66cc0cec29","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f7ee012a96ef9b6","name":"stdout","source":"1f7ee012a96ef9b6.txt","type":"text/plain","size":793}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"d4258a66cc0cec29.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a70604cd2465a183.json b/allure-report/data/test-cases/d42759854937ade9.json similarity index 76% rename from allure-report/data/test-cases/a70604cd2465a183.json rename to allure-report/data/test-cases/d42759854937ade9.json index 6cf098246fd..1ac93b4c860 100644 --- a/allure-report/data/test-cases/a70604cd2465a183.json +++ b/allure-report/data/test-cases/d42759854937ade9.json @@ -1 +1 @@ -{"uid":"a70604cd2465a183","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"71aab19d1a615a57","name":"stdout","source":"71aab19d1a615a57.txt","type":"text/plain","size":12051}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a70604cd2465a183.json","parameterValues":[]} \ No newline at end of file +{"uid":"d42759854937ade9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bf8644536e05f3d6","name":"stdout","source":"bf8644536e05f3d6.txt","type":"text/plain","size":12051}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d42759854937ade9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4a0809a7647965.json b/allure-report/data/test-cases/d4a0809a7647965.json new file mode 100644 index 00000000000..67f7b552b4e --- /dev/null +++ b/allure-report/data/test-cases/d4a0809a7647965.json @@ -0,0 +1 @@ +{"uid":"d4a0809a7647965","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732428194641,"stop":1732428194641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9df20ba5fd613f1","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"e17b710b1ca6cef6","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"3a2392b112899a67","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"d4a0809a7647965.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78957f7729625c40.json b/allure-report/data/test-cases/d4af7c6dd9a36bc3.json similarity index 63% rename from allure-report/data/test-cases/78957f7729625c40.json rename to allure-report/data/test-cases/d4af7c6dd9a36bc3.json index 27ad3838059..a1407146519 100644 --- a/allure-report/data/test-cases/78957f7729625c40.json +++ b/allure-report/data/test-cases/d4af7c6dd9a36bc3.json @@ -1 +1 @@ -{"uid":"78957f7729625c40","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"51a4e96e6102d985","name":"stdout","source":"51a4e96e6102d985.txt","type":"text/plain","size":476}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"78957f7729625c40.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4af7c6dd9a36bc3","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"760266e95eacb400","name":"stdout","source":"760266e95eacb400.txt","type":"text/plain","size":476}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"d4af7c6dd9a36bc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52dd320a58bdb229.json b/allure-report/data/test-cases/d4bd80ae04896a86.json similarity index 59% rename from allure-report/data/test-cases/52dd320a58bdb229.json rename to allure-report/data/test-cases/d4bd80ae04896a86.json index 5a657c2b600..02afb145591 100644 --- a/allure-report/data/test-cases/52dd320a58bdb229.json +++ b/allure-report/data/test-cases/d4bd80ae04896a86.json @@ -1 +1 @@ -{"uid":"52dd320a58bdb229","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"be5b8c63ffdd840d","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":[]},"source":"52dd320a58bdb229.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4bd80ae04896a86","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d4bd80ae04896a86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5ae32dea8d8e5c3.json b/allure-report/data/test-cases/d4d9b4f519ec1ce3.json similarity index 67% rename from allure-report/data/test-cases/e5ae32dea8d8e5c3.json rename to allure-report/data/test-cases/d4d9b4f519ec1ce3.json index 86b2d7fb719..2fe406ae561 100644 --- a/allure-report/data/test-cases/e5ae32dea8d8e5c3.json +++ b/allure-report/data/test-cases/d4d9b4f519ec1ce3.json @@ -1 +1 @@ -{"uid":"e5ae32dea8d8e5c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87f777895eba7eaf","name":"stdout","source":"87f777895eba7eaf.txt","type":"text/plain","size":1178}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5baa430d724786c4","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":[]},"source":"e5ae32dea8d8e5c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4d9b4f519ec1ce3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ba5b206c202bb2e0","name":"stdout","source":"ba5b206c202bb2e0.txt","type":"text/plain","size":1178}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d4d9b4f519ec1ce3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d562abb8385a61c5.json b/allure-report/data/test-cases/d562abb8385a61c5.json new file mode 100644 index 00000000000..ac4c0d7e05a --- /dev/null +++ b/allure-report/data/test-cases/d562abb8385a61c5.json @@ -0,0 +1 @@ +{"uid":"d562abb8385a61c5","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":1732428195826,"stop":1732428195826,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428195827,"stop":1732428195827,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d6e5f0961d8c06a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"48ff8cbb530a1868","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"996165a0ada95681","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d562abb8385a61c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f6955234023cbe8.json b/allure-report/data/test-cases/d58adc2ec0d31961.json similarity index 64% rename from allure-report/data/test-cases/9f6955234023cbe8.json rename to allure-report/data/test-cases/d58adc2ec0d31961.json index 509310fc940..57b629b2ed5 100644 --- a/allure-report/data/test-cases/9f6955234023cbe8.json +++ b/allure-report/data/test-cases/d58adc2ec0d31961.json @@ -1 +1 @@ -{"uid":"9f6955234023cbe8","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5c0575d9cafe6cf6","name":"stdout","source":"5c0575d9cafe6cf6.txt","type":"text/plain","size":410}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":6,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9f6955234023cbe8.json","parameterValues":[]} \ No newline at end of file +{"uid":"d58adc2ec0d31961","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"22b576ff182f36ef","name":"stdout","source":"22b576ff182f36ef.txt","type":"text/plain","size":410}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"d58adc2ec0d31961.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19146436627ee869.json b/allure-report/data/test-cases/d58da60cf24b7660.json similarity index 73% rename from allure-report/data/test-cases/19146436627ee869.json rename to allure-report/data/test-cases/d58da60cf24b7660.json index 96b10678aa6..b2c01f8e17e 100644 --- a/allure-report/data/test-cases/19146436627ee869.json +++ b/allure-report/data/test-cases/d58da60cf24b7660.json @@ -1 +1 @@ -{"uid":"19146436627ee869","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"84f9893956705e3c","name":"stdout","source":"84f9893956705e3c.txt","type":"text/plain","size":31}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"19146436627ee869.json","parameterValues":[]} \ No newline at end of file +{"uid":"d58da60cf24b7660","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5c2daa57ff9298a6","name":"stdout","source":"5c2daa57ff9298a6.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d58da60cf24b7660.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d66079b030735db8.json b/allure-report/data/test-cases/d66079b030735db8.json new file mode 100644 index 00000000000..54f4de17e64 --- /dev/null +++ b/allure-report/data/test-cases/d66079b030735db8.json @@ -0,0 +1 @@ +{"uid":"d66079b030735db8","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d66079b030735db8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7d1e3c0f9370311.json b/allure-report/data/test-cases/d7d1e3c0f9370311.json new file mode 100644 index 00000000000..9d1e5586791 --- /dev/null +++ b/allure-report/data/test-cases/d7d1e3c0f9370311.json @@ -0,0 +1 @@ +{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732428194496,"stop":1732428194496,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732428194497,"stop":1732428194497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"d7d1e3c0f9370311.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7eae685c38fccbb.json b/allure-report/data/test-cases/d7eae685c38fccbb.json new file mode 100644 index 00000000000..abb80b07446 --- /dev/null +++ b/allure-report/data/test-cases/d7eae685c38fccbb.json @@ -0,0 +1 @@ +{"uid":"d7eae685c38fccbb","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ccd74e070792411","name":"stdout","source":"6ccd74e070792411.txt","type":"text/plain","size":371}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"d7eae685c38fccbb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d820d165ec4b4b72.json b/allure-report/data/test-cases/d820d165ec4b4b72.json new file mode 100644 index 00000000000..d80b31ab503 --- /dev/null +++ b/allure-report/data/test-cases/d820d165ec4b4b72.json @@ -0,0 +1 @@ +{"uid":"d820d165ec4b4b72","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Test Potion class that mix between 2 RGB colors.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732428195589,"stop":1732428195589,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1732428195591,"stop":1732428195591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"47068bee5b06a234","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"95a29a9545c416cd","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d820d165ec4b4b72.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9328098007f6ade.json b/allure-report/data/test-cases/d9328098007f6ade.json new file mode 100644 index 00000000000..de7d8fe15f7 --- /dev/null +++ b/allure-report/data/test-cases/d9328098007f6ade.json @@ -0,0 +1 @@ +{"uid":"d9328098007f6ade","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":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an un-existing item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a2cc2be21cb9d7cd","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"45f16c4708137d2d","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d9328098007f6ade.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ca423ea5ac901436.json b/allure-report/data/test-cases/d936198953d58b58.json similarity index 76% rename from allure-report/data/test-cases/ca423ea5ac901436.json rename to allure-report/data/test-cases/d936198953d58b58.json index 68c69fdb029..37d38949974 100644 --- a/allure-report/data/test-cases/ca423ea5ac901436.json +++ b/allure-report/data/test-cases/d936198953d58b58.json @@ -1 +1 @@ -{"uid":"ca423ea5ac901436","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ca423ea5ac901436.json","parameterValues":[]} \ No newline at end of file +{"uid":"d936198953d58b58","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"d936198953d58b58.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e2d8966b9a0500aa.json b/allure-report/data/test-cases/d97402e929388a59.json similarity index 66% rename from allure-report/data/test-cases/e2d8966b9a0500aa.json rename to allure-report/data/test-cases/d97402e929388a59.json index 85fc83cb6c5..75d12d26db1 100644 --- a/allure-report/data/test-cases/e2d8966b9a0500aa.json +++ b/allure-report/data/test-cases/d97402e929388a59.json @@ -1 +1 @@ -{"uid":"e2d8966b9a0500aa","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78b71274c888e77b","name":"stdout","source":"78b71274c888e77b.txt","type":"text/plain","size":104}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"e2d8966b9a0500aa.json","parameterValues":[]} \ No newline at end of file +{"uid":"d97402e929388a59","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3df0050d216178a3","name":"stdout","source":"3df0050d216178a3.txt","type":"text/plain","size":104}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"d97402e929388a59.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8d5d2ee94f4b051.json b/allure-report/data/test-cases/d9af06a5366a3631.json similarity index 56% rename from allure-report/data/test-cases/d8d5d2ee94f4b051.json rename to allure-report/data/test-cases/d9af06a5366a3631.json index f12f0c92993..639cdd1e920 100644 --- a/allure-report/data/test-cases/d8d5d2ee94f4b051.json +++ b/allure-report/data/test-cases/d9af06a5366a3631.json @@ -1 +1 @@ -{"uid":"d8d5d2ee94f4b051","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"32d8e8facf5868da","name":"stdout","source":"32d8e8facf5868da.txt","type":"text/plain","size":75}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1ea0a3d5ef9530e","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":[]},"source":"d8d5d2ee94f4b051.json","parameterValues":[]} \ No newline at end of file +{"uid":"d9af06a5366a3631","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"70a5ec7cc829789f","name":"stdout","source":"70a5ec7cc829789f.txt","type":"text/plain","size":75}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9af06a5366a3631.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b018537831100fb.json b/allure-report/data/test-cases/d9dd09ce35083af7.json similarity index 74% rename from allure-report/data/test-cases/1b018537831100fb.json rename to allure-report/data/test-cases/d9dd09ce35083af7.json index e53f32a32c3..b338ea08d52 100644 --- a/allure-report/data/test-cases/1b018537831100fb.json +++ b/allure-report/data/test-cases/d9dd09ce35083af7.json @@ -1 +1 @@ -{"uid":"1b018537831100fb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b018537831100fb.json","parameterValues":[]} \ No newline at end of file +{"uid":"d9dd09ce35083af7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9dd09ce35083af7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da02dcc2ce3c4d85.json b/allure-report/data/test-cases/da02dcc2ce3c4d85.json new file mode 100644 index 00000000000..658de665038 --- /dev/null +++ b/allure-report/data/test-cases/da02dcc2ce3c4d85.json @@ -0,0 +1 @@ +{"uid":"da02dcc2ce3c4d85","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":1732428195926,"stop":1732428195926,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4bd80ae04896a86","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"5be4a10a1a64fd59","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52dd320a58bdb229","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"da02dcc2ce3c4d85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8baea38a8fa67e7e.json b/allure-report/data/test-cases/da6d336020bff47c.json similarity index 76% rename from allure-report/data/test-cases/8baea38a8fa67e7e.json rename to allure-report/data/test-cases/da6d336020bff47c.json index b89fd180b17..e1ca9c9fa84 100644 --- a/allure-report/data/test-cases/8baea38a8fa67e7e.json +++ b/allure-report/data/test-cases/da6d336020bff47c.json @@ -1 +1 @@ -{"uid":"8baea38a8fa67e7e","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"34ee6a50b9a56e7d","name":"stdout","source":"34ee6a50b9a56e7d.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"8baea38a8fa67e7e.json","parameterValues":[]} \ No newline at end of file +{"uid":"da6d336020bff47c","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"452e28e5668d68f6","name":"stdout","source":"452e28e5668d68f6.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"da6d336020bff47c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db6f47361aae7a53.json b/allure-report/data/test-cases/db6f47361aae7a53.json new file mode 100644 index 00000000000..b1e2aa634a8 --- /dev/null +++ b/allure-report/data/test-cases/db6f47361aae7a53.json @@ -0,0 +1 @@ +{"uid":"db6f47361aae7a53","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"648462a68a83b780","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"16f7f5e029216efb","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"51971bf7ad109ed2","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"db6f47361aae7a53.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc1c20798f5a8f0a.json b/allure-report/data/test-cases/dc1c20798f5a8f0a.json new file mode 100644 index 00000000000..b4bb283cd19 --- /dev/null +++ b/allure-report/data/test-cases/dc1c20798f5a8f0a.json @@ -0,0 +1 @@ +{"uid":"dc1c20798f5a8f0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732428195727,"stop":1732428195727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Always perfect"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a8ee4991fa5fcbc","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"94af9200e69d147a","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fbd4191028146e80","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"dc1c20798f5a8f0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce00ffd36d904f61.json b/allure-report/data/test-cases/dc1f8d6367d3e66e.json similarity index 75% rename from allure-report/data/test-cases/ce00ffd36d904f61.json rename to allure-report/data/test-cases/dc1f8d6367d3e66e.json index e36bc6f65d5..ffbdcbd5df7 100644 --- a/allure-report/data/test-cases/ce00ffd36d904f61.json +++ b/allure-report/data/test-cases/dc1f8d6367d3e66e.json @@ -1 +1 @@ -{"uid":"ce00ffd36d904f61","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41f66f3f97e3d4e4","name":"stdout","source":"41f66f3f97e3d4e4.txt","type":"text/plain","size":46002}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"ce00ffd36d904f61.json","parameterValues":[]} \ No newline at end of file +{"uid":"dc1f8d6367d3e66e","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b32e9e6b9d5730c","name":"stdout","source":"8b32e9e6b9d5730c.txt","type":"text/plain","size":46002}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"dc1f8d6367d3e66e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ddd327d6f403c655.json b/allure-report/data/test-cases/dcee0c4d2268b964.json similarity index 74% rename from allure-report/data/test-cases/ddd327d6f403c655.json rename to allure-report/data/test-cases/dcee0c4d2268b964.json index 765eef5a91a..43f2bb89772 100644 --- a/allure-report/data/test-cases/ddd327d6f403c655.json +++ b/allure-report/data/test-cases/dcee0c4d2268b964.json @@ -1 +1 @@ -{"uid":"ddd327d6f403c655","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d46e2ecc5195696","name":"stdout","source":"5d46e2ecc5195696.txt","type":"text/plain","size":311}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"ddd327d6f403c655.json","parameterValues":[]} \ No newline at end of file +{"uid":"dcee0c4d2268b964","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c5afc30c761eea74","name":"stdout","source":"c5afc30c761eea74.txt","type":"text/plain","size":311}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"dcee0c4d2268b964.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd6fef8ab37d71ba.json b/allure-report/data/test-cases/dd6fef8ab37d71ba.json new file mode 100644 index 00000000000..19f22c3e6b1 --- /dev/null +++ b/allure-report/data/test-cases/dd6fef8ab37d71ba.json @@ -0,0 +1 @@ +{"uid":"dd6fef8ab37d71ba","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":1732428196011,"stop":1732428196011,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4706ff9d2a2958c","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"6e3ce129a9f8f588","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e7eaed29fbceb75","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"dd6fef8ab37d71ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd76819b5fd836d3.json b/allure-report/data/test-cases/dd76819b5fd836d3.json new file mode 100644 index 00000000000..e5217ca8973 --- /dev/null +++ b/allure-report/data/test-cases/dd76819b5fd836d3.json @@ -0,0 +1 @@ +{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"8beabd2469a668","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"6373ea673c2617a2","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"dd76819b5fd836d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d558fd9b3bcee4ae.json b/allure-report/data/test-cases/ddd928ac3a4fb635.json similarity index 60% rename from allure-report/data/test-cases/d558fd9b3bcee4ae.json rename to allure-report/data/test-cases/ddd928ac3a4fb635.json index 4b94dc0ee75..b88c1a5f05b 100644 --- a/allure-report/data/test-cases/d558fd9b3bcee4ae.json +++ b/allure-report/data/test-cases/ddd928ac3a4fb635.json @@ -1 +1 @@ -{"uid":"d558fd9b3bcee4ae","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ceac2ca244e095b","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6ce4bba2ff4664c2","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"d558fd9b3bcee4ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"ddd928ac3a4fb635","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"ddd928ac3a4fb635.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dde0d2c7fdfdde63.json b/allure-report/data/test-cases/dde0d2c7fdfdde63.json new file mode 100644 index 00000000000..6995367e0cf --- /dev/null +++ b/allure-report/data/test-cases/dde0d2c7fdfdde63.json @@ -0,0 +1 @@ +{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732428196127,"stop":1732428196127,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Count the Monkeys!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RANGES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab40fd2a8eefa024","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"edb4f03386c56c72","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"5b9aa5357d8d514d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"dde0d2c7fdfdde63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de0aa71757f8badf.json b/allure-report/data/test-cases/de0aa71757f8badf.json new file mode 100644 index 00000000000..c6ab9db1b7e --- /dev/null +++ b/allure-report/data/test-cases/de0aa71757f8badf.json @@ -0,0 +1 @@ +{"uid":"de0aa71757f8badf","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c94aec0d920b7f7d","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"32b8a7a180fb722f","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"de0aa71757f8badf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dcfefe9c10c1f5d2.json b/allure-report/data/test-cases/dea092a037f048cd.json similarity index 56% rename from allure-report/data/test-cases/dcfefe9c10c1f5d2.json rename to allure-report/data/test-cases/dea092a037f048cd.json index 92618deae91..2759f59d0ad 100644 --- a/allure-report/data/test-cases/dcfefe9c10c1f5d2.json +++ b/allure-report/data/test-cases/dea092a037f048cd.json @@ -1 +1 @@ -{"uid":"dcfefe9c10c1f5d2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b3328f837a21f35","name":"stdout","source":"3b3328f837a21f35.txt","type":"text/plain","size":104}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2d8966b9a0500aa","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"dcfefe9c10c1f5d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"dea092a037f048cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ca9750c0956602d","name":"stdout","source":"1ca9750c0956602d.txt","type":"text/plain","size":104}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"dea092a037f048cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6d51bdb700f78e3.json b/allure-report/data/test-cases/deff2de3f9ed88f5.json similarity index 63% rename from allure-report/data/test-cases/d6d51bdb700f78e3.json rename to allure-report/data/test-cases/deff2de3f9ed88f5.json index 026fac78f1c..50afc5f699d 100644 --- a/allure-report/data/test-cases/d6d51bdb700f78e3.json +++ b/allure-report/data/test-cases/deff2de3f9ed88f5.json @@ -1 +1 @@ -{"uid":"d6d51bdb700f78e3","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":"96bc84b88ae05ea5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"d6d51bdb700f78e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"deff2de3f9ed88f5","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":"deff2de3f9ed88f5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e051944b31d54c14.json b/allure-report/data/test-cases/e051944b31d54c14.json new file mode 100644 index 00000000000..86de1875ef4 --- /dev/null +++ b/allure-report/data/test-cases/e051944b31d54c14.json @@ -0,0 +1 @@ +{"uid":"e051944b31d54c14","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":1732428195544,"stop":1732428195544,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1732428195546,"stop":1732428195546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"82a681e3f0c8f54d","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"c8870275fadfceea","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"e051944b31d54c14.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e08b527d12d4e4df.json b/allure-report/data/test-cases/e08b527d12d4e4df.json new file mode 100644 index 00000000000..72c6c242635 --- /dev/null +++ b/allure-report/data/test-cases/e08b527d12d4e4df.json @@ -0,0 +1 @@ +{"uid":"e08b527d12d4e4df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732428195905,"stop":1732428195906,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732428195908,"stop":1732428195908,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Flow Control"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4a35a10fb92b5fdb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"12688af3a6e6b4d","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"70085274c959a3cb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"e08b527d12d4e4df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c454649db0c0ed2.json b/allure-report/data/test-cases/e0b6b39a4d4f9bf4.json similarity index 67% rename from allure-report/data/test-cases/1c454649db0c0ed2.json rename to allure-report/data/test-cases/e0b6b39a4d4f9bf4.json index 17dd77d9cc6..c32362dd485 100644 --- a/allure-report/data/test-cases/1c454649db0c0ed2.json +++ b/allure-report/data/test-cases/e0b6b39a4d4f9bf4.json @@ -1 +1 @@ -{"uid":"1c454649db0c0ed2","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"251428633abf607e","name":"stdout","source":"251428633abf607e.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"1c454649db0c0ed2.json","parameterValues":[]} \ No newline at end of file +{"uid":"e0b6b39a4d4f9bf4","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"888fe7b1e08f632a","name":"stdout","source":"888fe7b1e08f632a.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"e0b6b39a4d4f9bf4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0e034728609b0e2.json b/allure-report/data/test-cases/e0e034728609b0e2.json deleted file mode 100644 index 5907ee617b9..00000000000 --- a/allure-report/data/test-cases/e0e034728609b0e2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e0e034728609b0e2","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a724e02684b391","name":"stdout","source":"2a724e02684b391.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e0e034728609b0e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5f55a655c70213f.json b/allure-report/data/test-cases/e0f78ca1d7d1823c.json similarity index 67% rename from allure-report/data/test-cases/a5f55a655c70213f.json rename to allure-report/data/test-cases/e0f78ca1d7d1823c.json index a11748e0e17..1ee897a9244 100644 --- a/allure-report/data/test-cases/a5f55a655c70213f.json +++ b/allure-report/data/test-cases/e0f78ca1d7d1823c.json @@ -1 +1 @@ -{"uid":"a5f55a655c70213f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2738d7f17afba1b9","name":"stdout","source":"2738d7f17afba1b9.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"a5f55a655c70213f.json","parameterValues":[]} \ No newline at end of file +{"uid":"e0f78ca1d7d1823c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a193aa0d76e6e0f1","name":"stdout","source":"a193aa0d76e6e0f1.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"e0f78ca1d7d1823c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edde73c32cfd2214.json b/allure-report/data/test-cases/e17b710b1ca6cef6.json similarity index 66% rename from allure-report/data/test-cases/edde73c32cfd2214.json rename to allure-report/data/test-cases/e17b710b1ca6cef6.json index 1229f1c6483..278cdd5bda6 100644 --- a/allure-report/data/test-cases/edde73c32cfd2214.json +++ b/allure-report/data/test-cases/e17b710b1ca6cef6.json @@ -1 +1 @@ -{"uid":"edde73c32cfd2214","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b55ce2a23080a57e","name":"stdout","source":"b55ce2a23080a57e.txt","type":"text/plain","size":992}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"edde73c32cfd2214.json","parameterValues":[]} \ No newline at end of file +{"uid":"e17b710b1ca6cef6","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fc0a9047ac128608","name":"stdout","source":"fc0a9047ac128608.txt","type":"text/plain","size":992}],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"e17b710b1ca6cef6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de04793abb90de01.json b/allure-report/data/test-cases/e186c7a758de768a.json similarity index 67% rename from allure-report/data/test-cases/de04793abb90de01.json rename to allure-report/data/test-cases/e186c7a758de768a.json index bda0caf6277..23fd5a42a6b 100644 --- a/allure-report/data/test-cases/de04793abb90de01.json +++ b/allure-report/data/test-cases/e186c7a758de768a.json @@ -1 +1 @@ -{"uid":"de04793abb90de01","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1276b53d50f9117","name":"stdout","source":"f1276b53d50f9117.txt","type":"text/plain","size":428}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4979ee3063a87441","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3d3e842542b066f3","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"de04793abb90de01.json","parameterValues":[]} \ No newline at end of file +{"uid":"e186c7a758de768a","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"73d36ba66285cf8e","name":"stdout","source":"73d36ba66285cf8e.txt","type":"text/plain","size":428}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e186c7a758de768a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa5b03edd274b2cd.json b/allure-report/data/test-cases/e1fe0122d9c0870d.json similarity index 53% rename from allure-report/data/test-cases/fa5b03edd274b2cd.json rename to allure-report/data/test-cases/e1fe0122d9c0870d.json index 381eba9604e..73e44216cea 100644 --- a/allure-report/data/test-cases/fa5b03edd274b2cd.json +++ b/allure-report/data/test-cases/e1fe0122d9c0870d.json @@ -1 +1 @@ -{"uid":"fa5b03edd274b2cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"70b6cf48eb9066a3","name":"stdout","source":"70b6cf48eb9066a3.txt","type":"text/plain","size":148}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"df11ad8a9930a85d","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":[]},"source":"fa5b03edd274b2cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"e1fe0122d9c0870d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d7dcbe4dae3ba12","name":"stdout","source":"6d7dcbe4dae3ba12.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e1fe0122d9c0870d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a0dfae45b96d6a4.json b/allure-report/data/test-cases/e2326ee427488be9.json similarity index 60% rename from allure-report/data/test-cases/8a0dfae45b96d6a4.json rename to allure-report/data/test-cases/e2326ee427488be9.json index fabc09d0da3..ddfa8568031 100644 --- a/allure-report/data/test-cases/8a0dfae45b96d6a4.json +++ b/allure-report/data/test-cases/e2326ee427488be9.json @@ -1 +1 @@ -{"uid":"8a0dfae45b96d6a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8da729485857d70b","name":"stdout","source":"8da729485857d70b.txt","type":"text/plain","size":808}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5de6808258f0151f","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":[]},"source":"8a0dfae45b96d6a4.json","parameterValues":[]} \ No newline at end of file +{"uid":"e2326ee427488be9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7a383696eff0b379","name":"stdout","source":"7a383696eff0b379.txt","type":"text/plain","size":808}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e2326ee427488be9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e330dbdee7dc6874.json b/allure-report/data/test-cases/e330dbdee7dc6874.json new file mode 100644 index 00000000000..30e6321bbb9 --- /dev/null +++ b/allure-report/data/test-cases/e330dbdee7dc6874.json @@ -0,0 +1 @@ +{"uid":"e330dbdee7dc6874","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4a2cdaf17ee494c","name":"stdout","source":"4a2cdaf17ee494c.txt","type":"text/plain","size":288}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"e330dbdee7dc6874.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b82a842fdc9b867.json b/allure-report/data/test-cases/e378762a5dac9d1e.json similarity index 65% rename from allure-report/data/test-cases/9b82a842fdc9b867.json rename to allure-report/data/test-cases/e378762a5dac9d1e.json index bdf36adc94f..acd1933b005 100644 --- a/allure-report/data/test-cases/9b82a842fdc9b867.json +++ b/allure-report/data/test-cases/e378762a5dac9d1e.json @@ -1 +1 @@ -{"uid":"9b82a842fdc9b867","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d27167744db90954","name":"stdout","source":"d27167744db90954.txt","type":"text/plain","size":1013}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9a0c341753d9526","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4c3877c30e625752","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}}]},"tags":["PERFORMANCE","ALGORITHMS"]},"source":"9b82a842fdc9b867.json","parameterValues":[]} \ No newline at end of file +{"uid":"e378762a5dac9d1e","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a62856bc357d2685","name":"stdout","source":"a62856bc357d2685.txt","type":"text/plain","size":1013}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"e378762a5dac9d1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb5c8ea3b9796931.json b/allure-report/data/test-cases/e40b6e0fafdfb7a4.json similarity index 66% rename from allure-report/data/test-cases/cb5c8ea3b9796931.json rename to allure-report/data/test-cases/e40b6e0fafdfb7a4.json index e1ebdc73929..ed23663b25c 100644 --- a/allure-report/data/test-cases/cb5c8ea3b9796931.json +++ b/allure-report/data/test-cases/e40b6e0fafdfb7a4.json @@ -1 +1 @@ -{"uid":"cb5c8ea3b9796931","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30d5c7b600785dbe","name":"stdout","source":"30d5c7b600785dbe.txt","type":"text/plain","size":210}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb0af84ecb430495","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"cb5c8ea3b9796931.json","parameterValues":[]} \ No newline at end of file +{"uid":"e40b6e0fafdfb7a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e448201e6af0cd65","name":"stdout","source":"e448201e6af0cd65.txt","type":"text/plain","size":210}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"e40b6e0fafdfb7a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e99ff83f7419b047.json b/allure-report/data/test-cases/e427c3eece0f34c3.json similarity index 73% rename from allure-report/data/test-cases/e99ff83f7419b047.json rename to allure-report/data/test-cases/e427c3eece0f34c3.json index 125d722d2e1..b199d507a27 100644 --- a/allure-report/data/test-cases/e99ff83f7419b047.json +++ b/allure-report/data/test-cases/e427c3eece0f34c3.json @@ -1 +1 @@ -{"uid":"e99ff83f7419b047","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f200722e18d9d59a","name":"stdout","source":"f200722e18d9d59a.txt","type":"text/plain","size":23}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"e99ff83f7419b047.json","parameterValues":[]} \ No newline at end of file +{"uid":"e427c3eece0f34c3","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77c66732e5fdad66","name":"stdout","source":"77c66732e5fdad66.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"e427c3eece0f34c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96bc84b88ae05ea5.json b/allure-report/data/test-cases/e47ebce66bbb53cd.json similarity index 92% rename from allure-report/data/test-cases/96bc84b88ae05ea5.json rename to allure-report/data/test-cases/e47ebce66bbb53cd.json index 13c47eab118..716585226bc 100644 --- a/allure-report/data/test-cases/96bc84b88ae05ea5.json +++ b/allure-report/data/test-cases/e47ebce66bbb53cd.json @@ -1 +1 @@ -{"uid":"96bc84b88ae05ea5","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"96bc84b88ae05ea5.json","parameterValues":[]} \ No newline at end of file +{"uid":"e47ebce66bbb53cd","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"e47ebce66bbb53cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f534ec218cc4d08d.json b/allure-report/data/test-cases/e4f24bca4471f754.json similarity index 73% rename from allure-report/data/test-cases/f534ec218cc4d08d.json rename to allure-report/data/test-cases/e4f24bca4471f754.json index 897cef155ba..9df8ffd5415 100644 --- a/allure-report/data/test-cases/f534ec218cc4d08d.json +++ b/allure-report/data/test-cases/e4f24bca4471f754.json @@ -1 +1 @@ -{"uid":"f534ec218cc4d08d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a9f69c076428754","name":"stdout","source":"2a9f69c076428754.txt","type":"text/plain","size":1500}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f534ec218cc4d08d.json","parameterValues":[]} \ No newline at end of file +{"uid":"e4f24bca4471f754","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"37e73f373251accf","name":"stdout","source":"37e73f373251accf.txt","type":"text/plain","size":1500}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e4f24bca4471f754.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9d7d0d5afb8734c.json b/allure-report/data/test-cases/e57068c00956ea02.json similarity index 57% rename from allure-report/data/test-cases/b9d7d0d5afb8734c.json rename to allure-report/data/test-cases/e57068c00956ea02.json index 597b01b3ef1..7afdc94f03e 100644 --- a/allure-report/data/test-cases/b9d7d0d5afb8734c.json +++ b/allure-report/data/test-cases/e57068c00956ea02.json @@ -1 +1 @@ -{"uid":"b9d7d0d5afb8734c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7716f7bce2ac3794","name":"stdout","source":"7716f7bce2ac3794.txt","type":"text/plain","size":939}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c8be7042d182d7bb","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"b9d7d0d5afb8734c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e57068c00956ea02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3fdf05bb544c0162","name":"stdout","source":"3fdf05bb544c0162.txt","type":"text/plain","size":939}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"e57068c00956ea02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5b1f301926fe23.json b/allure-report/data/test-cases/e5b1f301926fe23.json new file mode 100644 index 00000000000..9aec610f98b --- /dev/null +++ b/allure-report/data/test-cases/e5b1f301926fe23.json @@ -0,0 +1 @@ +{"uid":"e5b1f301926fe23","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732428194170,"stop":1732428194170,"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', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"945a96aedc88e8fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"a3216b951d3fac8b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"e5b1f301926fe23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e69093187fd70d56.json b/allure-report/data/test-cases/e69093187fd70d56.json new file mode 100644 index 00000000000..4c1738a91d9 --- /dev/null +++ b/allure-report/data/test-cases/e69093187fd70d56.json @@ -0,0 +1 @@ +{"uid":"e69093187fd70d56","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f4fd5b9fa6dd3840","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"2f407878af91b1de","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"673ecd99dac0c86e","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e69093187fd70d56.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e71fa3f33c33eb50.json b/allure-report/data/test-cases/e71fa3f33c33eb50.json new file mode 100644 index 00000000000..08447aec7bc --- /dev/null +++ b/allure-report/data/test-cases/e71fa3f33c33eb50.json @@ -0,0 +1 @@ +{"uid":"e71fa3f33c33eb50","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"572eaf1e6f057287","name":"stdout","source":"572eaf1e6f057287.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e71fa3f33c33eb50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e78e70d10bce7cf5.json b/allure-report/data/test-cases/e78e70d10bce7cf5.json new file mode 100644 index 00000000000..fc3968a7b46 --- /dev/null +++ b/allure-report/data/test-cases/e78e70d10bce7cf5.json @@ -0,0 +1 @@ +{"uid":"e78e70d10bce7cf5","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732428193910,"stop":1732428193910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aeac31a6eff8ced3","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"bfc6af42137d4620","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"371888dd705cab28","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"e78e70d10bce7cf5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7c5e93321efe39.json b/allure-report/data/test-cases/e7c5e93321efe39.json deleted file mode 100644 index 62141965732..00000000000 --- a/allure-report/data/test-cases/e7c5e93321efe39.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e7c5e93321efe39","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7c5e93321efe39.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c707b9e0a465edac.json b/allure-report/data/test-cases/e7e28dd8f45c4374.json similarity index 74% rename from allure-report/data/test-cases/c707b9e0a465edac.json rename to allure-report/data/test-cases/e7e28dd8f45c4374.json index 7f791fddfc3..af609daa6da 100644 --- a/allure-report/data/test-cases/c707b9e0a465edac.json +++ b/allure-report/data/test-cases/e7e28dd8f45c4374.json @@ -1 +1 @@ -{"uid":"c707b9e0a465edac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4ee69d91518c273c","name":"stdout","source":"4ee69d91518c273c.txt","type":"text/plain","size":354}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c707b9e0a465edac.json","parameterValues":[]} \ No newline at end of file +{"uid":"e7e28dd8f45c4374","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b3d5e98a684cd625","name":"stdout","source":"b3d5e98a684cd625.txt","type":"text/plain","size":354}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"e7e28dd8f45c4374.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7eaed29fbceb75.json b/allure-report/data/test-cases/e7eaed29fbceb75.json deleted file mode 100644 index c42162e0135..00000000000 --- a/allure-report/data/test-cases/e7eaed29fbceb75.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e7eaed29fbceb75","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c013aca8f3f007b8","name":"stdout","source":"c013aca8f3f007b8.txt","type":"text/plain","size":37}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2d25cb87282ab722","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":[]},"source":"e7eaed29fbceb75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5274eeeb29391ba1.json b/allure-report/data/test-cases/e8b3178794c4402b.json similarity index 70% rename from allure-report/data/test-cases/5274eeeb29391ba1.json rename to allure-report/data/test-cases/e8b3178794c4402b.json index 22b8cac48c9..ca9a1d10850 100644 --- a/allure-report/data/test-cases/5274eeeb29391ba1.json +++ b/allure-report/data/test-cases/e8b3178794c4402b.json @@ -1 +1 @@ -{"uid":"5274eeeb29391ba1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f93ff3c1bc3ca41c","name":"stdout","source":"f93ff3c1bc3ca41c.txt","type":"text/plain","size":80}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5274eeeb29391ba1.json","parameterValues":[]} \ No newline at end of file +{"uid":"e8b3178794c4402b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d6941eaebe2a3ba3","name":"stdout","source":"d6941eaebe2a3ba3.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e8b3178794c4402b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c2776ae7e29336e9.json b/allure-report/data/test-cases/e8ed1f5e4a826f53.json similarity index 65% rename from allure-report/data/test-cases/c2776ae7e29336e9.json rename to allure-report/data/test-cases/e8ed1f5e4a826f53.json index 9b32e3ea56d..c59f8bbdd95 100644 --- a/allure-report/data/test-cases/c2776ae7e29336e9.json +++ b/allure-report/data/test-cases/e8ed1f5e4a826f53.json @@ -1 +1 @@ -{"uid":"c2776ae7e29336e9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b43989c1fe59fe7e","name":"stdout","source":"b43989c1fe59fe7e.txt","type":"text/plain","size":131}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c2776ae7e29336e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"e8ed1f5e4a826f53","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0030f8b38971a56","name":"stdout","source":"d0030f8b38971a56.txt","type":"text/plain","size":131}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e8ed1f5e4a826f53.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/270b5395a9143b9c.json b/allure-report/data/test-cases/e911f85aab34c4e6.json similarity index 71% rename from allure-report/data/test-cases/270b5395a9143b9c.json rename to allure-report/data/test-cases/e911f85aab34c4e6.json index 145be627c57..08e92cdf4b5 100644 --- a/allure-report/data/test-cases/270b5395a9143b9c.json +++ b/allure-report/data/test-cases/e911f85aab34c4e6.json @@ -1 +1 @@ -{"uid":"270b5395a9143b9c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f457bf5da9408839","name":"stdout","source":"f457bf5da9408839.txt","type":"text/plain","size":36}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"270b5395a9143b9c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e911f85aab34c4e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cfc199981b020b59","name":"stdout","source":"cfc199981b020b59.txt","type":"text/plain","size":36}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e911f85aab34c4e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19910c11538825d6.json b/allure-report/data/test-cases/e97ebddff1ce0b6f.json similarity index 55% rename from allure-report/data/test-cases/19910c11538825d6.json rename to allure-report/data/test-cases/e97ebddff1ce0b6f.json index ecb7f21cbf3..aba63f806f0 100644 --- a/allure-report/data/test-cases/19910c11538825d6.json +++ b/allure-report/data/test-cases/e97ebddff1ce0b6f.json @@ -1 +1 @@ -{"uid":"19910c11538825d6","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e5b745fd985bd7ab","name":"stdout","source":"e5b745fd985bd7ab.txt","type":"text/plain","size":1088}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b4ada0bf1630c0a","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"19910c11538825d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"e97ebddff1ce0b6f","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d574363acc62acc","name":"stdout","source":"5d574363acc62acc.txt","type":"text/plain","size":1088}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"e97ebddff1ce0b6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e99ca5757342b866.json b/allure-report/data/test-cases/e99ca5757342b866.json new file mode 100644 index 00000000000..0d95ae629e6 --- /dev/null +++ b/allure-report/data/test-cases/e99ca5757342b866.json @@ -0,0 +1 @@ +{"uid":"e99ca5757342b866","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732428194463,"stop":1732428194463,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732428194464,"stop":1732428194464,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e57068c00956ea02","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"90c86a448294d535","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b9d7d0d5afb8734c","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"e99ca5757342b866.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1ea0a3d5ef9530e.json b/allure-report/data/test-cases/ea156c7340f7150f.json similarity index 67% rename from allure-report/data/test-cases/c1ea0a3d5ef9530e.json rename to allure-report/data/test-cases/ea156c7340f7150f.json index 318c16da660..9eaa13e8f4e 100644 --- a/allure-report/data/test-cases/c1ea0a3d5ef9530e.json +++ b/allure-report/data/test-cases/ea156c7340f7150f.json @@ -1 +1 @@ -{"uid":"c1ea0a3d5ef9530e","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78984c686d4aec41","name":"stdout","source":"78984c686d4aec41.txt","type":"text/plain","size":75}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c1ea0a3d5ef9530e.json","parameterValues":[]} \ No newline at end of file +{"uid":"ea156c7340f7150f","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8324986f2adab578","name":"stdout","source":"8324986f2adab578.txt","type":"text/plain","size":75}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ea156c7340f7150f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea40d4fff96687ff.json b/allure-report/data/test-cases/ea40d4fff96687ff.json new file mode 100644 index 00000000000..f2f01e818d3 --- /dev/null +++ b/allure-report/data/test-cases/ea40d4fff96687ff.json @@ -0,0 +1 @@ +{"uid":"ea40d4fff96687ff","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":1732428196037,"stop":1732428196037,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732428196036,"stop":1732428196036,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732428196039,"stop":1732428196039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf7acd85eab5cf37","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"b7812824440b717e","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"92083f552ecb72c4","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ea40d4fff96687ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5f6e3f148925a4f.json b/allure-report/data/test-cases/eaaef6c05ba4cb98.json similarity index 71% rename from allure-report/data/test-cases/b5f6e3f148925a4f.json rename to allure-report/data/test-cases/eaaef6c05ba4cb98.json index 8a12dca3190..1fa88357ad1 100644 --- a/allure-report/data/test-cases/b5f6e3f148925a4f.json +++ b/allure-report/data/test-cases/eaaef6c05ba4cb98.json @@ -1 +1 @@ -{"uid":"b5f6e3f148925a4f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6af0cabbf264491","name":"stdout","source":"e6af0cabbf264491.txt","type":"text/plain","size":263}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"b5f6e3f148925a4f.json","parameterValues":[]} \ No newline at end of file +{"uid":"eaaef6c05ba4cb98","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c02985fbd2700004","name":"stdout","source":"c02985fbd2700004.txt","type":"text/plain","size":263}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"eaaef6c05ba4cb98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ae7d3fce45bf33fb.json b/allure-report/data/test-cases/ebad30d100ba0d2f.json similarity index 59% rename from allure-report/data/test-cases/ae7d3fce45bf33fb.json rename to allure-report/data/test-cases/ebad30d100ba0d2f.json index 8c287a51573..8f5487b0d62 100644 --- a/allure-report/data/test-cases/ae7d3fce45bf33fb.json +++ b/allure-report/data/test-cases/ebad30d100ba0d2f.json @@ -1 +1 @@ -{"uid":"ae7d3fce45bf33fb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3e4221321612bf1","name":"stdout","source":"e3e4221321612bf1.txt","type":"text/plain","size":40}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"462e434377d791a9","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"ae7d3fce45bf33fb.json","parameterValues":[]} \ No newline at end of file +{"uid":"ebad30d100ba0d2f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e599d37b78101a20","name":"stdout","source":"e599d37b78101a20.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ebad30d100ba0d2f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec3117c5f0ca458.json b/allure-report/data/test-cases/ec3117c5f0ca458.json new file mode 100644 index 00000000000..1626fbb024c --- /dev/null +++ b/allure-report/data/test-cases/ec3117c5f0ca458.json @@ -0,0 +1 @@ +{"uid":"ec3117c5f0ca458","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"95dd879b5dc89b5e","name":"stdout","source":"95dd879b5dc89b5e.txt","type":"text/plain","size":487}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ec3117c5f0ca458.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1efaf2ab015adde4.json b/allure-report/data/test-cases/ed0bae89bbbcdb66.json similarity index 59% rename from allure-report/data/test-cases/1efaf2ab015adde4.json rename to allure-report/data/test-cases/ed0bae89bbbcdb66.json index 95782a96472..fa773f2c8ca 100644 --- a/allure-report/data/test-cases/1efaf2ab015adde4.json +++ b/allure-report/data/test-cases/ed0bae89bbbcdb66.json @@ -1 +1 @@ -{"uid":"1efaf2ab015adde4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e9be09b414388f9","name":"stdout","source":"5e9be09b414388f9.txt","type":"text/plain","size":33}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab70ba446dcfc9e3","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"1efaf2ab015adde4.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed0bae89bbbcdb66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f14e07d274c2e01","name":"stdout","source":"3f14e07d274c2e01.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"ed0bae89bbbcdb66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1728ec761d912068.json b/allure-report/data/test-cases/ed566371d87065db.json similarity index 73% rename from allure-report/data/test-cases/1728ec761d912068.json rename to allure-report/data/test-cases/ed566371d87065db.json index 9497f693287..0d4f9c2904b 100644 --- a/allure-report/data/test-cases/1728ec761d912068.json +++ b/allure-report/data/test-cases/ed566371d87065db.json @@ -1 +1 @@ -{"uid":"1728ec761d912068","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e2411421a238415","name":"stdout","source":"8e2411421a238415.txt","type":"text/plain","size":639}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":9,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"1728ec761d912068.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed566371d87065db","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c520dd2a3bb6ed30","name":"stdout","source":"c520dd2a3bb6ed30.txt","type":"text/plain","size":639}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"ed566371d87065db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec6e703f7fb1f8f7.json b/allure-report/data/test-cases/edb4f03386c56c72.json similarity index 78% rename from allure-report/data/test-cases/ec6e703f7fb1f8f7.json rename to allure-report/data/test-cases/edb4f03386c56c72.json index 81fb93b8d4b..fd5b641750c 100644 --- a/allure-report/data/test-cases/ec6e703f7fb1f8f7.json +++ b/allure-report/data/test-cases/edb4f03386c56c72.json @@ -1 +1 @@ -{"uid":"ec6e703f7fb1f8f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f40a615942b6a99","name":"stdout","source":"8f40a615942b6a99.txt","type":"text/plain","size":314}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ec6e703f7fb1f8f7.json","parameterValues":[]} \ No newline at end of file +{"uid":"edb4f03386c56c72","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e89f9d3c4680bc47","name":"stdout","source":"e89f9d3c4680bc47.txt","type":"text/plain","size":314}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"edb4f03386c56c72.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ede6b0c38e1de853.json b/allure-report/data/test-cases/ede6b0c38e1de853.json new file mode 100644 index 00000000000..ca3ac6aa531 --- /dev/null +++ b/allure-report/data/test-cases/ede6b0c38e1de853.json @@ -0,0 +1 @@ +{"uid":"ede6b0c38e1de853","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"21cec5980af4ec14","name":"stdout","source":"21cec5980af4ec14.txt","type":"text/plain","size":1009}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"ede6b0c38e1de853.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee3eb820ef7c27.json b/allure-report/data/test-cases/ee3eb820ef7c27.json new file mode 100644 index 00000000000..82dac762440 --- /dev/null +++ b/allure-report/data/test-cases/ee3eb820ef7c27.json @@ -0,0 +1 @@ +{"uid":"ee3eb820ef7c27","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"19d9a21eca90a0a9","name":"stdout","source":"19d9a21eca90a0a9.txt","type":"text/plain","size":46}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ee3eb820ef7c27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa7d64e0658fe1a2.json b/allure-report/data/test-cases/eea4c328ad2eaeca.json similarity index 68% rename from allure-report/data/test-cases/fa7d64e0658fe1a2.json rename to allure-report/data/test-cases/eea4c328ad2eaeca.json index d4f4b70e79f..c8b592cabe4 100644 --- a/allure-report/data/test-cases/fa7d64e0658fe1a2.json +++ b/allure-report/data/test-cases/eea4c328ad2eaeca.json @@ -1 +1 @@ -{"uid":"fa7d64e0658fe1a2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"90811aa4d663c1f1","name":"stdout","source":"90811aa4d663c1f1.txt","type":"text/plain","size":124}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"fa7d64e0658fe1a2.json","parameterValues":[]} \ No newline at end of file +{"uid":"eea4c328ad2eaeca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fab77c156ff5bb2b","name":"stdout","source":"fab77c156ff5bb2b.txt","type":"text/plain","size":124}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"eea4c328ad2eaeca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6b00dc7a9142ab25.json b/allure-report/data/test-cases/eeed6f5fdf5c1d70.json similarity index 85% rename from allure-report/data/test-cases/6b00dc7a9142ab25.json rename to allure-report/data/test-cases/eeed6f5fdf5c1d70.json index c9a5b609276..a71dc481268 100644 --- a/allure-report/data/test-cases/6b00dc7a9142ab25.json +++ b/allure-report/data/test-cases/eeed6f5fdf5c1d70.json @@ -1 +1 @@ -{"uid":"6b00dc7a9142ab25","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30383d555cbdd5c6","name":"stdout","source":"30383d555cbdd5c6.txt","type":"text/plain","size":227}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6b00dc7a9142ab25.json","parameterValues":[]} \ No newline at end of file +{"uid":"eeed6f5fdf5c1d70","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef8a05f468c4eca0","name":"stdout","source":"ef8a05f468c4eca0.txt","type":"text/plain","size":227}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eeed6f5fdf5c1d70.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf3552eb00513a1a.json b/allure-report/data/test-cases/ef1a5cba4efb343a.json similarity index 64% rename from allure-report/data/test-cases/cf3552eb00513a1a.json rename to allure-report/data/test-cases/ef1a5cba4efb343a.json index 3fa123e6446..8e543b441a7 100644 --- a/allure-report/data/test-cases/cf3552eb00513a1a.json +++ b/allure-report/data/test-cases/ef1a5cba4efb343a.json @@ -1 +1 @@ -{"uid":"cf3552eb00513a1a","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":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":"f4ad45627654b5fc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"cf3552eb00513a1a.json","parameterValues":[]} \ No newline at end of file +{"uid":"ef1a5cba4efb343a","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":"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":"ef1a5cba4efb343a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a08dd22616aac704.json b/allure-report/data/test-cases/ef2d26c76c436892.json similarity index 94% rename from allure-report/data/test-cases/a08dd22616aac704.json rename to allure-report/data/test-cases/ef2d26c76c436892.json index 19b3d468c21..d9ec4c20211 100644 --- a/allure-report/data/test-cases/a08dd22616aac704.json +++ b/allure-report/data/test-cases/ef2d26c76c436892.json @@ -1 +1 @@ -{"uid":"a08dd22616aac704","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":"a08dd22616aac704.json","parameterValues":[]} \ No newline at end of file +{"uid":"ef2d26c76c436892","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":"ef2d26c76c436892.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef905ece7eeedc77.json b/allure-report/data/test-cases/ef905ece7eeedc77.json new file mode 100644 index 00000000000..34f36cf90bd --- /dev/null +++ b/allure-report/data/test-cases/ef905ece7eeedc77.json @@ -0,0 +1 @@ +{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732428195597,"stop":1732428195597,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732428195600,"stop":1732428195600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 kyu"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e1fe0122d9c0870d","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"95521fe2b6cd2563","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fa5b03edd274b2cd","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"ef905ece7eeedc77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9cc84b4c3c851a20.json b/allure-report/data/test-cases/f00b7b6604c5e7e4.json similarity index 71% rename from allure-report/data/test-cases/9cc84b4c3c851a20.json rename to allure-report/data/test-cases/f00b7b6604c5e7e4.json index cfbcacc584a..b3c66294f24 100644 --- a/allure-report/data/test-cases/9cc84b4c3c851a20.json +++ b/allure-report/data/test-cases/f00b7b6604c5e7e4.json @@ -1 +1 @@ -{"uid":"9cc84b4c3c851a20","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1386283fe3a63a2","name":"stdout","source":"f1386283fe3a63a2.txt","type":"text/plain","size":1380}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9cc84b4c3c851a20.json","parameterValues":[]} \ No newline at end of file +{"uid":"f00b7b6604c5e7e4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"30a819977a6f7bba","name":"stdout","source":"30a819977a6f7bba.txt","type":"text/plain","size":1380}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"f00b7b6604c5e7e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/afae2f3faef55f2b.json b/allure-report/data/test-cases/f040925d9e513197.json similarity index 66% rename from allure-report/data/test-cases/afae2f3faef55f2b.json rename to allure-report/data/test-cases/f040925d9e513197.json index 2e80ae8a14b..9ca15ccdab7 100644 --- a/allure-report/data/test-cases/afae2f3faef55f2b.json +++ b/allure-report/data/test-cases/f040925d9e513197.json @@ -1 +1 @@ -{"uid":"afae2f3faef55f2b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"54973229fb9bb954","name":"stdout","source":"54973229fb9bb954.txt","type":"text/plain","size":117}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"133341d40af1e905","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"627a7fd2fe38a284","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"afae2f3faef55f2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f040925d9e513197","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"443a1d8f74495540","name":"stdout","source":"443a1d8f74495540.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f040925d9e513197.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7c7f21adbc73706.json b/allure-report/data/test-cases/f0700b9c803f7cf9.json similarity index 53% rename from allure-report/data/test-cases/c7c7f21adbc73706.json rename to allure-report/data/test-cases/f0700b9c803f7cf9.json index 9df7f93c106..8ace67831c4 100644 --- a/allure-report/data/test-cases/c7c7f21adbc73706.json +++ b/allure-report/data/test-cases/f0700b9c803f7cf9.json @@ -1 +1 @@ -{"uid":"c7c7f21adbc73706","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"62a27b454b36563d","name":"stdout","source":"62a27b454b36563d.txt","type":"text/plain","size":3097}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":8,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"68c4a39d8a6017b","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"647dfe698e2a6fdb","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"c7c7f21adbc73706.json","parameterValues":[]} \ No newline at end of file +{"uid":"f0700b9c803f7cf9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5343662cb85dce05","name":"stdout","source":"5343662cb85dce05.txt","type":"text/plain","size":3097}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"f0700b9c803f7cf9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6bf4a932c1ec147.json b/allure-report/data/test-cases/f11813f80ada0713.json similarity index 60% rename from allure-report/data/test-cases/a6bf4a932c1ec147.json rename to allure-report/data/test-cases/f11813f80ada0713.json index afd4f2b1550..488b1750f95 100644 --- a/allure-report/data/test-cases/a6bf4a932c1ec147.json +++ b/allure-report/data/test-cases/f11813f80ada0713.json @@ -1 +1 @@ -{"uid":"a6bf4a932c1ec147","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"311e6a6343f5272c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"a6bf4a932c1ec147.json","parameterValues":[]} \ No newline at end of file +{"uid":"f11813f80ada0713","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"f11813f80ada0713.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1319e1ae94efdc02.json b/allure-report/data/test-cases/f12b5c3f29ddd74a.json similarity index 69% rename from allure-report/data/test-cases/1319e1ae94efdc02.json rename to allure-report/data/test-cases/f12b5c3f29ddd74a.json index 76915efc38e..2b7ee99d028 100644 --- a/allure-report/data/test-cases/1319e1ae94efdc02.json +++ b/allure-report/data/test-cases/f12b5c3f29ddd74a.json @@ -1 +1 @@ -{"uid":"1319e1ae94efdc02","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":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":"a08dd22616aac704","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":0,"unknown":0,"total":2},"items":[{"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":"1319e1ae94efdc02.json","parameterValues":[]} \ No newline at end of file +{"uid":"f12b5c3f29ddd74a","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":"f12b5c3f29ddd74a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7c2750d825fae93b.json b/allure-report/data/test-cases/f1a24ca70fa28a4b.json similarity index 61% rename from allure-report/data/test-cases/7c2750d825fae93b.json rename to allure-report/data/test-cases/f1a24ca70fa28a4b.json index 4f132457cc7..1cd6066a1ec 100644 --- a/allure-report/data/test-cases/7c2750d825fae93b.json +++ b/allure-report/data/test-cases/f1a24ca70fa28a4b.json @@ -1 +1 @@ -{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"951e88f3edc608ae","name":"stdout","source":"951e88f3edc608ae.txt","type":"text/plain","size":411}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":0,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"458ee4cae9834334","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"7c2750d825fae93b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1a24ca70fa28a4b","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1629f3862628691e","name":"stdout","source":"1629f3862628691e.txt","type":"text/plain","size":411}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"f1a24ca70fa28a4b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ceac2ca244e095b.json b/allure-report/data/test-cases/f1d39787f3312e8b.json similarity index 74% rename from allure-report/data/test-cases/3ceac2ca244e095b.json rename to allure-report/data/test-cases/f1d39787f3312e8b.json index a422b1bcb88..94bef9f5efb 100644 --- a/allure-report/data/test-cases/3ceac2ca244e095b.json +++ b/allure-report/data/test-cases/f1d39787f3312e8b.json @@ -1 +1 @@ -{"uid":"3ceac2ca244e095b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"3ceac2ca244e095b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1d39787f3312e8b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"f1d39787f3312e8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3baf14f5477154.json b/allure-report/data/test-cases/f3baf14f5477154.json new file mode 100644 index 00000000000..de01ac5f849 --- /dev/null +++ b/allure-report/data/test-cases/f3baf14f5477154.json @@ -0,0 +1 @@ +{"uid":"f3baf14f5477154","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4091cd5629c473be","name":"stdout","source":"4091cd5629c473be.txt","type":"text/plain","size":311}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"f3baf14f5477154.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76f8c586f8a804f0.json b/allure-report/data/test-cases/f449c3e5994db83f.json similarity index 59% rename from allure-report/data/test-cases/76f8c586f8a804f0.json rename to allure-report/data/test-cases/f449c3e5994db83f.json index 6fedfa6e789..ea1faa9c0ca 100644 --- a/allure-report/data/test-cases/76f8c586f8a804f0.json +++ b/allure-report/data/test-cases/f449c3e5994db83f.json @@ -1 +1 @@ -{"uid":"76f8c586f8a804f0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"868a8a8788cc39fc","name":"stdout","source":"868a8a8788cc39fc.txt","type":"text/plain","size":556}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c0de6c68e45d781","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"76f8c586f8a804f0.json","parameterValues":[]} \ No newline at end of file +{"uid":"f449c3e5994db83f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b102eb36f048a843","name":"stdout","source":"b102eb36f048a843.txt","type":"text/plain","size":556}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f449c3e5994db83f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/673ecd99dac0c86e.json b/allure-report/data/test-cases/f4fd5b9fa6dd3840.json similarity index 59% rename from allure-report/data/test-cases/673ecd99dac0c86e.json rename to allure-report/data/test-cases/f4fd5b9fa6dd3840.json index 3ff7e3c4a3a..598e46a678e 100644 --- a/allure-report/data/test-cases/673ecd99dac0c86e.json +++ b/allure-report/data/test-cases/f4fd5b9fa6dd3840.json @@ -1 +1 @@ -{"uid":"673ecd99dac0c86e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d22e154a5a83d80","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"673ecd99dac0c86e.json","parameterValues":[]} \ No newline at end of file +{"uid":"f4fd5b9fa6dd3840","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f4fd5b9fa6dd3840.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5177f712a8be6da.json b/allure-report/data/test-cases/f5177f712a8be6da.json new file mode 100644 index 00000000000..168bad7722d --- /dev/null +++ b/allure-report/data/test-cases/f5177f712a8be6da.json @@ -0,0 +1 @@ +{"uid":"f5177f712a8be6da","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":1732428195484,"stop":1732428195485,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9af06a5366a3631","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"ea156c7340f7150f","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d8d5d2ee94f4b051","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"f5177f712a8be6da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ecfcf126e0555bf0.json b/allure-report/data/test-cases/f52e2a19a3ffe707.json similarity index 62% rename from allure-report/data/test-cases/ecfcf126e0555bf0.json rename to allure-report/data/test-cases/f52e2a19a3ffe707.json index c9acf6315db..a3620f22d10 100644 --- a/allure-report/data/test-cases/ecfcf126e0555bf0.json +++ b/allure-report/data/test-cases/f52e2a19a3ffe707.json @@ -1 +1 @@ -{"uid":"ecfcf126e0555bf0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84cd17876f4516cf","name":"stdout","source":"84cd17876f4516cf.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ecfcf126e0555bf0.json","parameterValues":[]} \ No newline at end of file +{"uid":"f52e2a19a3ffe707","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"105658932c1d51ff","name":"stdout","source":"105658932c1d51ff.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f52e2a19a3ffe707.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/71d876f4d19ecd67.json b/allure-report/data/test-cases/f5819c4c1535edeb.json similarity index 59% rename from allure-report/data/test-cases/71d876f4d19ecd67.json rename to allure-report/data/test-cases/f5819c4c1535edeb.json index 6dc9c1bb8d9..7e758f1394f 100644 --- a/allure-report/data/test-cases/71d876f4d19ecd67.json +++ b/allure-report/data/test-cases/f5819c4c1535edeb.json @@ -1 +1 @@ -{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22862af9bcf091d4","name":"stdout","source":"22862af9bcf091d4.txt","type":"text/plain","size":233}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8c975897c57d974e","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"71d876f4d19ecd67.json","parameterValues":[]} \ No newline at end of file +{"uid":"f5819c4c1535edeb","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d7dd41e46efca9ee","name":"stdout","source":"d7dd41e46efca9ee.txt","type":"text/plain","size":233}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f5819c4c1535edeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89c677f035513057.json b/allure-report/data/test-cases/f59e61b023eebd26.json similarity index 72% rename from allure-report/data/test-cases/89c677f035513057.json rename to allure-report/data/test-cases/f59e61b023eebd26.json index ed88e749794..f1cc43181a0 100644 --- a/allure-report/data/test-cases/89c677f035513057.json +++ b/allure-report/data/test-cases/f59e61b023eebd26.json @@ -1 +1 @@ -{"uid":"89c677f035513057","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f29437b097cf88b9","name":"stdout","source":"f29437b097cf88b9.txt","type":"text/plain","size":135}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"89c677f035513057.json","parameterValues":[]} \ No newline at end of file +{"uid":"f59e61b023eebd26","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5f888d9c16f6ee3a","name":"stdout","source":"5f888d9c16f6ee3a.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f59e61b023eebd26.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5c85086c052dc96.json b/allure-report/data/test-cases/f5c85086c052dc96.json deleted file mode 100644 index 407fae90d11..00000000000 --- a/allure-report/data/test-cases/f5c85086c052dc96.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f5c85086c052dc96","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac514e66507a8175","name":"stdout","source":"ac514e66507a8175.txt","type":"text/plain","size":46}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f5c85086c052dc96.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/715edf62d220bc66.json b/allure-report/data/test-cases/f619b88d74382886.json similarity index 53% rename from allure-report/data/test-cases/715edf62d220bc66.json rename to allure-report/data/test-cases/f619b88d74382886.json index 7025b9e21cf..797ca937822 100644 --- a/allure-report/data/test-cases/715edf62d220bc66.json +++ b/allure-report/data/test-cases/f619b88d74382886.json @@ -1 +1 @@ -{"uid":"715edf62d220bc66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"56f4811665ed892a","name":"stdout","source":"56f4811665ed892a.txt","type":"text/plain","size":145}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":4,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ecfcf126e0555bf0","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":[]},"source":"715edf62d220bc66.json","parameterValues":[]} \ No newline at end of file +{"uid":"f619b88d74382886","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5ae4dee965d4aad","name":"stdout","source":"f5ae4dee965d4aad.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f619b88d74382886.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f80099cf6c294d2b.json b/allure-report/data/test-cases/f63a88604b1d062f.json similarity index 63% rename from allure-report/data/test-cases/f80099cf6c294d2b.json rename to allure-report/data/test-cases/f63a88604b1d062f.json index 51cfcc0a890..53e83c067f0 100644 --- a/allure-report/data/test-cases/f80099cf6c294d2b.json +++ b/allure-report/data/test-cases/f63a88604b1d062f.json @@ -1 +1 @@ -{"uid":"f80099cf6c294d2b","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f753b26a6d68bf5b","name":"stdout","source":"f753b26a6d68bf5b.txt","type":"text/plain","size":601}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a96041a690fcc058","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"f80099cf6c294d2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f63a88604b1d062f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8dfc11179dd2dd46","name":"stdout","source":"8dfc11179dd2dd46.txt","type":"text/plain","size":601}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"f63a88604b1d062f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4458ac38c6c9a97c.json b/allure-report/data/test-cases/f649ed8d3c87f7f8.json similarity index 72% rename from allure-report/data/test-cases/4458ac38c6c9a97c.json rename to allure-report/data/test-cases/f649ed8d3c87f7f8.json index 8e93c966d10..996b6393fa3 100644 --- a/allure-report/data/test-cases/4458ac38c6c9a97c.json +++ b/allure-report/data/test-cases/f649ed8d3c87f7f8.json @@ -1 +1 @@ -{"uid":"4458ac38c6c9a97c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4458ac38c6c9a97c.json","parameterValues":[]} \ No newline at end of file +{"uid":"f649ed8d3c87f7f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f649ed8d3c87f7f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/afce902b58f1520a.json b/allure-report/data/test-cases/f6fab27b83e3ab13.json similarity index 63% rename from allure-report/data/test-cases/afce902b58f1520a.json rename to allure-report/data/test-cases/f6fab27b83e3ab13.json index 219fc094f4a..7e3014ec55a 100644 --- a/allure-report/data/test-cases/afce902b58f1520a.json +++ b/allure-report/data/test-cases/f6fab27b83e3ab13.json @@ -1 +1 @@ -{"uid":"afce902b58f1520a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb7e53ff5946a92d","name":"stdout","source":"fb7e53ff5946a92d.txt","type":"text/plain","size":185}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83f04a2f029479df","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"afce902b58f1520a.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6fab27b83e3ab13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fe536534de68582a","name":"stdout","source":"fe536534de68582a.txt","type":"text/plain","size":185}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f6fab27b83e3ab13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f701011259e850f6.json b/allure-report/data/test-cases/f701011259e850f6.json new file mode 100644 index 00000000000..05d99323eda --- /dev/null +++ b/allure-report/data/test-cases/f701011259e850f6.json @@ -0,0 +1 @@ +{"uid":"f701011259e850f6","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"843ad9a1e8e9ca65","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"e8b3178794c4402b","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e10517b1ea4eb479","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"f701011259e850f6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f727d28e098b30b7.json b/allure-report/data/test-cases/f727d28e098b30b7.json new file mode 100644 index 00000000000..85eb85c3ab8 --- /dev/null +++ b/allure-report/data/test-cases/f727d28e098b30b7.json @@ -0,0 +1 @@ +{"uid":"f727d28e098b30b7","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"58e0261647deccd2","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"dc1f8d6367d3e66e","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f727d28e098b30b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d8518015a2b07b6.json b/allure-report/data/test-cases/f7656bca6b03073b.json similarity index 78% rename from allure-report/data/test-cases/9d8518015a2b07b6.json rename to allure-report/data/test-cases/f7656bca6b03073b.json index 0613a536463..4fd4d24167d 100644 --- a/allure-report/data/test-cases/9d8518015a2b07b6.json +++ b/allure-report/data/test-cases/f7656bca6b03073b.json @@ -1 +1 @@ -{"uid":"9d8518015a2b07b6","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6570d6c473e55397","name":"stdout","source":"6570d6c473e55397.txt","type":"text/plain","size":949}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":3,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"9d8518015a2b07b6.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7656bca6b03073b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d58a8a8ac8fa12e","name":"stdout","source":"2d58a8a8ac8fa12e.txt","type":"text/plain","size":949}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"f7656bca6b03073b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7d2073500029121.json b/allure-report/data/test-cases/f7d2073500029121.json new file mode 100644 index 00000000000..8a9ab39c9e9 --- /dev/null +++ b/allure-report/data/test-cases/f7d2073500029121.json @@ -0,0 +1 @@ +{"uid":"f7d2073500029121","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dea092a037f048cd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"d97402e929388a59","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"dcfefe9c10c1f5d2","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f7d2073500029121.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d35bd18d5e6ee6b.json b/allure-report/data/test-cases/f809105a155a665a.json similarity index 59% rename from allure-report/data/test-cases/2d35bd18d5e6ee6b.json rename to allure-report/data/test-cases/f809105a155a665a.json index 7fdd1d1b667..20294b745cb 100644 --- a/allure-report/data/test-cases/2d35bd18d5e6ee6b.json +++ b/allure-report/data/test-cases/f809105a155a665a.json @@ -1 +1 @@ -{"uid":"2d35bd18d5e6ee6b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d700c3a94542cad8","name":"stdout","source":"d700c3a94542cad8.txt","type":"text/plain","size":81}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"571c043aeb64d363","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":[]},"source":"2d35bd18d5e6ee6b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f809105a155a665a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"81997e6990138a02","name":"stdout","source":"81997e6990138a02.txt","type":"text/plain","size":81}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f809105a155a665a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f841b42c8d697c74.json b/allure-report/data/test-cases/f841b42c8d697c74.json new file mode 100644 index 00000000000..64a2ce1f8ee --- /dev/null +++ b/allure-report/data/test-cases/f841b42c8d697c74.json @@ -0,0 +1 @@ +{"uid":"f841b42c8d697c74","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"697db26b4ade1966","name":"stdout","source":"697db26b4ade1966.txt","type":"text/plain","size":202}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f841b42c8d697c74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f85ab0d3a8429db7.json b/allure-report/data/test-cases/f85ab0d3a8429db7.json new file mode 100644 index 00000000000..8747d0a04d4 --- /dev/null +++ b/allure-report/data/test-cases/f85ab0d3a8429db7.json @@ -0,0 +1 @@ +{"uid":"f85ab0d3a8429db7","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1732428193977,"stop":1732428193977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f0700b9c803f7cf9","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"be618dffc8aac711","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f85ab0d3a8429db7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8800adc39df0e11.json b/allure-report/data/test-cases/f8800adc39df0e11.json deleted file mode 100644 index a71d94d1a86..00000000000 --- a/allure-report/data/test-cases/f8800adc39df0e11.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f8800adc39df0e11","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"187a7b2783fd6cca","name":"stdout","source":"187a7b2783fd6cca.txt","type":"text/plain","size":54}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":2,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f8800adc39df0e11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25be1d40d6774add.json b/allure-report/data/test-cases/f8d7fd46b923bc4f.json similarity index 66% rename from allure-report/data/test-cases/25be1d40d6774add.json rename to allure-report/data/test-cases/f8d7fd46b923bc4f.json index 6dc91fdcbcf..339e72de6f4 100644 --- a/allure-report/data/test-cases/25be1d40d6774add.json +++ b/allure-report/data/test-cases/f8d7fd46b923bc4f.json @@ -1 +1 @@ -{"uid":"25be1d40d6774add","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8036761eae2b6cd","name":"stdout","source":"b8036761eae2b6cd.txt","type":"text/plain","size":196}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"25be1d40d6774add.json","parameterValues":[]} \ No newline at end of file +{"uid":"f8d7fd46b923bc4f","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"403983f6828d59c5","name":"stdout","source":"403983f6828d59c5.txt","type":"text/plain","size":196}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"f8d7fd46b923bc4f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0862b5213f7938f.json b/allure-report/data/test-cases/f9099a5358c90330.json similarity index 60% rename from allure-report/data/test-cases/d0862b5213f7938f.json rename to allure-report/data/test-cases/f9099a5358c90330.json index 5e4ea8d309a..21d5fabc7b7 100644 --- a/allure-report/data/test-cases/d0862b5213f7938f.json +++ b/allure-report/data/test-cases/f9099a5358c90330.json @@ -1 +1 @@ -{"uid":"d0862b5213f7938f","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4faf6d536992c308","name":"stdout","source":"4faf6d536992c308.txt","type":"text/plain","size":46}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5c85086c052dc96","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d0862b5213f7938f.json","parameterValues":[]} \ No newline at end of file +{"uid":"f9099a5358c90330","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a3957b3e858fa9c0","name":"stdout","source":"a3957b3e858fa9c0.txt","type":"text/plain","size":46}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f9099a5358c90330.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f91e38b8c375d31c.json b/allure-report/data/test-cases/f91e38b8c375d31c.json new file mode 100644 index 00000000000..cfbfc2de1a0 --- /dev/null +++ b/allure-report/data/test-cases/f91e38b8c375d31c.json @@ -0,0 +1 @@ +{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1732428195581,"stop":1732428195581,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b5bdabfec79d6cf","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"85284c487c263073","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f91e38b8c375d31c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df49eaeb4ea4daa.json b/allure-report/data/test-cases/f97aaf8957be0a89.json similarity index 66% rename from allure-report/data/test-cases/4df49eaeb4ea4daa.json rename to allure-report/data/test-cases/f97aaf8957be0a89.json index 47234275d4f..a068bc7fe67 100644 --- a/allure-report/data/test-cases/4df49eaeb4ea4daa.json +++ b/allure-report/data/test-cases/f97aaf8957be0a89.json @@ -1 +1 @@ -{"uid":"4df49eaeb4ea4daa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e19fa4140ca62ee4","name":"stdout","source":"e19fa4140ca62ee4.txt","type":"text/plain","size":232}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":5,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"4df49eaeb4ea4daa.json","parameterValues":[]} \ No newline at end of file +{"uid":"f97aaf8957be0a89","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"36e52eee6ec1696f","name":"stdout","source":"36e52eee6ec1696f.txt","type":"text/plain","size":232}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"f97aaf8957be0a89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b01fd4e8d095b60f.json b/allure-report/data/test-cases/f9c645ee48c4616c.json similarity index 62% rename from allure-report/data/test-cases/b01fd4e8d095b60f.json rename to allure-report/data/test-cases/f9c645ee48c4616c.json index 0f68ba6852c..047ff2a8305 100644 --- a/allure-report/data/test-cases/b01fd4e8d095b60f.json +++ b/allure-report/data/test-cases/f9c645ee48c4616c.json @@ -1 +1 @@ -{"uid":"b01fd4e8d095b60f","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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5bb3529b62d1131a","name":"stdout","source":"5bb3529b62d1131a.txt","type":"text/plain","size":565}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":10,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"922eccc2ca8ed714","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"b01fd4e8d095b60f.json","parameterValues":[]} \ No newline at end of file +{"uid":"f9c645ee48c4616c","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e1a39cd8bddfb25","name":"stdout","source":"1e1a39cd8bddfb25.txt","type":"text/plain","size":565}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"f9c645ee48c4616c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f9df20ba5fd613f1.json b/allure-report/data/test-cases/f9df20ba5fd613f1.json new file mode 100644 index 00000000000..0c7368481c9 --- /dev/null +++ b/allure-report/data/test-cases/f9df20ba5fd613f1.json @@ -0,0 +1 @@ +{"uid":"f9df20ba5fd613f1","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b650a2b5eace42e","name":"stdout","source":"b650a2b5eace42e.txt","type":"text/plain","size":992}],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"f9df20ba5fd613f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb237eeb673713e3.json b/allure-report/data/test-cases/fb237eeb673713e3.json new file mode 100644 index 00000000000..70f95f806e9 --- /dev/null +++ b/allure-report/data/test-cases/fb237eeb673713e3.json @@ -0,0 +1 @@ +{"uid":"fb237eeb673713e3","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1732428195708,"stop":1732428195708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bdb6e0764902ab4","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"8a9b52813983814b","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d7357eaa8c15ec47","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"fb237eeb673713e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbd37fe4a302b125.json b/allure-report/data/test-cases/fbd37fe4a302b125.json new file mode 100644 index 00000000000..9ceb4f32708 --- /dev/null +++ b/allure-report/data/test-cases/fbd37fe4a302b125.json @@ -0,0 +1 @@ +{"uid":"fbd37fe4a302b125","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732428195732,"stop":1732428195732,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195734,"stop":1732428195734,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5a497340f38e6588","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"684d4d6fbb32213a","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fbd37fe4a302b125.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14d00f76e0b4f9e4.json b/allure-report/data/test-cases/fbd7acf611333772.json similarity index 57% rename from allure-report/data/test-cases/14d00f76e0b4f9e4.json rename to allure-report/data/test-cases/fbd7acf611333772.json index 0c46f03d915..5a03da16096 100644 --- a/allure-report/data/test-cases/14d00f76e0b4f9e4.json +++ b/allure-report/data/test-cases/fbd7acf611333772.json @@ -1 +1 @@ -{"uid":"14d00f76e0b4f9e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2077f18aded36c8a","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"14d00f76e0b4f9e4.json","parameterValues":[]} \ No newline at end of file +{"uid":"fbd7acf611333772","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"fbd7acf611333772.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc455123cb448d3e.json b/allure-report/data/test-cases/fc455123cb448d3e.json new file mode 100644 index 00000000000..a83849c024d --- /dev/null +++ b/allure-report/data/test-cases/fc455123cb448d3e.json @@ -0,0 +1 @@ +{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732428195634,"stop":1732428195634,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1732428195635,"stop":1732428195635,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fd184f18d9496f9","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"b921129ad79b857f","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fc455123cb448d3e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fda81d5edcbfeda5.json b/allure-report/data/test-cases/fda81d5edcbfeda5.json new file mode 100644 index 00000000000..790ecced21f --- /dev/null +++ b/allure-report/data/test-cases/fda81d5edcbfeda5.json @@ -0,0 +1 @@ +{"uid":"fda81d5edcbfeda5","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1732428196158,"stop":1732428196158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f14a6ccebe34b08","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"920950efadf9f044","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fda81d5edcbfeda5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fdff4b964fae0427.json b/allure-report/data/test-cases/fdff4b964fae0427.json deleted file mode 100644 index 3c7dd41679a..00000000000 --- a/allure-report/data/test-cases/fdff4b964fae0427.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fdff4b964fae0427","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e6997f43eb72f85","name":"stdout","source":"8e6997f43eb72f85.txt","type":"text/plain","size":82}],"parameters":[],"attachmentStep":false,"hasContent":true,"stepsCount":1,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"attachmentStep":false,"hasContent":false,"stepsCount":0,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a2fbd8f640be4431","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"fdff4b964fae0427.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff776776c9a8991f.json b/allure-report/data/test-cases/ff776776c9a8991f.json new file mode 100644 index 00000000000..ea7b5ca6db9 --- /dev/null +++ b/allure-report/data/test-cases/ff776776c9a8991f.json @@ -0,0 +1 @@ +{"uid":"ff776776c9a8991f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732428196064,"stop":1732428196064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c072892b1c739356","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"83b7eb2988572ef6","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e1471afe863c97c8","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"ff776776c9a8991f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffa13a74003ae703.json b/allure-report/data/test-cases/ffa13a74003ae703.json new file mode 100644 index 00000000000..568caedab99 --- /dev/null +++ b/allure-report/data/test-cases/ffa13a74003ae703.json @@ -0,0 +1 @@ +{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732428196053,"stop":1732428196053,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"V A P O R C O D E"},{"name":"tag","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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"518cb319be0d6f5c","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"81c03b59fa01f666","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"5a22d7a269c3ca06","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"ffa13a74003ae703.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/timeline.json b/allure-report/data/timeline.json index 3a93c7dd672..a8f252a6ce0 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":"17192-MainThread","children":[{"name":"Find the int that appears an odd number of times","uid":"ac127c4c71bf788d","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_starting_position_from_positives","uid":"91ed862dacbec840","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":"String with no alphabet chars","uid":"ab4f4753656b93ab","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 Sudoku class","uid":"a97caba53074497b","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":"test_random","uid":"6c1504a4fcfadf69","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":"Negative test cases for is_prime function testing","uid":"e99ff83f7419b047","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 shark function (positive)","uid":"1467bda4d9665eda","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 hoop_count function (positive test case)","uid":"f6e7e7d9161dd5e2","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":"Non is expected","uid":"3e354a7b4ef8aa9f","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 Encoding functionality","uid":"761811e55728ed74","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 invite_more_women function (positive)","uid":"b48a50dffbb61197","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":"'multiply' function verification with empty list","uid":"be5b8c63ffdd840d","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 is_prime function","uid":"11ee5493e293e3de","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":"Testing permute_a_palindrome (empty string)","uid":"12ce3777e030dbb5","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 permute_a_palindrome (negative)","uid":"59ff5157ed7e9ae","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 largestPower function","uid":"f8800adc39df0e11","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 or b is negative","uid":"e2d8966b9a0500aa","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 agents_cleanup function","uid":"a51a382d521d00cc","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 'save' function: positive","uid":"17f807e7e2cad355","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 is_palindrome function","uid":"1c0de6c68e45d781","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 duplicate_encode function","uid":"5740cd94d023a2bf","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":"Two smallest numbers in the start of the list","uid":"59ab6d9b07f441c0","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 list_squared function","uid":"2512233f29820ca9","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 top_3_words function","uid":"68c4a39d8a6017b","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":"Test that no_space function removes the spaces","uid":"b1ce4d34a0cdd5eb","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 period_is_late function (positive)","uid":"4041d4d534df9c91","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 'count_sheeps' function: empty list","uid":"19146436627ee869","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":"test_solution_medium","uid":"6e940c353ac4ade9","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 period_is_late function (negative)","uid":"e7f4165c790464aa","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 the 'sort_array' function","uid":"11b4e7794c00f220","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 check_root function","uid":"23b523b580f78123","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 easy_diagonal function","uid":"431c7499a8a042ca","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_ips_between","uid":"9a93b35004a87c6a","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":"move function tests","uid":"c2776ae7e29336e9","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 'letter_count' function","uid":"78957f7729625c40","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 'DefaultList' class: append","uid":"f90c5e53432ea6c2","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 growing_plant function","uid":"6b00dc7a9142ab25","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":"Zero","uid":"17d8ff61005bb0bc","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 compute_ranks","uid":"dbd8c0e7d9b1bcd0","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 'DefaultList' class: pop","uid":"ef7cb2e79441187e","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 'DefaultList' class: __getitem__","uid":"cc5bed1d964110c","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 'snail' function","uid":"7b9876690035f17","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":"Wolf in the middle of the queue","uid":"458ee4cae9834334","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":"Should return 'Fail!'s","uid":"f5f1282b0eb8a484","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":"Testing 'count_sheeps' function: positive flow","uid":"3f3af6e95d4ded07","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 decipher_this function","uid":"edde73c32cfd2214","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 array_diff function","uid":"6fce95111dc1cc14","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 'solution' function","uid":"613579922cc04140","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":"Verify that greet function returns the proper message","uid":"1c454649db0c0ed2","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 the 'group_cities' function","uid":"b0ff51cf7a3c2781","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":"Square numbers (positive)","uid":"2077f18aded36c8a","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 'factorial' function","uid":"7028cdfd068e31be","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 shark function (negative)","uid":"4783529dae6eb3af","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 to_alternating_case function","uid":"6566b62febd2f997","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 sum_for_list function","uid":"aacbcab78401e86c","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 valid_parentheses function","uid":"8271021679b0cc06","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 gap function","uid":"fcd8cc6f9f4777c4","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 'sum_triangular_numbers' with positive numbers","uid":"3fab8ff7d7139e20","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 'mix' function","uid":"55d1d73293e16236","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":"You are given two angles -> find the 3rd.","uid":"e0e034728609b0e2","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":"'multiply' function verification: lists with multiple digits","uid":"bf3022b66d91aba7","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":"Wolf at the end of the queue","uid":"87be1c294a496f4a","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 set_alarm function","uid":"9b0990a97652b0f6","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 'has_subpattern' (part 3) function","uid":"d62d5681db1186b9","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 the 'find_missing_number' function","uid":"41ca81ef54591f7f","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 likes function","uid":"ddf52bfae3cd34f4","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 check_for_factor function: positive flow","uid":"83f04a2f029479df","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 odd_row function","uid":"e9a0c341753d9526","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 the 'unique_in_order' function","uid":"1e52950a202e2f6f","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 'sum_triangular_numbers' with big number as an input","uid":"2d25cb87282ab722","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":"'fix_the_meerkat function function verification","uid":"95172229a5a9ad6","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":"All chars are in mixed case","uid":"743e871493ba28b4","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":"AND logical operator","uid":"b8a68af9dbc0f892","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 first_non_repeated function with various inputs","uid":"5de6808258f0151f","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 zeros function","uid":"ddd327d6f403c655","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 count_letters_and_digits function","uid":"90a114379d845ff7","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 calc_combinations_per_row function","uid":"db267da7b8a1b004","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 Warrior class >>> tom","uid":"cabe377ec9af3c98","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":"STesting enough function","uid":"31f6e05cb2bf8e17","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":"test_smallest","uid":"20308d2341c6b899","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 'order' function","uid":"f7ad7c048e8324d3","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 'save' function: negative","uid":"1b8dc3acaf7dd027","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 men_from_boys function","uid":"5baa430d724786c4","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":"powers function should return an array of unique numbers","uid":"5781ea9a417efe48","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 domain_name function","uid":"b5f6e3f148925a4f","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 toJadenCase function (negative)","uid":"536deebe5c2f9229","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":"test_permutations","uid":"a08dd22616aac704","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 make_class function","uid":"e21dc9fd5c9ffdad","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":"get_size function tests","uid":"4df49eaeb4ea4daa","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":"Positive test cases for gen_primes function testing","uid":"204251456ada0752","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 'DefaultList' class: extend","uid":"a6a0450be3f30fe6","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 stock_list function","uid":"abba91be3722688b","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":"String with alphabet chars only","uid":"270b5395a9143b9c","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 toJadenCase function (positive)","uid":"fa7d64e0658fe1a2","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 epidemic function","uid":"d757011cc42c205e","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 move_zeros function","uid":"c8be7042d182d7bb","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 easy_line function exception message","uid":"ca423ea5ac901436","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 shark function (positive)","uid":"d5eb9c17e95fe424","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 'sum_triangular_numbers' with zero","uid":"266702a52edb0749","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 solution function","uid":"a96041a690fcc058","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 solve function","uid":"650faaf602cc8f99","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 take function","uid":"808471d4cfeae814","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":"test_starting_position_from_negatives","uid":"47a613697aa0c71f","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 calc function","uid":"a90fdb1fb3683308","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 Warrior class >>> bruce_lee","uid":"72010ab4f2692ae4","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":"Testing two_decimal_places function","uid":"5fa0c36654622313","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 'solution' function","uid":"776765eba79884f4","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 spiralize function","uid":"1e3570598c901af4","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":"test_solution_big","uid":"311e6a6343f5272c","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":"goals function verification","uid":"4d0514d90adb5feb","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":"'multiply' function verification","uid":"ab70ba446dcfc9e3","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":"Negative test cases for gen_primes function testing","uid":"6af8fedb1f0ef3c6","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":"All chars are in upper case","uid":"5321a1bb93b59f1e","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 'DefaultList' class: remove","uid":"a4b7cb6ba7726224","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 next_smaller function","uid":"922eccc2ca8ed714","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 'count_sheeps' function: bad input","uid":"500c62fc4806377c","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 swap_values function","uid":"a5f55a655c70213f","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":"Testing advice function","uid":"ce00ffd36d904f61","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":"a and b are equal","uid":"80dd204b4961834","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 password function","uid":"5320007ca0191a21","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":"Negative numbers","uid":"6d22e154a5a83d80","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 to_table function","uid":"6a793815cad01bd2","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 zero_fuel function","uid":"133341d40af1e905","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 binary_to_string function","uid":"9cc84b4c3c851a20","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":"String with mixed type of chars","uid":"cdb95614a08f7813","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_for_factor function: positive flow","uid":"bfd2093ec920e131","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":"test_solution_basic","uid":"96bc84b88ae05ea5","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":"a an b are positive numbers","uid":"63bb569f11b7f542","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 flatten function","uid":"fabe21d8eab469bd","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 monkey_count function","uid":"ec6e703f7fb1f8f7","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 done_or_not function","uid":"252f381a068f762f","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 create_city_map function","uid":"8f884e4fa29bb7d4","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":"e7c5e93321efe39","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_of_intervals function","uid":"1728ec761d912068","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 'count_sheeps' function: mixed list","uid":"b4fb6cdf4d1895f5","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 row_sum_odd_numbers function","uid":"a50af3a4d2a7afb5","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 'vaporcode' function","uid":"a4f7c6dc4c7e84","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 pig_it function","uid":"f81d7a6e8f8b1259","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 'generate_hashtag' function","uid":"13e77cd2d97ddcd8","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":"Non square numbers (negative)","uid":"4458ac38c6c9a97c","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 litres function with various test inputs","uid":"8c975897c57d974e","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":"'multiply' function verification with random list","uid":"5d080f15b08c0b4f","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 done_or_not function","uid":"895ce9b19a080b91","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_empty","uid":"8d05bbd591902299","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 next_bigger function","uid":"9035abe5e1151932","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 alphanumeric function","uid":"8baea38a8fa67e7e","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 dirReduc function","uid":"aefb4681bbbff0c9","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":"Should return 'Publish!'","uid":"11b0f4fd11e05b10","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 encrypt_this function","uid":"9b4ada0bf1630c0a","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":"test_sequence","uid":"1edd352618c6aa2b","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 string_to_array function","uid":"8af4ebd0495f0e70","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":"7637c123d5cf58af","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":"Wolf at the beginning of the queue","uid":"a1571db34190da47","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 checkchoose function","uid":"4979ee3063a87441","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 format_duration","uid":"d5804044d1767680","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":"XOR logical operator","uid":"6e797d850b813669","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 tickets function","uid":"d880bf6ff390f682","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 'is_isogram' function","uid":"1dfdd5c5551a6420","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":"Should return 'I smell a series!'","uid":"82e3ff5b5bd4ac62","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 two_decimal_places function","uid":"89c677f035513057","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 increment_string function","uid":"7511d5ab976a748a","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 make_upper_case function","uid":"462e434377d791a9","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 'has_subpattern' (part 2) function","uid":"f534ec218cc4d08d","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":"Square numbers (positive)","uid":"85cc51a7df0f4a6c","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":"Negative non consecutive number should be returned","uid":"f5c85086c052dc96","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 hoop_count function (negative test case)","uid":"f3ffd9201b6a1ce3","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 all_fibonacci_numbers function","uid":"c707b9e0a465edac","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 'numericals' function","uid":"a93bd997ced3859a","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":"30fbee992b0ca53e","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 calculate function","uid":"91e2410535ccc997","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 anagrams function","uid":"4f85a4b1698202d","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 Calculator class","uid":"95e612b16602c749","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 century function","uid":"9f6955234023cbe8","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":"Testing 'thirt' function","uid":"2cfa19c331ab824b","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 calculate_damage function","uid":"dcb40cbe5ee38417","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":"Positive test cases for is_prime function testing","uid":"a381266642fdbdd2","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":"Non consecutive number should be returned","uid":"108c2723377a98c0","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 'greek_comparator' function","uid":"b0f9b8de2eb00fed","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":"test_josephus_survivor","uid":"bc5cb7d257f882a1","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 square numbers (negative)","uid":"af543ced061d8858","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 length function where head = None","uid":"1b018537831100fb","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 'feast' function","uid":"a54c934450b934d7","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 'sum_triangular_numbers' with negative numbers","uid":"b3223ce64ed8bee2","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 string_transformer function","uid":"39ba63dd42027b29","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":"test_line_positive","uid":"f4ad45627654b5fc","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 first_non_repeating_letter function","uid":"103efa7b767774fa","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":"Large lists","uid":"ed37a80783d347db","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":"String with no duplicate chars","uid":"a9f33e581ec48813","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 invite_more_women function (negative)","uid":"571c043aeb64d363","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 'solution' function","uid":"1bbe34ba42279f71","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 the 'pyramid' function","uid":"df11ad8a9930a85d","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 easy_line function","uid":"f8cc7e1ba1a4852f","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 permute_a_palindrome (positive)","uid":"ecfcf126e0555bf0","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 'DefaultList' class: insert","uid":"474af6c568bdf675","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 alphabet_war function","uid":"2348115dae27ed81","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 validSolution","uid":"9d8518015a2b07b6","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":"test_line_negative","uid":"22fcf1edf8ebf197","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 done_or_not function","uid":"e41551e078ed42ea","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 digital_root function","uid":"398c0a461bbe2313","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 share_price function","uid":"23cc390416e7aa52","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 Potion class","uid":"5e4b4c0a3aeae99e","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 Decoding functionality","uid":"58ec93395b112a8f","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":"OR logical operator","uid":"6d9270ca3330737a","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 with one char only","uid":"84aa3b23910872ae","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":"Test with regular string","uid":"5274eeeb29391ba1","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 max_multiple function","uid":"587ebae959bb9619","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 number_of_sigfigs function","uid":"f72e37459a6b99ff","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 'has_subpattern' (part 1) function","uid":"a70604cd2465a183","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 remove_char function","uid":"25be1d40d6774add","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 length function","uid":"535d557e01267994","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 make_readable function","uid":"bb0af84ecb430495","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":"Testing Battle method","uid":"3ceac2ca244e095b","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":"String with no duplicate chars","uid":"c1ea0a3d5ef9530e","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":"a and b are equal","uid":"a2fbd8f640be4431","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":"Test with empty string","uid":"e722b9059cce92a0","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 validate_battlefield function","uid":"b99ca9a8ecf19524","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 'summation' function","uid":"bd5d964c0a6197cf","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":"All chars are in lower case","uid":"df0cebb647c4d6ba","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":"test_basic","uid":"280a7287fd39d5a9","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":"String alphabet chars and spaces","uid":"10b94291a50321ec","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 check_exam function","uid":"6022cdc8b5145e28","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"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"},{"name":"9168-MainThread","children":[{"name":"Testing advice function","uid":"9cb8749ab5d5d5c7","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 'save' function: positive","uid":"6a1d96979e635e7f","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 men_from_boys function","uid":"e5ae32dea8d8e5c3","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":"goals function verification","uid":"d1a80d9f422182d","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 'count_sheeps' function: positive flow","uid":"a10d36c92cf89a63","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 'greek_comparator' function","uid":"327fbdea3443aca5","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 binary_to_string function","uid":"2b38fe6b8a5a46","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":"Testing the 'group_cities' function","uid":"8655885cb5db7a58","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":"'multiply' function verification: lists with multiple digits","uid":"1f991ba5bad9e7e9","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":"All chars are in mixed case","uid":"a70ffb4d0a92e5c8","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":"test_triangle","uid":"7e0d94f0ee4e397d","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 hoop_count function (positive test case)","uid":"139c28ca38674b14","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":"Non is expected","uid":"1c922c5f58027b49","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":"Should return 'I smell a series!'","uid":"92297f3cbdd8ad78","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 password function","uid":"9519f48ec729ba4c","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 Decoding functionality","uid":"d9a6d590487a20fd","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 'save' function: negative","uid":"1ece392343bb9b12","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 permute_a_palindrome (positive)","uid":"715edf62d220bc66","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 share_price function","uid":"884c8d1f852cc3dc","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":"Non square numbers (negative)","uid":"e1471afe863c97c8","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 'solution' function","uid":"d1aabae67bc18ba0","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 growing_plant function","uid":"e738d6d09d0feb9e","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 'DefaultList' class: insert","uid":"2c78d4954ac14f9e","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 flatten function","uid":"57efbea0ccf3907a","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":"String alphabet chars and spaces","uid":"b8b1a20b1ac22e64","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":"test_josephus_survivor","uid":"84fd4c67efee5295","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":"Wolf in the middle of the queue","uid":"7c2750d825fae93b","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":"Testing 'factorial' function","uid":"33b81b348332f41f","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":"test_solution_big","uid":"a6bf4a932c1ec147","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 set_alarm function","uid":"ed5fbc4b14885f68","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 alphabet_war function","uid":"ace382695affabdf","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":"Negative non consecutive number should be returned","uid":"d0862b5213f7938f","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 toJadenCase function (negative)","uid":"a60fe7d0456e1873","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":"Testing century function","uid":"d3037fd25424c6f3","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 dirReduc function","uid":"5e6aa533c6c0fafa","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 domain_name function","uid":"627da61e5891aa44","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":"Square numbers (positive)","uid":"14d00f76e0b4f9e4","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_solution_medium","uid":"87acfa055dcbe26a","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":"All chars are in upper case","uid":"d5ae1235bc27ccba","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 'count_sheeps' function: mixed list","uid":"504baf7c4d256536","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":"String with alphabet chars only","uid":"e9aaea22e808b4eb","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 check_exam function","uid":"da49bdf1737798b8","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":"Testing 'solution' function","uid":"f711bbcd16ab2119","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":"Non consecutive number should be returned","uid":"d6e6e46de805754f","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 max_multiple function","uid":"b96004f0b179053d","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 check_root function","uid":"fbd4191028146e80","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":"Testing make_readable function","uid":"cb5c8ea3b9796931","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 epidemic function","uid":"c1e0648976f6a694","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":"Testing permute_a_palindrome (negative)","uid":"9098856200f13690","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 'count_sheeps' function: bad input","uid":"7c3ec7eab2e0be6d","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":"Positive test cases for is_prime function testing","uid":"1b3bd0a5ea1aa072","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 calculate_damage function","uid":"90a24ba96aea3cfc","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":"test_permutations","uid":"1319e1ae94efdc02","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 done_or_not function","uid":"2965d2d3db0ea08e","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 encrypt_this function","uid":"19910c11538825d6","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":"XOR logical operator","uid":"7ac9af93b3d2f297","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":"Testing done_or_not function","uid":"6cad203fab564c60","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_solution_basic","uid":"d6d51bdb700f78e3","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 tickets function","uid":"dee0416f79d22a0d","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 format_duration","uid":"47f8df09a84d8337","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":"Testing array_diff function","uid":"dc29e000a4adcd25","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":"Testing remove_char function","uid":"f50d911c93ffbcb0","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 Warrior class >>> tom","uid":"675849fee1009391","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 Sudoku class","uid":"7f90afc62f8400f4","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":"'multiply' function verification","uid":"1efaf2ab015adde4","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":"Testing 'DefaultList' class: remove","uid":"51a9aec46de8d878","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 period_is_late function (negative)","uid":"c35da98b55fb5e6b","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 'thirt' function","uid":"585949d19b46a5d2","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":"Verify that greet function returns the proper message","uid":"1188dda60b67ea96","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 number_of_sigfigs function","uid":"d7c1fb6f236110ca","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 the 'solution' function","uid":"84f17449b7b13451","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 'sum_triangular_numbers' with positive numbers","uid":"49aa5cc4276ca55b","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":"Testing compute_ranks","uid":"38639b46d1e381a9","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 validate_battlefield function","uid":"5dad026541a05e65","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":"move function tests","uid":"9c38060cc376f686","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 validSolution","uid":"d6e4ebd44034ff08","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 all_fibonacci_numbers function","uid":"d4c41912963969d7","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":"test_ips_between","uid":"1dee8c06fd165199","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":"String with no alphabet chars","uid":"337891d8027fbc46","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 check_for_factor function: positive flow","uid":"afce902b58f1520a","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 agents_cleanup function","uid":"645c6c05562d2f01","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 the 'unique_in_order' function","uid":"15008ede7bd87a18","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 next_bigger function","uid":"7b2352a8e3675c67","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 'DefaultList' class: append","uid":"b5a45493f51c1d67","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":"Testing likes function","uid":"d7357eaa8c15ec47","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 'count_sheeps' function: empty list","uid":"e0d5281d75a0b4df","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":"a and b are equal","uid":"fdff4b964fae0427","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 Battle method","uid":"d558fd9b3bcee4ae","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 'has_subpattern' (part 1) function","uid":"98200e3d5ae32ca","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":"test_sequence","uid":"b72d4e8ad3288d1b","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":"Testing alphanumeric function","uid":"42bb8c96d4cb1bcf","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":"All chars are in lower case","uid":"fc2c5a5df6e26162","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 'longest_repetition' function","uid":"d57f06aa2f911f40","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":"Negative test cases for gen_primes function testing","uid":"69f65011f131e2b6","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 length function","uid":"eb3e9f6b3780b454","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 'generate_hashtag' function","uid":"14d24a2946d66b00","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 stock_list function","uid":"1719ddf6913445c8","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":"test_line_positive","uid":"cf3552eb00513a1a","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 'feast' function","uid":"54942c51ed88331c","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 shark function (positive)","uid":"972d0622d29729c4","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 'sum_triangular_numbers' with big number as an input","uid":"e7eaed29fbceb75","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":"String with no duplicate chars","uid":"d8d5d2ee94f4b051","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":"'multiply' function verification with random list","uid":"c799982c38b97fcc","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":"String with mixed type of chars","uid":"d946600dafcc1f6d","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 zeros function","uid":"369d691aa58bf89d","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 'DefaultList' class: extend","uid":"826a0963540c6e75","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":"Square numbers (positive)","uid":"95011c2c3c205658","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 calc function","uid":"693c5b2693478689","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 hoop_count function (negative test case)","uid":"1073662453fffbc9","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 to_table function","uid":"e6a3da330525d2f4","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 digital_root function","uid":"debf2b82465b0240","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":"Testing 'DefaultList' class: pop","uid":"99a050e28b9f808c","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":"Should return 'Publish!'","uid":"d5a389260d41a743","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 Warrior class >>> bruce_lee","uid":"37b95a78feb35857","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 'has_subpattern' (part 3) function","uid":"59863a86bad45fb3","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 easy_diagonal function","uid":"964ad50f448ed64d","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":"Zero","uid":"7a1019ba1beb3118","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 string_transformer function","uid":"704aacac2db91585","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 gap function","uid":"e0851c0ba53ec6a9","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 is_palindrome function","uid":"76f8c586f8a804f0","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 solve function","uid":"41efd0d786aed73","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":"test_smallest","uid":"c37dfc82a096ec09","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 period_is_late function (positive)","uid":"64a44b1c9018ad85","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 string_to_array function","uid":"52715db4a1ce5955","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":"Testing the 'sort_array' function","uid":"31cd5c9e8017f83c","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 duplicate_encode function","uid":"2b7f0b03733442e8","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":"Testing create_city_map function","uid":"614b9e2de4457676","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 is_prime function","uid":"ed30e8563a89229a","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":"Testing make_class function","uid":"dead64fe3d4f484d","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":"Testing easy_line function exception message","uid":"df0c490941a6877a","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_combinations_per_row function","uid":"5a941d3b90762a67","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":"Testing count_letters_and_digits function","uid":"a492d74df14be54a","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 sum_for_list function","uid":"82619e3fb0e84d4d","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":"Testing two_decimal_places function","uid":"90eee3ddc83b1454","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":"Testing 'sum_triangular_numbers' with zero","uid":"39c69409f76377e7","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 top_3_words function","uid":"c7c7f21adbc73706","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":"OR logical operator","uid":"4fb2a019463cdbdf","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":"STesting enough function","uid":"af580569ddf3e366","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 'solution' function","uid":"2b9309fd398214a5","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":"Negative numbers","uid":"673ecd99dac0c86e","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 'order' function","uid":"ee325afc05dcb3e8","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":"Testing valid_parentheses function","uid":"b29b4bc1c1fe7917","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 Encoding functionality","uid":"8a76fd0002a5824c","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 shark function (negative)","uid":"cde5d1b46b10d7ac","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"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"ef7e94367cfcafa4","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 calculate function","uid":"490cf50ddd5cff83","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":"AND logical operator","uid":"52187b3daff300ae","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":"Negative test cases for is_prime function testing","uid":"b97e3a9bf54f17f3","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 'mix' function","uid":"2460353038ce1955","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":"'fix_the_meerkat function function verification","uid":"deed80da6e08bd69","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":"Should return 'Fail!'s","uid":"ede582dcc2b34bf3","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 odd_row function","uid":"9b82a842fdc9b867","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":"Testing move_zeros function","uid":"b9d7d0d5afb8734c","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":"Testing list_squared function","uid":"7fd5632b0213855d","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 next_smaller function","uid":"b01fd4e8d095b60f","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 Potion class","uid":"cdfe495bc85470d2","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 'sum_triangular_numbers' with negative numbers","uid":"9393151991be7f33","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":"Testing monkey_count function","uid":"5b9aa5357d8d514d","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":"test_line_negative","uid":"88c7e92ae3f035ea","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":"Find the int that appears an odd number of times","uid":"6ab6caccad49b468","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":"'multiply' function verification with one element list","uid":"c1d9afec6278b1a8","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 an b are positive numbers","uid":"76548c4669002681","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":"Two smallest numbers in the start of the list","uid":"92083f552ecb72c4","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 pig_it function","uid":"11b652a05502070f","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":"Testing 'snail' function","uid":"95ddc175910ea52","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 permute_a_palindrome (empty string)","uid":"51971bf7ad109ed2","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 toJadenCase function (positive)","uid":"f1ac1e81621379df","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 the 'find_missing_number' function","uid":"3cf8d83dbb2d66b5","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 the 'pyramid' function","uid":"fa5b03edd274b2cd","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 spiralize function","uid":"b1d54b76165521a0","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 largestPower function","uid":"70085274c959a3cb","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 sum_of_intervals function","uid":"e03974f538ea8ee6","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":"get_size function tests","uid":"9525e56c1666fc0f","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":"Test with empty string","uid":"56a28cc490d83b65","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":"Test that no_space function removes the spaces","uid":"130e4ffebf4e47af","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":"Testing increment_string function","uid":"148a22b7e430194f","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 make_upper_case function","uid":"ae7d3fce45bf33fb","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 checkchoose function","uid":"de04793abb90de01","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":"Non square numbers (negative)","uid":"e6d62aae7d602336","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 first_non_repeated function with various inputs","uid":"8a0dfae45b96d6a4","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":"test_solution_empty","uid":"39245131d70863d6","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 decipher_this function","uid":"3a2392b112899a67","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 swap_values function","uid":"874b39a75ad8fa3b","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 solution function","uid":"f80099cf6c294d2b","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 take function","uid":"9f7fc4731241a976","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 length function where head = None","uid":"b1c2f2381b1441f6","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":"test_starting_position_from_negatives","uid":"801bdccb4e1aa824","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":"Test with regular string","uid":"e10517b1ea4eb479","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":"Wolf at the beginning of the queue","uid":"bfe92f9ff640a644","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 one char only","uid":"2acb560e089cb7c8","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 done_or_not function","uid":"98d0f495e6dcba7e","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":"You are given two angles -> find the 3rd.","uid":"6ea719d6e8a376fb","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 two_decimal_places function","uid":"996165a0ada95681","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 'summation' function","uid":"b6301a55868859d","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":"powers function should return an array of unique numbers","uid":"4ecd1e835300dbcf","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 'has_subpattern' (part 2) function","uid":"9e5b993187ac8b27","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":"Positive test cases for gen_primes function testing","uid":"35cf25b9e515e00d","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 first_non_repeating_letter function","uid":"fd4d83368b6d5d5e","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":"a or b is negative","uid":"dcfefe9c10c1f5d2","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 litres function with various test inputs","uid":"71d876f4d19ecd67","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 to_alternating_case function","uid":"8451096f3488e82","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 'numericals' function","uid":"42383b817b641e4e","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":"Large lists","uid":"83105e24306c53ac","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 easy_line function","uid":"2aa3a63b6fff605a","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 anagrams function","uid":"31b67858aaa81503","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 row_sum_odd_numbers function","uid":"9a325845218dd6ae","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 'is_isogram' function","uid":"cd862d92408a60a2","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":"Testing 'letter_count' function","uid":"616180d049b16d1d","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":"Testing invite_more_women function (negative)","uid":"2d35bd18d5e6ee6b","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":"26cf86ca9eda4b5","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 Calculator class","uid":"371888dd705cab28","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":"String with no duplicate chars","uid":"d9458c8615b9e985","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":"Wolf at the end of the queue","uid":"8427b8f31ff35d6c","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 invite_more_women function (positive)","uid":"fd395297ed368b03","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_starting_position_from_positives","uid":"ee4f0501c1152713","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":"a and b are equal","uid":"449aa1de0e8221e9","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 'vaporcode' function","uid":"5a22d7a269c3ca06","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 zero_fuel function","uid":"afae2f3faef55f2b","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":"Testing check_for_factor function: positive flow","uid":"6d9afe9fda19581e","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":"'multiply' function verification with empty list","uid":"52dd320a58bdb229","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":[]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file +{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"DESKTOP-I2O0REL","children":[{"name":"9168-MainThread","children":[{"name":"Testing check_exam function","uid":"65cad3353d8c115b","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":"Test with empty string","uid":"937c9b1e748aadb0","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 'sum_triangular_numbers' with positive numbers","uid":"90184d6eca761182","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 'vaporcode' function","uid":"518cb319be0d6f5c","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 litres function with various test inputs","uid":"f5819c4c1535edeb","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":"Wolf at the beginning of the queue","uid":"6a59d6609523c5a8","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 'count_sheeps' function: positive flow","uid":"53ac096f64d86d36","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":"Testing 'factorial' function","uid":"891203fa0698ca9","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":"Test with regular string","uid":"843ad9a1e8e9ca65","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 array_diff function","uid":"4ea31191e1f5ab3b","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":"All chars are in upper case","uid":"4aa405db56695158","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":"Testing easy_line function","uid":"38365b0f6f350ca5","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 done_or_not function","uid":"7362d176d35d3813","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":"Testing duplicate_encode function","uid":"6feb6674f3a0e85e","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 'sum_triangular_numbers' with big number as an input","uid":"b4706ff9d2a2958c","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 domain_name function","uid":"90d2f619b6b55a93","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 calc function","uid":"5961f436380e11d2","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":"All chars are in lower case","uid":"844543e89f44e3d5","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 make_readable function","uid":"e40b6e0fafdfb7a4","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 swap_values function","uid":"96df3e350e2ba16f","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":"Testing easy_diagonal function","uid":"b1f2cc8e1be032d","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 'thirt' function","uid":"772c9d6fdd465a8a","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":"Should return 'I smell a series!'","uid":"8e1e999ab6569b87","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":"Negative non consecutive number should be returned","uid":"f9099a5358c90330","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":"863d9e582b6f3de4","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":"Find the int that appears an odd number of times","uid":"883f1439af050615","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":"All chars are in mixed case","uid":"7b13f1197b1367b6","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 hoop_count function (negative test case)","uid":"6309fbba516976ae","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 'feast' function","uid":"51e0b16785f0d461","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 tickets function","uid":"8173581ebbb7cc32","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 'DefaultList' class: __getitem__","uid":"12ac45051c49f01a","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 make_upper_case function","uid":"ebad30d100ba0d2f","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 calc_combinations_per_row function","uid":"c94aec0d920b7f7d","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":"Testing checkchoose function","uid":"e186c7a758de768a","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":"Non square numbers (negative)","uid":"c072892b1c739356","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":"OR logical operator","uid":"c4a8605181ed2d7","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 alphabet_war function","uid":"13ca3a7cd8b0e3af","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":"test_solution_medium","uid":"2f520e29faf9fa03","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 permute_a_palindrome (empty string)","uid":"648462a68a83b780","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":"'multiply' function verification","uid":"ed0bae89bbbcdb66","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":"Testing Battle method","uid":"ddd928ac3a4fb635","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 invite_more_women function (positive)","uid":"7718694e0e976912","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 dirReduc function","uid":"15dbab6d625f40d3","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 row_sum_odd_numbers function","uid":"302b8c55161cc361","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 'count_sheeps' function: mixed list","uid":"19b258c1195772c5","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 digital_root function","uid":"8cf44bb18023836b","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":"'fix_the_meerkat function function verification","uid":"73db1f36a5925004","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 increment_string function","uid":"8e7bc3e134c68e92","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":"Positive test cases for is_prime function testing","uid":"3cb4765f4f4fe8e7","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 'letter_count' function","uid":"25a09c2c9e3c88b1","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":"test_sequence","uid":"c6eafeb1b2d72c83","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 'save' function: positive","uid":"e71fa3f33c33eb50","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":"Square numbers (positive)","uid":"c7a63127b0ec26d9","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 gap function","uid":"4433323b946a1c32","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 string_to_array function","uid":"e330dbdee7dc6874","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 the 'unique_in_order' function","uid":"f841b42c8d697c74","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 share_price function","uid":"cd9da9d797a3c2ab","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 'solution' function","uid":"307a8cec4e791e32","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":"powers function should return an array of unique numbers","uid":"26764a4bab46b2bf","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":"Testing 'order' function","uid":"9cbf1053b771d679","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 done_or_not function","uid":"997065a61e801d4c","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":"Testing 'save' function: negative","uid":"88a73a4735cff92e","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 done_or_not function","uid":"33fff97900a7d8bc","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 likes function","uid":"1bdb6e0764902ab4","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":"Should return 'Publish!'","uid":"9ac6d40036941792","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_permutations","uid":"f12b5c3f29ddd74a","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 validSolution","uid":"5319ceacad5a43bc","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":"a and b are equal","uid":"409a2a4f316497c6","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":"You are given two angles -> find the 3rd.","uid":"74c746ac3dc42135","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":"Non square numbers (negative)","uid":"4bb422e9ca9901c8","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 sum_of_intervals function","uid":"39376204dc517df6","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":"test_triangle","uid":"1a1c24c0cb125454","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 'DefaultList' class: extend","uid":"c89e6a91bc0b9e52","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 next_bigger function","uid":"827104e07f2ca2d0","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":"Testing all_fibonacci_numbers function","uid":"3fd800b8d3602698","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 'count_sheeps' function: bad input","uid":"108dd2ab8a90859d","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":"Wolf at the end of the queue","uid":"12432569c8b8923f","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 'generate_hashtag' function","uid":"3ec407d8e8742f0d","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":"Negative test cases for is_prime function testing","uid":"c8c44a676a12b5c6","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 binary_to_string function","uid":"8949506fce676285","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":"Testing 'DefaultList' class: append","uid":"9c43e0c7813423da","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 largestPower function","uid":"4a35a10fb92b5fdb","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 max_multiple function","uid":"9b613507776a0871","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":"Testing the 'find_missing_number' function","uid":"82a681e3f0c8f54d","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":"Should return 'Fail!'s","uid":"a3b2f77071e9a780","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 sum_for_list function","uid":"7e5150fbd4a33237","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":"Negative test cases for gen_primes function testing","uid":"8beabd2469a668","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":"Positive test cases for gen_primes function testing","uid":"99ca7a938f9d4989","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":"Testing set_alarm function","uid":"933ecb6fe52a564f","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":"Testing 'sum_triangular_numbers' with negative numbers","uid":"59e6c1fe5b50c363","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":"'multiply' function verification: lists with multiple digits","uid":"4e32d03efab2941f","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 with one element list","uid":"c919701b7942665","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 'numericals' function","uid":"1da47ab927a8de42","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 anagrams function","uid":"702c9f7aebde64af","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":"Testing 'is_isogram' function","uid":"428efcfcd43d2531","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":"Test with one char only","uid":"5998f9acb6d6dab8","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 take function","uid":"1f14a6ccebe34b08","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":"Testing spiralize function","uid":"73a56012085cbb67","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":"test_line_negative","uid":"445f2e59cb6a4191","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":"Zero","uid":"90a10a824ed5b372","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 permute_a_palindrome (positive)","uid":"f619b88d74382886","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":"test_solution_big","uid":"f11813f80ada0713","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_smallest","uid":"2b5d1a28c2e7859f","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 check_for_factor function: positive flow","uid":"f6fab27b83e3ab13","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 count_letters_and_digits function","uid":"a076808e43574371","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 length function","uid":"5fda510dc29832db","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":"test_josephus_survivor","uid":"55e4a84277d15d0d","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 monkey_count function","uid":"ab40fd2a8eefa024","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 shark function (positive)","uid":"6d7f7d9659ba7dd5","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":"test_line_positive","uid":"ef1a5cba4efb343a","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":"Two smallest numbers in the start of the list","uid":"bf7acd85eab5cf37","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 invite_more_women function (negative)","uid":"f809105a155a665a","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 first_non_repeated function with various inputs","uid":"e2326ee427488be9","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 Sudoku class","uid":"b9ab4feb44c59984","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":"String with mixed type of chars","uid":"7be232a1c65ba711","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 string_transformer function","uid":"c4d384465e183d6","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":"Testing the 'pyramid' function","uid":"e1fe0122d9c0870d","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":"Testing two_decimal_places function","uid":"3d6e5f0961d8c06a","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 'solution' function","uid":"161e5fcc0f247","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 alphanumeric function","uid":"7e357cecc68f801","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":"Testing password function","uid":"b325ede7f1ceeec3","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 number_of_sigfigs function","uid":"85b55023f525bac2","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":"'multiply' function verification with empty list","uid":"d4bd80ae04896a86","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 pig_it function","uid":"20ae87fc51fb9338","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 check_for_factor function: positive flow","uid":"711e095503a0cf45","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 'greek_comparator' function","uid":"a0d455d6bf21528b","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 that no_space function removes the spaces","uid":"ba7aa507beaa1547","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":"Testing 'has_subpattern' (part 1) function","uid":"3c17e0f5363e3016","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 'count_sheeps' function: empty list","uid":"51c4ad89c4a768de","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 Warrior class >>> tom","uid":"9c2fc5bac7417dd0","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 shark function (negative)","uid":"c74e320818fb9682","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: pop","uid":"a2cc2be21cb9d7cd","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":"String with no duplicate chars","uid":"d9af06a5366a3631","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 first_non_repeating_letter function","uid":"cf437ca3dc1624b1","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":"test_ips_between","uid":"945a96aedc88e8fe","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 the 'sort_array' function","uid":"5fd184f18d9496f9","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":"String with alphabet chars only","uid":"8d5ed16bbc896a22","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":"47068bee5b06a234","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":"test_starting_position_from_negatives","uid":"3c0afff932465669","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 shark function (positive)","uid":"48abcc67292a5aa2","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":"Wolf in the middle of the queue","uid":"f1a24ca70fa28a4b","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 decipher_this function","uid":"f9df20ba5fd613f1","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 to_table function","uid":"7d905be84b5c0b77","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":"Non is expected","uid":"3f94de18ab2e95fb","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 list_squared function","uid":"7da87d8449dbfb8b","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":"goals function verification","uid":"660684096c18d05d","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 the 'group_cities' function","uid":"4f1172fa5620cc18","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 'longest_repetition' function","uid":"ad8dd1da3b7d646d","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":"AND logical operator","uid":"32703c37c2f9cfbd","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":"Square numbers (positive)","uid":"fbd7acf611333772","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 compute_ranks","uid":"72a7c9402c254937","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 easy_line function exception message","uid":"2dc119e05306bc09","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 toJadenCase function (positive)","uid":"c1b76ff1cacf5544","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":"a and b are equal","uid":"656eaa4febf44ace","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":"Testing growing_plant function","uid":"9b1bc0b9a480db3e","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 'DefaultList' class: insert","uid":"9f02852e3aa10b6d","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 Warrior class >>> bruce_lee","uid":"1938e37bf1525466","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":"Testing zero_fuel function","uid":"f040925d9e513197","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":"Testing check_root function","uid":"1a8ee4991fa5fcbc","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 Decoding functionality","uid":"bce82edab468d2f2","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 Encoding functionality","uid":"97ad1cd914697b30","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 the 'solution' function","uid":"6fbd93f1e3abe9a5","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 stock_list function","uid":"602b6b1c829f1e7f","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":"move function tests","uid":"342dee44f5f15fde","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 advice function","uid":"58e0261647deccd2","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 permute_a_palindrome (negative)","uid":"500ac2fecd2b527c","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 is_prime function","uid":"5795c1991578aaeb","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":"Verify that greet function returns the proper message","uid":"21f553aee2e150e3","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 agents_cleanup function","uid":"8dcfddf689f44d1d","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 men_from_boys function","uid":"d4d9b4f519ec1ce3","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":"a or b is negative","uid":"dea092a037f048cd","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 'mix' function","uid":"c5f3069d223f82c6","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":"Testing Calculator class","uid":"aeac31a6eff8ced3","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 calculate_damage function","uid":"2b5bdabfec79d6cf","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":"Non consecutive number should be returned","uid":"566a56003ac2e703","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 valid_parentheses function","uid":"b169e974f5edace2","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":"String with no duplicate chars","uid":"4544ac5de6415953","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":"31050b40d7651adc","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 'has_subpattern' (part 2) function","uid":"64c2df72a296b62e","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 top_3_words function","uid":"f0700b9c803f7cf9","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":"'multiply' function verification with random list","uid":"813aa9dc885c2882","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 remove_char function","uid":"6399c372aa4005f1","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":"XOR logical operator","uid":"462780a7368c9ffd","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 length function where head = None","uid":"9557455e27a468ef","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 validate_battlefield function","uid":"49355004a4136993","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":"Testing solution function","uid":"f63a88604b1d062f","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":"Testing flatten function","uid":"76dad62f743b3603","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 is_palindrome function","uid":"f449c3e5994db83f","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":"test_solution_empty","uid":"7131237025069abe","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 to_alternating_case function","uid":"d38d4627913b0040","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 period_is_late function (negative)","uid":"1506cf302ecd21f1","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 century function","uid":"3d4f8cb2de087cf","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":"Testing 'summation' function","uid":"c0f4e1faa852c595","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":"get_size function tests","uid":"8e1e8d12e75298b","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 create_city_map function","uid":"5b153d545c48d264","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 next_smaller function","uid":"f9c645ee48c4616c","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 encrypt_this function","uid":"e97ebddff1ce0b6f","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 hoop_count function (positive test case)","uid":"65a370055ee8e2b9","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":"test_solution_basic","uid":"deff2de3f9ed88f5","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":"String with no alphabet chars","uid":"b67b48d7bd01382a","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 two_decimal_places function","uid":"10105e91d30d0887","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 move_zeros function","uid":"e57068c00956ea02","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 zeros function","uid":"f3baf14f5477154","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":"Testing 'snail' function","uid":"ede6b0c38e1de853","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 'has_subpattern' (part 3) function","uid":"af31da4a2f7e0b3c","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"]},{"name":"Testing solve function","uid":"6030df3a53146090","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":"STesting enough function","uid":"3a0034b3910c9f0c","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":"a an b are positive numbers","uid":"84d177b8ff2c367d","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":"Testing period_is_late function (positive)","uid":"4dc4de0a74fe7f66","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 'sum_triangular_numbers' with zero","uid":"3b580876a88f5382","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 odd_row function","uid":"e378762a5dac9d1e","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":"Testing calculate function","uid":"5a497340f38e6588","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":"Large lists","uid":"416790ca79634ed0","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":"Testing epidemic function","uid":"b890a6fea083097f","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 'DefaultList' class: remove","uid":"5519a1e9b61f2ca3","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":"Negative numbers","uid":"f4fd5b9fa6dd3840","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 make_class function","uid":"d12fb82b623fefb9","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 toJadenCase function (negative)","uid":"c0d55ad9fdfb0f8a","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":"test_starting_position_from_positives","uid":"85df8de56a96ab7c","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":"String alphabet chars and spaces","uid":"c4304a318e243c50","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":[]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"12720-MainThread","children":[{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Walker class - position property from negative grids","uid":"a76c277b6c0b5940","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"70963d87150b1b7f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","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 max_multiple function","uid":"649728966aa92b06","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Wolf at the end of the queue","uid":"8c8d43e9d38910da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing two_decimal_places function","uid":"784b6f629ce5c547","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing Calculator class","uid":"e78e70d10bce7cf5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing period_is_late function (negative)","uid":"345a3bae73357330","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"92a7ecb29f4704b1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing zero_fuel function","uid":"b2705032891531e8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"fix_the_meerkat function function verification","uid":"9c241cc9403723af","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing count_letters_and_digits function","uid":"62e01ffb20b661b5","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 men_from_boys function","uid":"3529b67f8df1184b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing zeros function","uid":"2b98fb3b88f75199","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"d562abb8385a61c5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"15f47b991f284575","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing solution function","uid":"a3395496d8bde803","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing validate_battlefield function","uid":"bd11ee5929c6c53a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing domain_name function","uid":"2b89947e3a3ec46d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'thirt' function","uid":"777edc280c74020d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"dd76819b5fd836d3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"2e46c970e553e301","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing growing_plant function","uid":"56ad7c473898c46d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"3e68653192929d9b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Two smallest numbers in the start of the list","uid":"ea40d4fff96687ff","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing to_alternating_case function","uid":"a1a7aeb13172d1f0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"b36380d1077ce20b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing array_diff function","uid":"2bfddef765c09569","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","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 advice function","uid":"f727d28e098b30b7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"c77f51e83226296c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing check_for_factor function: positive flow","uid":"614133ca9c69e105","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Negative test cases for is_prime function testing","uid":"54bb63fb3736b8ae","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"a and b are equal","uid":"900a2cbb7155295","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"f85ab0d3a8429db7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing pig_it function","uid":"6076e8e1aaaa11ab","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"e051944b31d54c14","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"cf71a425c4796a9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing compute_ranks","uid":"d7d1e3c0f9370311","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":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing gap function","uid":"44c1e35d7a7b2adb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing binary_to_string function","uid":"1d2104b5fa1d29b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"test_triangle","uid":"3ffa72675847f113","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing sum_of_intervals function","uid":"9f9422c1f71252b6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"419686fbcf063822","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing is_prime function","uid":"1b6b658aae9aa73c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Battle method","uid":"ac136a3215f7ad6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"String with no duplicate chars","uid":"87dc5713a007f1d7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"f0ded5a934f7c37b7599afabf4ca35fc"},{"name":"17192-MainThread","children":[{"name":"All chars are in mixed case","uid":"30218f5e2dbf6894","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 to_table function","uid":"16a9ca9919e5cef5","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 increment_string function","uid":"b982073aac2c9d08","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 length function","uid":"bf6ae18a8ec3d384","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":"Wolf at the beginning of the queue","uid":"3cd6da35a1920265","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":"Non square numbers (negative)","uid":"f649ed8d3c87f7f8","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 take function","uid":"920950efadf9f044","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 duplicate_encode function","uid":"967fef280aa6e796","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 set_alarm function","uid":"87d2fa2dfc5fe491","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 'sum_triangular_numbers' with positive numbers","uid":"2db5e1fafcf7f4e1","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 'generate_hashtag' function","uid":"75ba956cc9ee13f9","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":"STesting enough function","uid":"89027a401f5af485","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":"test_random","uid":"5ea1e8d078b774a7","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 make_class function","uid":"c6923016c0d7805e","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 valid_parentheses function","uid":"83c423646ff2d9ba","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 'has_subpattern' (part 3) function","uid":"5187a55d5b7bcbbd","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":"Positive test cases for gen_primes function testing","uid":"2980fd5af6447b30","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 permute_a_palindrome (negative)","uid":"332b728d7cfdedcf","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 calc function","uid":"57e5e5f4d9d91cf6","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 'count_sheeps' function: bad input","uid":"2f4ba657dc51e0d2","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":"'multiply' function verification with empty list","uid":"5be4a10a1a64fd59","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 password function","uid":"ec3117c5f0ca458","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":"Testing 'count_sheeps' function: positive flow","uid":"3f2abb7dc9376332","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 epidemic function","uid":"6207ccc30173aa77","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":"Should return 'Fail!'s","uid":"c898f599f64280c3","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":"Testing Encoding functionality","uid":"54e4671ce8499dcf","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 stock_list function","uid":"9ee9ff331756b11e","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 agents_cleanup function","uid":"b080152571ac4adf","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 domain_name function","uid":"eaaef6c05ba4cb98","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":"test_solution_big","uid":"3aa67525242f5614","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 digital_root function","uid":"34783e6754d286ec","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":"String with no duplicate chars","uid":"951576068e42ee36","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 to_alternating_case function","uid":"1ca9562da84c64b4","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 done_or_not function","uid":"b4abfaf3d77f3f23","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 easy_diagonal function","uid":"6113acbf67a69117","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 calc_combinations_per_row function","uid":"32b8a7a180fb722f","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":"a or b is negative","uid":"d97402e929388a59","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":"String with alphabet chars only","uid":"e911f85aab34c4e6","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":"String with no alphabet chars","uid":"62507dec220dfd02","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 'longest_repetition' function","uid":"8c6df3dc2deaaefa","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 calculate function","uid":"684d4d6fbb32213a","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 make_upper_case function","uid":"5c78d3bc5a71109a","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 Calculator class","uid":"bfc6af42137d4620","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":"test_starting_position_from_positives","uid":"af4da168bd187f62","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 max_multiple function","uid":"64cdb3b918aa694e","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 compute_ranks","uid":"9a401d5b28fee66a","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 row_sum_odd_numbers function","uid":"8c72192846448826","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 'count_sheeps' function: mixed list","uid":"3287e9af1a22ed8b","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 the 'pyramid' function","uid":"95521fe2b6cd2563","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":"Large lists","uid":"86b489ae6b8c1d23","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 number_of_sigfigs function","uid":"57d69ca6b172040d","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 century function","uid":"d58adc2ec0d31961","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":"Testing 'mix' function","uid":"68ae9688c7c99a04","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":"Testing next_bigger function","uid":"614d8ec123787b56","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":"String with mixed type of chars","uid":"26f23a936b51b328","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 invite_more_women function (negative)","uid":"63e9aeb63ef06083","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 create_city_map function","uid":"a530698ca5ed066c","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":"Test that no_space function removes the spaces","uid":"36b60db7bef82294","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 shark function (positive)","uid":"5b3fc84157197066","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":"Wolf in the middle of the queue","uid":"2dcd793cb9c1cce4","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 invite_more_women function (positive)","uid":"1baceb9fc9699f7","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 largestPower function","uid":"12688af3a6e6b4d","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":"Negative numbers","uid":"2f407878af91b1de","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 'thirt' function","uid":"7a3ebc7dbd092b26","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 toJadenCase function (negative)","uid":"33a7277db5231ef9","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 'order' function","uid":"9585be0acd74f7c1","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 'solution' function","uid":"68db53b8169ad957","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":"test_solution_empty","uid":"37f24af32c057862","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 'DefaultList' class: remove","uid":"4b8d012f19a4e1e6","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":"All chars are in lower case","uid":"7c9ea3ba0070bf05","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":"Find the int that appears an odd number of times","uid":"a258a6f00a3ffda1","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 advice function","uid":"dc1f8d6367d3e66e","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":"'multiply' function verification: lists with multiple digits","uid":"bdddf7ddac3322c3","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 the 'find_missing_number' function","uid":"c8870275fadfceea","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":"Non square numbers (negative)","uid":"83b7eb2988572ef6","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: __getitem__","uid":"d7eae685c38fccbb","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 flatten function","uid":"4f0296b5891c7763","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":"cda9164d86dd0b79","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":"Test with regular string","uid":"e8b3178794c4402b","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":"test_permutations","uid":"ef2d26c76c436892","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 the 'sort_array' function","uid":"b921129ad79b857f","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 first_non_repeated function with various inputs","uid":"5d1981370251e5ca","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 next_smaller function","uid":"a7d4500da5fb8933","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 sum_for_list function","uid":"49fb68289fb078f8","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 'vaporcode' function","uid":"81c03b59fa01f666","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 calculate_damage function","uid":"85284c487c263073","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 'has_subpattern' (part 1) function","uid":"d42759854937ade9","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":"3c944fe792fcd179","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 growing_plant function","uid":"eeed6f5fdf5c1d70","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":"Testing length function where head = None","uid":"d9dd09ce35083af7","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 sum_of_intervals function","uid":"ed566371d87065db","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 period_is_late function (positive)","uid":"4b58bd62b05a8814","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 check_for_factor function: positive flow","uid":"100aeca8c0207022","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":"XOR logical operator","uid":"be34e44ef544dd56","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 men_from_boys function","uid":"80598dcd2309aaf9","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 make_readable function","uid":"33bc4a62afa9ed1a","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":"Testing 'save' function: positive","uid":"bd8413842923f1e","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":"'multiply' function verification with one element list","uid":"d66079b030735db8","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":"OR logical operator","uid":"8dea57e5544d4774","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_solution_basic","uid":"e47ebce66bbb53cd","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 move_zeros function","uid":"90c86a448294d535","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 likes function","uid":"8a9b52813983814b","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 check_root function","uid":"94af9200e69d147a","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 'factorial' function","uid":"9326ca5c3b3bcaf3","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 check_for_factor function: positive flow","uid":"be628f1c5b8245e1","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 done_or_not function","uid":"9abe86e868e9efe6","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 'summation' function","uid":"bf2c284d4d5bb98c","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 'numericals' function","uid":"99b8e6f5f8a43508","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 array_diff function","uid":"ac81c5ec86387239","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":"String alphabet chars and spaces","uid":"67f932ff555edbd0","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 'solution' function","uid":"102a91ff9d2e2c1f","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":"Negative test cases for gen_primes function testing","uid":"6373ea673c2617a2","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 two_decimal_places function","uid":"f59e61b023eebd26","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 'is_isogram' function","uid":"691701add6daaf89","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":"'multiply' function verification","uid":"a7a27da7101eb431","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":"get_size function tests","uid":"f97aaf8957be0a89","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 Warrior class >>> tom","uid":"3d13030ecd2583e8","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 and b are equal","uid":"965a3663c8644328","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":"Testing period_is_late function (negative)","uid":"38b436d46d6537ee","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 anagrams function","uid":"1c59e45321407518","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 Warrior class >>> bruce_lee","uid":"286a2c6d22a3ea0b","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":"Testing easy_line function","uid":"64d00badde981bd3","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 Potion class","uid":"95a29a9545c416cd","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":"test_ips_between","uid":"a3216b951d3fac8b","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 validSolution","uid":"f7656bca6b03073b","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 'DefaultList' class: append","uid":"c5ea93b10613ec53","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":"AND logical operator","uid":"82a8f1ffa445d40","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 'sum_triangular_numbers' with negative numbers","uid":"9451201a4cae53ad","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":"Zero","uid":"8f3fc2a4deaebd0d","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":"Wolf at the end of the queue","uid":"8b80aa0a92a1ed02","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 binary_to_string function","uid":"f00b7b6604c5e7e4","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 hoop_count function (negative test case)","uid":"2f4dd2b3858b1ec4","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":"Should return 'Publish!'","uid":"1bef76bb610cc3bd","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":"'fix_the_meerkat function function verification","uid":"acf49fc01f491be4","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 'feast' function","uid":"77e868a9cd944330","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 validate_battlefield function","uid":"56ae9013352b7649","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":"Two smallest numbers in the start of the list","uid":"b7812824440b717e","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":"Test with empty string","uid":"580b983b7062983c","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 'letter_count' function","uid":"d4af7c6dd9a36bc3","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 the 'unique_in_order' function","uid":"65d5a47944859245","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 Battle method","uid":"f1d39787f3312e8b","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 Decoding functionality","uid":"27b26e7a6523571a","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 alphanumeric function","uid":"da6d336020bff47c","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 remove_char function","uid":"f8d7fd46b923bc4f","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 'DefaultList' class: pop","uid":"45f16c4708137d2d","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_triangular_numbers' with zero","uid":"4ad4524b2ee92967","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 Sudoku class","uid":"837e4ce24ac45efb","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 list_squared function","uid":"87c07388b10e55d5","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 count_letters_and_digits function","uid":"c7eea171ede7ee13","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":"Verify that greet function returns the proper message","uid":"e0b6b39a4d4f9bf4","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 'save' function: negative","uid":"acfebfd078f8e03c","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 zero_fuel function","uid":"6f0b2af516b0f755","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 easy_line function exception message","uid":"d936198953d58b58","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":"30b1174850b5a822","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":"test_josephus_survivor","uid":"a8b77a6618ff7e4c","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":"You are given two angles -> find the 3rd.","uid":"a7008d20e58a9d6a","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 first_non_repeating_letter function","uid":"39a19c10cf88efee","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 the 'solution' function","uid":"1cf942af51db20a3","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":"test_basic","uid":"9fa9266ff3a1c464","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":"'multiply' function verification with random list","uid":"4df34ce2718b817c","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 swap_values function","uid":"e0f78ca1d7d1823c","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":"Non is expected","uid":"d1974f16b30f7476","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":"All chars are in upper case","uid":"40819c186d07d3de","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":"ea156c7340f7150f","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 'solution' function","uid":"59120ba12cafb7e8","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 litres function with various test inputs","uid":"9e6f93dfe778ff9a","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 odd_row function","uid":"2e9a9a4090c00445","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 'DefaultList' class: extend","uid":"23e61e29448b9218","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 'sum_triangular_numbers' with big number as an input","uid":"6e3ce129a9f8f588","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 alphabet_war function","uid":"4c7e13d0f61cf99a","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":"Positive test cases for is_prime function testing","uid":"cc1bd3cedb1bfef0","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 solve function","uid":"552742d77daecee9","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 share_price function","uid":"33a4a469899e9868","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 top_3_words function","uid":"be618dffc8aac711","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 checkchoose function","uid":"9348c64cc78f5d13","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 toJadenCase function (positive)","uid":"eea4c328ad2eaeca","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 the 'group_cities' function","uid":"924a52587e7b2c82","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":"move function tests","uid":"e8ed1f5e4a826f53","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":"Square numbers (positive)","uid":"73100341c811e8de","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 all_fibonacci_numbers function","uid":"e7e28dd8f45c4374","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":"8cdb3386cf094e1f","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 is_palindrome function","uid":"6421e8610575915","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 'greek_comparator' function","uid":"c6f52d0b9e8ac3c5","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 permute_a_palindrome (positive)","uid":"f52e2a19a3ffe707","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":"Negative test cases for is_prime function testing","uid":"e427c3eece0f34c3","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":"powers function should return an array of unique numbers","uid":"1bf2db2d5f0c7414","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 pig_it function","uid":"47bce28013711283","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 shark function (negative)","uid":"5f2df3f2c9b86d77","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":"Should return 'I smell a series!'","uid":"3ee1470ea7ce07a6","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 check_exam function","uid":"cdb2fb8959394c65","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 is_prime function","uid":"d4258a66cc0cec29","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":"a an b are positive numbers","uid":"9dc85df7fba3a78e","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 string_to_array function","uid":"9d10f71bfad2e1ef","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 done_or_not function","uid":"54043a9fba80789b","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 'DefaultList' class: insert","uid":"693d19da33d622de","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":"Negative non consecutive number should be returned","uid":"ee3eb820ef7c27","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 'count_sheeps' function: empty list","uid":"d58da60cf24b7660","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 monkey_count function","uid":"edb4f03386c56c72","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 solution function","uid":"89c602359c6f109b","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 string_transformer function","uid":"9f8b999462605375","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":"test_line_positive","uid":"a1b53b199c1c867e","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 'has_subpattern' (part 2) function","uid":"e4f24bca4471f754","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":"Square numbers (positive)","uid":"b01c60cc4e07480b","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":"a and b are equal","uid":"a8ef326c3cb7b77c","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 format_duration","uid":"bc039aea1f276c5c","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":"goals function verification","uid":"b3c5df850665402e","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":"test_line_negative","uid":"8efea6185ce9f545","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 shark function (positive)","uid":"4961a0c52d810ec1","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 gap function","uid":"167f34fe4187417a","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":"test_sequence","uid":"910c497042fbb9d7","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 with one char only","uid":"2ce701a458e1cd31","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 'snail' function","uid":"35836d979e37575","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 permute_a_palindrome (empty string)","uid":"16f7f5e029216efb","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 tickets function","uid":"5b88f232b1f58c27","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":"test_solution_medium","uid":"4073719ea3c0e8fe","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 decipher_this function","uid":"e17b710b1ca6cef6","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 zeros function","uid":"dcee0c4d2268b964","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 spiralize function","uid":"815ff7102e2d18bc","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 hoop_count function (positive test case)","uid":"8e17b24d548befe2","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 encrypt_this function","uid":"8c7db5518444ac71","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 two_decimal_places function","uid":"48ff8cbb530a1868","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":[]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file diff --git a/allure-report/export/influxDbData.txt b/allure-report/export/influxDbData.txt index 80aee83bba1..06f157e0372 100644 --- a/allure-report/export/influxDbData.txt +++ b/allure-report/export/influxDbData.txt @@ -1,13 +1,13 @@ -launch_status failed=0 1732427756000000000 -launch_status broken=0 1732427756000000000 -launch_status passed=209 1732427756000000000 -launch_status skipped=13 1732427756000000000 -launch_status unknown=0 1732427756000000000 -launch_time duration=1655595 1732427756000000000 -launch_time min_duration=0 1732427756000000000 -launch_time max_duration=648 1732427756000000000 -launch_time sum_duration=1276 1732427756000000000 -launch_time start=1724733474194 1732427756000000000 -launch_time stop=1724735129789 1732427756000000000 -launch_retries retries=219 1732427756000000000 -launch_retries run=222 1732427756000000000 +launch_status failed=0 1732428242000000000 +launch_status broken=0 1732428242000000000 +launch_status passed=215 1732428242000000000 +launch_status skipped=11 1732428242000000000 +launch_status unknown=0 1732428242000000000 +launch_time duration=7694722309 1732428242000000000 +launch_time min_duration=0 1732428242000000000 +launch_time max_duration=717 1732428242000000000 +launch_time sum_duration=981 1732428242000000000 +launch_time start=1724733474194 1732428242000000000 +launch_time stop=1732428196503 1732428242000000000 +launch_retries retries=437 1732428242000000000 +launch_retries run=226 1732428242000000000 diff --git a/allure-report/export/prometheusData.txt b/allure-report/export/prometheusData.txt index 4b24a3d00a5..c16e00b3bad 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 215 +launch_status_skipped 11 launch_status_unknown 0 -launch_time_duration 1655595 +launch_time_duration 7694722309 launch_time_min_duration 0 -launch_time_max_duration 648 -launch_time_sum_duration 1276 +launch_time_max_duration 717 +launch_time_sum_duration 981 launch_time_start 1724733474194 -launch_time_stop 1724735129789 -launch_retries_retries 219 -launch_retries_run 222 +launch_time_stop 1732428196503 +launch_retries_retries 437 +launch_retries_run 226 diff --git a/allure-report/history/duration-trend.json b/allure-report/history/duration-trend.json index 59762f66df8..97317859ef2 100644 --- a/allure-report/history/duration-trend.json +++ b/allure-report/history/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}}] \ No newline at end of file +[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}}] \ No newline at end of file diff --git a/allure-report/history/history-trend.json b/allure-report/history/history-trend.json index 05e8323ff48..2dbdb8059b2 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":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}}] \ No newline at end of file +[{"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}},{"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}}] \ No newline at end of file diff --git a/allure-report/history/history.json b/allure-report/history/history.json index 0d8cf56bdeb..e4041dd989f 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":2,"unknown":0,"total":2},"items":[{"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}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"e738d6d09d0feb9e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"645c6c05562d2f01","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":0,"unknown":0,"total":2},"items":[{"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}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":2,"passed":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":0,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"uid":"5b9aa5357d8d514d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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 +{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":3},"items":[{"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}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":1,"unknown":0,"total":1},"items":[{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"939a8064e3d28ec85fadd67010b560ae":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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 09ff52fce19..1d4c64c6d1a 100644 --- a/allure-report/history/retry-trend.json +++ b/allure-report/history/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}}] \ No newline at end of file +[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}}] \ No newline at end of file diff --git a/allure-report/index.html b/allure-report/index.html index d0e23ebba17..25bb1bde99d 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': 'f45ac67a-67e7-4266-818b-20757609f9c1', + 'reportUuid': '16903a08-160a-4ff7-ab96-d6d4dc98f23a', 'single_file': false }); diff --git a/allure-report/widgets/duration-trend.json b/allure-report/widgets/duration-trend.json index 59762f66df8..97317859ef2 100644 --- a/allure-report/widgets/duration-trend.json +++ b/allure-report/widgets/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}}] \ No newline at end of file +[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}}] \ No newline at end of file diff --git a/allure-report/widgets/duration.json b/allure-report/widgets/duration.json index 24151825661..8345194bedf 100644 --- a/allure-report/widgets/duration.json +++ b/allure-report/widgets/duration.json @@ -1 +1 @@ -[{"uid":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"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 05e8323ff48..2dbdb8059b2 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":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}}] \ No newline at end of file +[{"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}},{"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}}] \ No newline at end of file diff --git a/allure-report/widgets/retry-trend.json b/allure-report/widgets/retry-trend.json index 09ff52fce19..1d4c64c6d1a 100644 --- a/allure-report/widgets/retry-trend.json +++ b/allure-report/widgets/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}}] \ No newline at end of file +[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}}] \ No newline at end of file diff --git a/allure-report/widgets/severity.json b/allure-report/widgets/severity.json index 84594a23f64..168cb97f84e 100644 --- a/allure-report/widgets/severity.json +++ b/allure-report/widgets/severity.json @@ -1 +1 @@ -[{"uid":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"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 24151825661..8345194bedf 100644 --- a/allure-report/widgets/status-chart.json +++ b/allure-report/widgets/status-chart.json @@ -1 +1 @@ -[{"uid":"dee0416f79d22a0d","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2460353038ce1955","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"ede582dcc2b34bf3","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"33b81b348332f41f","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4ecd1e835300dbcf","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"df0c490941a6877a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"9393151991be7f33","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"2965d2d3db0ea08e","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6301a55868859d","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"fdff4b964fae0427","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c7f21adbc73706","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cf8d83dbb2d66b5","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a22d7a269c3ca06","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"1dee8c06fd165199","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"88c7e92ae3f035ea","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5b9aa5357d8d514d","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"de04793abb90de01","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"9519f48ec729ba4c","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"715edf62d220bc66","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"52715db4a1ce5955","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"9098856200f13690","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a76fd0002a5824c","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"b96004f0b179053d","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"616180d049b16d1d","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"54942c51ed88331c","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"8451096f3488e82","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"9b82a842fdc9b867","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"90a24ba96aea3cfc","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed5fbc4b14885f68","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"82619e3fb0e84d4d","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"fd4d83368b6d5d5e","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4c41912963969d7","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"7a1019ba1beb3118","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"76548c4669002681","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"b72d4e8ad3288d1b","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3a2392b112899a67","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f65011f131e2b6","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"826a0963540c6e75","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"a60fe7d0456e1873","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"4fb2a019463cdbdf","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"deed80da6e08bd69","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"95011c2c3c205658","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"b97e3a9bf54f17f3","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"90eee3ddc83b1454","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee4f0501c1152713","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e1471afe863c97c8","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1504a4fcfadf69","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef7e94367cfcafa4","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a1d96979e635e7f","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8d5d2ee94f4b051","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80099cf6c294d2b","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"972d0622d29729c4","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"38639b46d1e381a9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"fc2c5a5df6e26162","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6bf4a932c1ec147","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"14d00f76e0b4f9e4","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"52187b3daff300ae","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e6e46de805754f","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"51a9aec46de8d878","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"e7eaed29fbceb75","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"afae2f3faef55f2b","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"8655885cb5db7a58","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b9309fd398214a5","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"585949d19b46a5d2","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"f50d911c93ffbcb0","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"92083f552ecb72c4","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"83105e24306c53ac","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"371888dd705cab28","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"56a28cc490d83b65","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"1719ddf6913445c8","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"504baf7c4d256536","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"31cd5c9e8017f83c","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"5a941d3b90762a67","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"884c8d1f852cc3dc","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd862d92408a60a2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd4191028146e80","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"1073662453fffbc9","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"874b39a75ad8fa3b","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0d5281d75a0b4df","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"8427b8f31ff35d6c","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb5c8ea3b9796931","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"d946600dafcc1f6d","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"1188dda60b67ea96","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d35bd18d5e6ee6b","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"59863a86bad45fb3","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cb8749ab5d5d5c7","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"84f17449b7b13451","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c78d4954ac14f9e","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"327fbdea3443aca5","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b3bd0a5ea1aa072","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"cdfe495bc85470d2","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"39245131d70863d6","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bfe92f9ff640a644","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1e0648976f6a694","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"130e4ffebf4e47af","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9d7d0d5afb8734c","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"675849fee1009391","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0862b5213f7938f","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"645c6c05562d2f01","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"e03974f538ea8ee6","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8b1a20b1ac22e64","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"84fd4c67efee5295","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6ab6caccad49b468","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"dcfefe9c10c1f5d2","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"49aa5cc4276ca55b","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"b29b4bc1c1fe7917","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0d94f0ee4e397d","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"5dad026541a05e65","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa5b03edd274b2cd","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf3552eb00513a1a","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e0851c0ba53ec6a9","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"1319e1ae94efdc02","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"39c69409f76377e7","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"cde5d1b46b10d7ac","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"da49bdf1737798b8","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"280a7287fd39d5a9","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"afce902b58f1520a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"98d0f495e6dcba7e","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9458c8615b9e985","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"693c5b2693478689","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"d7357eaa8c15ec47","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a325845218dd6ae","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"26cf86ca9eda4b5","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"52dd320a58bdb229","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"e9aaea22e808b4eb","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5ae32dea8d8e5c3","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed30e8563a89229a","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"2b7f0b03733442e8","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"b01fd4e8d095b60f","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"c799982c38b97fcc","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"c35da98b55fb5e6b","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"d558fd9b3bcee4ae","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6a3da330525d2f4","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1d9afec6278b1a8","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1d54b76165521a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"ee325afc05dcb3e8","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"d57f06aa2f911f40","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"9525e56c1666fc0f","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"139c28ca38674b14","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"51971bf7ad109ed2","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"af580569ddf3e366","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"71d876f4d19ecd67","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"369d691aa58bf89d","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"801bdccb4e1aa824","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2acb560e089cb7c8","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"92297f3cbdd8ad78","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"7b2352a8e3675c67","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"a10d36c92cf89a63","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ac9af93b3d2f297","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"47f8df09a84d8337","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"a70ffb4d0a92e5c8","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f90afc62f8400f4","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"42383b817b641e4e","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"11b652a05502070f","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e5b993187ac8b27","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"15008ede7bd87a18","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"fd395297ed368b03","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492d74df14be54a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1aabae67bc18ba0","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c922c5f58027b49","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"31b67858aaa81503","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"964ad50f448ed64d","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"87acfa055dcbe26a","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2aa3a63b6fff605a","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ece392343bb9b12","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5a389260d41a743","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd5632b0213855d","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"d9a6d590487a20fd","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"627da61e5891aa44","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"99a050e28b9f808c","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6e4ebd44034ff08","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"337891d8027fbc46","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1ac1e81621379df","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae7d3fce45bf33fb","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f991ba5bad9e7e9","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"673ecd99dac0c86e","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"14d24a2946d66b00","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"e738d6d09d0feb9e","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d51bdb700f78e3","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ace382695affabdf","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"19910c11538825d6","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"42bb8c96d4cb1bcf","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"debf2b82465b0240","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"148a22b7e430194f","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"c37dfc82a096ec09","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98200e3d5ae32ca","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb3e9f6b3780b454","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"490cf50ddd5cff83","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"996165a0ada95681","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0dfae45b96d6a4","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"6cad203fab564c60","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"64a44b1c9018ad85","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"35cf25b9e515e00d","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"dead64fe3d4f484d","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"95ddc175910ea52","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"76f8c586f8a804f0","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1a80d9f422182d","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e6aa533c6c0fafa","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f711bbcd16ab2119","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"704aacac2db91585","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7c1fb6f236110ca","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"41efd0d786aed73","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b38fe6b8a5a46","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"57efbea0ccf3907a","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"70085274c959a3cb","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"614b9e2de4457676","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"449aa1de0e8221e9","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ea719d6e8a376fb","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a45493f51c1d67","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"6d9afe9fda19581e","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5ae1235bc27ccba","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"e10517b1ea4eb479","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc29e000a4adcd25","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c38060cc376f686","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6d62aae7d602336","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f7fc4731241a976","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"7c2750d825fae93b","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"1efaf2ab015adde4","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1c2f2381b1441f6","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d3037fd25424c6f3","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"37b95a78feb35857","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"7c3ec7eab2e0be6d","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"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..329eff88c3f 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":110,"unknown":0,"total":110}},{"uid":"7f519f47c947401fdd71874cbd1d477a","name":"Novice","statistic":{"failed":0,"broken":0,"skipped":8,"passed":78,"unknown":0,"total":86}},{"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..18d62a896c0 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":215,"unknown":0,"total":226},"time":{"start":1724733474194,"stop":1732428196503,"duration":7694722309,"minDuration":0,"maxDuration":717,"sumDuration":981}} \ No newline at end of file From 19c3da0c2726a78e183e1cd91dda036b50be8c4b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:21:43 -0800 Subject: [PATCH 246/873] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad67cc4d02c..e7b1fc12747 100644 --- a/README.md +++ b/README.md @@ -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 From 84410f9c4a362ffa8db4676ebc0ae2626bf0b9df Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:23:56 -0800 Subject: [PATCH 247/873] Update .codeclimate.yml ./.codeclimate.yml Warning: 1:1 [document-start] missing document start "---" Warning: 9:1 [comments-indentation] comment not indented like content Error: 9:25 [new-line-at-end-of-file] no new line character at the end of file --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 975fa9fda43..be17c8afa70 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,3 +1,4 @@ +--- engines: # ... CONFIG CONTENT ... pylint: From db976f1851e93da4c7253992c451f6ebdb463d4a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:24:04 -0800 Subject: [PATCH 248/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index be17c8afa70..7a47b516500 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -7,4 +7,4 @@ engines: checks: import-error: enabled: false -# ... CONFIG CONTENT ... \ No newline at end of file +# ... CONFIG CONTENT ... From b50895cfd404ce7ebe5cd5f8e600843a30027d01 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:28:57 -0800 Subject: [PATCH 249/873] Update .yamllint.yaml --- .yamllint.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.yamllint.yaml b/.yamllint.yaml index 5a25344716f..84789e6067c 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -6,6 +6,9 @@ yaml-files: - '*.yml' - '.yamllint' +ignore: | + depricated/ + rules: anchors: enable braces: enable From 99a60d0ce0e54d83eb4d097a1c65618820e0a974 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:33:31 -0800 Subject: [PATCH 250/873] Update README.md --- kyu_6/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_6/README.md b/kyu_6/README.md index 1ba5bb5a6b4..5382710c6e4 100644 --- a/kyu_6/README.md +++ b/kyu_6/README.md @@ -56,6 +56,5 @@ rank - the harder the kata the faster you advance. | 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 From 3421c732fef802f2f534e44c12375836f1c1987b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 23 Nov 2024 22:34:09 -0800 Subject: [PATCH 251/873] Update README.md Summary: 1 error(s) Error: kyu_6/sums_of_parts/README.md:36:81 MD013/line-length Line length [Expected: 80; Actual: 121] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md Error: Failed with exit code: 1 --- kyu_6/sums_of_parts/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/sums_of_parts/README.md b/kyu_6/sums_of_parts/README.md index 80dc10fa158..386e164fe99 100644 --- a/kyu_6/sums_of_parts/README.md +++ b/kyu_6/sums_of_parts/README.md @@ -28,6 +28,7 @@ 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] @@ -35,6 +36,7 @@ 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 From 40b97192ea6cf16d7cddd46495cbf74c18860a91 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 20:45:17 -0800 Subject: [PATCH 252/873] Update test_unique_in_order.py --- kyu_6/unique_in_order/test_unique_in_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/unique_in_order/test_unique_in_order.py b/kyu_6/unique_in_order/test_unique_in_order.py index 07583152f78..c559aea68b7 100644 --- a/kyu_6/unique_in_order/test_unique_in_order.py +++ b/kyu_6/unique_in_order/test_unique_in_order.py @@ -15,7 +15,7 @@ # pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') -@allure.suite("Advanced Language Features") +@allure.suite("Fundamentals") @allure.sub_suite("Unit Tests") @allure.feature("Algorithms") @allure.story('Unique In Order') From 42b1b6d37bb0c4c2a67ae83488fb6bf09abcc615 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 20:51:00 -0800 Subject: [PATCH 253/873] Valid Braces --- kyu_6/valid_braces/README.md | 29 ++++++++++ kyu_6/valid_braces/__init__.py | 0 kyu_6/valid_braces/test_valid_braces.py | 72 +++++++++++++++++++++++++ kyu_6/valid_braces/valid_braces.py | 18 +++++++ 4 files changed, 119 insertions(+) create mode 100644 kyu_6/valid_braces/README.md create mode 100644 kyu_6/valid_braces/__init__.py create mode 100644 kyu_6/valid_braces/test_valid_braces.py create mode 100644 kyu_6/valid_braces/valid_braces.py diff --git a/kyu_6/valid_braces/README.md b/kyu_6/valid_braces/README.md new file mode 100644 index 00000000000..e3b39ab2d36 --- /dev/null +++ b/kyu_6/valid_braces/README.md @@ -0,0 +1,29 @@ +# Valid Braces + +## Description + +Write a function that takes a string of braces, and determines if the order +of the braces is valid. It should return true if the string is valid, and +false if it's invalid. + +This Kata is similar to the Valid Parentheses Kata, but introduces new characters: +`brackets []`, and curly `braces {}`. + +All input strings will be nonempty, and will only consist of parentheses, +brackets and curly braces: `()[]{}`. + +## What is considered Valid? + +A string of braces is considered valid if all braces are matched with the correct brace. + +Examples: + +```bash +"(){}[]" => True +"([{}])" => True +"(}" => False +"[(])" => False +"[({})](]" => False +``` + +[Source](https://www.codewars.com/kata/5277c8a221e209d3f6000b56) \ No newline at end of file diff --git a/kyu_6/valid_braces/__init__.py b/kyu_6/valid_braces/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py new file mode 100644 index 00000000000..e339a774d13 --- /dev/null +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -0,0 +1,72 @@ +""" +Test for -> Unique In Order +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + +# Algorithms + +import unittest +import allure +from utils.log_func import print_log +from kyu_6.valid_braces.valid_braces import valid_braces + + +# 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('Unique In Order') +@allure.tag('FUNDAMENTALS', + 'ALGORITHMS') +@allure.link( + url='https://www.codewars.com/kata/5277c8a221e209d3f6000b56', + name='Source/Kata') +# pylint: enable-msg=R0801 +class ValidBracesTestCase(unittest.TestCase): + """ + Testing the 'valid_braces' function + """ + def test_valid_braces(self): + """ + Testing the 'valid_braces' function + with various test data + :return: + """ + # pylint: disable-msg=R0801 + allure.dynamic.title("Testing the 'valid_braces' function") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

Codewars badge:

' + '' + '

Test Description:

' + "

") + # pylint: enable-msg=R0801 + # pylint: disable=line-too-long + with allure.step("Pass test data and verify the output"): + data: tuple = ( + ("(){}[]", True), + ("([{}])", True), + ("(}", False), + ("[(])", False), + ("[({})](]", False), + ("()", True), + ("[]", True), + ("[(])", False), + ("{}", True), + ("{}()[]", True), + ("([{}])", True), + ("([}{])", False), + ("{}({})[]", True), + ("(({{[[]]}}))", True), + ("(((({{", False), + (")(}{][", False), + ("())({}}{()][][", False) + ) + # pylint: enable=line-too-long + for string, expected in data: + print_log(string=string, expected=expected) + self.assertEqual(expected, valid_braces(string)) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py new file mode 100644 index 00000000000..34b097942e5 --- /dev/null +++ b/kyu_6/valid_braces/valid_braces.py @@ -0,0 +1,18 @@ +""" +Test for -> Unique In Order +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + + +def valid_braces(string: str) -> bool: + """ + A function that takes a string of braces, and determines if the order + of the braces is valid. It should return true if the string is valid, + and false if it's invalid. + :param string: + :return: + """ + result: bool = False + + return result From c2a6f151aab29b322b2392995ce65310e97ac1f8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 21:50:14 -0800 Subject: [PATCH 254/873] Update README.md --- kyu_6/valid_braces/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/valid_braces/README.md b/kyu_6/valid_braces/README.md index e3b39ab2d36..53a1b79a2f8 100644 --- a/kyu_6/valid_braces/README.md +++ b/kyu_6/valid_braces/README.md @@ -6,8 +6,8 @@ Write a function that takes a string of braces, and determines if the order of the braces is valid. It should return true if the string is valid, and false if it's invalid. -This Kata is similar to the Valid Parentheses Kata, but introduces new characters: -`brackets []`, and curly `braces {}`. +This Kata is similar to the [Valid Parentheses Kata](https://www.codewars.com/kata/valid-parentheses-1), +but introduces new characters: `brackets []`, and curly `braces {}`. All input strings will be nonempty, and will only consist of parentheses, brackets and curly braces: `()[]{}`. From 71166f94b4e7c7495b728662d1cd3809da343bf3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 21:50:17 -0800 Subject: [PATCH 255/873] Update test_valid_braces.py --- kyu_6/valid_braces/test_valid_braces.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py index e339a774d13..4f2849e9dcd 100644 --- a/kyu_6/valid_braces/test_valid_braces.py +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -9,7 +9,7 @@ import unittest import allure from utils.log_func import print_log -from kyu_6.valid_braces.valid_braces import valid_braces +from kyu_6.valid_braces.valid_braces import valid_braces, BRACES # pylint: disable-msg=R0801 @@ -66,7 +66,13 @@ def test_valid_braces(self): (")(}{][", False), ("())({}}{()][][", False) ) + # pylint: enable=line-too-long for string, expected in data: + + # Set all flags to False: + for key, value in BRACES.items(): + BRACES[key][2] = False + print_log(string=string, expected=expected) self.assertEqual(expected, valid_braces(string)) From 40d65690206ecfc2fe02eb5d0f0d1ba44c01adf8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 22:10:16 -0800 Subject: [PATCH 256/873] Update test_valid_braces.py --- kyu_6/valid_braces/test_valid_braces.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py index 4f2849e9dcd..87094ffeb88 100644 --- a/kyu_6/valid_braces/test_valid_braces.py +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -1,5 +1,5 @@ """ -Test for -> Unique In Order +Test for -> Valid Braces Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,7 +9,7 @@ import unittest import allure from utils.log_func import print_log -from kyu_6.valid_braces.valid_braces import valid_braces, BRACES +from kyu_6.valid_braces.valid_braces import valid_braces # pylint: disable-msg=R0801 @@ -18,7 +18,7 @@ @allure.suite("Fundamentals") @allure.sub_suite("Unit Tests") @allure.feature("Algorithms") -@allure.story('Unique In Order') +@allure.story('Valid Braces') @allure.tag('FUNDAMENTALS', 'ALGORITHMS') @allure.link( @@ -69,10 +69,5 @@ def test_valid_braces(self): # pylint: enable=line-too-long for string, expected in data: - - # Set all flags to False: - for key, value in BRACES.items(): - BRACES[key][2] = False - print_log(string=string, expected=expected) self.assertEqual(expected, valid_braces(string)) From b872cc76220d487db7f37b09afc6621626a4e147 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 22:10:20 -0800 Subject: [PATCH 257/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 34b097942e5..ed2740dbeaf 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -1,9 +1,18 @@ """ -Test for -> Unique In Order +Test for -> Valid Braces Created by Egor Kostan. GitHub: https://github.com/ikostan """ +BRACES: dict = { + '(': ')', + ')': '(', + '[': ']', + ']': '[', + '{': '}', + '}': '{', +} + def valid_braces(string: str) -> bool: """ @@ -13,6 +22,19 @@ def valid_braces(string: str) -> bool: :param string: :return: """ - result: bool = False + # Calc length of the input string + len_str: int = len(string) + # If the length is not even number -> return False + if len_str % 2 > 0: + return False + + # calculate indexes in order to process matching pairs + a, b = (len_str // 2) - 1, len_str // 2 + while a > -1 and b < len_str: + # Pair does not match, fails the test + if BRACES[string[a]] != string[b]: + return False + a -= 1 + b += 1 - return result + return True From cfef58fa82159073f25595c15d54f85cfff81abd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 24 Nov 2024 22:15:12 -0800 Subject: [PATCH 258/873] Update test_valid_braces.py --- kyu_6/valid_braces/test_valid_braces.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py index 87094ffeb88..28056bc4e32 100644 --- a/kyu_6/valid_braces/test_valid_braces.py +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -64,7 +64,10 @@ def test_valid_braces(self): ("(({{[[]]}}))", True), ("(((({{", False), (")(}{][", False), - ("())({}}{()][][", False) + ("())({}}{()][][", False), + ("{}()[]", True), + ("([}{])", False), + ("{}({})[]", True), ) # pylint: enable=line-too-long From d82f688fb293b936af0cd87138894d7cdfa87c18 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 25 Nov 2024 21:35:42 -0800 Subject: [PATCH 259/873] Update test_valid_braces.py --- kyu_6/valid_braces/test_valid_braces.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py index 28056bc4e32..a027de60dab 100644 --- a/kyu_6/valid_braces/test_valid_braces.py +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -72,5 +72,6 @@ def test_valid_braces(self): # pylint: enable=line-too-long for string, expected in data: - print_log(string=string, expected=expected) - self.assertEqual(expected, valid_braces(string)) + actual = valid_braces(string) + print_log(string=string, expected=expected, actual=actual) + self.assertEqual(expected, actual) From 328a7259193879c83d81143de960c22d4aeeffe0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 25 Nov 2024 21:35:48 -0800 Subject: [PATCH 260/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index ed2740dbeaf..c7e0f3f70ff 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -13,6 +13,7 @@ '}': '{', } +CLOSING: str = ')}]' def valid_braces(string: str) -> bool: """ @@ -28,13 +29,23 @@ def valid_braces(string: str) -> bool: if len_str % 2 > 0: return False - # calculate indexes in order to process matching pairs - a, b = (len_str // 2) - 1, len_str // 2 - while a > -1 and b < len_str: - # Pair does not match, fails the test - if BRACES[string[a]] != string[b]: + index: int = 0 + while index < len(string) - 1: + char = string[index] + + # in the first half of the string should + # not be any closing brackets + if index < (len_str // 2) and char in CLOSING: + return False + # next two brackets are matching pair + elif BRACES[char] == string[index + 1]: + index += 2 + # matching pair consist of brackets in each + # half of the string + elif BRACES[char] == string[(index + 1) * -1]: + index += 1 + # no matching pair + else: return False - a -= 1 - b += 1 return True From 0c67091f176069269fb6b92629a4a325e529fa15 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 25 Nov 2024 21:37:33 -0800 Subject: [PATCH 261/873] Update valid_braces.py ./kyu_6/valid_braces/valid_braces.py:18:1: E302 expected 2 blank lines, found 1 --- kyu_6/valid_braces/valid_braces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index c7e0f3f70ff..10498809540 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -15,6 +15,7 @@ CLOSING: str = ')}]' + def valid_braces(string: str) -> bool: """ A function that takes a string of braces, and determines if the order From 8318beb4525a7383ecb9a352ece9eb6ba52cfaea Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 25 Nov 2024 21:39:44 -0800 Subject: [PATCH 262/873] Update valid_braces.py Unnecessary elif after return --- kyu_6/valid_braces/valid_braces.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 10498809540..45e932f49e8 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -38,8 +38,9 @@ def valid_braces(string: str) -> bool: # not be any closing brackets if index < (len_str // 2) and char in CLOSING: return False + # next two brackets are matching pair - elif BRACES[char] == string[index + 1]: + if BRACES[char] == string[index + 1]: index += 2 # matching pair consist of brackets in each # half of the string From 3f51eaf05a6f48b35f8b48abfa52d574c967d681 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 26 Nov 2024 20:32:05 -0800 Subject: [PATCH 263/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 45e932f49e8..7ab88cc49b5 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -21,8 +21,8 @@ def valid_braces(string: str) -> bool: A function that takes a string of braces, and determines if the order of the braces is valid. It should return true if the string is valid, and false if it's invalid. - :param string: - :return: + :param string: a string consist of brackets + :return: boolean, indicates if input string is valid """ # Calc length of the input string len_str: int = len(string) From 15a2c3da52079d93c93bda96241792e439a614a3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 18:41:11 -0800 Subject: [PATCH 264/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 7ab88cc49b5..24812b0580a 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -33,17 +33,15 @@ def valid_braces(string: str) -> bool: index: int = 0 while index < len(string) - 1: char = string[index] - - # in the first half of the string should - # not be any closing brackets + # in the first half of the string a new pair + # should not be starting from closing brackets if index < (len_str // 2) and char in CLOSING: return False - - # next two brackets are matching pair + # neighbor two brackets are matching pair if BRACES[char] == string[index + 1]: index += 2 - # matching pair consist of brackets in each - # half of the string + # matching pair consist of brackets + # in each half of the string elif BRACES[char] == string[(index + 1) * -1]: index += 1 # no matching pair From 478bfcc04f89923cdfa1687467d75142f88ca755 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 18:45:25 -0800 Subject: [PATCH 265/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 24812b0580a..429cd367560 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -40,12 +40,13 @@ def valid_braces(string: str) -> bool: # neighbor two brackets are matching pair if BRACES[char] == string[index + 1]: index += 2 + continue # matching pair consist of brackets # in each half of the string - elif BRACES[char] == string[(index + 1) * -1]: + if BRACES[char] == string[(index + 1) * -1]: index += 1 + continue # no matching pair - else: - return False + return False return True From 73e23dbd7e053083b19b5b12381c2f4465455e44 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 18:51:23 -0800 Subject: [PATCH 266/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 429cd367560..2e1569301ac 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -24,18 +24,12 @@ def valid_braces(string: str) -> bool: :param string: a string consist of brackets :return: boolean, indicates if input string is valid """ - # Calc length of the input string - len_str: int = len(string) - # If the length is not even number -> return False - if len_str % 2 > 0: - return False - index: int = 0 while index < len(string) - 1: - char = string[index] + char: str = string[index] # in the first half of the string a new pair # should not be starting from closing brackets - if index < (len_str // 2) and char in CLOSING: + if index < (len(string) // 2) and char in CLOSING: return False # neighbor two brackets are matching pair if BRACES[char] == string[index + 1]: From 639190bdae2f5e5c1d0c98474f6733d6699440c3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 18:55:50 -0800 Subject: [PATCH 267/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 2e1569301ac..7bcb4ff896e 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -26,18 +26,17 @@ def valid_braces(string: str) -> bool: """ index: int = 0 while index < len(string) - 1: - char: str = string[index] # in the first half of the string a new pair # should not be starting from closing brackets - if index < (len(string) // 2) and char in CLOSING: + if index < (len(string) // 2) and string[index] in CLOSING: return False # neighbor two brackets are matching pair - if BRACES[char] == string[index + 1]: + if BRACES[string[index]] == string[index + 1]: index += 2 continue # matching pair consist of brackets # in each half of the string - if BRACES[char] == string[(index + 1) * -1]: + if BRACES[string[index]] == string[(index + 1) * -1]: index += 1 continue # no matching pair From 18d8508ed9868a0df5669f1ea7f29b5f860b86b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:06:54 -0800 Subject: [PATCH 268/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 45 ++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 7bcb4ff896e..fcc2c08183e 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -26,20 +26,37 @@ def valid_braces(string: str) -> bool: """ index: int = 0 while index < len(string) - 1: - # in the first half of the string a new pair - # should not be starting from closing brackets - if index < (len(string) // 2) and string[index] in CLOSING: + index = validate_next_pair(string, index) + if not index: return False - # neighbor two brackets are matching pair - if BRACES[string[index]] == string[index + 1]: - index += 2 - continue - # matching pair consist of brackets - # in each half of the string - if BRACES[string[index]] == string[(index + 1) * -1]: - index += 1 - continue - # no matching pair - return False return True + + +def validate_next_pair(string: str, index: int) -> [int, None]: + """ + Check if next pair of brackets is valid + :param string: string of brackets + :param index: current index to validate + :return: next index or None if no matching brackets + """ + char: str = string[index] + + # in the first half of the string a new pair + # should not be starting from closing brackets + if index < (len(string) // 2) and char in CLOSING: + return None + + # neighbor two brackets are matching pair + if BRACES[char] == string[index + 1]: + index += 2 + return index + + # matching pair consist of brackets + # in each half of the string + if BRACES[char] == string[(index + 1) * -1]: + index += 1 + return index + + # no matching pair found + return None From 4872e80e3cec97ca13fe9f45a578b8831e763af5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:09:43 -0800 Subject: [PATCH 269/873] Update valid_braces.py kyu_6/valid_braces/valid_braces.py:36: error: Bracketed expression "[...]" is not valid as a type [valid-type] --- kyu_6/valid_braces/valid_braces.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index fcc2c08183e..3b81bfd596a 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -26,6 +26,7 @@ def valid_braces(string: str) -> bool: """ index: int = 0 while index < len(string) - 1: + # get next index to validate index = validate_next_pair(string, index) if not index: return False @@ -33,7 +34,7 @@ def valid_braces(string: str) -> bool: return True -def validate_next_pair(string: str, index: int) -> [int, None]: +def validate_next_pair(string: str, index: int) -> int | None: """ Check if next pair of brackets is valid :param string: string of brackets From f425eafa08a94bd8778040d4f885279a9a5fb774 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:19:34 -0800 Subject: [PATCH 270/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 3b81bfd596a..9ba963a3ef5 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -34,7 +34,7 @@ def valid_braces(string: str) -> bool: return True -def validate_next_pair(string: str, index: int) -> int | None: +def validate_next_pair(string: str, index: int) -> None | int: """ Check if next pair of brackets is valid :param string: string of brackets From db21ab8c19c5d9af46537681f8122933a9735008 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:22:50 -0800 Subject: [PATCH 271/873] Update valid_braces.py kyu_6/valid_braces/valid_braces.py:30: error: Incompatible types in assignment (expression has type "int | None", variable has type "int") [assignment] --- kyu_6/valid_braces/valid_braces.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 9ba963a3ef5..8dfe03f68fb 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -3,6 +3,7 @@ Created by Egor Kostan. GitHub: https://github.com/ikostan """ +import typing BRACES: dict = { '(': ')', @@ -34,6 +35,7 @@ def valid_braces(string: str) -> bool: return True +@typing.no_type_check def validate_next_pair(string: str, index: int) -> None | int: """ Check if next pair of brackets is valid From 6b7111b306404d84497e85152eafccf2706a6783 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:25:25 -0800 Subject: [PATCH 272/873] Allure summary --- ...6fd65a1519daa.txt => 102e6d56faf7b4e2.txt} | 0 ...f05bb544c0162.txt => 113f10167539853c.txt} | 0 ...5ec7cc829789f.txt => 13227bd500cb42e3.txt} | 0 ...969149cac19e2.txt => 1342cdaa6481456c.txt} | 0 ...91cd5629c473be.txt => 145b065c02fb875.txt} | 0 ...cdd605d9ea305.txt => 14f2aef00cdbb284.txt} | 0 ...918ffd5978feb.txt => 15093916dbf3d716.txt} | 0 ...2210bad838236.txt => 157d07999fe8bb77.txt} | 0 ...324c74021da7c.txt => 16068cef6801ede5.txt} | 0 ...0c33a0bd08814.txt => 175a566935f714fc.txt} | 0 ...d879b5dc89b5e.txt => 17e1f12bcdd4240f.txt} | 0 ...f6d6d1d510331.txt => 1889e3b457f9320a.txt} | 0 ...48e61461ec35c.txt => 18e75387bd3b0160.txt} | 0 ...1217f4d0fe3a2.txt => 1ad9ab8a22025032.txt} | 0 ...db26b4ade1966.txt => 1ce4c0edbbe04f9e.txt} | 0 ...e1a71d63acc96.txt => 1d47ca07980ea016.txt} | 0 ...af19dcd964af7.txt => 1de780c85f2aabb6.txt} | 0 ...b7e883a26cafe.txt => 1dfb198a7253b941.txt} | 0 ...6f8b00659b17c.txt => 1f6883e774d20c18.txt} | 0 ...4a085da0164d2.txt => 20671bf346c43317.txt} | 0 ...18e7ac55b0476.txt => 20cbc8ca27f67538.txt} | 0 ...83e198df733bf.txt => 20e82e5aa37702bc.txt} | 0 ...e9974a45dfae3.txt => 214be7d831eff2b3.txt} | 0 ...7474dc274435d.txt => 21b3833bd58160c1.txt} | 0 ...ddf6ef1a2b768.txt => 22c24dd6f011f9a2.txt} | 0 ...e645e567750bb1.txt => 24af1d7a0c0925a.txt} | 0 ...2754d2ac3d657.txt => 250afdca61317e51.txt} | 0 ...658932c1d51ff.txt => 250e2e008fa1f7b7.txt} | 0 ...5cf58cdd3658a.txt => 251fc94fc6c7a32c.txt} | 0 ...77c156ff5bb2b.txt => 2696faacdbe9d8c7.txt} | 0 ...bfb5be788ff64.txt => 26e6b6f5238c5b93.txt} | 0 ...19d7e1cf9a3c9b.txt => 2731ba669f341d4.txt} | 0 ...f678a4c7734b0.txt => 27790d440082a497.txt} | 0 ...f6f7a31afa4ff.txt => 27997c5236222053.txt} | 0 ...6f0c737bac26b.txt => 27ebdb1cdb347243.txt} | 0 ...c11179dd2dd46.txt => 2857c06d429f0757.txt} | 0 ...8d45d1073ca74.txt => 287eb5fa3fe3b8e6.txt} | 0 ...e1341a4df20a3.txt => 29aa0c598c1f2d04.txt} | 0 ...e8bc5b94972e3.txt => 2a2e64e7212768ad.txt} | 0 ...1da867cdb9cd9.txt => 2a7e83a8939aa3ea.txt} | 0 ...8266cfd985687.txt => 2b123edd90aa8cfa.txt} | 0 ...a4e5abf4ea8ba.txt => 2b2e74011774c312.txt} | 0 ...985fbd2700004.txt => 2c51ebffe286fde1.txt} | 0 ...f1653d6bd83ea.txt => 2d724952cd20b6e1.txt} | 0 ...68c2a309c9083.txt => 2de6534e84498685.txt} | 0 ...17786d1167bf5.txt => 2e0ebd0ab799745b.txt} | 0 ...9c67f026536b3.txt => 2e61a28436ed8397.txt} | 0 ...a0728042fecef.txt => 2f4fbc6ed8dc7bd7.txt} | 0 ...5e78c2bca1b60.txt => 2f6f124c7be3a6e5.txt} | 0 ...b56b3974e742a.txt => 2f87f52236c75608.txt} | 0 ...53e8aa39a2b6c.txt => 2f8e2ebe7761508b.txt} | 0 ...387d961fd6fe2.txt => 30ae8f4eae56e738.txt} | 0 ...162618bd1b29d.txt => 30e865fe73fa5b27.txt} | 0 ...0e5bd6518035b.txt => 312062c4d3ad84ef.txt} | 0 ...5a023fe62d7a5.txt => 312dff4578efa314.txt} | 0 ...3f7227b3021ebf.txt => 31e63916e4212e6.txt} | 0 ...fe7b1e08f632a.txt => 3228eb12f2ec789a.txt} | 0 ...a7c014fce4298.txt => 32bad6265b9c6d8f.txt} | 0 ...46d802fca4221.txt => 349072694382d10e.txt} | 0 ...305aec4aa6e06.txt => 358b4a5251243888.txt} | 0 ...67546b68da848.txt => 3642f149df538341.txt} | 0 ...d75c6915b1e704.txt => 36a84ce1aa4434a.txt} | 0 ...e4c42944f89c8.txt => 379cf75cca245ee2.txt} | 0 ...31f8c0af20d94.txt => 38035331d2572599.txt} | 0 ...44325875cc8c2.txt => 38545087bdeef541.txt} | 0 ...cb2223275d18f.txt => 38a8ba45b2ebefd2.txt} | 0 ...7a5351e31f1baf.txt => 38c339de2200090.txt} | 0 ...dc16fdfe05c84.txt => 3934a31f83c6b392.txt} | 0 ...95e740ae82411.txt => 3aa04a43be2f48f8.txt} | 0 ...d45ddb469c4aa.txt => 3b202dd3c9afa278.txt} | 0 ...ca288b44682ec.txt => 3cf96ebaed3b737c.txt} | 0 ...8a8a8ac8fa12e.txt => 3e106a35f51e50cd.txt} | 0 ...17426bd0c7f09.txt => 3f0fa9f25e69b0db.txt} | 0 ...1d3345681241e.txt => 3f196c8197b3dace.txt} | 0 ...f03709815f1ee7.txt => 3fb645b301593c3.txt} | 0 ...5a037b7d71615.txt => 3fc74f16bec5bbf3.txt} | 0 ...9750c0956602d.txt => 3fda8fe35c793420.txt} | 0 ...c30a7cf2d2e11.txt => 406f6d7cefafc12f.txt} | 0 ...2d488a926cad0.txt => 407f6f4c1f9bb5a2.txt} | 0 ...4e18b8435ce88.txt => 408eed1715a3503c.txt} | 0 ...88b2fc3849ac3.txt => 40d2195f3173474a.txt} | 0 ...de4a0d9b150b3.txt => 40f2f98b11de943f.txt} | 0 ...19824e08a6a92.txt => 41608c9ef684cb1e.txt} | 0 ...f7036130e9df9.txt => 4163d90850028d14.txt} | 0 ...d689bd033eb8a.txt => 41b26a3792b70bd8.txt} | 0 ...bdc8e4de5949e.txt => 41d5484e0bc70d7d.txt} | 0 ...3d133c1b1141f.txt => 41df37e97a182fa4.txt} | 0 ...c78567c01b81e.txt => 420f806ee93872a1.txt} | 0 ...608ae57e6ca33.txt => 42b879e2f735a0ac.txt} | 0 ...246047ca80d75.txt => 42c6735b0fe92ce1.txt} | 0 ...4694d3d785456.txt => 44f1e11e2ff687a2.txt} | 0 ...10bb4c8e33c64.txt => 45607bc70f60caca.txt} | 0 ...d7256cc9cd87f.txt => 4562f85c852f0a97.txt} | 0 ...8f8256722f1a9.txt => 458fa73ae78d8720.txt} | 0 ...983f6828d59c5.txt => 45f7f0c7806d7a5f.txt} | 0 ...2ca5006c94cc7.txt => 47825a7b608174fa.txt} | 0 ...57f5777ce8a7b.txt => 479118fc0413c04b.txt} | 0 ...9f823771e2123.txt => 47a1750ca1ae0253.txt} | 0 ...a1d8f74495540.txt => 47ad300a7de26866.txt} | 0 ...c34d0c68ae769.txt => 47cbc31b80f9d83c.txt} | 0 ...18f132f3362c9.txt => 485b7a7482b5d8a7.txt} | 0 ...d74e070792411.txt => 491bdfb319cbef56.txt} | 0 ...05475b72ce468.txt => 491da570f7a6ee0b.txt} | 0 ...4c1312eb8e355.txt => 4a17336d068efc8d.txt} | 0 ...2e9e6b9d5730c.txt => 4b1abe2714e07e88.txt} | 0 ...0d1d2e3a97f3c.txt => 4b36d71052a1b866.txt} | 0 ...5ee87cd665f265.txt => 4d30848274c8ad1.txt} | 0 ...18f4fe99b4a3a.txt => 4d7d20a8fa5049ef.txt} | 0 ...cb5d49df72338.txt => 4e1d630f27c230cc.txt} | 0 ...a9f86ff4ef095.txt => 4e693ea1a91f61ae.txt} | 0 ...f9727a6725fde.txt => 4eb3eb579b763a8f.txt} | 0 ...2cdaf17ee494c.txt => 4f2668e4eadc4184.txt} | 0 ...3e8aa201d424a.txt => 506f9b1aa47477d8.txt} | 0 ...a50edd6b56e2a.txt => 50b40a6b644cd21e.txt} | 0 ...3cab412c71bc2.txt => 50fb258de88c9004.txt} | 0 ...d8c9279e15557.txt => 51739cb22fa4b9dd.txt} | 0 ...8986b0baf88be.txt => 524aa4f029baa8f0.txt} | 0 ...d44dc6bf2e98e.txt => 53f4bbebe56fedf8.txt} | 0 ...52eee6ec1696f.txt => 54520f78b41446af.txt} | 0 ...9ba77a7bb2817.txt => 5473bc31f56d9a8c.txt} | 0 ...711b7e4875740.txt => 55397a95b3056409.txt} | 0 ...faae940d73b69.txt => 55f2f3a355e5f2ed.txt} | 0 ...9f0fb81f46c5f.txt => 57a50be8b38a35c0.txt} | 0 ...ea611207a542f.txt => 57e00ad1037160b6.txt} | 0 ...9d37b78101a20.txt => 58062fc7761306e3.txt} | 0 ...96e9fb5bb6b3f.txt => 58c4828262135699.txt} | 0 ...96af48234a9eb.txt => 5932d90eab3398ae.txt} | 0 ...daa57ff9298a6.txt => 5947f9b7e86e5fe4.txt} | 0 ...a05f468c4eca0.txt => 5967a008f3d7b308.txt} | 0 ...caf8f2715f1b6.txt => 59ffb265a3e6098c.txt} | 0 ...a92b7a1b9869e.txt => 5a774371a2badce6.txt} | 0 ...2dd61a98f0df6.txt => 5bbee37443803595.txt} | 0 ...607e9e5d7219c.txt => 5cd6ffe4ff4d743f.txt} | 0 ...23d763e6ea7e5.txt => 5d2b03d7ca85feb9.txt} | 0 ...1a14f7acaf229.txt => 5d69906a8709b5cf.txt} | 0 ...fd50f00e4c2ad5.txt => 5d705772211817a.txt} | 0 ...0d330469f49836.txt => 5e949b4a7c16c61.txt} | 0 ...08a3276ec1f33.txt => 5f030da14b8e67d2.txt} | 0 ...1a5601096c54c.txt => 5f8aca645c6a63be.txt} | 0 ...95168982ce3dd.txt => 5fb2caa4cfa17eeb.txt} | 0 ...7b9435ff3c623.txt => 6003c650ea768633.txt} | 0 ...e4dee965d4aad.txt => 60553188e91eeef0.txt} | 0 ...237e2a607b73d.txt => 609bbc010bbea5b7.txt} | 0 ...a8277ac6080e3.txt => 60a8c5c2c7c00ce5.txt} | 0 ...8201e6af0cd65.txt => 60b6667cdd104689.txt} | 0 ...7ee3418e7b9e0.txt => 613c4bb712b376ab.txt} | 0 ...09ea616537459.txt => 6152f64a0232194a.txt} | 0 ...cdbc81118a45c.txt => 61785349fe52fbcf.txt} | 0 ...dcbe4dae3ba12.txt => 61ad30a7c0f382b9.txt} | 0 ...9d59c982071d0.txt => 633abad852203ff8.txt} | 0 ...06e1d94c0b146.txt => 636126aa0fb68ef3.txt} | 0 ...449bab7c02e56.txt => 6362c8f15fc6c9c0.txt} | 0 ...3662cb85dce05.txt => 64228c9b0b57911a.txt} | 0 ...db209be30e4e9.txt => 653d98a4ef66ecba.txt} | 0 ...833c43953c1b1.txt => 657871840dfd173c.txt} | 0 ...2b389398fe1ce.txt => 662510f84e87d061.txt} | 0 ...989139561013a.txt => 66609ce44d720b41.txt} | 0 ...b19c655c226cd.txt => 67853a4b20ca2cdb.txt} | 0 ...5c99b47ae5bc6.txt => 678cbfc79956849c.txt} | 0 ...d8ecc1f6b5a44.txt => 6a40280d8ceb16cd.txt} | 0 ...dc509f3c7162d.txt => 6a90a8741dd8ba1f.txt} | 0 ...576ff182f36ef.txt => 6c8cae3bc3627567.txt} | 0 ...6639f39c4b7d0.txt => 6ccbedecdc10bf7c.txt} | 0 ...f2d22c5115b6e.txt => 6d177fc91cdd3978.txt} | 0 ...f708218c48d04.txt => 6d3df2dabc5ae756.txt} | 0 ...26a7ada5eb7bc.txt => 6d437f4331d47546.txt} | 0 ...c78a9496692b3.txt => 6dd9ffa61a5d6299.txt} | 0 ...cc5ff56326cce.txt => 6de140d5a479d77f.txt} | 0 ...c633acb769f22.txt => 6eedc0bd484f71d7.txt} | 0 ...b281f58e4fbe3.txt => 6f187ca9e0f038e3.txt} | 0 ...3e703f687ed41.txt => 70a5653f29871a87.txt} | 0 ...23a6dcaaab38a.txt => 716034871f152875.txt} | 0 ...cb255bcb4a08e.txt => 7269f46fd31058ea.txt} | 0 ...89a2ed03aa082.txt => 72987b318aa88c6e.txt} | 0 ...e4c2d208b9b87.txt => 72a8521de031df4e.txt} | 0 ...50ae6a92d4a65.txt => 72a9f976cb96a98d.txt} | 0 ...0dd2a3bb6ed30.txt => 72e5eb2953c41fef.txt} | 0 ...bd6c7bb69da29.txt => 73b1a6171e8a5d4c.txt} | 0 ...2eb36f048a843.txt => 73fc8f8784290b40.txt} | 0 ...0f4c8246dad00.txt => 74cdc928e034d6b3.txt} | 0 ...11ddd2a3b1d10.txt => 74dc839f94675f1c.txt} | 0 ...1ccf0eed329a1.txt => 760dfa55370d45f9.txt} | 0 ...dc248069b48d7.txt => 763b805ca97b9cb4.txt} | 0 ...27ebef7dd2119.txt => 77ebc227660f6677.txt} | 0 ...5e98a684cd625.txt => 780df00dc666cbbd.txt} | 0 ...fb31ae5f3473b.txt => 7899fdb7c4350c2b.txt} | 0 ...88f81545fa9dcf.txt => 78bed3c0bc3ed4a.txt} | 0 ...96f0ad42d1de6.txt => 78d708b30903548d.txt} | 0 ...fef51a9e30706.txt => 796b2b673c5d0f8b.txt} | 0 ...dacd86be04ffa.txt => 797fb7eadd505b53.txt} | 0 ...702f79cbcea35.txt => 7a82343faf93d23b.txt} | 0 ...e28e5668d68f6.txt => 7ac45d8c1df7c43f.txt} | 0 ...888d9c16f6ee3a.txt => 7b12ebc1ff02117.txt} | 0 ...36534de68582a.txt => 7bf0ce4c1ec59dfa.txt} | 0 ...a39cd8bddfb25.txt => 7cf8e66e6e1debdd.txt} | 0 ...50a2b5eace42e.txt => 8026ef3ff023cc9a.txt} | 0 ...7eb06540fa1b6.txt => 804c421dc94f15f8.txt} | 0 ...ecae81ecbadad.txt => 80cb92b2a68485aa.txt} | 0 ...e7f0ed07eb16c.txt => 817f3cd0d39f56b9.txt} | 0 ...4e07d274c2e01.txt => 81acaad5616d047a.txt} | 0 ...72755d6763015.txt => 835e4619c5013fd1.txt} | 0 ...a2c92c8612a83.txt => 84790cd414c0264a.txt} | 0 ...38c3953869594.txt => 850bcf9305b7e315.txt} | 0 ...15415abccae34.txt => 85813043366b6b90.txt} | 0 ...4e5921b3f960d.txt => 85c42dfa3ebb2236.txt} | 0 ...7a124114dd519.txt => 85d8941907447826.txt} | 0 ...e8653b698fb5f.txt => 8778cf7e4eef01cb.txt} | 0 ...3e2fc1b8c856f.txt => 87d3adc8617c894b.txt} | 0 ...46cbb4e98fc76.txt => 894b6ecea0eca1b4.txt} | 0 ...8c0041b64d7a8.txt => 8afe9706a7ce18ad.txt} | 0 ...f9d3c4680bc47.txt => 8b971d66be6d6e40.txt} | 0 ...d25baaaa2cac0.txt => 8bb1795fd7e9c165.txt} | 0 ...59f79bb13d8ea.txt => 8c55c5917aa6e797.txt} | 0 ...28cf6a3bf7297.txt => 8d340a810a5e354f.txt} | 0 ...1f5d691b52e57.txt => 8e812b8e3303683b.txt} | 0 ...5591b59d574128.txt => 8ecb0410a6ed3d7.txt} | 0 ...49bcbd7d5b064.txt => 8fe17348ea95e36a.txt} | 0 ...9238385a5cb6d.txt => 912408d5d8c9a319.txt} | 0 ...8bec5b6c8eafe.txt => 94063c17619b52a4.txt} | 0 ...41eaebe2a3ba3.txt => 943e8734629abe38.txt} | 0 ...146c7b14fd6fd.txt => 9473dcf11398d47e.txt} | 0 ...18ed9afde7ea1.txt => 94e9d8b306bae268.txt} | 0 ...4f1f08939323f.txt => 96a11dda30514e67.txt} | 0 ...64bb60201538c.txt => 96d9a9c4b2d76831.txt} | 0 ...41cfdabd60782.txt => 9799e3f6110c5a32.txt} | 0 ...74363acc62acc.txt => 97c0819228c5b269.txt} | 0 ...2ee18f96c325a.txt => 9905895b50875943.txt} | 0 ...5e181fd0e6388.txt => 9970c74c966a73af.txt} | 0 ...ef4a825ddd5b7.txt => 998c70b07f1415e5.txt} | 0 ...5c406aca5ef66.txt => 9999070a00162057.txt} | 0 ...7acd474e52c7c.txt => 9b1c37b21b76b29e.txt} | 0 ...e92a1032075c9.txt => 9b3917a8b59d5897.txt} | 0 ...44b266aa98436.txt => 9ca1d978c6df1121.txt} | 0 ...2f56ac699fd36.txt => 9d7d21f763543a21.txt} | 0 ...5d7437b08e659.txt => 9e245b3b58a92040.txt} | 0 ...a37195574156f.txt => 9e367429b8224516.txt} | 0 ...a61fc243fdba8.txt => 9e567229f9ee12b7.txt} | 0 ...3fd2a44d74bcb.txt => 9e573d2ead28469f.txt} | 0 ...ae5551f423f5f.txt => 9f73c3d7a4d872db.txt} | 0 ...ac6726b459082.txt => 9f9ce9c609c0bc6d.txt} | 0 ...715c67d99ec0e.txt => 9fbeafabb75260d1.txt} | 0 ...3349f87c576ac.txt => a21b9ca1dd2e7b86.txt} | 0 ...3a24130d10b19.txt => a2484027e285a197.txt} | 0 ...ecc9a719af32f.txt => a3653a5d01cb978a.txt} | 0 ...93a784e166457.txt => a3b3cc61f9d4e36a.txt} | 0 ...ee6aafaeecdbf.txt => a42bbda54a679e90.txt} | 0 ...a2d0c90cfef1e.txt => a45595e4822528c2.txt} | 0 ...d9c2915855555.txt => a66e2ef0dd5ae597.txt} | 0 ...ed65aadf059368.txt => a68de0f4d0253c8.txt} | 0 ...52035df5cd6e2.txt => a6b1894a1d267067.txt} | 0 ...2b8e600c203d1.txt => a77304cbd9f33e1a.txt} | 0 ...513778c4c6c4f.txt => a85d028b53b2fa36.txt} | 0 ...707a7900b643f.txt => a8645f795d532c99.txt} | 0 ...05623e6466063.txt => a9137c6294090d64.txt} | 0 ...9d790c546ddb7.txt => a93887f366c469bf.txt} | 0 ...515a36bc2165b.txt => a96837b21492cfc6.txt} | 0 ...a9ae1b56b4086.txt => aa1c2e562160f609.txt} | 0 ...e43a426f47681.txt => abb95e0c50272d33.txt} | 0 ...84f9bfa00ca83.txt => abff3e6ddecc6408.txt} | 0 ...ee012a96ef9b6.txt => ad735a94d30c45bf.txt} | 0 ...957d5beb797a6.txt => afa2344a5891233b.txt} | 0 ...d22d7c09cd383.txt => b010be274d24546e.txt} | 0 ...e0299a0ca1906.txt => b1cd53c85d21b130.txt} | 0 ...ec04c5333a588.txt => b1edf41b3f6059d4.txt} | 0 ...16ad47549f357.txt => b3163cc1ff017e55.txt} | 0 ...c00d99760de4b.txt => b38075c83e7baebb.txt} | 0 ...66732e5fdad66.txt => b3d868139d71d5f7.txt} | 0 ...9b7ea8b8b69174.txt => b3fc324c4038294.txt} | 0 ...0c6dd4e02cb56.txt => b56e36dfb1d3c6b9.txt} | 0 ...9a21eca90a0a9.txt => b668f07fa0a63017.txt} | 0 ...455921a73202d.txt => b75f0fc5a14ca4fd.txt} | 0 ...bf17d38e7cc3b.txt => b7eae48ecc824334.txt} | 0 ...038e2de6e977a.txt => b8984e5480e91547.txt} | 0 ...57b3e858fa9c0.txt => b9b51ca36b85ae94.txt} | 0 ...cd00c6909033a.txt => ba852967ab446eeb.txt} | 0 ...e694e393088b4.txt => baaad4c171b47b9e.txt} | 0 ...a9047ac128608.txt => baac53f2bcc51cfd.txt} | 0 ...2aa7c4aaaeed2.txt => bbc90d26ad4a4f8d.txt} | 0 ...36ba66285cf8e.txt => bc75ae4e4dd30a2d.txt} | 0 ...bb88dc50af4ea.txt => bcefb385384ff8bd.txt} | 0 ...f3c2609186193.txt => bcfe223ecfa6a3c6.txt} | 0 ...b1971a8a3587e.txt => be09c92a6fe0ac60.txt} | 0 ...4b2090647c37e.txt => c2e7b358c14deeef.txt} | 0 ...d1b5f063278d8.txt => c37932e6bf05499f.txt} | 0 ...73f373251accf.txt => c396a9cbff279a34.txt} | 0 ...157c47f361971.txt => c41bf0bbb023a57f.txt} | 0 ...3342383736358.txt => c5a486abc69fc1fc.txt} | 0 ...ae94f2517e85b.txt => c81a97703cb852b3.txt} | 0 ...727f5bb9d52ae.txt => c9000a1177d78061.txt} | 0 ...043619d2b0689.txt => c9806239f448fcb9.txt} | 0 ...0498d197d8df1.txt => c9b22cc9dc28f439.txt} | 0 ...ceec6c0cda082.txt => ca30023d79faffff.txt} | 0 ...594686b0a84bd.txt => ca809417038f1f70.txt} | 0 ...55b08b75495d0.txt => cbf43f2ebe410372.txt} | 0 ...644536e05f3d6.txt => cc1b1893c2b8b52d.txt} | 0 ...9250c4d2cb198.txt => cc532e29d77b891e.txt} | 0 ...c5be84836fafb.txt => cd297c98bb2f9177.txt} | 0 ...9f3862628691e.txt => cd47dccaf2814ffa.txt} | 0 ...892408ba7673f.txt => cfdd9038af68abcd.txt} | 0 ...ec5980af4ec14.txt => cff9f69ec70ee0f7.txt} | 0 ...4047155365dbf.txt => d03a9a8c81cbe39f.txt} | 0 ...f3e067845857a.txt => d07a2236fba5201a.txt} | 0 ...58e86a56b6f3b.txt => d0bc1ad841243b6a.txt} | 0 ...9fdee962a6c7a.txt => d10d4fe51ef67a7e.txt} | 0 ...dfdc5beea1549.txt => d1599295a3f41ee0.txt} | 0 ...95e9095070885.txt => d1ef36a16a608c99.txt} | 0 ...94a39bd8b19be.txt => d21731264b505a67.txt} | 0 ...76623a3e27602.txt => d22073d8d3352f3e.txt} | 0 ...7f8901012b2cd.txt => d23d24d51ab0f2ec.txt} | 0 ...e8b9f43d09441.txt => d2685b3f41e9f61c.txt} | 0 ...031a187e70f58.txt => d31f2c0a44e75654.txt} | 0 ...fc30c761eea74.txt => d38be6ef6dfa6828.txt} | 0 ...6b645422c34b6.txt => d3d4f5edff7b23a8.txt} | 0 ...673a9df06bdbef.txt => d473fba435502d8.txt} | 0 ...512d2a26a891e.txt => d497d06498897878.txt} | 0 ...51593ff534b14.txt => d4f2ea957f6fd3d1.txt} | 0 ...266e95eacb400.txt => d53bb0f8a7466de9.txt} | 0 ...856bc357d2685.txt => d5812afb446c78ce.txt} | 0 ...a53f1fea24b32.txt => d8719a36b49cd420.txt} | 0 ...0bbe65fc37bcd.txt => d8a2a5280a09e0f4.txt} | 0 ...641784540be20.txt => d9ffb014ecda8013.txt} | 0 ...73a4f3af439d6.txt => da21be7860f58cf6.txt} | 0 ...db95799e89350.txt => db8507235524f855.txt} | 0 ...53791dbf86dfe.txt => dc735d6cbaa38cba.txt} | 0 ...819977a6f7bba.txt => dd8004b465c9b5f8.txt} | 0 ...1df6b2bd53059.txt => df41cf6b46c44c9e.txt} | 0 ...83696eff0b379.txt => dfbdbb71de71756e.txt} | 0 ...ea3c1c7d07513.txt => e01af9821f0d361c.txt} | 0 ...b97d784c6cf01.txt => e07fc7bf167a48cd.txt} | 0 ...f09b568ff5668.txt => e084f22fa99f8e9d.txt} | 0 ...199981b020b59.txt => e1032190833aaac7.txt} | 0 ...dd41e46efca9ee.txt => e22a14740da9552.txt} | 0 ...8961e386c4fec.txt => e255c73086be3d07.txt} | 0 ...6fca37064555a.txt => e4c3264e25c98281.txt} | 0 ...d8444cfb8c128.txt => e6e24d1199424ffc.txt} | 0 ...75ce905d3bb32.txt => e707854c25108dd3.txt} | 0 ...30f8b38971a56.txt => e7a51c8d74f448fe.txt} | 0 ...97e6990138a02.txt => e932ac087f99689b.txt} | 0 ...b206c202bb2e0.txt => ea9613cb4c662f2e.txt} | 0 ...eaf1e6f057287.txt => eaf9f3a704742209.txt} | 0 ...deaae3b3d699a.txt => eb2a7d798a0dd1d2.txt} | 0 ...039f3bc7f748f.txt => eb5eccf50db39cb4.txt} | 0 ...0050d216178a3.txt => ebde2b3c5f7bae47.txt} | 0 ...a7a7ffc396f31.txt => ec0aa2198d4850df.txt} | 0 ...925f082e601ea.txt => ec381cac44a14e7f.txt} | 0 ...f85a8fac351b8.txt => ed1895964a4f1dc3.txt} | 0 ...58087789a46ca.txt => ed45fb968677e918.txt} | 0 ...9ce1f0ac184a6.txt => ee8e3a23a26b4600.txt} | 0 ...6923321373575.txt => eecd5302084b69b0.txt} | 0 ...3aa0d76e6e0f1.txt => ef03ba760fe885c0.txt} | 0 ...9dfd0dcd30d55.txt => ef0993259005a4f7.txt} | 0 ...43402bfd67bde.txt => ef5ba384071190d7.txt} | 0 ...002cae94869ae.txt => efdc700a12236023.txt} | 0 ...b63f604b55e53.txt => f135592d4f270e5c.txt} | 0 ...f3d58b0c226e8.txt => f146e27128e108d6.txt} | 0 ...aa4666b4af5af.txt => f1567e8d01d8dfde.txt} | 0 ...819432a0a8bbc.txt => f2a9e45ebf48d755.txt} | 0 ...1ca1a830493f6.txt => f451e0abb748fcc1.txt} | 0 ...cae885131e395.txt => f469dcf875239b3a.txt} | 0 ...b85a28a1d1502.txt => f4832c8bd9f79614.txt} | 0 ...0e041a65d579a.txt => f4b8bcccd8e3d9a5.txt} | 0 ...3cf938d78c4d4.txt => f4f546882d08a1ac.txt} | 0 ...294dda064bff1.txt => f5e7c985bb14104f.txt} | 0 ...a6146da01ffaa.txt => f7cb1151a0bdf19c.txt} | 0 ...54a973a3165a7.txt => f82dd65f45ebad45.txt} | 0 ...4986f2adab578.txt => f8693f25c4ee9e10.txt} | 0 ...42db42407a1b3.txt => f91cde579304f854.txt} | 0 ...49bbac8d757852.txt => f965c0bd2baa205.txt} | 0 ...f1182be2fa344.txt => f9925186cd87d138.txt} | 0 ...ce25e72082ee1.txt => f9be06237574ec64.txt} | 0 ...18087db2eef7c.txt => fb0a5c86d6124176.txt} | 0 ...865faf74786aa.txt => fb983dadd4fd2138.txt} | 0 ...a8c5ce62738a7.txt => fba7e6f7e7538915.txt} | 0 ...9afa4d498e7c1.txt => fbbce307fc80ae94.txt} | 0 ...2a83ce892d840.txt => fcd71aa1ac7b19de.txt} | 0 ...50817bf2ce3d3.txt => fceb9ab1ca4c439c.txt} | 0 ...59e715edfaf26.txt => fe10e73cc4ad9f0b.txt} | 0 ...ee8571e9e5841.txt => fec9fd349f1d045f.txt} | 0 ...16b6d9a3730c2.txt => ff7405a34f99b6d6.txt} | 0 allure-report/data/behaviors.csv | 269 +-- allure-report/data/behaviors.json | 2 +- allure-report/data/packages.json | 2 +- allure-report/data/suites.csv | 2095 +++++++++-------- allure-report/data/suites.json | 2 +- .../data/test-cases/10105e91d30d0887.json | 1 - ...5a61e801d4c.json => 1065b8b44c0afc6f.json} | 2 +- .../data/test-cases/10f08e5166368fc8.json | 1 + ...2fecd2b527c.json => 11195fbf11e8bfc3.json} | 2 +- ...a9545c416cd.json => 111dbc365b1f3e78.json} | 2 +- .../data/test-cases/112ca50049d27c.json | 1 + .../data/test-cases/113e69c4ee0f071.json | 1 + ...73aac2c9d08.json => 117e19024dff1cfd.json} | 2 +- ...78794c4402b.json => 11ff02c2df19530d.json} | 2 +- ...9d797a3c2ab.json => 1212df96f6b2dc34.json} | 2 +- ...c280c74020d.json => 1216cba41972f97c.json} | 2 +- ...1fafcf7f4e1.json => 122ba025ebcea5dd.json} | 2 +- ...713a007f1d7.json => 1230413e064883bb.json} | 2 +- .../data/test-cases/1251fa1056fea3d4.json | 1 + .../data/test-cases/1265911f14bcd919.json | 1 - .../data/test-cases/12688af3a6e6b4d.json | 1 - ...ffb20b661b5.json => 126c2e67245419a9.json} | 2 +- ...39a4d4f9bf4.json => 12c07b407ce072f5.json} | 2 +- ...4f519ec1ce3.json => 139cceadff83cc0d.json} | 2 +- ...6c05ba4cb98.json => 13c4343c88a790e8.json} | 2 +- ...8a5ba99d447.json => 13c5e35ef3c791a0.json} | 2 +- .../data/test-cases/13f340b5f893b4e2.json | 1 + ...0f5363e3016.json => 142b0c4f3754d996.json} | 2 +- .../data/test-cases/142f5165c8452d36.json | 1 + .../data/test-cases/14829aa4ce177c0a.json | 1 + ...2fa5620cc18.json => 14c8b0cd48caa4d6.json} | 2 +- .../data/test-cases/14cdd8696beec9a.json | 1 + .../data/test-cases/152d6167de0fb37e.json | 1 + .../data/test-cases/15315242cf60389c.json | 1 + ...341c811e8de.json => 1531ff5e4d5380e4.json} | 2 +- ...a6c5cc24cef.json => 156fc08ab7167514.json} | 2 +- .../data/test-cases/15f47b991f284575.json | 1 - .../data/test-cases/161e5fcc0f247.json | 1 - .../data/test-cases/162a4f2fa010c721.json | 1 + .../data/test-cases/168d1058a213deae.json | 1 + ...2813983814b.json => 168ffd09c766442f.json} | 2 +- ...f8ab37d71ba.json => 170ac645fcf8229c.json} | 2 +- ...ddff1ce0b6f.json => 1751fe3c0a6687c3.json} | 2 +- .../data/test-cases/17c9a97f8a5ea815.json | 1 + .../data/test-cases/183ba5aa4a18280.json | 1 + .../data/test-cases/1857a7ece8075aa5.json | 1 + .../data/test-cases/190ed93e28b901b.json | 1 + ...85aab34c4e6.json => 1938d829429abf54.json} | 2 +- ...1a6eff8ced3.json => 197e00510d3eb166.json} | 2 +- ...9402c254937.json => 197e80b267cccc2b.json} | 2 +- .../data/test-cases/19cfe4000991e820.json | 1 + .../data/test-cases/1a13c6a89153460b.json | 1 + ...0d10bce7cf5.json => 1a204aa873a93d86.json} | 2 +- .../data/test-cases/1a8f12ae9a258bd1.json | 1 + .../data/test-cases/1abde016dd7f5ee7.json | 1 + ...d46b923bc4f.json => 1ae269d449ac7d5e.json} | 2 +- ...ec0ca08f2cd.json => 1b24a6e8f9065ccb.json} | 2 +- .../data/test-cases/1b57aafe4439b9a8.json | 1 + ...fe4a302b125.json => 1b6850c9f0a02820.json} | 2 +- ...db7bef82294.json => 1b6eab50f2f722f5.json} | 2 +- ...44b31d54c14.json => 1b7657273f039658.json} | 2 +- ...03efab2941f.json => 1b95adcea61e4ef5.json} | 2 +- ...a448294d535.json => 1b9a7ef859e6370c.json} | 2 +- .../data/test-cases/1baceb9fc9699f7.json | 1 - ...9af1a22ed8b.json => 1bcebf4fb624aad6.json} | 2 +- .../data/test-cases/1bd3919646678e3f.json | 1 + ...62a5dac9d1e.json => 1be5b98a41807de8.json} | 2 +- .../data/test-cases/1bf4128bcf35143f.json | 1 + ...df45fea2887.json => 1bfd57b8cda6c028.json} | 2 +- ...004a4136993.json => 1c217987ee1a1d39.json} | 2 +- ...6e868e9efe6.json => 1c33446eccccc45a.json} | 2 +- .../data/test-cases/1c3655d4a978bd79.json | 1 + .../data/test-cases/1c8c3b6600a20e75.json | 1 - .../data/test-cases/1c9684bf403c80de.json | 1 + ...3c0f9370311.json => 1d02b155522c6119.json} | 2 +- .../data/test-cases/1d2104b5fa1d29b.json | 1 - ...d2a8eefa024.json => 1d437c172b71c55f.json} | 2 +- ...fe2b6cd2563.json => 1d4c3341dfe8e289.json} | 2 +- ...27d12d4e4df.json => 1d756394430052ee.json} | 2 +- ...2c3145720e6.json => 1d7a8665bbc3ca3a.json} | 2 +- ...9ce35083af7.json => 1dd416b71393e4f8.json} | 2 +- ...3d5d8056be9.json => 1ddf203d8a3c498d.json} | 2 +- ...d778f756fae.json => 1e4e59f90ff35603.json} | 2 +- ...44ab5ecf216.json => 1e6c7d1c4189d9dd.json} | 2 +- .../data/test-cases/1f1df83d6cc10b66.json | 1 + ...0d3a8429db7.json => 1f21450476aa4c9a.json} | 2 +- .../data/test-cases/200b5f0b4ec790a3.json | 1 + ...62f743b3603.json => 200c9d07d930b3b1.json} | 2 +- .../data/test-cases/20301c2d6922300e.json | 1 + ...d20e58a9d6a.json => 20569c47774cf3c7.json} | 2 +- .../data/test-cases/2064c7d6b1732474.json | 1 + ...a401f5af485.json => 210d6cbbe1051e7b.json} | 2 +- ...569c8b8923f.json => 2180a5f5e79006a1.json} | 2 +- ...55e27a468ef.json => 21dca02637c8027f.json} | 2 +- ...5518444ac71.json => 229dd074fbcb6ca1.json} | 2 +- ...4645221ebb4.json => 22d82bbeb537c71a.json} | 2 +- ...a938f9d4989.json => 22f939e586318511.json} | 2 +- ...ceb39f40f4f.json => 23151e1dbdaacb09.json} | 2 +- ...1fe5b50c363.json => 23199ebc2c7c1fa2.json} | 2 +- .../data/test-cases/2399abc94e3173da.json | 1 + .../data/test-cases/23e61e29448b9218.json | 1 - ...2ab8a90859d.json => 23e7f7a9e25073fa.json} | 2 +- .../data/test-cases/2483ff464fe4ea07.json | 1 + ...cba4efb343a.json => 2488d38c1be516d6.json} | 2 +- .../data/test-cases/24b136640bd96c68.json | 1 + ...c7dbd092b26.json => 24b32ad032525022.json} | 2 +- ...62da84c64b4.json => 24df9329b634133a.json} | 2 +- ...a91bc0b9e52.json => 256439519ef758bc.json} | 2 +- ...7b70ff35380.json => 25a19c539143ffc2.json} | 2 +- ...e7a6523571a.json => 25b0f3d782a2ed03.json} | 2 +- ...11259e850f6.json => 26a447cb7c15cb4e.json} | 2 +- ...642fa0cf7c1.json => 27e5ed0c95dfc112.json} | 2 +- ...0798f5a8f0a.json => 280752ec061c1457.json} | 2 +- ...ce66bbb53cd.json => 28083507c1397923.json} | 2 +- .../data/test-cases/28847243d9b7f290.json | 1 + ...7d50def0411.json => 288e814175ef5830.json} | 2 +- .../data/test-cases/2890c501d19b5f47.json | 1 + .../data/test-cases/28a9bedc22c54787.json | 1 + ...67f8df1184b.json => 294aa341a28271bb.json} | 2 +- ...f331756b11e.json => 296f86e34803d6c1.json} | 2 +- .../data/test-cases/2991adec6435da10.json | 1 + ...eacad5a43bc.json => 2ac4d21875a44bdb.json} | 2 +- ...df7fba3a78e.json => 2ba00773a1bfae2e.json} | 2 +- .../data/test-cases/2be24f9b66669d76.json | 1 + .../data/test-cases/2c38900f28571c1.json | 1 + .../data/test-cases/2c53cc9448de91f2.json | 1 + ...1370251e5ca.json => 2c7af88777002151.json} | 2 +- .../data/test-cases/2ce701a458e1cd31.json | 1 - .../data/test-cases/2d49ce73ea45d7a1.json | 1 + ...176d35d3813.json => 2da97da2ac2c9bbd.json} | 2 +- ...0a7368c9ffd.json => 2dcba5fbac259354.json} | 2 +- ...eeb673713e3.json => 2e0eb113649e95e6.json} | 2 +- ...6ac7d91604a.json => 2ee59d9a8c304f3b.json} | 2 +- .../data/test-cases/2f46a2e41d4cb55.json | 1 + ...14fc4bd1dd7.json => 2fb895d93acc0bab.json} | 2 +- .../data/test-cases/300c045916564a1.json | 1 + .../data/test-cases/302e450946481df3.json | 1 + ...8de75b599ba.json => 303f99106d04e0c7.json} | 2 +- .../data/test-cases/30977e1fdeed6f0a.json | 1 + ...8289fb078f8.json => 30ac3ffad3316fea.json} | 2 +- ...20818fb9682.json => 30e62f45ee93d21d.json} | 2 +- .../data/test-cases/30ebc2ebd440c488.json | 1 + .../data/test-cases/31802a90aeba5e97.json | 1 + ...388b10e55d5.json => 319c2fc51c0b8912.json} | 2 +- ...c10cf88efee.json => 31a691fa5a56c905.json} | 2 +- .../data/test-cases/31ab703bf65847e5.json | 1 + .../data/test-cases/324d19209fbeb70d.json | 1 + .../data/test-cases/32703c37c2f9cfbd.json | 1 - ...122d9c0870d.json => 329cbbd27ed228a7.json} | 2 +- .../data/test-cases/32a39f3c0fa23567.json | 1 + ...01a4cae53ad.json => 330a0128cd73780c.json} | 2 +- ...3eece0f34c3.json => 335c39c3e0f7aa15.json} | 2 +- ...1ff9d2e2c1f.json => 3400d1d080e82f75.json} | 2 +- ...275fadfceea.json => 3460c7a02debe899.json} | 2 +- .../data/test-cases/34931ad2bd045d0c.json | 1 + ...6b28fb32dd0.json => 34ca51906297ee6f.json} | 2 +- .../data/test-cases/354cda6601a7cded.json | 1 + .../data/test-cases/35836d979e37575.json | 1 - ...191e1f5ab3b.json => 359cda8d66959d20.json} | 2 +- .../data/test-cases/35f4051adfa3517.json | 1 + ...372aa4005f1.json => 3604ad2531e10e0a.json} | 2 +- ...77db5231ef9.json => 36552864c04c1cf9.json} | 2 +- ...9dcac4b0d93.json => 3714d7b27c33cf44.json} | 2 +- ...73500029121.json => 3719e4e464aa700e.json} | 2 +- ...83d801b6c42.json => 3785819940a9985f.json} | 2 +- ...ca3dc1624b1.json => 378b8959bf0b41a9.json} | 2 +- ...23b946a1c32.json => 37af89538f752875.json} | 2 +- .../data/test-cases/37bcd45d30c593a7.json | 1 + .../data/test-cases/37c27a38809b08b4.json | 1 + .../data/test-cases/38365b0f6f350ca5.json | 1 - ...c7340f7150f.json => 383972b39eec664a.json} | 2 +- .../data/test-cases/3846518071a02e50.json | 1 + ...92b1c739356.json => 3846d19bb4975491.json} | 2 +- .../data/test-cases/388d9dc9fa1f1c3a.json | 1 + ...d6d64dc027a.json => 38d84fb9239b5f2e.json} | 2 +- ...6cbb202d7b3.json => 393b88e5ac625a50.json} | 2 +- ...e582b6f3de4.json => 395a8f7cfcd6a2c9.json} | 2 +- ...3f1e3abe9a5.json => 3a617c2d20fe6a0a.json} | 2 +- ...6609523c5a8.json => 3b252f71e94d60c3.json} | 2 +- ...af516b0f755.json => 3b2be2c8b8f3d0bb.json} | 2 +- ...876a88f5382.json => 3b453b26a6476828.json} | 2 +- .../data/test-cases/3b9e344534b3c5db.json | 1 + ...5bac7417dd0.json => 3bb063d5045f38b5.json} | 2 +- ...40036941792.json => 3c275e4650ef1fcb.json} | 2 +- .../data/test-cases/3c7a781e3674db5e.json | 1 + ...6f00a3ffda1.json => 3c99f2489842209e.json} | 2 +- .../data/test-cases/3cb7f65d354963ea.json | 1 + .../data/test-cases/3d05de3d43cf437d.json | 1 + ...0c9792b808f.json => 3d09efb523dadc81.json} | 2 +- .../data/test-cases/3d40466198fa34e6.json | 1 + .../data/test-cases/3d4ef3b1faaf3c9d.json | 1 + .../data/test-cases/3d4f8cb2de087cf.json | 1 - .../data/test-cases/3de1512f067d459d.json | 1 + .../data/test-cases/3de5bbe9e7cab5b6.json | 1 + .../data/test-cases/3e564e38813f1539.json | 1 + ...5d6bf21528b.json => 3e88e2d0381e105a.json} | 2 +- .../data/test-cases/3ead41117d0ad5b6.json | 1 + .../data/test-cases/3f3bfc03f90689c3.json | 1 + ...ae746d0bb3a.json => 3f678007c09ea2b5.json} | 2 +- .../data/test-cases/3fe8a02ede1e6532.json | 1 + .../data/test-cases/3ff87d981594c6f7.json | 1 + .../data/test-cases/405b625cf95f9fbd.json | 1 + ...a676a12b5c6.json => 406377324fdf0256.json} | 2 +- .../data/test-cases/40819c186d07d3de.json | 1 - ...d5af6447b30.json => 40a0fe54277654cc.json} | 2 +- .../data/test-cases/40c938f8f83f34f7.json | 1 - .../data/test-cases/413fd3063d3e7dc4.json | 1 - .../data/test-cases/41668c3c4e1a677a.json | 1 + .../data/test-cases/416bb0c0ac58f7b6.json | 1 + ...ef765c09569.json => 41a6baf598873d9b.json} | 2 +- ...3f1cae4659e.json => 42358797bb03e774.json} | 2 +- ...65f4f4fe8e7.json => 42452319aaa200ae.json} | 2 +- .../data/test-cases/4249127f6bff6f10.json | 1 + .../data/test-cases/428efcfcd43d2531.json | 1 - ...b40d7651adc.json => 42bd5b348187136c.json} | 2 +- ...cc30173aa77.json => 437936b48694b75d.json} | 2 +- .../data/test-cases/43a8b37a1715c915.json | 1 + ...8a9cd944330.json => 43c9c9efb1c04251.json} | 2 +- ...685c38fccbb.json => 4430fa612ad99844.json} | 2 +- .../data/test-cases/4438dce845a8b680.json | 1 + ...9e05306bc09.json => 44516baeffa03c9d.json} | 2 +- .../data/test-cases/44e584571b03be2.json | 1 + .../data/test-cases/450fbb27e2067be4.json | 1 + .../data/test-cases/45bc1447720343e5.json | 1 + ...e0764902ab4.json => 4617147ad7612076.json} | 2 +- .../data/test-cases/46ad98eaed470ea7.json | 1 + ...6bb610cc3bd.json => 46de5298b06a2e8f.json} | 2 +- .../data/test-cases/46eea1e10beb3240.json | 1 + .../data/test-cases/4710cc2182eb85cb.json | 1 + ...10b1ca6cef6.json => 4719969d944ed48a.json} | 2 +- ...98ca5ed066c.json => 472edec34fd4cc19.json} | 2 +- .../data/test-cases/4736c243443acbf6.json | 1 + ...af3ed9f3ed0.json => 479b452abb7b813c.json} | 2 +- ...012085cbb67.json => 47cf0745ec1b0964.json} | 2 +- ...3d0f61cf99a.json => 47f8dbee3cb403d3.json} | 2 +- ...8c00956ea02.json => 482801cdd802c850.json} | 2 +- .../data/test-cases/48e03b38164b77c2.json | 1 + .../data/test-cases/48fa5f91e3478c29.json | 1 + ...507beaa1547.json => 49044c1c42d54a81.json} | 2 +- ...c6d22a3ea0b.json => 4941703c69aa6dd8.json} | 2 +- ...496d8bde803.json => 494bc5055e76bf71.json} | 2 +- ...3cedb1bfef0.json => 497e27a7f74365e8.json} | 2 +- .../data/test-cases/49ad6a9c0404421b.json | 1 + .../data/test-cases/4a35a10fb92b5fdb.json | 1 - .../data/test-cases/4a386a153d4cde6.json | 1 - ...f6c5cfe2b58.json => 4a6083b6c2f5cc4b.json} | 2 +- .../data/test-cases/4aa405db56695158.json | 1 - .../data/test-cases/4ab01f4fc722fa2f.json | 1 + .../data/test-cases/4ab2fd070154adeb.json | 1 + ...3bc2703e398.json => 4acb1c573ef8b7bb.json} | 2 +- ...95162404297.json => 4b22647a9cdd2bef.json} | 2 +- .../data/test-cases/4b28b33a131eefd9.json | 1 + .../data/test-cases/4b2984e4fa36f94.json | 1 + .../data/test-cases/4b8d012f19a4e1e6.json | 1 - .../data/test-cases/4bb422e9ca9901c8.json | 1 - ...6fea083097f.json => 4c31a5ec99c6ca69.json} | 2 +- .../data/test-cases/4c5cc35d3de0d6f4.json | 1 + ...7cc2815c6ee.json => 4ca3cfa2d2c9d074.json} | 2 +- ...3f80ada0713.json => 4d0958f9149b5791.json} | 2 +- ...d87150b1b7f.json => 4d2d9b386eb6ebf2.json} | 2 +- .../data/test-cases/4d4729a99109106e.json | 1 + .../data/test-cases/4d57a8ddade5816.json | 1 + .../data/test-cases/4d8c29fe45d13f2d.json | 1 + ...5757342b866.json => 4df5cc35809df545.json} | 2 +- .../data/test-cases/4df9c941adb35f26.json | 1 + ...9b030735db8.json => 4dfeb434e28153fe.json} | 2 +- ...c473898c46d.json => 4ea092b3f85ebfcb.json} | 2 +- ...f0961d8c06a.json => 4eaed4684cfaee8f.json} | 2 +- .../data/test-cases/4eb91d777aea105a.json | 1 + ...d6367d3e66e.json => 4f20da98ae3e1985.json} | 2 +- ...a5c3b3bcaf3.json => 4f2bbc07480f42a4.json} | 2 +- ...0ae04896a86.json => 4f999b555dd62215.json} | 2 +- ...2a4deaebd0d.json => 4fc00e9c47abe8d0.json} | 2 +- ...436380e11d2.json => 500f182a6eedd000.json} | 2 +- ...937be1aa466.json => 50b7ff1fe714521a.json} | 2 +- ...bc0bf075d90.json => 51021ef4547a41f8.json} | 2 +- ...807c3815756.json => 510e078ddda4bd3c.json} | 2 +- .../data/test-cases/5194ad39db439d08.json | 1 + ...ab927a8de42.json => 522a0d282fded9dd.json} | 2 +- .../data/test-cases/52402d5056a00e1d.json | 1 + .../data/test-cases/532d8f53f92733e9.json | 1 + ...fe792fcd179.json => 5364b62b05552f1e.json} | 2 +- ...64cc78f5d13.json => 5392fbee850dfcf4.json} | 2 +- .../data/test-cases/53eb34bc4e02fa07.json | 1 + ...3dfe778ff9a.json => 53fa8d477eb42fd3.json} | 2 +- ...aa27581f198.json => 54122a7c8f1149b2.json} | 2 +- ...8c1195772c5.json => 545394bf3fbbd64b.json} | 2 +- .../data/test-cases/5471ece0090e3d4.json | 1 + .../data/test-cases/54e4671ce8499dcf.json | 1 - .../data/test-cases/54fbe05c675f404a.json | 1 + .../data/test-cases/552742d77daecee9.json | 1 - ...8ac3a4fb635.json => 552b72a0721ea486.json} | 2 +- ...c1683e127a4.json => 555a795f08de5e6c.json} | 2 +- ...10dc29832db.json => 55a0094c41d10012.json} | 2 +- ...78e0f9a0b66.json => 563a12b2ae66d10b.json} | 2 +- .../data/test-cases/5654bb5658921dcd.json | 1 + .../data/test-cases/56d019840f444cec.json | 1 + ...a0a92a1ed02.json => 56e6898f814c9a2c.json} | 2 +- ...c3521a1da2a.json => 5703befafee18856.json} | 2 +- ...55d8c8f82d1.json => 574cb5d6827dca2a.json} | 2 +- .../data/test-cases/577d9e765fb39849.json | 1 + ...16785f0d461.json => 579e5f45553c02f2.json} | 2 +- ...dcd2309aaf9.json => 5815fdb3e38780e6.json} | 2 +- ...c4708137d2d.json => 582aa68275dac68e.json} | 2 +- ...c55161cc361.json => 583a0190aa99ad42.json} | 2 +- ...688c7c99a04.json => 584f8bdd5c7f3c16.json} | 2 +- ...edab468d2f2.json => 58a164b572fc5a50.json} | 2 +- ...b2d5f0c7414.json => 58bbccd3c8af3c06.json} | 2 +- .../data/test-cases/5908d364b75f844e.json | 1 + .../data/test-cases/591cfdbc90cf4c5e.json | 1 + .../data/test-cases/5956e80e98375be.json | 1 + ...824440b717e.json => 59a630e9120dbf2c.json} | 2 +- .../data/test-cases/59e860fc2782867c.json | 1 + ...b7dc9376332.json => 5a4c9eb3dcb32bf5.json} | 2 +- .../data/test-cases/5a88d917682070e.json | 1 + ...de3f9ed88f5.json => 5aa7474450de295f.json} | 2 +- ...2029e742eac.json => 5abe74757b94997a.json} | 2 +- .../data/test-cases/5ad5cb812fbd5d4a.json | 1 + ...14486b51753.json => 5b904804aa9a6e53.json} | 2 +- ...906ce5621b5.json => 5bc730ff95f1c205.json} | 2 +- ...93193e5280a.json => 5bf0909978db7e30.json} | 2 +- .../data/test-cases/5bf735ebb9d90923.json | 1 + ...192ce6dd676.json => 5c0380ec075dfe06.json} | 2 +- ...69e7db4effb.json => 5c0c21f2226a901c.json} | 2 +- ...f36a5925004.json => 5c657b72ebb12427.json} | 2 +- ...efd90ffa643.json => 5cbf19148d05755c.json} | 2 +- .../data/test-cases/5e2354482de170d3.json | 1 + .../data/test-cases/5e4416fd32f6992f.json | 1 + ...1f6ebf12c13.json => 5e8bbbba63c3bb75.json} | 2 +- .../data/test-cases/5f97df940bb3f46a.json | 1 + .../data/test-cases/5ff3f93ff1ffe8b3.json | 1 + .../data/test-cases/6030df3a53146090.json | 1 - .../data/test-cases/6035f0fe38b5a062.json | 1 + .../data/test-cases/60d4140245a65d5.json | 1 + .../data/test-cases/60f7c96f923539a5.json | 1 + ...053b771d679.json => 610300a29faa4ee4.json} | 2 +- ...013352b7649.json => 616388e3d3f3ad4c.json} | 2 +- ...d8449dbfb8b.json => 61de742601660eab.json} | 2 +- .../data/test-cases/61e07c6ddcc506b1.json | 1 + ...af32c057862.json => 61f84f81177cf38b.json} | 2 +- ...0d1077ce20b.json => 6209b3d491320ab9.json} | 2 +- ...99462605375.json => 6226ef3ddb316aa7.json} | 2 +- ...b951d3fac8b.json => 624b364c1e1f6bc7.json} | 2 +- ...f5e4a826f53.json => 625a87864855843c.json} | 2 +- .../data/test-cases/62a6bbd8d87be20e.json | 1 + .../data/test-cases/62ef482e2cb3493b.json | 1 - .../data/test-cases/631ed8ca3aead56c.json | 1 + ...5051c49f01a.json => 632eacb89b6e193e.json} | 2 +- ...e29faf9fa03.json => 634b88b34b81a74c.json} | 2 +- .../data/test-cases/63a8ebd07b8fa1c4.json | 1 + .../data/test-cases/63b822db5bae14d4.json | 1 + ...105867adbc9.json => 63ceea7fe946ff07.json} | 2 +- .../data/test-cases/63ea9545d8dcd43f.json | 1 + ...a7150c527ef.json => 64001087ec7aaf2b.json} | 2 +- .../data/test-cases/641b1ee7248b1557.json | 1 + ...52571ac4adf.json => 641fd537e33a59ae.json} | 2 +- .../data/test-cases/6421e8610575915.json | 1 - .../data/test-cases/6444bc59e77319f9.json | 1 + .../data/test-cases/6463a9e3be0b4026.json | 1 + .../data/test-cases/64abc8899e8e691d.json | 1 + .../data/test-cases/64d00badde981bd3.json | 1 - .../data/test-cases/64ddebaa5d6679fc.json | 1 + ...8604b1d062f.json => 6558b0da7e100d83.json} | 2 +- ...84277d15d0d.json => 6566372edd2dc54c.json} | 2 +- .../data/test-cases/656eaa4febf44ace.json | 1 - ...599f64280c3.json => 65b2cf00b86ce444.json} | 2 +- ...c2ec0d31961.json => 65bb39f46c25941f.json} | 2 +- ...b9c803f7cf9.json => 65c772a236576a2d.json} | 2 +- .../data/test-cases/65d5a47944859245.json | 1 - .../data/test-cases/65e9477143af3f55.json | 1 + .../data/test-cases/65f6b4f1195a0e9d.json | 1 + .../data/test-cases/66020f911b054e74.json | 1 + .../data/test-cases/660684096c18d05d.json | 1 - .../data/test-cases/6641c9ab33f4ea66.json | 1 + ...8d078b774a7.json => 664f2a2d41bf2bd8.json} | 2 +- ...7ca3af16ae5.json => 6650fdbb71631571.json} | 2 +- .../data/test-cases/6660f839d8534ee2.json | 1 - .../data/test-cases/67a0bf67db9047ee.json | 1 + ...098007f6ade.json => 67c96b92db3f1ee1.json} | 2 +- .../data/test-cases/67e470215248af57.json | 1 + ...7a180fb722f.json => 681eea057133a7e0.json} | 2 +- ...96f64d86d36.json => 68235061ff0b1d1d.json} | 2 +- ...c4be65ef1b0.json => 682ca0c47ecc45d4.json} | 2 +- ...f8957be0a89.json => 68489cf8ea35171c.json} | 2 +- .../data/test-cases/689b611d3c9a3124.json | 1 + ...2a9c36c46f3.json => 68a2b9760a533e02.json} | 2 +- ...b6fe52a564f.json => 68ad711bfb950e6e.json} | 2 +- ...99ab6569b87.json => 68e1fa91eff84fb2.json} | 2 +- ...3aee2e150e3.json => 6902a5b0a224435c.json} | 2 +- .../data/test-cases/691701add6daaf89.json | 1 - ...d5edcbfeda5.json => 696e651c40149097.json} | 2 +- .../data/test-cases/6a3f85e29591c654.json | 1 + .../data/test-cases/6a636a909012a6f0.json | 1 + .../data/test-cases/6a8f943df9cf325c.json | 1 + ...b3b88f75199.json => 6aa550180790876d.json} | 2 +- ...3ae24ccc67a.json => 6aba04a431b7fd70.json} | 2 +- ...d8d3c87f7f8.json => 6aeb83ca0df8b3d8.json} | 2 +- ...1faa852c595.json => 6b42b881fa048473.json} | 2 +- .../data/test-cases/6bab07231bfb8a25.json | 1 + ...ae936e1de27.json => 6bf2acd0a0db42e5.json} | 2 +- ...bba516976ae.json => 6c457590f118b700.json} | 2 +- ...1ada3a3f14e.json => 6c94325f55b8b56c.json} | 2 +- ...0cc4e07480b.json => 6d2f9028315647c1.json} | 2 +- .../data/test-cases/6d7f7d9659ba7dd5.json | 1 - ...008755c7351.json => 6d9aec252d158762.json} | 2 +- .../data/test-cases/6de398181d9095ee.json | 1 + .../data/test-cases/6dfafb882d7cc41f.json | 1 + ...fbb9798a5d5.json => 6e173d8e5ff615be.json} | 2 +- .../data/test-cases/6e3ce129a9f8f588.json | 1 - ...a66cc0cec29.json => 6e4923e8771eebeb.json} | 2 +- .../data/test-cases/6e91e404eb8e624.json | 1 + .../data/test-cases/6ef44675aea47099.json | 1 + ...970e553e301.json => 6f37cee94115c50c.json} | 2 +- ...674f3a0e85e.json => 6f9dcb0c09ae9f13.json} | 2 +- ...46b9a1e7c40.json => 70008c90c6552144.json} | 2 +- .../data/test-cases/702c9f7aebde64af.json | 1 - ...37025069abe.json => 706d67120123862f.json} | 2 +- ...7ddac3322c3.json => 707862d33841a8ff.json} | 2 +- ...37bf1525466.json => 70c180d1e9f40ddc.json} | 2 +- ...8966aa92b06.json => 710a5d14f0382e2f.json} | 2 +- ...94ae1701253.json => 711b3df283530a5b.json} | 2 +- ...d6eca761182.json => 71a05925458c8736.json} | 2 +- ...eb8a4b79d6b.json => 71a87e59b6648413.json} | 2 +- ...4fe4187417a.json => 71dc0d8169aaad6f.json} | 2 +- ...3fb3736b8ae.json => 71f8f5b376b254cf.json} | 2 +- .../data/test-cases/720b65d3a7d8ec34.json | 1 + .../data/test-cases/72c86ca38c98258.json | 1 + ...e0acd74f7c1.json => 7312d30334dcfc0d.json} | 2 +- .../data/test-cases/732b9dd805d734b8.json | 1 + .../data/test-cases/7331de8e7202ad57.json | 1 + ...7a758de768a.json => 73622414b649e45a.json} | 2 +- .../data/test-cases/7369f3dde824b045.json | 1 + ...c3f29ddd74a.json => 740e72b931a3ed2d.json} | 2 +- ...2af51db20a3.json => 741a61f0f9cb4c37.json} | 2 +- ...2359c6f109b.json => 747c525d425e0efa.json} | 2 +- ...0a520c97bdd.json => 749bcfd3f56dec1a.json} | 2 +- .../data/test-cases/74f816020df3559.json | 1 + ...e0fafdfb7a4.json => 75040d42480a95e8.json} | 2 +- .../data/test-cases/751027d0ac0cc021.json | 1 - ...6ac3dc42135.json => 756610bb1a8856d4.json} | 2 +- ...c712bf1892f.json => 7567c87108e55931.json} | 2 +- ...bae73357330.json => 75a0786e7098fd84.json} | 2 +- .../data/test-cases/7612354cc3c699d.json | 1 + .../data/test-cases/764219a087e938f.json | 1 + ...232b1f58c27.json => 765c2af6ca77e4e9.json} | 2 +- ...9854937ade9.json => 76614b580d9bd7f8.json} | 2 +- ...bca6b03073b.json => 7677af29e8a1671e.json} | 2 +- ...a28c2e7859f.json => 767acc864b347295.json} | 2 +- ...d947ad77b59.json => 76b07a3b0b784bd3.json} | 2 +- .../data/test-cases/772c9d6fdd465a8a.json | 1 - .../data/test-cases/777ba0c823c5a82a.json | 1 + ...165ec4b4b72.json => 77a9a3d99a741f47.json} | 2 +- .../data/test-cases/77ce7ba6af0b177a.json | 1 + .../data/test-cases/783d8a205b731823.json | 1 + .../data/test-cases/78450b76b8629fe6.json | 1 + ...bee5b06a234.json => 79e5a850abe86297.json} | 2 +- ...28d7cfdedcf.json => 7b584cbfaa9e2f14.json} | 2 +- .../data/test-cases/7be232a1c65ba711.json | 1 - .../data/test-cases/7c6af0e0a129f035.json | 1 + ...319be0d6f5c.json => 7d3b7c7449825e20.json} | 2 +- .../data/test-cases/7de68906bfa0f18.json | 1 + .../data/test-cases/7e066328cfed2428.json | 1 + ...e99633e4676.json => 7e0fbf3b4505484b.json} | 2 +- .../data/test-cases/7e357cecc68f801.json | 1 - ...98953d58b58.json => 7e36f3895c7e5ba3.json} | 2 +- .../data/test-cases/7e997a5018ff0710.json | 1 - .../data/test-cases/7ec3425d5267a222.json | 1 + ...d6fbb32213a.json => 7ed5e03fb846420f.json} | 2 +- ...1ccba9924bd.json => 7eedfccbd9267527.json} | 2 +- ...8d7bd01382a.json => 7f05453c14dc1c4a.json} | 2 +- ...a4bab46b2bf.json => 7f0995b9351caed2.json} | 2 +- ...3353d8c115b.json => 7f4f6ae800da8214.json} | 2 +- ...6ccebe34b08.json => 7fb0d954404a7411.json} | 2 +- .../data/test-cases/801881710b06074.json | 1 + .../data/test-cases/80a5eacfa2431348.json | 1 + ...f850665402e.json => 80ba443311cb72ff.json} | 2 +- ...e1d393606ac.json => 80d57c86b12a37c4.json} | 2 +- .../data/test-cases/80f314b70b306bd4.json | 1 + .../data/test-cases/813aa9dc885c2882.json | 1 - ...878af91b1de.json => 814ad2f745782ad7.json} | 2 +- ...a318e243c50.json => 817c95f8ac92a91e.json} | 2 +- ...f16b30f7476.json => 821065d4dc841edb.json} | 2 +- ...6bf000b455b.json => 8271119e6077f333.json} | 2 +- .../data/test-cases/82a681e3f0c8f54d.json | 1 - .../data/test-cases/82a8f1ffa445d40.json | 1 - ...439af050615.json => 82d71f1a1b9a4c08.json} | 2 +- .../data/test-cases/82f0a19d19bd8125.json | 1 + .../data/test-cases/832c94aac84bf09.json | 1 + .../data/test-cases/837e4ce24ac45efb.json | 1 - .../data/test-cases/8388a8495a8b75af.json | 1 + ...0c52d810ec1.json => 83b34d0610fd83c6.json} | 2 +- .../data/test-cases/83c423646ff2d9ba.json | 1 - ...1b023eebd26.json => 842b955d145895ca.json} | 2 +- ...4fff96687ff.json => 843678da53c540e6.json} | 2 +- .../data/test-cases/84d177b8ff2c367d.json | 1 - ...2c1f71252b6.json => 84ea3c3b3250393e.json} | 2 +- ...42ef33f054e.json => 85613c3b6c6421c4.json} | 2 +- .../data/test-cases/8605c2bc186d7f9a.json | 1 + ...97900a7d8bc.json => 86173a2048ae1d24.json} | 2 +- ...f1c5b8245e1.json => 861fc17326f7d16a.json} | 2 +- ...3b10613ec53.json => 86447fe348b226fe.json} | 2 +- ...3fd1c95dafe.json => 864737f712b002ec.json} | 2 +- .../data/test-cases/8672ab2817945b36.json | 1 + ...b95a47fabbf.json => 867b171e961cc6e3.json} | 2 +- .../data/test-cases/86bf8b663d5828a.json | 1 + ...e350e2ba16f.json => 875881a97b3fc375.json} | 2 +- ...1e6934b1850.json => 875e90b046ec092c.json} | 2 +- ...cbb530a1868.json => 8782c11be4532248.json} | 2 +- ...55362b24610.json => 879748b1d447d0a9.json} | 2 +- .../data/test-cases/8804093a9c3b17d.json | 1 - ...3fbe50e74ce.json => 880859ea02196db7.json} | 2 +- ...64d86dd0b79.json => 8817b6c726fc2884.json} | 2 +- ...3187fd70d56.json => 88503943247ae8d5.json} | 2 +- ...6f5f8a43508.json => 88851466a8ab5f44.json} | 2 +- ...52e3aa10b6d.json => 88ed1c9da2d9b53b.json} | 2 +- ...c2c9e3c88b1.json => 893f14f04872e4c5.json} | 2 +- ...6a5366a3631.json => 895071e6126c1fbc.json} | 2 +- .../data/test-cases/89c0be4978ed22ba.json | 1 + .../data/test-cases/89d5ee585c13bf38.json | 1 + .../data/test-cases/8a89827c471bc909.json | 1 + ...42c8d697c74.json => 8bbe3b647eb4bfeb.json} | 2 +- .../data/test-cases/8bc712dc2d3a7199.json | 1 + ...f5e2dbf6894.json => 8bc93f78736d3a0e.json} | 2 +- ...d62b05a8814.json => 8bd454f111efcd3e.json} | 2 +- .../data/test-cases/8beabd2469a668.json | 1 - ...0b8d3602698.json => 8bf0e4ddc17f51c8.json} | 2 +- ...371d87065db.json => 8c4c3ac3b9ddced3.json} | 2 +- .../data/test-cases/8d85f39401914c16.json | 1 + ...4e07f2ca2d0.json => 8dcdfa9166c48fb8.json} | 2 +- .../data/test-cases/8dfef1ba8856d412.json | 1 + .../data/test-cases/8e1e8d12e75298b.json | 1 - .../data/test-cases/8e4b6f6bd251566.json | 1 + .../data/test-cases/8e87cfc15c8260a3.json | 1 + .../data/test-cases/8e9b4227c17ce17f.json | 1 + .../data/test-cases/8ea6e5a2b5515469.json | 1 - .../data/test-cases/8ed1a17310170d88.json | 1 + ...1991578aaeb.json => 8edcba07a1a3ea56.json} | 2 +- ...81ebbb7cc32.json => 8f6f88ab23c0d630.json} | 2 +- ...ba12cafb7e8.json => 8fd9fc1a4b426539.json} | 2 +- .../data/test-cases/900a2cbb7155295.json | 1 - ...81896e2614d.json => 9054a710a823b80a.json} | 2 +- .../data/test-cases/90a10a824ed5b372.json | 1 - .../data/test-cases/90c1df398d2f201a.json | 1 + .../data/test-cases/90d2f619b6b55a93.json | 1 - .../data/test-cases/9164bf2c06bf8752.json | 1 + .../data/test-cases/91aab0544068789.json | 1 + ...4696efa8c6c.json => 91cb28173d925ce2.json} | 2 +- ...f5fdf5c1d70.json => 91d86d4a26e41755.json} | 2 +- ...787f3312e8b.json => 921715088233c4e7.json} | 2 +- .../data/test-cases/9246dbe4ecdc42ce.json | 1 + ...e0a74fe7f66.json => 935b6bf420709ca7.json} | 2 +- ...94e0e976912.json => 938f6f7ebecca4c3.json} | 2 +- .../data/test-cases/93b00a3d2e7b92c1.json | 1 + ...f302ecd21f1.json => 93cbb9687a6c19d2.json} | 2 +- ...bca4471f754.json => 941c0037b0b98fcf.json} | 2 +- ...17a493b3eb2.json => 946a2bd47c8adfbc.json} | 2 +- ...44ef544dd56.json => 94e103957a6e541c.json} | 2 +- ...47e3a3ec46d.json => 950acbfbefb81796.json} | 2 +- ...2ff555edbd0.json => 95924b9d92f1ced5.json} | 2 +- ...43cf6f64f1d.json => 95e685797940e119.json} | 2 +- ...55d5b7bcbbd.json => 95e7a9865f127b46.json} | 2 +- ...abfec79d6cf.json => 962ca80dcc908350.json} | 2 +- .../data/test-cases/965bac5a2c55f031.json | 1 + ...92be75c5d35.json => 965e1d563752b7d3.json} | 2 +- ...271ec16d5ad.json => 9665a188a4944ac6.json} | 2 +- .../data/test-cases/967fef280aa6e796.json | 1 - ...2fbe07efc18.json => 9689f8dcf21c7e63.json} | 2 +- ...6185ce9f545.json => 96ce14353b4f3e49.json} | 2 +- ...cb29f4704b1.json => 97a2a77f06d4866c.json} | 2 +- ...da7101eb431.json => 97bb72caed16dfa0.json} | 2 +- ...6da94fb2b4f.json => 97e1e8aa5714e13a.json} | 2 +- .../data/test-cases/9800852f4c3c1957.json | 1 - .../data/test-cases/980af150a499b4e9.json | 1 + ...c487c263073.json => 98366b42396826ce.json} | 2 +- .../data/test-cases/98ca489a74667507.json | 1 + .../data/test-cases/98e0aca6e090522b.json | 1 + ...61647deccd2.json => 994a4ad6b5f0c1e0.json} | 2 +- ...7ae6e5a9993.json => 998a460e800cbb2b.json} | 2 +- ...204dc517df6.json => 99a774ce5ee6bba3.json} | 2 +- .../data/test-cases/99bd3e79aeea5636.json | 1 + .../data/test-cases/99e31d655e3161a.json | 1 + ...bcba925975c.json => 99e68c3ce0169a01.json} | 2 +- ...ff9d2a2958c.json => 9a17297856f21a74.json} | 2 +- ...1da3b7d646d.json => 9a72e64592e0ae1b.json} | 2 +- .../data/test-cases/9a9def5039f12f67.json | 1 + ...a5358c90330.json => 9aaaa009f2bba8b1.json} | 2 +- .../data/test-cases/9b0ec4eb2cd2dde7.json | 1 + ...1197b1367b6.json => 9b5105f2c1baa9ed.json} | 2 +- .../data/test-cases/9b613507776a0871.json | 1 - .../data/test-cases/9c39905963998c1b.json | 1 + .../data/test-cases/9d2b852ea94aa88a.json | 1 + .../data/test-cases/9d50fe36fd5059ab.json | 1 + .../data/test-cases/9dc0ca62f1db510f.json | 1 + .../data/test-cases/9e017ac7fdaf6bf5.json | 1 + ...6b5891c7763.json => 9e3c99258a0c64df.json} | 2 +- .../data/test-cases/9e71e34228180c1c.json | 1 + ...b199c1c867e.json => 9eac58d1342209e0.json} | 2 +- ...032891531e8.json => 9ece4d55c6bd3b35.json} | 2 +- ...69d223f82c6.json => 9ee094a1f359821e.json} | 2 +- ...c6dd9a36bc3.json => 9ef5212b94420bba.json} | 2 +- ...aea1f276c5c.json => 9f41894781b470ee.json} | 2 +- ...2e929388a59.json => 9f8d638b621270bd.json} | 2 +- ...d5b28fee66a.json => 9fea94ac2fbcf5b2.json} | 2 +- ...fc01f491be4.json => a0013817978e9f1b.json} | 2 +- ...e5a75cc69b9.json => a0332cc6a682faac.json} | 2 +- ...b6d625f40d3.json => a07fccce3e37ee4a.json} | 2 +- ...d0b9e8ac3c5.json => a12dc2585f9de41f.json} | 2 +- .../data/test-cases/a13c451f0f676900.json | 1 + .../data/test-cases/a1980ae57d2c7b3.json | 1 + .../data/test-cases/a1a7aeb13172d1f0.json | 1 - ...71bfad2e1ef.json => a20726936132e0f6.json} | 2 +- ...b6604c5e7e4.json => a22d4b8f003df599.json} | 2 +- ...3dc2deaaefa.json => a25791815212e793.json} | 2 +- ...f712a8be6da.json => a29d5673ddcf7e8e.json} | 2 +- ...dec220dfd02.json => a2f70229e4c52322.json} | 2 +- .../data/test-cases/a30a3ac9558d7a9c.json | 1 + ...72b3b393557.json => a329da92784fccae.json} | 2 +- ...de56a96ab7c.json => a35155a27bb8937d.json} | 2 +- ...77071e9a780.json => a355bc32a0d73da0.json} | 2 +- ...1e83226296c.json => a39b53ea962a31f1.json} | 2 +- ...258cf327b2a.json => a3ca7d068d3e7d87.json} | 2 +- .../data/test-cases/a3cba1eb012d0834.json | 1 + ...a7cd8b0e3af.json => a456e8af4c590649.json} | 2 +- ...469899e9868.json => a4637a157e542cb8.json} | 2 +- ...00da5fb8933.json => a53e477b227bdf44.json} | 2 +- ...3bc5a71109a.json => a5467cc7a05b3546.json} | 2 +- ...ca70fa28a4b.json => a586415c7c751146.json} | 2 +- .../data/test-cases/a5b469ea69ba375b.json | 1 + ...127b0ec26d9.json => a5bb3631db18a9d9.json} | 2 +- .../data/test-cases/a618a1e47f6e349d.json | 1 + .../data/test-cases/a61ba5af03a1f296.json | 1 + .../data/test-cases/a6592dc6717fe514.json | 1 + ...a74003ae703.json => a672dac8835c46c1.json} | 2 +- ...17b6e090fd8.json => a6a59cc8a0131a02.json} | 2 +- .../data/test-cases/a6d26dfb90ab4062.json | 1 + ...3e134c68e92.json => a6f428498c7694b0.json} | 2 +- ...6068e42ee36.json => a7599be0f5459a3d.json} | 2 +- .../data/test-cases/a75aa53086c60820.json | 1 + .../data/test-cases/a76c277b6c0b5940.json | 1 - .../data/test-cases/a78b9243c26a61bf.json | 1 + .../data/test-cases/a7d954f4aff6f601.json | 1 + ...525242f5614.json => a83b85c2e341a76c.json} | 2 +- ...589d3299948.json => a8e7ed0b9e8a05d4.json} | 2 +- ...171ede7ee13.json => a8ee14a37e5c3cb6.json} | 2 +- .../data/test-cases/a8ef326c3cb7b77c.json | 1 - .../data/test-cases/a908975bd67b2eca.json | 1 + ...b1c829f1e7f.json => a98592d8e6c7fba2.json} | 2 +- ...7d8e8742f0d.json => a9ecee1b4fc0ab11.json} | 2 +- ...82b623fefb9.json => aa1a2a69b8a9bf68.json} | 2 +- .../data/test-cases/aa37770dd2142a16.json | 1 + ...18b10cdf416.json => aa8525de66192fb3.json} | 2 +- .../data/test-cases/ab3687d99fed99d0.json | 1 + ...d89c4a768de.json => ab62ce2428f0e01f.json} | 2 +- ...ec123787b56.json => ab7f75990cdffa76.json} | 2 +- ...f42137d4620.json => abed1b9a0913387d.json} | 2 +- ...cbf67a69117.json => abf4f2031d384e78.json} | 2 +- ...ca6b172040d.json => ac35e86bb753fb8c.json} | 2 +- ...19ea3c0e8fe.json => ac390c8ac17d8363.json} | 2 +- ...0d100ba0d2f.json => ac65ef6ef01656e6.json} | 2 +- .../data/test-cases/ac81c5ec86387239.json | 1 - ...b2988572ef6.json => acf18a2788645a5a.json} | 2 +- ...be21cb9d7cd.json => adbbb2c26291ccd5.json} | 2 +- .../data/test-cases/addec93357f6e501.json | 1 + ...1e9b61f2ca3.json => ae08758c48a63481.json} | 2 +- ...6003ac2e703.json => ae4ebdaea3850cc0.json} | 2 +- ...c5de6415953.json => ae5dc2ec4f03f9e5.json} | 2 +- ...031964dc28f.json => aea343086c8abd68.json} | 2 +- .../data/test-cases/aec2fb642901e92.json | 1 + ...27b83e3ab13.json => af99dc37dcb7799b.json} | 2 +- ...cec4e791e32.json => afc07e402ebe38d8.json} | 2 +- ...a3215f7ad6c.json => afca78445b5fa23f.json} | 2 +- ...4f18d9496f9.json => afe0c9a0972467a3.json} | 2 +- .../data/test-cases/b02a54a0a8bd8284.json | 1 + ...7a27e50c04a.json => b054542ab329d2ac.json} | 2 +- ...e300f5635d6.json => b0a6327af7d064cf.json} | 2 +- .../data/test-cases/b0cc123728fa2f2d.json | 1 + .../data/test-cases/b0df4a2c5fe59a12.json | 1 + .../data/test-cases/b1056dd0bc1f2f4e.json | 1 + .../data/test-cases/b1cbd478c753b1e.json | 1 - .../data/test-cases/b1f2cc8e1be032d.json | 1 - .../data/test-cases/b22afbc33030e55f.json | 1 + .../data/test-cases/b26a6745cd367097.json | 1 + ...974f5edace2.json => b28ff46b20790be2.json} | 2 +- .../data/test-cases/b2f619fce2ea028d.json | 1 + .../data/test-cases/b325ede7f1ceeec3.json | 1 - .../data/test-cases/b36ca0513e4048a8.json | 1 + ...3f2c9b86d77.json => b3ade822e686b250.json} | 2 +- ...4317e10e87f.json => b3d5b9d863751a3f.json} | 2 +- .../data/test-cases/b3db9caa12a5149e.json | 1 - .../data/test-cases/b3f6328bce0de37c.json | 1 + ...28e098b30b7.json => b3fa4d42fb1064a9.json} | 2 +- .../data/test-cases/b4abfaf3d77f3f23.json | 1 - .../data/test-cases/b4bcf3d5a4367d8.json | 1 + ...31bdf350ac7.json => b4e0153f9704bfbb.json} | 2 +- ...69431ea4aa8.json => b540357a03b90416.json} | 2 +- ...f72a296b62e.json => b5cedd1e00782e11.json} | 2 +- .../data/test-cases/b684b0c7250ecf6d.json | 1 + ...c0d920b7f7d.json => b7107b1da849121a.json} | 2 +- ...a4090c00445.json => b7108f3053cbc60d.json} | 2 +- ...0c38e1de853.json => b7874e896ca052d2.json} | 2 +- .../data/test-cases/b78b9d24e53cd100.json | 1 + .../data/test-cases/b7dd8f8438e567a9.json | 1 + .../data/test-cases/b897401968bf0d8.json | 1 - .../data/test-cases/b8a2da685a579f99.json | 1 + ...c67292a5aa2.json => b8bd7a062c96fe90.json} | 2 +- ...70ea7ce07a6.json => b8f5ce56991bbe59.json} | 2 +- ...a9fba80789b.json => b9086c98d6d71504.json} | 2 +- ...32eb44f62b9.json => b98e581eac70f265.json} | 2 +- ...a35a1920265.json => b9bf67d4df9c3970.json} | 2 +- ...0a061140f84.json => b9d60ed71764b7f4.json} | 2 +- ...5e029216efb.json => b9f8e7d93793c0ea.json} | 2 +- .../data/test-cases/ba2c8f43220f0c44.json | 1 + ...30ecd2583e8.json => ba3e30be8784f086.json} | 2 +- .../data/test-cases/ba71f124345447fc.json | 1 + ...5f4d9d91cf6.json => bae98e899f1ebab4.json} | 2 +- .../data/test-cases/baf923b3ced2f0a.json | 1 + .../data/test-cases/bb0cb59f0e1a4eca.json | 1 + ...8e1aaaa11ab.json => bb6e602a844f0715.json} | 2 +- ...22c33f3ac65.json => bb7d4237e3a80dd7.json} | 2 +- ...bb6b47e11d4.json => bc6803e227b56151.json} | 2 +- .../data/test-cases/bca9ba5488466979.json | 1 + ...84157197066.json => bcdd15975118f527.json} | 2 +- .../data/test-cases/bd11ee5929c6c53a.json | 1 - ...b5a27235272.json => bd28741372a5f921.json} | 2 +- ...203fa0698ca9.json => bd413f89b47699c.json} | 2 +- .../data/test-cases/bd65eae3991d6c2c.json | 1 + .../data/test-cases/bd8413842923f1e.json | 1 - ...eb1b2d72c83.json => bda7ad5e74660b56.json} | 2 +- ...25d9e513197.json => bdcd06f2ac6e82c9.json} | 2 +- .../data/test-cases/bdd8b1b0bd82d5b1.json | 1 + ...bcfe9e98a99.json => bded3837031681ca.json} | 2 +- ...7d4d5d65952.json => be4d78eb60a06aeb.json} | 2 +- .../data/test-cases/be50565df8dfb0ab.json | 1 + .../data/test-cases/be618dffc8aac711.json | 1 - ...93cb9c1cce4.json => bf68fdf036dd98c9.json} | 2 +- ...f898de954b5.json => bf7dba429c84fe69.json} | 2 +- ...fd078f8e03c.json => bfb03abe3203ecf1.json} | 2 +- .../data/test-cases/c005f5247ce8619b.json | 1 + .../data/test-cases/c00621abb22a9be3.json | 1 + ...6d46d6537ee.json => c03eb686eb3e5a89.json} | 2 +- .../data/test-cases/c0a4502fedd41667.json | 1 + .../data/test-cases/c0b1085f1fbfd7ed.json | 1 + ...be84b5c0b77.json => c0b9bbb0a9f351b0.json} | 2 +- ...ad9fdfb0f8a.json => c10fb0178a326f0a.json} | 2 +- ...56cc9ee13f9.json => c12e168b06d36fc7.json} | 2 +- ...35d7a7b2adb.json => c1447fd680942c58.json} | 2 +- .../data/test-cases/c19e4739f2d4d64c.json | 1 + ...627913b0040.json => c1ac88d1c8e8cadf.json} | 2 +- .../data/test-cases/c20970878e009fc6.json | 1 + .../data/test-cases/c244be500ebdf146.json | 1 + .../data/test-cases/c25f8210fdb51a41.json | 1 + ...a6618ff7e4c.json => c264906d7bf954d5.json} | 2 +- .../data/test-cases/c2a15dd126224894.json | 1 + .../data/test-cases/c31558e9c7981ac7.json | 1 + ...79550c46f66.json => c359ea3a207c31eb.json} | 2 +- ...a4735cff92e.json => c38b32e4e940b443.json} | 2 +- .../data/test-cases/c3e164f822b7bae.json | 1 + .../data/test-cases/c3e9cf6e477b7f80.json | 1 + ...eb63ef06083.json => c3faad8d02b815fd.json} | 2 +- .../data/test-cases/c4a8605181ed2d7.json | 1 - .../data/test-cases/c4d384465e183d6.json | 1 - ...10a1a64fd59.json => c4d9587a3ff2d229.json} | 2 +- ...7361aae7a53.json => c4f63c652fed664c.json} | 2 +- .../data/test-cases/c52dc9ba56a64495.json | 1 + .../data/test-cases/c5bce40c2868c787.json | 1 + .../data/test-cases/c5bfa9ec903b7b32.json | 1 + ...ece7eeedc77.json => c5cf96cca0ab2f52.json} | 2 +- .../data/test-cases/c61d34eb10bf204.json | 1 + .../data/test-cases/c6923016c0d7805e.json | 1 - .../data/test-cases/c700736d12b44c86.json | 1 + ...7b5c88883a7.json => c7165b4538deb01d.json} | 2 +- .../data/test-cases/c730b39a7cf9843.json | 1 + ...a4a2f7e0b3c.json => c739525d6df646b0.json} | 2 +- .../data/test-cases/c78900977fa836.json | 1 + ...023f525bac2.json => c793ab5339736af5.json} | 2 +- ...83b7062983c.json => c7b8f329dd40406f.json} | 2 +- ...bc16b3488d6.json => c7c4d343c90ce082.json} | 2 +- .../data/test-cases/c87eac92a1b3b456.json | 1 + .../data/test-cases/c8a70d9350601da5.json | 1 + .../data/test-cases/c8da32e94b736fef.json | 1 + ...3e5994db83f.json => c8de14a6ed49ac6d.json} | 2 +- .../data/test-cases/c919701b7942665.json | 1 - ...cd914697b30.json => c91f2e2d1c4e5a72.json} | 2 +- ...26d4a83e9d4.json => c948f5411c74f4a1.json} | 2 +- ...71757f8badf.json => cad7274be200bf39.json} | 2 +- ...7fc51fb9338.json => caf985b2a75ee6b7.json} | 2 +- .../data/test-cases/cb1927945c40fc3.json | 1 + ...92846448826.json => cb7d8edff0d47cc5.json} | 2 +- .../data/test-cases/cb9f6d4c2aaf90e3.json | 1 + ...931a5567f85.json => cbe27b4f7111917c.json} | 2 +- .../data/test-cases/cc4dd11ea285cd92.json | 1 + .../data/test-cases/ccb7c5007831ab45.json | 1 + ...b418a2faa99.json => cce644bc4fb0b16f.json} | 2 +- ...238a53c10e1.json => cd536df0700f3bd3.json} | 2 +- .../data/test-cases/cdb2fb8959394c65.json | 1 - ...0fbd4a33237.json => ce75fbdf4ccd46b8.json} | 2 +- ...623077306da.json => ceb0c3e5ec48d975.json} | 2 +- ...06fce676285.json => cedf72c8fbbfdfc5.json} | 2 +- ...b1e748aadb0.json => cefd3a9afeec351e.json} | 2 +- .../data/test-cases/cf349408f505ed67.json | 1 + .../data/test-cases/cf71a425c4796a9.json | 1 - ...98f74019608.json => cf8fa237e5fc3101.json} | 2 +- ...3e9d38910da.json => cfac23a989211fca.json} | 2 +- .../data/test-cases/d0246537274067fb.json | 1 + .../data/test-cases/d0931e78c129f8d8.json | 1 + ...e18ab2e95fb.json => d0ce09c4ba5ff697.json} | 2 +- ...2a68a83b780.json => d1233b1a931bee1a.json} | 2 +- .../data/test-cases/d1bc6da1a117f865.json | 1 + ...24b2ee92967.json => d237c739f4b0c138.json} | 2 +- ...ff932465669.json => d34aca89a8362e7c.json} | 2 +- ...b9fa6dd3840.json => d35364e5c638d89f.json} | 2 +- ...cb2d1d8eb43.json => d36e2f5707d2a6d3.json} | 2 +- ...1b80abfdb89.json => d39d2cfc8c05650c.json} | 2 +- ...58aae9aa73c.json => d3ab7c4bfc7d171f.json} | 2 +- ...8acc0dadb7d.json => d493d526198a7a0a.json} | 2 +- ...d9204d0747c.json => d4941a73e9c93a57.json} | 2 +- .../data/test-cases/d4a0809a7647965.json | 1 - ...feb44c59984.json => d4d3736adb97380b.json} | 2 +- .../data/test-cases/d4f29bba77fd180.json | 1 + ...b59fa01f666.json => d50213dc9ab240ff.json} | 2 +- .../data/test-cases/d5360156ef396b6e.json | 1 + ...bb8385a61c5.json => d56667f6ac1424a3.json} | 2 +- .../data/test-cases/d58da60cf24b7660.json | 1 - .../data/test-cases/d5aba2cd944d7efd.json | 1 + ...2675847f113.json => d5d01c4fe30779a0.json} | 2 +- ...df689f44d1d.json => d64758690dcdce52.json} | 2 +- .../data/test-cases/d6ad7a05187743ff.json | 1 + ...97042fbb9d7.json => d6fd6e0593022837.json} | 2 +- .../data/test-cases/d731ec2306766d91.json | 1 + .../data/test-cases/d7ea74c17659aeca.json | 1 + ...53192929d9b.json => d86332e2eabe60c3.json} | 2 +- .../data/test-cases/d86eb3695c9130c6.json | 1 + ...36020bff47c.json => d8b4a2733a1f48dc.json} | 2 +- ...d74fc99fb8b.json => d8bbfaabd5a5300d.json} | 2 +- ...2b3858b1ec4.json => d9bbc705106eff98.json} | 2 +- ...2c7fdfdde63.json => d9e0974c92057e94.json} | 2 +- .../data/test-cases/d9e0d2d6c00c88e9.json | 1 + .../data/test-cases/d9e7bf55554cd705.json | 1 + .../data/test-cases/da02dcc2ce3c4d85.json | 1 - ...3b918aa694e.json => da222867360b442e.json} | 2 +- .../data/test-cases/dc076040e5481dc9.json | 1 + .../data/test-cases/dc89f010c8fc632.json | 1 + ...340f38e6588.json => dc9bdff2273b81f8.json} | 2 +- .../data/test-cases/dcee0c4d2268b964.json | 1 - ...3ca9c69e105.json => dd53e52e1ab13306.json} | 2 +- .../data/test-cases/dd86378e3a37dfe4.json | 1 + ...9a1e8e9ca65.json => de09867d078b6af4.json} | 2 +- ...a4f316497c6.json => de0a077377bec456.json} | 2 +- ...ce2718b817c.json => dee6c3b3d0dc73e4.json} | 2 +- ...3f33c33eb50.json => df5176bbed48ed91.json} | 2 +- .../data/test-cases/df9a9f68276bbb84.json | 1 + ...e89bbbcdb66.json => dfa8d9395e9495b6.json} | 2 +- ...7cf44554fd8.json => dfae17616fb702cf.json} | 2 +- .../data/test-cases/e0d2f09c0da8121.json | 1 + ...28013711283.json => e0e01cfda157cf01.json} | 2 +- .../data/test-cases/e1af2c095108694d.json | 1 + .../data/test-cases/e2326ee427488be9.json | 1 - ...4fe70696eb5.json => e248ed6a4ff28aaa.json} | 2 +- .../data/test-cases/e29868febcecd61d.json | 1 + ...a673c2617a2.json => e2a8e239adf783da.json} | 2 +- ...6fbcf063822.json => e2ed60d0ac53c788.json} | 2 +- .../data/test-cases/e330dbdee7dc6874.json | 1 - .../data/test-cases/e41edf94f198f2c7.json | 1 + ...45321407518.json => e480fe95093fd8e7.json} | 2 +- .../data/test-cases/e532878179cb6f87.json | 1 + .../data/test-cases/e53952640c2c9e47.json | 1 + ...8b8c375d31c.json => e55f716219844475.json} | 2 +- ...4c0cb125454.json => e5a7c04cf0e6c2f9.json} | 2 +- .../data/test-cases/e5b1f301926fe23.json | 1 - ...7c91b9deeb6.json => e5d70f307aec9205.json} | 2 +- .../data/test-cases/e604a93a8ee1253f.json | 1 + ...a62afa9ed1a.json => e63c100babc1267d.json} | 2 +- ...84d4d5bb98c.json => e65c2aee0db2b724.json} | 2 +- .../data/test-cases/e687a692c2c18f1b.json | 1 + ...08e43574371.json => e695b3f4b0bdd51b.json} | 2 +- ...ca1d7d1823c.json => e6abe3c64e54cb9f.json} | 2 +- ...ca8c0207022.json => e6ed73d965a64ee5.json} | 2 +- .../data/test-cases/e7035dc3ef8d99c0.json | 1 + ...1daca134967.json => e71092ad871851c8.json} | 2 +- .../data/test-cases/e751c9c9dc3d04e6.json | 1 + ...657dc51e0d2.json => e76c8429b652e3f0.json} | 2 +- ...4adba840438.json => e776a97a9aadedfc.json} | 2 +- ...4c39dca1f7a.json => e78a552d574aad16.json} | 2 +- ...200e69d147a.json => e7b4bfe5c117b0b5.json} | 2 +- ...9da33d622de.json => e8a3e54ef5fe796f.json} | 2 +- .../data/test-cases/e91954f86960f5cf.json | 1 + ...168bd187f62.json => e9cabde1f2c64760.json} | 2 +- ...7e5544d4774.json => e9f92529af3ab5ff.json} | 2 +- ...95503a0cf45.json => ea018bd2743d350e.json} | 2 +- .../data/test-cases/ea636867f014d21.json | 1 + ...a2dfc5fe491.json => ea733e6b4760e89e.json} | 2 +- .../data/test-cases/ea77ab4395e92566.json | 1 + ...1eae0b44214.json => eac7f340d73193c2.json} | 2 +- ...4991fa5fcbc.json => eb1b904b9e574ded.json} | 2 +- .../data/test-cases/eb4d3d652c38eb3f.json | 1 + ...a936b51b328.json => eb60d649770273d6.json} | 2 +- .../data/test-cases/ebad1371009d2223.json | 1 + ...3e89f44e3d5.json => ebb627dfa50cb94d.json} | 2 +- ...3b8169ad957.json => ebea1136229ab9bf.json} | 2 +- .../data/test-cases/ec3117c5f0ca458.json | 1 - ...9eb37520d2d.json => ec528f5ba60e276b.json} | 2 +- ...d5677e24adf.json => ed0b0c9c45304a0b.json} | 2 +- ...cf611333772.json => ed242b4479970e98.json} | 2 +- ...a465d3b6e95.json => ed44c13e0e5a3954.json} | 2 +- ...18a8ec3d384.json => ed5a184ed941933a.json} | 2 +- ...03386c56c72.json => ed783d7ab62f1ba4.json} | 2 +- ...66ff3a1c464.json => ed9cfa6ba87dba0e.json} | 2 +- ...11d20d2d96c.json => edb0e461adb94f5b.json} | 2 +- .../data/test-cases/edb8f84ee9c3dd36.json | 1 + .../data/test-cases/edfd5d811972f420.json | 1 + .../data/test-cases/ee07ce647fa212f.json | 1 + ...0c3b0cef265.json => ee16b6e353dfd7cd.json} | 2 +- ...5ee48c4616c.json => ee182a5a1f4b39dc.json} | 2 +- ...74850b5a822.json => ee3233c4ab89c7ec.json} | 2 +- .../data/test-cases/ee3eb820ef7c27.json | 1 - .../data/test-cases/ee50880cc545f1d3.json | 1 + ...497f4402b67.json => ee7ac80cd7bb8f8d.json} | 2 +- .../data/test-cases/eea4c328ad2eaeca.json | 1 - .../data/test-cases/ef2b00c02db84592.json | 1 + ...6c76c436892.json => ef2ebe964f1d2f5f.json} | 2 +- .../data/test-cases/ef53249dd3798b49.json | 1 + ...0efadf9f044.json => efdfaccb93c4c6b4.json} | 2 +- ...83f3ba0c8ea.json => f0cf41ee7ec62257.json} | 2 +- ...e59cb6a4191.json => f10852a0a46489bf.json} | 2 +- ...d545c48d264.json => f17cc6d65b0932fd.json} | 2 +- ...bb18023836b.json => f1908dde48e8dbb5.json} | 2 +- ...2a037f048cd.json => f1c13dcc2ec25637.json} | 2 +- ...bf3da59eb02.json => f1c17d8d31f590b0.json} | 2 +- ...7102e2d18bc.json => f207a08521ff3dd3.json} | 2 +- ...e44f5f15fde.json => f20c6ac583494462.json} | 2 +- ...0c7813423da.json => f25197354d7a779d.json} | 2 +- ...dd8f45c4374.json => f253bf40e74f545d.json} | 2 +- .../data/test-cases/f26dca06c76121c7.json | 1 + ...d85eab5cf37.json => f2826391ba216705.json} | 2 +- ...2587e7b2c82.json => f293d4274aefdd43.json} | 2 +- ...3ba0070bf05.json => f2a7bab28da55269.json} | 2 +- .../data/test-cases/f30b225377e5683d.json | 1 + ...a9b45e036f9.json => f30d62828063f744.json} | 2 +- ...97bc41048ff.json => f3b1ea272cafb8c8.json} | 2 +- .../data/test-cases/f3baf14f5477154.json | 1 - ...663c8644328.json => f40d2270a86983a1.json} | 2 +- .../data/test-cases/f48dcf9628fe90ff.json | 1 + ...0055ee8e2b9.json => f507fecee61d3d94.json} | 2 +- ...d3f253e8636.json => f520dc2a3cdded7a.json} | 2 +- .../data/test-cases/f52e2a19a3ffe707.json | 1 - ...4b3910c9f0c.json => f5725ff55458d02a.json} | 2 +- .../data/test-cases/f5819c4c1535edeb.json | 1 - ...19b5fd836d3.json => f585eec372fcc899.json} | 2 +- .../data/test-cases/f5c9e062133dbbbb.json | 1 + .../data/test-cases/f619b88d74382886.json | 1 - ...7c039eaff13.json => f631ad3e8bb02244.json} | 2 +- ...9ae6b8c1d23.json => f6681b778f42e33c.json} | 2 +- ...47106021b54.json => f6b3bc73a428b4db.json} | 2 +- .../data/test-cases/f6c63ae7fdc54916.json | 1 + .../data/test-cases/f6dea82ce819c148.json | 1 + ...123cb448d3e.json => f6df3cbfc02e5094.json} | 2 +- ...0b9a480db3e.json => f71bd4516df37f52.json} | 2 +- ...3ce0a9f46c9.json => f7ae1e1fc4481de3.json} | 2 +- ...cc9403723af.json => f7d9041670997ad6.json} | 2 +- ...386cf094e1f.json => f7f7ddd6c717f082.json} | 2 +- ...24d548befe2.json => f801b2352cd357fc.json} | 2 +- ...6aedc88e8fe.json => f9778b72019f6060.json} | 2 +- .../data/test-cases/f9df20ba5fd613f1.json | 1 - ...0ca79634ed0.json => fa27e6e3693a7b83.json} | 2 +- ...a9919e5cef5.json => fa5cd4b7c764fede.json} | 2 +- .../data/test-cases/fa69c95248558058.json | 1 + .../data/test-cases/fa6c346b04c031d5.json | 1 + ...ff1cacf5544.json => faf400d308fb1d4e.json} | 2 +- ...05a155a665a.json => fb64f9c33c11676a.json} | 2 +- ...f629ce5c547.json => fc6ce7cf48700667.json} | 2 +- .../data/test-cases/fcb92722bb71757b.json | 1 + ...577d98c581f.json => fd4ef8d041ff123e.json} | 2 +- ...e6754d286ec.json => fd85877ffe0d5722.json} | 2 +- ...29ad79b857f.json => fe040c66880e0b15.json} | 2 +- ...359ba3fd421.json => fe07573cd07e1ed8.json} | 2 +- ...9acb6d6dab8.json => fe13696efb68455a.json} | 2 +- .../data/test-cases/fea5f749a1c464e4.json | 1 + .../data/test-cases/fef2d68159e448ff.json | 1 + ...776c9a8991f.json => fefeabf3e26a53bd.json} | 2 +- .../data/test-cases/ff18bec5c293c228.json | 1 + ...16bbc896a22.json => ff24b513a2221397.json} | 2 +- .../data/test-cases/ff9c64bdd3b3fc0c.json | 1 + .../data/test-cases/ffc8d600f4ca1daf.json | 1 + allure-report/data/timeline.json | 2 +- allure-report/export/influxDbData.txt | 26 +- allure-report/export/prometheusData.txt | 14 +- allure-report/history/duration-trend.json | 2 +- allure-report/history/history-trend.json | 2 +- allure-report/history/history.json | 2 +- allure-report/history/retry-trend.json | 2 +- allure-report/index.html | 2 +- allure-report/widgets/duration-trend.json | 2 +- allure-report/widgets/duration.json | 2 +- allure-report/widgets/history-trend.json | 2 +- allure-report/widgets/retry-trend.json | 2 +- allure-report/widgets/severity.json | 2 +- allure-report/widgets/status-chart.json | 2 +- allure-report/widgets/suites.json | 2 +- allure-report/widgets/summary.json | 2 +- 1378 files changed, 2108 insertions(+), 1879 deletions(-) rename allure-report/data/attachments/{e806fd65a1519daa.txt => 102e6d56faf7b4e2.txt} (100%) rename allure-report/data/attachments/{3fdf05bb544c0162.txt => 113f10167539853c.txt} (100%) rename allure-report/data/attachments/{70a5ec7cc829789f.txt => 13227bd500cb42e3.txt} (100%) rename allure-report/data/attachments/{62d969149cac19e2.txt => 1342cdaa6481456c.txt} (100%) rename allure-report/data/attachments/{4091cd5629c473be.txt => 145b065c02fb875.txt} (100%) rename allure-report/data/attachments/{253cdd605d9ea305.txt => 14f2aef00cdbb284.txt} (100%) rename allure-report/data/attachments/{5d918ffd5978feb.txt => 15093916dbf3d716.txt} (100%) rename allure-report/data/attachments/{2862210bad838236.txt => 157d07999fe8bb77.txt} (100%) rename allure-report/data/attachments/{50b324c74021da7c.txt => 16068cef6801ede5.txt} (100%) rename allure-report/data/attachments/{6100c33a0bd08814.txt => 175a566935f714fc.txt} (100%) rename allure-report/data/attachments/{95dd879b5dc89b5e.txt => 17e1f12bcdd4240f.txt} (100%) rename allure-report/data/attachments/{546f6d6d1d510331.txt => 1889e3b457f9320a.txt} (100%) rename allure-report/data/attachments/{4e248e61461ec35c.txt => 18e75387bd3b0160.txt} (100%) rename allure-report/data/attachments/{1b71217f4d0fe3a2.txt => 1ad9ab8a22025032.txt} (100%) rename allure-report/data/attachments/{697db26b4ade1966.txt => 1ce4c0edbbe04f9e.txt} (100%) rename allure-report/data/attachments/{459e1a71d63acc96.txt => 1d47ca07980ea016.txt} (100%) rename allure-report/data/attachments/{a31af19dcd964af7.txt => 1de780c85f2aabb6.txt} (100%) rename allure-report/data/attachments/{6f4b7e883a26cafe.txt => 1dfb198a7253b941.txt} (100%) rename allure-report/data/attachments/{3326f8b00659b17c.txt => 1f6883e774d20c18.txt} (100%) rename allure-report/data/attachments/{1ab4a085da0164d2.txt => 20671bf346c43317.txt} (100%) rename allure-report/data/attachments/{26c18e7ac55b0476.txt => 20cbc8ca27f67538.txt} (100%) rename allure-report/data/attachments/{25583e198df733bf.txt => 20e82e5aa37702bc.txt} (100%) rename allure-report/data/attachments/{67be9974a45dfae3.txt => 214be7d831eff2b3.txt} (100%) rename allure-report/data/attachments/{9c17474dc274435d.txt => 21b3833bd58160c1.txt} (100%) rename allure-report/data/attachments/{92cddf6ef1a2b768.txt => 22c24dd6f011f9a2.txt} (100%) rename allure-report/data/attachments/{6ae645e567750bb1.txt => 24af1d7a0c0925a.txt} (100%) rename allure-report/data/attachments/{ab72754d2ac3d657.txt => 250afdca61317e51.txt} (100%) rename allure-report/data/attachments/{105658932c1d51ff.txt => 250e2e008fa1f7b7.txt} (100%) rename allure-report/data/attachments/{dcb5cf58cdd3658a.txt => 251fc94fc6c7a32c.txt} (100%) rename allure-report/data/attachments/{fab77c156ff5bb2b.txt => 2696faacdbe9d8c7.txt} (100%) rename allure-report/data/attachments/{addbfb5be788ff64.txt => 26e6b6f5238c5b93.txt} (100%) rename allure-report/data/attachments/{419d7e1cf9a3c9b.txt => 2731ba669f341d4.txt} (100%) rename allure-report/data/attachments/{1ff678a4c7734b0.txt => 27790d440082a497.txt} (100%) rename allure-report/data/attachments/{27df6f7a31afa4ff.txt => 27997c5236222053.txt} (100%) rename allure-report/data/attachments/{22f6f0c737bac26b.txt => 27ebdb1cdb347243.txt} (100%) rename allure-report/data/attachments/{8dfc11179dd2dd46.txt => 2857c06d429f0757.txt} (100%) rename allure-report/data/attachments/{518d45d1073ca74.txt => 287eb5fa3fe3b8e6.txt} (100%) rename allure-report/data/attachments/{f66e1341a4df20a3.txt => 29aa0c598c1f2d04.txt} (100%) rename allure-report/data/attachments/{2bee8bc5b94972e3.txt => 2a2e64e7212768ad.txt} (100%) rename allure-report/data/attachments/{8ce1da867cdb9cd9.txt => 2a7e83a8939aa3ea.txt} (100%) rename allure-report/data/attachments/{9cd8266cfd985687.txt => 2b123edd90aa8cfa.txt} (100%) rename allure-report/data/attachments/{730a4e5abf4ea8ba.txt => 2b2e74011774c312.txt} (100%) rename allure-report/data/attachments/{c02985fbd2700004.txt => 2c51ebffe286fde1.txt} (100%) rename allure-report/data/attachments/{2f3f1653d6bd83ea.txt => 2d724952cd20b6e1.txt} (100%) rename allure-report/data/attachments/{6e968c2a309c9083.txt => 2de6534e84498685.txt} (100%) rename allure-report/data/attachments/{4f617786d1167bf5.txt => 2e0ebd0ab799745b.txt} (100%) rename allure-report/data/attachments/{4c19c67f026536b3.txt => 2e61a28436ed8397.txt} (100%) rename allure-report/data/attachments/{4fea0728042fecef.txt => 2f4fbc6ed8dc7bd7.txt} (100%) rename allure-report/data/attachments/{d6c5e78c2bca1b60.txt => 2f6f124c7be3a6e5.txt} (100%) rename allure-report/data/attachments/{d4ab56b3974e742a.txt => 2f87f52236c75608.txt} (100%) rename allure-report/data/attachments/{9b753e8aa39a2b6c.txt => 2f8e2ebe7761508b.txt} (100%) rename allure-report/data/attachments/{3a4387d961fd6fe2.txt => 30ae8f4eae56e738.txt} (100%) rename allure-report/data/attachments/{f1a162618bd1b29d.txt => 30e865fe73fa5b27.txt} (100%) rename allure-report/data/attachments/{dd90e5bd6518035b.txt => 312062c4d3ad84ef.txt} (100%) rename allure-report/data/attachments/{1905a023fe62d7a5.txt => 312dff4578efa314.txt} (100%) rename allure-report/data/attachments/{773f7227b3021ebf.txt => 31e63916e4212e6.txt} (100%) rename allure-report/data/attachments/{888fe7b1e08f632a.txt => 3228eb12f2ec789a.txt} (100%) rename allure-report/data/attachments/{31ba7c014fce4298.txt => 32bad6265b9c6d8f.txt} (100%) rename allure-report/data/attachments/{76446d802fca4221.txt => 349072694382d10e.txt} (100%) rename allure-report/data/attachments/{660305aec4aa6e06.txt => 358b4a5251243888.txt} (100%) rename allure-report/data/attachments/{ff867546b68da848.txt => 3642f149df538341.txt} (100%) rename allure-report/data/attachments/{2dd75c6915b1e704.txt => 36a84ce1aa4434a.txt} (100%) rename allure-report/data/attachments/{a5fe4c42944f89c8.txt => 379cf75cca245ee2.txt} (100%) rename allure-report/data/attachments/{63b31f8c0af20d94.txt => 38035331d2572599.txt} (100%) rename allure-report/data/attachments/{8244325875cc8c2.txt => 38545087bdeef541.txt} (100%) rename allure-report/data/attachments/{17ccb2223275d18f.txt => 38a8ba45b2ebefd2.txt} (100%) rename allure-report/data/attachments/{857a5351e31f1baf.txt => 38c339de2200090.txt} (100%) rename allure-report/data/attachments/{1d5dc16fdfe05c84.txt => 3934a31f83c6b392.txt} (100%) rename allure-report/data/attachments/{1d395e740ae82411.txt => 3aa04a43be2f48f8.txt} (100%) rename allure-report/data/attachments/{23dd45ddb469c4aa.txt => 3b202dd3c9afa278.txt} (100%) rename allure-report/data/attachments/{5b8ca288b44682ec.txt => 3cf96ebaed3b737c.txt} (100%) rename allure-report/data/attachments/{2d58a8a8ac8fa12e.txt => 3e106a35f51e50cd.txt} (100%) rename allure-report/data/attachments/{64217426bd0c7f09.txt => 3f0fa9f25e69b0db.txt} (100%) rename allure-report/data/attachments/{a881d3345681241e.txt => 3f196c8197b3dace.txt} (100%) rename allure-report/data/attachments/{8ef03709815f1ee7.txt => 3fb645b301593c3.txt} (100%) rename allure-report/data/attachments/{4a05a037b7d71615.txt => 3fc74f16bec5bbf3.txt} (100%) rename allure-report/data/attachments/{1ca9750c0956602d.txt => 3fda8fe35c793420.txt} (100%) rename allure-report/data/attachments/{215c30a7cf2d2e11.txt => 406f6d7cefafc12f.txt} (100%) rename allure-report/data/attachments/{3272d488a926cad0.txt => 407f6f4c1f9bb5a2.txt} (100%) rename allure-report/data/attachments/{2fa4e18b8435ce88.txt => 408eed1715a3503c.txt} (100%) rename allure-report/data/attachments/{3e088b2fc3849ac3.txt => 40d2195f3173474a.txt} (100%) rename allure-report/data/attachments/{285de4a0d9b150b3.txt => 40f2f98b11de943f.txt} (100%) rename allure-report/data/attachments/{94c19824e08a6a92.txt => 41608c9ef684cb1e.txt} (100%) rename allure-report/data/attachments/{464f7036130e9df9.txt => 4163d90850028d14.txt} (100%) rename allure-report/data/attachments/{f6ed689bd033eb8a.txt => 41b26a3792b70bd8.txt} (100%) rename allure-report/data/attachments/{169bdc8e4de5949e.txt => 41d5484e0bc70d7d.txt} (100%) rename allure-report/data/attachments/{16b3d133c1b1141f.txt => 41df37e97a182fa4.txt} (100%) rename allure-report/data/attachments/{7bc78567c01b81e.txt => 420f806ee93872a1.txt} (100%) rename allure-report/data/attachments/{7e0608ae57e6ca33.txt => 42b879e2f735a0ac.txt} (100%) rename allure-report/data/attachments/{abe246047ca80d75.txt => 42c6735b0fe92ce1.txt} (100%) rename allure-report/data/attachments/{ed14694d3d785456.txt => 44f1e11e2ff687a2.txt} (100%) rename allure-report/data/attachments/{a7f10bb4c8e33c64.txt => 45607bc70f60caca.txt} (100%) rename allure-report/data/attachments/{ae7d7256cc9cd87f.txt => 4562f85c852f0a97.txt} (100%) rename allure-report/data/attachments/{f3f8f8256722f1a9.txt => 458fa73ae78d8720.txt} (100%) rename allure-report/data/attachments/{403983f6828d59c5.txt => 45f7f0c7806d7a5f.txt} (100%) rename allure-report/data/attachments/{642ca5006c94cc7.txt => 47825a7b608174fa.txt} (100%) rename allure-report/data/attachments/{26557f5777ce8a7b.txt => 479118fc0413c04b.txt} (100%) rename allure-report/data/attachments/{c629f823771e2123.txt => 47a1750ca1ae0253.txt} (100%) rename allure-report/data/attachments/{443a1d8f74495540.txt => 47ad300a7de26866.txt} (100%) rename allure-report/data/attachments/{1fcc34d0c68ae769.txt => 47cbc31b80f9d83c.txt} (100%) rename allure-report/data/attachments/{ae418f132f3362c9.txt => 485b7a7482b5d8a7.txt} (100%) rename allure-report/data/attachments/{6ccd74e070792411.txt => 491bdfb319cbef56.txt} (100%) rename allure-report/data/attachments/{65c05475b72ce468.txt => 491da570f7a6ee0b.txt} (100%) rename allure-report/data/attachments/{72f4c1312eb8e355.txt => 4a17336d068efc8d.txt} (100%) rename allure-report/data/attachments/{8b32e9e6b9d5730c.txt => 4b1abe2714e07e88.txt} (100%) rename allure-report/data/attachments/{1dc0d1d2e3a97f3c.txt => 4b36d71052a1b866.txt} (100%) rename allure-report/data/attachments/{a05ee87cd665f265.txt => 4d30848274c8ad1.txt} (100%) rename allure-report/data/attachments/{62418f4fe99b4a3a.txt => 4d7d20a8fa5049ef.txt} (100%) rename allure-report/data/attachments/{484cb5d49df72338.txt => 4e1d630f27c230cc.txt} (100%) rename allure-report/data/attachments/{f24a9f86ff4ef095.txt => 4e693ea1a91f61ae.txt} (100%) rename allure-report/data/attachments/{724f9727a6725fde.txt => 4eb3eb579b763a8f.txt} (100%) rename allure-report/data/attachments/{4a2cdaf17ee494c.txt => 4f2668e4eadc4184.txt} (100%) rename allure-report/data/attachments/{8fe3e8aa201d424a.txt => 506f9b1aa47477d8.txt} (100%) rename allure-report/data/attachments/{d83a50edd6b56e2a.txt => 50b40a6b644cd21e.txt} (100%) rename allure-report/data/attachments/{de83cab412c71bc2.txt => 50fb258de88c9004.txt} (100%) rename allure-report/data/attachments/{974d8c9279e15557.txt => 51739cb22fa4b9dd.txt} (100%) rename allure-report/data/attachments/{f428986b0baf88be.txt => 524aa4f029baa8f0.txt} (100%) rename allure-report/data/attachments/{126d44dc6bf2e98e.txt => 53f4bbebe56fedf8.txt} (100%) rename allure-report/data/attachments/{36e52eee6ec1696f.txt => 54520f78b41446af.txt} (100%) rename allure-report/data/attachments/{76d9ba77a7bb2817.txt => 5473bc31f56d9a8c.txt} (100%) rename allure-report/data/attachments/{5c2711b7e4875740.txt => 55397a95b3056409.txt} (100%) rename allure-report/data/attachments/{4bafaae940d73b69.txt => 55f2f3a355e5f2ed.txt} (100%) rename allure-report/data/attachments/{6ec9f0fb81f46c5f.txt => 57a50be8b38a35c0.txt} (100%) rename allure-report/data/attachments/{1aea611207a542f.txt => 57e00ad1037160b6.txt} (100%) rename allure-report/data/attachments/{e599d37b78101a20.txt => 58062fc7761306e3.txt} (100%) rename allure-report/data/attachments/{3fe96e9fb5bb6b3f.txt => 58c4828262135699.txt} (100%) rename allure-report/data/attachments/{54a96af48234a9eb.txt => 5932d90eab3398ae.txt} (100%) rename allure-report/data/attachments/{5c2daa57ff9298a6.txt => 5947f9b7e86e5fe4.txt} (100%) rename allure-report/data/attachments/{ef8a05f468c4eca0.txt => 5967a008f3d7b308.txt} (100%) rename allure-report/data/attachments/{666caf8f2715f1b6.txt => 59ffb265a3e6098c.txt} (100%) rename allure-report/data/attachments/{c34a92b7a1b9869e.txt => 5a774371a2badce6.txt} (100%) rename allure-report/data/attachments/{69c2dd61a98f0df6.txt => 5bbee37443803595.txt} (100%) rename allure-report/data/attachments/{519607e9e5d7219c.txt => 5cd6ffe4ff4d743f.txt} (100%) rename allure-report/data/attachments/{1e123d763e6ea7e5.txt => 5d2b03d7ca85feb9.txt} (100%) rename allure-report/data/attachments/{bb1a14f7acaf229.txt => 5d69906a8709b5cf.txt} (100%) rename allure-report/data/attachments/{1bfd50f00e4c2ad5.txt => 5d705772211817a.txt} (100%) rename allure-report/data/attachments/{ca0d330469f49836.txt => 5e949b4a7c16c61.txt} (100%) rename allure-report/data/attachments/{ca908a3276ec1f33.txt => 5f030da14b8e67d2.txt} (100%) rename allure-report/data/attachments/{14f1a5601096c54c.txt => 5f8aca645c6a63be.txt} (100%) rename allure-report/data/attachments/{4db95168982ce3dd.txt => 5fb2caa4cfa17eeb.txt} (100%) rename allure-report/data/attachments/{45d7b9435ff3c623.txt => 6003c650ea768633.txt} (100%) rename allure-report/data/attachments/{f5ae4dee965d4aad.txt => 60553188e91eeef0.txt} (100%) rename allure-report/data/attachments/{73e237e2a607b73d.txt => 609bbc010bbea5b7.txt} (100%) rename allure-report/data/attachments/{2e5a8277ac6080e3.txt => 60a8c5c2c7c00ce5.txt} (100%) rename allure-report/data/attachments/{e448201e6af0cd65.txt => 60b6667cdd104689.txt} (100%) rename allure-report/data/attachments/{d8b7ee3418e7b9e0.txt => 613c4bb712b376ab.txt} (100%) rename allure-report/data/attachments/{8f909ea616537459.txt => 6152f64a0232194a.txt} (100%) rename allure-report/data/attachments/{678cdbc81118a45c.txt => 61785349fe52fbcf.txt} (100%) rename allure-report/data/attachments/{6d7dcbe4dae3ba12.txt => 61ad30a7c0f382b9.txt} (100%) rename allure-report/data/attachments/{1ce9d59c982071d0.txt => 633abad852203ff8.txt} (100%) rename allure-report/data/attachments/{7cd06e1d94c0b146.txt => 636126aa0fb68ef3.txt} (100%) rename allure-report/data/attachments/{be7449bab7c02e56.txt => 6362c8f15fc6c9c0.txt} (100%) rename allure-report/data/attachments/{5343662cb85dce05.txt => 64228c9b0b57911a.txt} (100%) rename allure-report/data/attachments/{3fbdb209be30e4e9.txt => 653d98a4ef66ecba.txt} (100%) rename allure-report/data/attachments/{f27833c43953c1b1.txt => 657871840dfd173c.txt} (100%) rename allure-report/data/attachments/{8d52b389398fe1ce.txt => 662510f84e87d061.txt} (100%) rename allure-report/data/attachments/{c52989139561013a.txt => 66609ce44d720b41.txt} (100%) rename allure-report/data/attachments/{273b19c655c226cd.txt => 67853a4b20ca2cdb.txt} (100%) rename allure-report/data/attachments/{8a45c99b47ae5bc6.txt => 678cbfc79956849c.txt} (100%) rename allure-report/data/attachments/{cd8ecc1f6b5a44.txt => 6a40280d8ceb16cd.txt} (100%) rename allure-report/data/attachments/{a40dc509f3c7162d.txt => 6a90a8741dd8ba1f.txt} (100%) rename allure-report/data/attachments/{22b576ff182f36ef.txt => 6c8cae3bc3627567.txt} (100%) rename allure-report/data/attachments/{75f6639f39c4b7d0.txt => 6ccbedecdc10bf7c.txt} (100%) rename allure-report/data/attachments/{2d3f2d22c5115b6e.txt => 6d177fc91cdd3978.txt} (100%) rename allure-report/data/attachments/{1e1f708218c48d04.txt => 6d3df2dabc5ae756.txt} (100%) rename allure-report/data/attachments/{ce026a7ada5eb7bc.txt => 6d437f4331d47546.txt} (100%) rename allure-report/data/attachments/{a95c78a9496692b3.txt => 6dd9ffa61a5d6299.txt} (100%) rename allure-report/data/attachments/{6dccc5ff56326cce.txt => 6de140d5a479d77f.txt} (100%) rename allure-report/data/attachments/{97bc633acb769f22.txt => 6eedc0bd484f71d7.txt} (100%) rename allure-report/data/attachments/{8c6b281f58e4fbe3.txt => 6f187ca9e0f038e3.txt} (100%) rename allure-report/data/attachments/{12f3e703f687ed41.txt => 70a5653f29871a87.txt} (100%) rename allure-report/data/attachments/{a823a6dcaaab38a.txt => 716034871f152875.txt} (100%) rename allure-report/data/attachments/{998cb255bcb4a08e.txt => 7269f46fd31058ea.txt} (100%) rename allure-report/data/attachments/{40789a2ed03aa082.txt => 72987b318aa88c6e.txt} (100%) rename allure-report/data/attachments/{e7e4c2d208b9b87.txt => 72a8521de031df4e.txt} (100%) rename allure-report/data/attachments/{6cd50ae6a92d4a65.txt => 72a9f976cb96a98d.txt} (100%) rename allure-report/data/attachments/{c520dd2a3bb6ed30.txt => 72e5eb2953c41fef.txt} (100%) rename allure-report/data/attachments/{d2ebd6c7bb69da29.txt => 73b1a6171e8a5d4c.txt} (100%) rename allure-report/data/attachments/{b102eb36f048a843.txt => 73fc8f8784290b40.txt} (100%) rename allure-report/data/attachments/{9ef0f4c8246dad00.txt => 74cdc928e034d6b3.txt} (100%) rename allure-report/data/attachments/{eea11ddd2a3b1d10.txt => 74dc839f94675f1c.txt} (100%) rename allure-report/data/attachments/{ba31ccf0eed329a1.txt => 760dfa55370d45f9.txt} (100%) rename allure-report/data/attachments/{77adc248069b48d7.txt => 763b805ca97b9cb4.txt} (100%) rename allure-report/data/attachments/{97827ebef7dd2119.txt => 77ebc227660f6677.txt} (100%) rename allure-report/data/attachments/{b3d5e98a684cd625.txt => 780df00dc666cbbd.txt} (100%) rename allure-report/data/attachments/{554fb31ae5f3473b.txt => 7899fdb7c4350c2b.txt} (100%) rename allure-report/data/attachments/{4988f81545fa9dcf.txt => 78bed3c0bc3ed4a.txt} (100%) rename allure-report/data/attachments/{d0b96f0ad42d1de6.txt => 78d708b30903548d.txt} (100%) rename allure-report/data/attachments/{3d8fef51a9e30706.txt => 796b2b673c5d0f8b.txt} (100%) rename allure-report/data/attachments/{246dacd86be04ffa.txt => 797fb7eadd505b53.txt} (100%) rename allure-report/data/attachments/{b5b702f79cbcea35.txt => 7a82343faf93d23b.txt} (100%) rename allure-report/data/attachments/{452e28e5668d68f6.txt => 7ac45d8c1df7c43f.txt} (100%) rename allure-report/data/attachments/{5f888d9c16f6ee3a.txt => 7b12ebc1ff02117.txt} (100%) rename allure-report/data/attachments/{fe536534de68582a.txt => 7bf0ce4c1ec59dfa.txt} (100%) rename allure-report/data/attachments/{1e1a39cd8bddfb25.txt => 7cf8e66e6e1debdd.txt} (100%) rename allure-report/data/attachments/{b650a2b5eace42e.txt => 8026ef3ff023cc9a.txt} (100%) rename allure-report/data/attachments/{bfd7eb06540fa1b6.txt => 804c421dc94f15f8.txt} (100%) rename allure-report/data/attachments/{d1cecae81ecbadad.txt => 80cb92b2a68485aa.txt} (100%) rename allure-report/data/attachments/{d03e7f0ed07eb16c.txt => 817f3cd0d39f56b9.txt} (100%) rename allure-report/data/attachments/{3f14e07d274c2e01.txt => 81acaad5616d047a.txt} (100%) rename allure-report/data/attachments/{5ab72755d6763015.txt => 835e4619c5013fd1.txt} (100%) rename allure-report/data/attachments/{880a2c92c8612a83.txt => 84790cd414c0264a.txt} (100%) rename allure-report/data/attachments/{8b338c3953869594.txt => 850bcf9305b7e315.txt} (100%) rename allure-report/data/attachments/{34515415abccae34.txt => 85813043366b6b90.txt} (100%) rename allure-report/data/attachments/{6534e5921b3f960d.txt => 85c42dfa3ebb2236.txt} (100%) rename allure-report/data/attachments/{7757a124114dd519.txt => 85d8941907447826.txt} (100%) rename allure-report/data/attachments/{cece8653b698fb5f.txt => 8778cf7e4eef01cb.txt} (100%) rename allure-report/data/attachments/{c703e2fc1b8c856f.txt => 87d3adc8617c894b.txt} (100%) rename allure-report/data/attachments/{eaa46cbb4e98fc76.txt => 894b6ecea0eca1b4.txt} (100%) rename allure-report/data/attachments/{a648c0041b64d7a8.txt => 8afe9706a7ce18ad.txt} (100%) rename allure-report/data/attachments/{e89f9d3c4680bc47.txt => 8b971d66be6d6e40.txt} (100%) rename allure-report/data/attachments/{8a1d25baaaa2cac0.txt => 8bb1795fd7e9c165.txt} (100%) rename allure-report/data/attachments/{f8b59f79bb13d8ea.txt => 8c55c5917aa6e797.txt} (100%) rename allure-report/data/attachments/{e6328cf6a3bf7297.txt => 8d340a810a5e354f.txt} (100%) rename allure-report/data/attachments/{e321f5d691b52e57.txt => 8e812b8e3303683b.txt} (100%) rename allure-report/data/attachments/{cd5591b59d574128.txt => 8ecb0410a6ed3d7.txt} (100%) rename allure-report/data/attachments/{32849bcbd7d5b064.txt => 8fe17348ea95e36a.txt} (100%) rename allure-report/data/attachments/{c319238385a5cb6d.txt => 912408d5d8c9a319.txt} (100%) rename allure-report/data/attachments/{c258bec5b6c8eafe.txt => 94063c17619b52a4.txt} (100%) rename allure-report/data/attachments/{d6941eaebe2a3ba3.txt => 943e8734629abe38.txt} (100%) rename allure-report/data/attachments/{486146c7b14fd6fd.txt => 9473dcf11398d47e.txt} (100%) rename allure-report/data/attachments/{a1418ed9afde7ea1.txt => 94e9d8b306bae268.txt} (100%) rename allure-report/data/attachments/{ad44f1f08939323f.txt => 96a11dda30514e67.txt} (100%) rename allure-report/data/attachments/{2fb64bb60201538c.txt => 96d9a9c4b2d76831.txt} (100%) rename allure-report/data/attachments/{b0341cfdabd60782.txt => 9799e3f6110c5a32.txt} (100%) rename allure-report/data/attachments/{5d574363acc62acc.txt => 97c0819228c5b269.txt} (100%) rename allure-report/data/attachments/{c452ee18f96c325a.txt => 9905895b50875943.txt} (100%) rename allure-report/data/attachments/{ff15e181fd0e6388.txt => 9970c74c966a73af.txt} (100%) rename allure-report/data/attachments/{282ef4a825ddd5b7.txt => 998c70b07f1415e5.txt} (100%) rename allure-report/data/attachments/{f375c406aca5ef66.txt => 9999070a00162057.txt} (100%) rename allure-report/data/attachments/{9047acd474e52c7c.txt => 9b1c37b21b76b29e.txt} (100%) rename allure-report/data/attachments/{cc9e92a1032075c9.txt => 9b3917a8b59d5897.txt} (100%) rename allure-report/data/attachments/{cca44b266aa98436.txt => 9ca1d978c6df1121.txt} (100%) rename allure-report/data/attachments/{cda2f56ac699fd36.txt => 9d7d21f763543a21.txt} (100%) rename allure-report/data/attachments/{5e25d7437b08e659.txt => 9e245b3b58a92040.txt} (100%) rename allure-report/data/attachments/{47ba37195574156f.txt => 9e367429b8224516.txt} (100%) rename allure-report/data/attachments/{b18a61fc243fdba8.txt => 9e567229f9ee12b7.txt} (100%) rename allure-report/data/attachments/{3f23fd2a44d74bcb.txt => 9e573d2ead28469f.txt} (100%) rename allure-report/data/attachments/{75eae5551f423f5f.txt => 9f73c3d7a4d872db.txt} (100%) rename allure-report/data/attachments/{d85ac6726b459082.txt => 9f9ce9c609c0bc6d.txt} (100%) rename allure-report/data/attachments/{b82715c67d99ec0e.txt => 9fbeafabb75260d1.txt} (100%) rename allure-report/data/attachments/{4143349f87c576ac.txt => a21b9ca1dd2e7b86.txt} (100%) rename allure-report/data/attachments/{1f33a24130d10b19.txt => a2484027e285a197.txt} (100%) rename allure-report/data/attachments/{537ecc9a719af32f.txt => a3653a5d01cb978a.txt} (100%) rename allure-report/data/attachments/{e7393a784e166457.txt => a3b3cc61f9d4e36a.txt} (100%) rename allure-report/data/attachments/{6ee6aafaeecdbf.txt => a42bbda54a679e90.txt} (100%) rename allure-report/data/attachments/{8a8a2d0c90cfef1e.txt => a45595e4822528c2.txt} (100%) rename allure-report/data/attachments/{e3dd9c2915855555.txt => a66e2ef0dd5ae597.txt} (100%) rename allure-report/data/attachments/{d8ed65aadf059368.txt => a68de0f4d0253c8.txt} (100%) rename allure-report/data/attachments/{63652035df5cd6e2.txt => a6b1894a1d267067.txt} (100%) rename allure-report/data/attachments/{f5a2b8e600c203d1.txt => a77304cbd9f33e1a.txt} (100%) rename allure-report/data/attachments/{e2e513778c4c6c4f.txt => a85d028b53b2fa36.txt} (100%) rename allure-report/data/attachments/{394707a7900b643f.txt => a8645f795d532c99.txt} (100%) rename allure-report/data/attachments/{d8f05623e6466063.txt => a9137c6294090d64.txt} (100%) rename allure-report/data/attachments/{ffe9d790c546ddb7.txt => a93887f366c469bf.txt} (100%) rename allure-report/data/attachments/{bee515a36bc2165b.txt => a96837b21492cfc6.txt} (100%) rename allure-report/data/attachments/{ca8a9ae1b56b4086.txt => aa1c2e562160f609.txt} (100%) rename allure-report/data/attachments/{c77e43a426f47681.txt => abb95e0c50272d33.txt} (100%) rename allure-report/data/attachments/{8e484f9bfa00ca83.txt => abff3e6ddecc6408.txt} (100%) rename allure-report/data/attachments/{1f7ee012a96ef9b6.txt => ad735a94d30c45bf.txt} (100%) rename allure-report/data/attachments/{929957d5beb797a6.txt => afa2344a5891233b.txt} (100%) rename allure-report/data/attachments/{f50d22d7c09cd383.txt => b010be274d24546e.txt} (100%) rename allure-report/data/attachments/{56be0299a0ca1906.txt => b1cd53c85d21b130.txt} (100%) rename allure-report/data/attachments/{7f3ec04c5333a588.txt => b1edf41b3f6059d4.txt} (100%) rename allure-report/data/attachments/{6d216ad47549f357.txt => b3163cc1ff017e55.txt} (100%) rename allure-report/data/attachments/{3a4c00d99760de4b.txt => b38075c83e7baebb.txt} (100%) rename allure-report/data/attachments/{77c66732e5fdad66.txt => b3d868139d71d5f7.txt} (100%) rename allure-report/data/attachments/{939b7ea8b8b69174.txt => b3fc324c4038294.txt} (100%) rename allure-report/data/attachments/{ce20c6dd4e02cb56.txt => b56e36dfb1d3c6b9.txt} (100%) rename allure-report/data/attachments/{19d9a21eca90a0a9.txt => b668f07fa0a63017.txt} (100%) rename allure-report/data/attachments/{36d455921a73202d.txt => b75f0fc5a14ca4fd.txt} (100%) rename allure-report/data/attachments/{ff2bf17d38e7cc3b.txt => b7eae48ecc824334.txt} (100%) rename allure-report/data/attachments/{2b6038e2de6e977a.txt => b8984e5480e91547.txt} (100%) rename allure-report/data/attachments/{a3957b3e858fa9c0.txt => b9b51ca36b85ae94.txt} (100%) rename allure-report/data/attachments/{aa8cd00c6909033a.txt => ba852967ab446eeb.txt} (100%) rename allure-report/data/attachments/{5e1e694e393088b4.txt => baaad4c171b47b9e.txt} (100%) rename allure-report/data/attachments/{fc0a9047ac128608.txt => baac53f2bcc51cfd.txt} (100%) rename allure-report/data/attachments/{ef12aa7c4aaaeed2.txt => bbc90d26ad4a4f8d.txt} (100%) rename allure-report/data/attachments/{73d36ba66285cf8e.txt => bc75ae4e4dd30a2d.txt} (100%) rename allure-report/data/attachments/{9b1bb88dc50af4ea.txt => bcefb385384ff8bd.txt} (100%) rename allure-report/data/attachments/{8ef3c2609186193.txt => bcfe223ecfa6a3c6.txt} (100%) rename allure-report/data/attachments/{d01b1971a8a3587e.txt => be09c92a6fe0ac60.txt} (100%) rename allure-report/data/attachments/{ef14b2090647c37e.txt => c2e7b358c14deeef.txt} (100%) rename allure-report/data/attachments/{ccdd1b5f063278d8.txt => c37932e6bf05499f.txt} (100%) rename allure-report/data/attachments/{37e73f373251accf.txt => c396a9cbff279a34.txt} (100%) rename allure-report/data/attachments/{dea157c47f361971.txt => c41bf0bbb023a57f.txt} (100%) rename allure-report/data/attachments/{a3e3342383736358.txt => c5a486abc69fc1fc.txt} (100%) rename allure-report/data/attachments/{a5fae94f2517e85b.txt => c81a97703cb852b3.txt} (100%) rename allure-report/data/attachments/{c38727f5bb9d52ae.txt => c9000a1177d78061.txt} (100%) rename allure-report/data/attachments/{f0a043619d2b0689.txt => c9806239f448fcb9.txt} (100%) rename allure-report/data/attachments/{f180498d197d8df1.txt => c9b22cc9dc28f439.txt} (100%) rename allure-report/data/attachments/{e41ceec6c0cda082.txt => ca30023d79faffff.txt} (100%) rename allure-report/data/attachments/{fac594686b0a84bd.txt => ca809417038f1f70.txt} (100%) rename allure-report/data/attachments/{45655b08b75495d0.txt => cbf43f2ebe410372.txt} (100%) rename allure-report/data/attachments/{bf8644536e05f3d6.txt => cc1b1893c2b8b52d.txt} (100%) rename allure-report/data/attachments/{f329250c4d2cb198.txt => cc532e29d77b891e.txt} (100%) rename allure-report/data/attachments/{ab4c5be84836fafb.txt => cd297c98bb2f9177.txt} (100%) rename allure-report/data/attachments/{1629f3862628691e.txt => cd47dccaf2814ffa.txt} (100%) rename allure-report/data/attachments/{e04892408ba7673f.txt => cfdd9038af68abcd.txt} (100%) rename allure-report/data/attachments/{21cec5980af4ec14.txt => cff9f69ec70ee0f7.txt} (100%) rename allure-report/data/attachments/{c0c4047155365dbf.txt => d03a9a8c81cbe39f.txt} (100%) rename allure-report/data/attachments/{d1bf3e067845857a.txt => d07a2236fba5201a.txt} (100%) rename allure-report/data/attachments/{98b58e86a56b6f3b.txt => d0bc1ad841243b6a.txt} (100%) rename allure-report/data/attachments/{3e79fdee962a6c7a.txt => d10d4fe51ef67a7e.txt} (100%) rename allure-report/data/attachments/{e11dfdc5beea1549.txt => d1599295a3f41ee0.txt} (100%) rename allure-report/data/attachments/{dd695e9095070885.txt => d1ef36a16a608c99.txt} (100%) rename allure-report/data/attachments/{aef94a39bd8b19be.txt => d21731264b505a67.txt} (100%) rename allure-report/data/attachments/{b2176623a3e27602.txt => d22073d8d3352f3e.txt} (100%) rename allure-report/data/attachments/{fae7f8901012b2cd.txt => d23d24d51ab0f2ec.txt} (100%) rename allure-report/data/attachments/{efae8b9f43d09441.txt => d2685b3f41e9f61c.txt} (100%) rename allure-report/data/attachments/{f5c031a187e70f58.txt => d31f2c0a44e75654.txt} (100%) rename allure-report/data/attachments/{c5afc30c761eea74.txt => d38be6ef6dfa6828.txt} (100%) rename allure-report/data/attachments/{7dd6b645422c34b6.txt => d3d4f5edff7b23a8.txt} (100%) rename allure-report/data/attachments/{e0673a9df06bdbef.txt => d473fba435502d8.txt} (100%) rename allure-report/data/attachments/{ce2512d2a26a891e.txt => d497d06498897878.txt} (100%) rename allure-report/data/attachments/{67751593ff534b14.txt => d4f2ea957f6fd3d1.txt} (100%) rename allure-report/data/attachments/{760266e95eacb400.txt => d53bb0f8a7466de9.txt} (100%) rename allure-report/data/attachments/{a62856bc357d2685.txt => d5812afb446c78ce.txt} (100%) rename allure-report/data/attachments/{f24a53f1fea24b32.txt => d8719a36b49cd420.txt} (100%) rename allure-report/data/attachments/{e160bbe65fc37bcd.txt => d8a2a5280a09e0f4.txt} (100%) rename allure-report/data/attachments/{d43641784540be20.txt => d9ffb014ecda8013.txt} (100%) rename allure-report/data/attachments/{6d73a4f3af439d6.txt => da21be7860f58cf6.txt} (100%) rename allure-report/data/attachments/{fdbdb95799e89350.txt => db8507235524f855.txt} (100%) rename allure-report/data/attachments/{d9853791dbf86dfe.txt => dc735d6cbaa38cba.txt} (100%) rename allure-report/data/attachments/{30a819977a6f7bba.txt => dd8004b465c9b5f8.txt} (100%) rename allure-report/data/attachments/{e3a1df6b2bd53059.txt => df41cf6b46c44c9e.txt} (100%) rename allure-report/data/attachments/{7a383696eff0b379.txt => dfbdbb71de71756e.txt} (100%) rename allure-report/data/attachments/{a66ea3c1c7d07513.txt => e01af9821f0d361c.txt} (100%) rename allure-report/data/attachments/{b94b97d784c6cf01.txt => e07fc7bf167a48cd.txt} (100%) rename allure-report/data/attachments/{2dbf09b568ff5668.txt => e084f22fa99f8e9d.txt} (100%) rename allure-report/data/attachments/{cfc199981b020b59.txt => e1032190833aaac7.txt} (100%) rename allure-report/data/attachments/{d7dd41e46efca9ee.txt => e22a14740da9552.txt} (100%) rename allure-report/data/attachments/{10b8961e386c4fec.txt => e255c73086be3d07.txt} (100%) rename allure-report/data/attachments/{54a6fca37064555a.txt => e4c3264e25c98281.txt} (100%) rename allure-report/data/attachments/{3f3d8444cfb8c128.txt => e6e24d1199424ffc.txt} (100%) rename allure-report/data/attachments/{92375ce905d3bb32.txt => e707854c25108dd3.txt} (100%) rename allure-report/data/attachments/{d0030f8b38971a56.txt => e7a51c8d74f448fe.txt} (100%) rename allure-report/data/attachments/{81997e6990138a02.txt => e932ac087f99689b.txt} (100%) rename allure-report/data/attachments/{ba5b206c202bb2e0.txt => ea9613cb4c662f2e.txt} (100%) rename allure-report/data/attachments/{572eaf1e6f057287.txt => eaf9f3a704742209.txt} (100%) rename allure-report/data/attachments/{e44deaae3b3d699a.txt => eb2a7d798a0dd1d2.txt} (100%) rename allure-report/data/attachments/{8ac039f3bc7f748f.txt => eb5eccf50db39cb4.txt} (100%) rename allure-report/data/attachments/{3df0050d216178a3.txt => ebde2b3c5f7bae47.txt} (100%) rename allure-report/data/attachments/{6aaa7a7ffc396f31.txt => ec0aa2198d4850df.txt} (100%) rename allure-report/data/attachments/{a9f925f082e601ea.txt => ec381cac44a14e7f.txt} (100%) rename allure-report/data/attachments/{a73f85a8fac351b8.txt => ed1895964a4f1dc3.txt} (100%) rename allure-report/data/attachments/{12c58087789a46ca.txt => ed45fb968677e918.txt} (100%) rename allure-report/data/attachments/{9819ce1f0ac184a6.txt => ee8e3a23a26b4600.txt} (100%) rename allure-report/data/attachments/{b436923321373575.txt => eecd5302084b69b0.txt} (100%) rename allure-report/data/attachments/{a193aa0d76e6e0f1.txt => ef03ba760fe885c0.txt} (100%) rename allure-report/data/attachments/{f209dfd0dcd30d55.txt => ef0993259005a4f7.txt} (100%) rename allure-report/data/attachments/{5ab43402bfd67bde.txt => ef5ba384071190d7.txt} (100%) rename allure-report/data/attachments/{8c002cae94869ae.txt => efdc700a12236023.txt} (100%) rename allure-report/data/attachments/{e1db63f604b55e53.txt => f135592d4f270e5c.txt} (100%) rename allure-report/data/attachments/{d89f3d58b0c226e8.txt => f146e27128e108d6.txt} (100%) rename allure-report/data/attachments/{1f8aa4666b4af5af.txt => f1567e8d01d8dfde.txt} (100%) rename allure-report/data/attachments/{e13819432a0a8bbc.txt => f2a9e45ebf48d755.txt} (100%) rename allure-report/data/attachments/{ed71ca1a830493f6.txt => f451e0abb748fcc1.txt} (100%) rename allure-report/data/attachments/{839cae885131e395.txt => f469dcf875239b3a.txt} (100%) rename allure-report/data/attachments/{e9b85a28a1d1502.txt => f4832c8bd9f79614.txt} (100%) rename allure-report/data/attachments/{bfa0e041a65d579a.txt => f4b8bcccd8e3d9a5.txt} (100%) rename allure-report/data/attachments/{a613cf938d78c4d4.txt => f4f546882d08a1ac.txt} (100%) rename allure-report/data/attachments/{df1294dda064bff1.txt => f5e7c985bb14104f.txt} (100%) rename allure-report/data/attachments/{aeaa6146da01ffaa.txt => f7cb1151a0bdf19c.txt} (100%) rename allure-report/data/attachments/{ef954a973a3165a7.txt => f82dd65f45ebad45.txt} (100%) rename allure-report/data/attachments/{8324986f2adab578.txt => f8693f25c4ee9e10.txt} (100%) rename allure-report/data/attachments/{7fc42db42407a1b3.txt => f91cde579304f854.txt} (100%) rename allure-report/data/attachments/{7d49bbac8d757852.txt => f965c0bd2baa205.txt} (100%) rename allure-report/data/attachments/{a3af1182be2fa344.txt => f9925186cd87d138.txt} (100%) rename allure-report/data/attachments/{697ce25e72082ee1.txt => f9be06237574ec64.txt} (100%) rename allure-report/data/attachments/{dcb18087db2eef7c.txt => fb0a5c86d6124176.txt} (100%) rename allure-report/data/attachments/{69b865faf74786aa.txt => fb983dadd4fd2138.txt} (100%) rename allure-report/data/attachments/{5d5a8c5ce62738a7.txt => fba7e6f7e7538915.txt} (100%) rename allure-report/data/attachments/{f509afa4d498e7c1.txt => fbbce307fc80ae94.txt} (100%) rename allure-report/data/attachments/{9252a83ce892d840.txt => fcd71aa1ac7b19de.txt} (100%) rename allure-report/data/attachments/{e7750817bf2ce3d3.txt => fceb9ab1ca4c439c.txt} (100%) rename allure-report/data/attachments/{62359e715edfaf26.txt => fe10e73cc4ad9f0b.txt} (100%) rename allure-report/data/attachments/{cb2ee8571e9e5841.txt => fec9fd349f1d045f.txt} (100%) rename allure-report/data/attachments/{c2916b6d9a3730c2.txt => ff7405a34f99b6d6.txt} (100%) delete mode 100644 allure-report/data/test-cases/10105e91d30d0887.json rename allure-report/data/test-cases/{997065a61e801d4c.json => 1065b8b44c0afc6f.json} (77%) create mode 100644 allure-report/data/test-cases/10f08e5166368fc8.json rename allure-report/data/test-cases/{500ac2fecd2b527c.json => 11195fbf11e8bfc3.json} (60%) rename allure-report/data/test-cases/{95a29a9545c416cd.json => 111dbc365b1f3e78.json} (71%) create mode 100644 allure-report/data/test-cases/112ca50049d27c.json create mode 100644 allure-report/data/test-cases/113e69c4ee0f071.json rename allure-report/data/test-cases/{b982073aac2c9d08.json => 117e19024dff1cfd.json} (61%) rename allure-report/data/test-cases/{e8b3178794c4402b.json => 11ff02c2df19530d.json} (70%) rename allure-report/data/test-cases/{cd9da9d797a3c2ab.json => 1212df96f6b2dc34.json} (65%) rename allure-report/data/test-cases/{777edc280c74020d.json => 1216cba41972f97c.json} (53%) rename allure-report/data/test-cases/{2db5e1fafcf7f4e1.json => 122ba025ebcea5dd.json} (71%) rename allure-report/data/test-cases/{87dc5713a007f1d7.json => 1230413e064883bb.json} (59%) create mode 100644 allure-report/data/test-cases/1251fa1056fea3d4.json delete mode 100644 allure-report/data/test-cases/1265911f14bcd919.json delete mode 100644 allure-report/data/test-cases/12688af3a6e6b4d.json rename allure-report/data/test-cases/{62e01ffb20b661b5.json => 126c2e67245419a9.json} (66%) rename allure-report/data/test-cases/{e0b6b39a4d4f9bf4.json => 12c07b407ce072f5.json} (67%) rename allure-report/data/test-cases/{d4d9b4f519ec1ce3.json => 139cceadff83cc0d.json} (76%) rename allure-report/data/test-cases/{eaaef6c05ba4cb98.json => 13c4343c88a790e8.json} (71%) rename allure-report/data/test-cases/{593778a5ba99d447.json => 13c5e35ef3c791a0.json} (58%) create mode 100644 allure-report/data/test-cases/13f340b5f893b4e2.json rename allure-report/data/test-cases/{3c17e0f5363e3016.json => 142b0c4f3754d996.json} (76%) create mode 100644 allure-report/data/test-cases/142f5165c8452d36.json create mode 100644 allure-report/data/test-cases/14829aa4ce177c0a.json rename allure-report/data/test-cases/{4f1172fa5620cc18.json => 14c8b0cd48caa4d6.json} (68%) create mode 100644 allure-report/data/test-cases/14cdd8696beec9a.json create mode 100644 allure-report/data/test-cases/152d6167de0fb37e.json create mode 100644 allure-report/data/test-cases/15315242cf60389c.json rename allure-report/data/test-cases/{73100341c811e8de.json => 1531ff5e4d5380e4.json} (72%) rename allure-report/data/test-cases/{28c03a6c5cc24cef.json => 156fc08ab7167514.json} (54%) delete mode 100644 allure-report/data/test-cases/15f47b991f284575.json delete mode 100644 allure-report/data/test-cases/161e5fcc0f247.json create mode 100644 allure-report/data/test-cases/162a4f2fa010c721.json create mode 100644 allure-report/data/test-cases/168d1058a213deae.json rename allure-report/data/test-cases/{8a9b52813983814b.json => 168ffd09c766442f.json} (74%) rename allure-report/data/test-cases/{dd6fef8ab37d71ba.json => 170ac645fcf8229c.json} (60%) rename allure-report/data/test-cases/{e97ebddff1ce0b6f.json => 1751fe3c0a6687c3.json} (64%) create mode 100644 allure-report/data/test-cases/17c9a97f8a5ea815.json create mode 100644 allure-report/data/test-cases/183ba5aa4a18280.json create mode 100644 allure-report/data/test-cases/1857a7ece8075aa5.json create mode 100644 allure-report/data/test-cases/190ed93e28b901b.json rename allure-report/data/test-cases/{e911f85aab34c4e6.json => 1938d829429abf54.json} (71%) rename allure-report/data/test-cases/{aeac31a6eff8ced3.json => 197e00510d3eb166.json} (63%) rename allure-report/data/test-cases/{72a7c9402c254937.json => 197e80b267cccc2b.json} (69%) create mode 100644 allure-report/data/test-cases/19cfe4000991e820.json create mode 100644 allure-report/data/test-cases/1a13c6a89153460b.json rename allure-report/data/test-cases/{e78e70d10bce7cf5.json => 1a204aa873a93d86.json} (56%) create mode 100644 allure-report/data/test-cases/1a8f12ae9a258bd1.json create mode 100644 allure-report/data/test-cases/1abde016dd7f5ee7.json rename allure-report/data/test-cases/{f8d7fd46b923bc4f.json => 1ae269d449ac7d5e.json} (66%) rename allure-report/data/test-cases/{c3d1eec0ca08f2cd.json => 1b24a6e8f9065ccb.json} (62%) create mode 100644 allure-report/data/test-cases/1b57aafe4439b9a8.json rename allure-report/data/test-cases/{fbd37fe4a302b125.json => 1b6850c9f0a02820.json} (59%) rename allure-report/data/test-cases/{36b60db7bef82294.json => 1b6eab50f2f722f5.json} (64%) rename allure-report/data/test-cases/{e051944b31d54c14.json => 1b7657273f039658.json} (59%) rename allure-report/data/test-cases/{4e32d03efab2941f.json => 1b95adcea61e4ef5.json} (68%) rename allure-report/data/test-cases/{90c86a448294d535.json => 1b9a7ef859e6370c.json} (70%) delete mode 100644 allure-report/data/test-cases/1baceb9fc9699f7.json rename allure-report/data/test-cases/{3287e9af1a22ed8b.json => 1bcebf4fb624aad6.json} (73%) create mode 100644 allure-report/data/test-cases/1bd3919646678e3f.json rename allure-report/data/test-cases/{e378762a5dac9d1e.json => 1be5b98a41807de8.json} (72%) create mode 100644 allure-report/data/test-cases/1bf4128bcf35143f.json rename allure-report/data/test-cases/{6c70ddf45fea2887.json => 1bfd57b8cda6c028.json} (56%) rename allure-report/data/test-cases/{49355004a4136993.json => 1c217987ee1a1d39.json} (65%) rename allure-report/data/test-cases/{9abe86e868e9efe6.json => 1c33446eccccc45a.json} (69%) create mode 100644 allure-report/data/test-cases/1c3655d4a978bd79.json delete mode 100644 allure-report/data/test-cases/1c8c3b6600a20e75.json create mode 100644 allure-report/data/test-cases/1c9684bf403c80de.json rename allure-report/data/test-cases/{d7d1e3c0f9370311.json => 1d02b155522c6119.json} (75%) delete mode 100644 allure-report/data/test-cases/1d2104b5fa1d29b.json rename allure-report/data/test-cases/{ab40fd2a8eefa024.json => 1d437c172b71c55f.json} (78%) rename allure-report/data/test-cases/{95521fe2b6cd2563.json => 1d4c3341dfe8e289.json} (62%) rename allure-report/data/test-cases/{e08b527d12d4e4df.json => 1d756394430052ee.json} (59%) rename allure-report/data/test-cases/{b03752c3145720e6.json => 1d7a8665bbc3ca3a.json} (57%) rename allure-report/data/test-cases/{d9dd09ce35083af7.json => 1dd416b71393e4f8.json} (74%) rename allure-report/data/test-cases/{984af3d5d8056be9.json => 1ddf203d8a3c498d.json} (60%) rename allure-report/data/test-cases/{36685d778f756fae.json => 1e4e59f90ff35603.json} (56%) rename allure-report/data/test-cases/{7cc0844ab5ecf216.json => 1e6c7d1c4189d9dd.json} (62%) create mode 100644 allure-report/data/test-cases/1f1df83d6cc10b66.json rename allure-report/data/test-cases/{f85ab0d3a8429db7.json => 1f21450476aa4c9a.json} (51%) create mode 100644 allure-report/data/test-cases/200b5f0b4ec790a3.json rename allure-report/data/test-cases/{76dad62f743b3603.json => 200c9d07d930b3b1.json} (72%) create mode 100644 allure-report/data/test-cases/20301c2d6922300e.json rename allure-report/data/test-cases/{a7008d20e58a9d6a.json => 20569c47774cf3c7.json} (66%) create mode 100644 allure-report/data/test-cases/2064c7d6b1732474.json rename allure-report/data/test-cases/{89027a401f5af485.json => 210d6cbbe1051e7b.json} (76%) rename allure-report/data/test-cases/{12432569c8b8923f.json => 2180a5f5e79006a1.json} (77%) rename allure-report/data/test-cases/{9557455e27a468ef.json => 21dca02637c8027f.json} (74%) rename allure-report/data/test-cases/{8c7db5518444ac71.json => 229dd074fbcb6ca1.json} (64%) rename allure-report/data/test-cases/{196d34645221ebb4.json => 22d82bbeb537c71a.json} (58%) rename allure-report/data/test-cases/{99ca7a938f9d4989.json => 22f939e586318511.json} (72%) rename allure-report/data/test-cases/{d19efceb39f40f4f.json => 23151e1dbdaacb09.json} (54%) rename allure-report/data/test-cases/{59e6c1fe5b50c363.json => 23199ebc2c7c1fa2.json} (67%) create mode 100644 allure-report/data/test-cases/2399abc94e3173da.json delete mode 100644 allure-report/data/test-cases/23e61e29448b9218.json rename allure-report/data/test-cases/{108dd2ab8a90859d.json => 23e7f7a9e25073fa.json} (75%) create mode 100644 allure-report/data/test-cases/2483ff464fe4ea07.json rename allure-report/data/test-cases/{ef1a5cba4efb343a.json => 2488d38c1be516d6.json} (93%) create mode 100644 allure-report/data/test-cases/24b136640bd96c68.json rename allure-report/data/test-cases/{7a3ebc7dbd092b26.json => 24b32ad032525022.json} (68%) rename allure-report/data/test-cases/{1ca9562da84c64b4.json => 24df9329b634133a.json} (72%) rename allure-report/data/test-cases/{c89e6a91bc0b9e52.json => 256439519ef758bc.json} (64%) rename allure-report/data/test-cases/{b6d0f7b70ff35380.json => 25a19c539143ffc2.json} (58%) rename allure-report/data/test-cases/{27b26e7a6523571a.json => 25b0f3d782a2ed03.json} (63%) rename allure-report/data/test-cases/{f701011259e850f6.json => 26a447cb7c15cb4e.json} (54%) rename allure-report/data/test-cases/{405cf642fa0cf7c1.json => 27e5ed0c95dfc112.json} (53%) rename allure-report/data/test-cases/{dc1c20798f5a8f0a.json => 280752ec061c1457.json} (65%) rename allure-report/data/test-cases/{e47ebce66bbb53cd.json => 28083507c1397923.json} (92%) create mode 100644 allure-report/data/test-cases/28847243d9b7f290.json rename allure-report/data/test-cases/{a405e7d50def0411.json => 288e814175ef5830.json} (55%) create mode 100644 allure-report/data/test-cases/2890c501d19b5f47.json create mode 100644 allure-report/data/test-cases/28a9bedc22c54787.json rename allure-report/data/test-cases/{3529b67f8df1184b.json => 294aa341a28271bb.json} (66%) rename allure-report/data/test-cases/{9ee9ff331756b11e.json => 296f86e34803d6c1.json} (54%) create mode 100644 allure-report/data/test-cases/2991adec6435da10.json rename allure-report/data/test-cases/{5319ceacad5a43bc.json => 2ac4d21875a44bdb.json} (78%) rename allure-report/data/test-cases/{9dc85df7fba3a78e.json => 2ba00773a1bfae2e.json} (61%) create mode 100644 allure-report/data/test-cases/2be24f9b66669d76.json create mode 100644 allure-report/data/test-cases/2c38900f28571c1.json create mode 100644 allure-report/data/test-cases/2c53cc9448de91f2.json rename allure-report/data/test-cases/{5d1981370251e5ca.json => 2c7af88777002151.json} (71%) delete mode 100644 allure-report/data/test-cases/2ce701a458e1cd31.json create mode 100644 allure-report/data/test-cases/2d49ce73ea45d7a1.json rename allure-report/data/test-cases/{7362d176d35d3813.json => 2da97da2ac2c9bbd.json} (69%) rename allure-report/data/test-cases/{462780a7368c9ffd.json => 2dcba5fbac259354.json} (65%) rename allure-report/data/test-cases/{fb237eeb673713e3.json => 2e0eb113649e95e6.json} (60%) rename allure-report/data/test-cases/{a770e6ac7d91604a.json => 2ee59d9a8c304f3b.json} (61%) create mode 100644 allure-report/data/test-cases/2f46a2e41d4cb55.json rename allure-report/data/test-cases/{b9b6a14fc4bd1dd7.json => 2fb895d93acc0bab.json} (55%) create mode 100644 allure-report/data/test-cases/300c045916564a1.json create mode 100644 allure-report/data/test-cases/302e450946481df3.json rename allure-report/data/test-cases/{711928de75b599ba.json => 303f99106d04e0c7.json} (64%) create mode 100644 allure-report/data/test-cases/30977e1fdeed6f0a.json rename allure-report/data/test-cases/{49fb68289fb078f8.json => 30ac3ffad3316fea.json} (71%) rename allure-report/data/test-cases/{c74e320818fb9682.json => 30e62f45ee93d21d.json} (79%) create mode 100644 allure-report/data/test-cases/30ebc2ebd440c488.json create mode 100644 allure-report/data/test-cases/31802a90aeba5e97.json rename allure-report/data/test-cases/{87c07388b10e55d5.json => 319c2fc51c0b8912.json} (65%) rename allure-report/data/test-cases/{39a19c10cf88efee.json => 31a691fa5a56c905.json} (81%) create mode 100644 allure-report/data/test-cases/31ab703bf65847e5.json create mode 100644 allure-report/data/test-cases/324d19209fbeb70d.json delete mode 100644 allure-report/data/test-cases/32703c37c2f9cfbd.json rename allure-report/data/test-cases/{e1fe0122d9c0870d.json => 329cbbd27ed228a7.json} (62%) create mode 100644 allure-report/data/test-cases/32a39f3c0fa23567.json rename allure-report/data/test-cases/{9451201a4cae53ad.json => 330a0128cd73780c.json} (67%) rename allure-report/data/test-cases/{e427c3eece0f34c3.json => 335c39c3e0f7aa15.json} (73%) rename allure-report/data/test-cases/{102a91ff9d2e2c1f.json => 3400d1d080e82f75.json} (72%) rename allure-report/data/test-cases/{c8870275fadfceea.json => 3460c7a02debe899.json} (70%) create mode 100644 allure-report/data/test-cases/34931ad2bd045d0c.json rename allure-report/data/test-cases/{bcc8c6b28fb32dd0.json => 34ca51906297ee6f.json} (65%) create mode 100644 allure-report/data/test-cases/354cda6601a7cded.json delete mode 100644 allure-report/data/test-cases/35836d979e37575.json rename allure-report/data/test-cases/{4ea31191e1f5ab3b.json => 359cda8d66959d20.json} (63%) create mode 100644 allure-report/data/test-cases/35f4051adfa3517.json rename allure-report/data/test-cases/{6399c372aa4005f1.json => 3604ad2531e10e0a.json} (66%) rename allure-report/data/test-cases/{33a7277db5231ef9.json => 36552864c04c1cf9.json} (68%) rename allure-report/data/test-cases/{698c99dcac4b0d93.json => 3714d7b27c33cf44.json} (58%) rename allure-report/data/test-cases/{f7d2073500029121.json => 3719e4e464aa700e.json} (53%) rename allure-report/data/test-cases/{11fa683d801b6c42.json => 3785819940a9985f.json} (56%) rename allure-report/data/test-cases/{cf437ca3dc1624b1.json => 378b8959bf0b41a9.json} (81%) rename allure-report/data/test-cases/{4433323b946a1c32.json => 37af89538f752875.json} (74%) create mode 100644 allure-report/data/test-cases/37bcd45d30c593a7.json create mode 100644 allure-report/data/test-cases/37c27a38809b08b4.json delete mode 100644 allure-report/data/test-cases/38365b0f6f350ca5.json rename allure-report/data/test-cases/{ea156c7340f7150f.json => 383972b39eec664a.json} (67%) create mode 100644 allure-report/data/test-cases/3846518071a02e50.json rename allure-report/data/test-cases/{c072892b1c739356.json => 3846d19bb4975491.json} (72%) create mode 100644 allure-report/data/test-cases/388d9dc9fa1f1c3a.json rename allure-report/data/test-cases/{b2ea4d6d64dc027a.json => 38d84fb9239b5f2e.json} (55%) rename allure-report/data/test-cases/{877a76cbb202d7b3.json => 393b88e5ac625a50.json} (55%) rename allure-report/data/test-cases/{863d9e582b6f3de4.json => 395a8f7cfcd6a2c9.json} (72%) rename allure-report/data/test-cases/{6fbd93f1e3abe9a5.json => 3a617c2d20fe6a0a.json} (75%) rename allure-report/data/test-cases/{6a59d6609523c5a8.json => 3b252f71e94d60c3.json} (73%) rename allure-report/data/test-cases/{6f0b2af516b0f755.json => 3b2be2c8b8f3d0bb.json} (77%) rename allure-report/data/test-cases/{3b580876a88f5382.json => 3b453b26a6476828.json} (67%) create mode 100644 allure-report/data/test-cases/3b9e344534b3c5db.json rename allure-report/data/test-cases/{9c2fc5bac7417dd0.json => 3bb063d5045f38b5.json} (68%) rename allure-report/data/test-cases/{9ac6d40036941792.json => 3c275e4650ef1fcb.json} (71%) create mode 100644 allure-report/data/test-cases/3c7a781e3674db5e.json rename allure-report/data/test-cases/{a258a6f00a3ffda1.json => 3c99f2489842209e.json} (70%) create mode 100644 allure-report/data/test-cases/3cb7f65d354963ea.json create mode 100644 allure-report/data/test-cases/3d05de3d43cf437d.json rename allure-report/data/test-cases/{256a10c9792b808f.json => 3d09efb523dadc81.json} (51%) create mode 100644 allure-report/data/test-cases/3d40466198fa34e6.json create mode 100644 allure-report/data/test-cases/3d4ef3b1faaf3c9d.json delete mode 100644 allure-report/data/test-cases/3d4f8cb2de087cf.json create mode 100644 allure-report/data/test-cases/3de1512f067d459d.json create mode 100644 allure-report/data/test-cases/3de5bbe9e7cab5b6.json create mode 100644 allure-report/data/test-cases/3e564e38813f1539.json rename allure-report/data/test-cases/{a0d455d6bf21528b.json => 3e88e2d0381e105a.json} (72%) create mode 100644 allure-report/data/test-cases/3ead41117d0ad5b6.json create mode 100644 allure-report/data/test-cases/3f3bfc03f90689c3.json rename allure-report/data/test-cases/{1532fae746d0bb3a.json => 3f678007c09ea2b5.json} (54%) create mode 100644 allure-report/data/test-cases/3fe8a02ede1e6532.json create mode 100644 allure-report/data/test-cases/3ff87d981594c6f7.json create mode 100644 allure-report/data/test-cases/405b625cf95f9fbd.json rename allure-report/data/test-cases/{c8c44a676a12b5c6.json => 406377324fdf0256.json} (73%) delete mode 100644 allure-report/data/test-cases/40819c186d07d3de.json rename allure-report/data/test-cases/{2980fd5af6447b30.json => 40a0fe54277654cc.json} (72%) delete mode 100644 allure-report/data/test-cases/40c938f8f83f34f7.json delete mode 100644 allure-report/data/test-cases/413fd3063d3e7dc4.json create mode 100644 allure-report/data/test-cases/41668c3c4e1a677a.json create mode 100644 allure-report/data/test-cases/416bb0c0ac58f7b6.json rename allure-report/data/test-cases/{2bfddef765c09569.json => 41a6baf598873d9b.json} (57%) rename allure-report/data/test-cases/{b67813f1cae4659e.json => 42358797bb03e774.json} (63%) rename allure-report/data/test-cases/{3cb4765f4f4fe8e7.json => 42452319aaa200ae.json} (73%) create mode 100644 allure-report/data/test-cases/4249127f6bff6f10.json delete mode 100644 allure-report/data/test-cases/428efcfcd43d2531.json rename allure-report/data/test-cases/{31050b40d7651adc.json => 42bd5b348187136c.json} (68%) rename allure-report/data/test-cases/{6207ccc30173aa77.json => 437936b48694b75d.json} (64%) create mode 100644 allure-report/data/test-cases/43a8b37a1715c915.json rename allure-report/data/test-cases/{77e868a9cd944330.json => 43c9c9efb1c04251.json} (81%) rename allure-report/data/test-cases/{d7eae685c38fccbb.json => 4430fa612ad99844.json} (68%) create mode 100644 allure-report/data/test-cases/4438dce845a8b680.json rename allure-report/data/test-cases/{2dc119e05306bc09.json => 44516baeffa03c9d.json} (76%) create mode 100644 allure-report/data/test-cases/44e584571b03be2.json create mode 100644 allure-report/data/test-cases/450fbb27e2067be4.json create mode 100644 allure-report/data/test-cases/45bc1447720343e5.json rename allure-report/data/test-cases/{1bdb6e0764902ab4.json => 4617147ad7612076.json} (74%) create mode 100644 allure-report/data/test-cases/46ad98eaed470ea7.json rename allure-report/data/test-cases/{1bef76bb610cc3bd.json => 46de5298b06a2e8f.json} (71%) create mode 100644 allure-report/data/test-cases/46eea1e10beb3240.json create mode 100644 allure-report/data/test-cases/4710cc2182eb85cb.json rename allure-report/data/test-cases/{e17b710b1ca6cef6.json => 4719969d944ed48a.json} (66%) rename allure-report/data/test-cases/{a530698ca5ed066c.json => 472edec34fd4cc19.json} (72%) create mode 100644 allure-report/data/test-cases/4736c243443acbf6.json rename allure-report/data/test-cases/{43e7aaf3ed9f3ed0.json => 479b452abb7b813c.json} (63%) rename allure-report/data/test-cases/{73a56012085cbb67.json => 47cf0745ec1b0964.json} (64%) rename allure-report/data/test-cases/{4c7e13d0f61cf99a.json => 47f8dbee3cb403d3.json} (71%) rename allure-report/data/test-cases/{e57068c00956ea02.json => 482801cdd802c850.json} (70%) create mode 100644 allure-report/data/test-cases/48e03b38164b77c2.json create mode 100644 allure-report/data/test-cases/48fa5f91e3478c29.json rename allure-report/data/test-cases/{ba7aa507beaa1547.json => 49044c1c42d54a81.json} (64%) rename allure-report/data/test-cases/{286a2c6d22a3ea0b.json => 4941703c69aa6dd8.json} (52%) rename allure-report/data/test-cases/{a3395496d8bde803.json => 494bc5055e76bf71.json} (63%) rename allure-report/data/test-cases/{cc1bd3cedb1bfef0.json => 497e27a7f74365e8.json} (73%) create mode 100644 allure-report/data/test-cases/49ad6a9c0404421b.json delete mode 100644 allure-report/data/test-cases/4a35a10fb92b5fdb.json delete mode 100644 allure-report/data/test-cases/4a386a153d4cde6.json rename allure-report/data/test-cases/{25fd6f6c5cfe2b58.json => 4a6083b6c2f5cc4b.json} (60%) delete mode 100644 allure-report/data/test-cases/4aa405db56695158.json create mode 100644 allure-report/data/test-cases/4ab01f4fc722fa2f.json create mode 100644 allure-report/data/test-cases/4ab2fd070154adeb.json rename allure-report/data/test-cases/{ac8683bc2703e398.json => 4acb1c573ef8b7bb.json} (57%) rename allure-report/data/test-cases/{aa08a95162404297.json => 4b22647a9cdd2bef.json} (64%) create mode 100644 allure-report/data/test-cases/4b28b33a131eefd9.json create mode 100644 allure-report/data/test-cases/4b2984e4fa36f94.json delete mode 100644 allure-report/data/test-cases/4b8d012f19a4e1e6.json delete mode 100644 allure-report/data/test-cases/4bb422e9ca9901c8.json rename allure-report/data/test-cases/{b890a6fea083097f.json => 4c31a5ec99c6ca69.json} (64%) create mode 100644 allure-report/data/test-cases/4c5cc35d3de0d6f4.json rename allure-report/data/test-cases/{67a957cc2815c6ee.json => 4ca3cfa2d2c9d074.json} (66%) rename allure-report/data/test-cases/{f11813f80ada0713.json => 4d0958f9149b5791.json} (92%) rename allure-report/data/test-cases/{70963d87150b1b7f.json => 4d2d9b386eb6ebf2.json} (65%) create mode 100644 allure-report/data/test-cases/4d4729a99109106e.json create mode 100644 allure-report/data/test-cases/4d57a8ddade5816.json create mode 100644 allure-report/data/test-cases/4d8c29fe45d13f2d.json rename allure-report/data/test-cases/{e99ca5757342b866.json => 4df5cc35809df545.json} (57%) create mode 100644 allure-report/data/test-cases/4df9c941adb35f26.json rename allure-report/data/test-cases/{d66079b030735db8.json => 4dfeb434e28153fe.json} (72%) rename allure-report/data/test-cases/{56ad7c473898c46d.json => 4ea092b3f85ebfcb.json} (74%) rename allure-report/data/test-cases/{3d6e5f0961d8c06a.json => 4eaed4684cfaee8f.json} (73%) create mode 100644 allure-report/data/test-cases/4eb91d777aea105a.json rename allure-report/data/test-cases/{dc1f8d6367d3e66e.json => 4f20da98ae3e1985.json} (75%) rename allure-report/data/test-cases/{9326ca5c3b3bcaf3.json => 4f2bbc07480f42a4.json} (76%) rename allure-report/data/test-cases/{d4bd80ae04896a86.json => 4f999b555dd62215.json} (72%) rename allure-report/data/test-cases/{8f3fc2a4deaebd0d.json => 4fc00e9c47abe8d0.json} (68%) rename allure-report/data/test-cases/{5961f436380e11d2.json => 500f182a6eedd000.json} (62%) rename allure-report/data/test-cases/{533bf937be1aa466.json => 50b7ff1fe714521a.json} (63%) rename allure-report/data/test-cases/{4045abc0bf075d90.json => 51021ef4547a41f8.json} (68%) rename allure-report/data/test-cases/{60180807c3815756.json => 510e078ddda4bd3c.json} (58%) create mode 100644 allure-report/data/test-cases/5194ad39db439d08.json rename allure-report/data/test-cases/{1da47ab927a8de42.json => 522a0d282fded9dd.json} (62%) create mode 100644 allure-report/data/test-cases/52402d5056a00e1d.json create mode 100644 allure-report/data/test-cases/532d8f53f92733e9.json rename allure-report/data/test-cases/{3c944fe792fcd179.json => 5364b62b05552f1e.json} (94%) rename allure-report/data/test-cases/{9348c64cc78f5d13.json => 5392fbee850dfcf4.json} (72%) create mode 100644 allure-report/data/test-cases/53eb34bc4e02fa07.json rename allure-report/data/test-cases/{9e6f93dfe778ff9a.json => 53fa8d477eb42fd3.json} (69%) rename allure-report/data/test-cases/{aa3ebaa27581f198.json => 54122a7c8f1149b2.json} (54%) rename allure-report/data/test-cases/{19b258c1195772c5.json => 545394bf3fbbd64b.json} (73%) create mode 100644 allure-report/data/test-cases/5471ece0090e3d4.json delete mode 100644 allure-report/data/test-cases/54e4671ce8499dcf.json create mode 100644 allure-report/data/test-cases/54fbe05c675f404a.json delete mode 100644 allure-report/data/test-cases/552742d77daecee9.json rename allure-report/data/test-cases/{ddd928ac3a4fb635.json => 552b72a0721ea486.json} (74%) rename allure-report/data/test-cases/{3b395c1683e127a4.json => 555a795f08de5e6c.json} (58%) rename allure-report/data/test-cases/{5fda510dc29832db.json => 55a0094c41d10012.json} (70%) rename allure-report/data/test-cases/{3b89778e0f9a0b66.json => 563a12b2ae66d10b.json} (57%) create mode 100644 allure-report/data/test-cases/5654bb5658921dcd.json create mode 100644 allure-report/data/test-cases/56d019840f444cec.json rename allure-report/data/test-cases/{8b80aa0a92a1ed02.json => 56e6898f814c9a2c.json} (77%) rename allure-report/data/test-cases/{2baefc3521a1da2a.json => 5703befafee18856.json} (51%) rename allure-report/data/test-cases/{2b76b55d8c8f82d1.json => 574cb5d6827dca2a.json} (61%) create mode 100644 allure-report/data/test-cases/577d9e765fb39849.json rename allure-report/data/test-cases/{51e0b16785f0d461.json => 579e5f45553c02f2.json} (81%) rename allure-report/data/test-cases/{80598dcd2309aaf9.json => 5815fdb3e38780e6.json} (76%) rename allure-report/data/test-cases/{45f16c4708137d2d.json => 582aa68275dac68e.json} (65%) rename allure-report/data/test-cases/{302b8c55161cc361.json => 583a0190aa99ad42.json} (66%) rename allure-report/data/test-cases/{68ae9688c7c99a04.json => 584f8bdd5c7f3c16.json} (65%) rename allure-report/data/test-cases/{bce82edab468d2f2.json => 58a164b572fc5a50.json} (63%) rename allure-report/data/test-cases/{1bf2db2d5f0c7414.json => 58bbccd3c8af3c06.json} (52%) create mode 100644 allure-report/data/test-cases/5908d364b75f844e.json create mode 100644 allure-report/data/test-cases/591cfdbc90cf4c5e.json create mode 100644 allure-report/data/test-cases/5956e80e98375be.json rename allure-report/data/test-cases/{b7812824440b717e.json => 59a630e9120dbf2c.json} (67%) create mode 100644 allure-report/data/test-cases/59e860fc2782867c.json rename allure-report/data/test-cases/{3f2abb7dc9376332.json => 5a4c9eb3dcb32bf5.json} (75%) create mode 100644 allure-report/data/test-cases/5a88d917682070e.json rename allure-report/data/test-cases/{deff2de3f9ed88f5.json => 5aa7474450de295f.json} (92%) rename allure-report/data/test-cases/{9c5c32029e742eac.json => 5abe74757b94997a.json} (58%) create mode 100644 allure-report/data/test-cases/5ad5cb812fbd5d4a.json rename allure-report/data/test-cases/{9dd5714486b51753.json => 5b904804aa9a6e53.json} (56%) rename allure-report/data/test-cases/{6e3ab906ce5621b5.json => 5bc730ff95f1c205.json} (59%) rename allure-report/data/test-cases/{5a2ae93193e5280a.json => 5bf0909978db7e30.json} (55%) create mode 100644 allure-report/data/test-cases/5bf735ebb9d90923.json rename allure-report/data/test-cases/{a3370192ce6dd676.json => 5c0380ec075dfe06.json} (55%) rename allure-report/data/test-cases/{74b0969e7db4effb.json => 5c0c21f2226a901c.json} (69%) rename allure-report/data/test-cases/{73db1f36a5925004.json => 5c657b72ebb12427.json} (68%) rename allure-report/data/test-cases/{6ca78efd90ffa643.json => 5cbf19148d05755c.json} (58%) create mode 100644 allure-report/data/test-cases/5e2354482de170d3.json create mode 100644 allure-report/data/test-cases/5e4416fd32f6992f.json rename allure-report/data/test-cases/{47cc31f6ebf12c13.json => 5e8bbbba63c3bb75.json} (58%) create mode 100644 allure-report/data/test-cases/5f97df940bb3f46a.json create mode 100644 allure-report/data/test-cases/5ff3f93ff1ffe8b3.json delete mode 100644 allure-report/data/test-cases/6030df3a53146090.json create mode 100644 allure-report/data/test-cases/6035f0fe38b5a062.json create mode 100644 allure-report/data/test-cases/60d4140245a65d5.json create mode 100644 allure-report/data/test-cases/60f7c96f923539a5.json rename allure-report/data/test-cases/{9cbf1053b771d679.json => 610300a29faa4ee4.json} (76%) rename allure-report/data/test-cases/{56ae9013352b7649.json => 616388e3d3f3ad4c.json} (65%) rename allure-report/data/test-cases/{7da87d8449dbfb8b.json => 61de742601660eab.json} (65%) create mode 100644 allure-report/data/test-cases/61e07c6ddcc506b1.json rename allure-report/data/test-cases/{37f24af32c057862.json => 61f84f81177cf38b.json} (92%) rename allure-report/data/test-cases/{b36380d1077ce20b.json => 6209b3d491320ab9.json} (56%) rename allure-report/data/test-cases/{9f8b999462605375.json => 6226ef3ddb316aa7.json} (74%) rename allure-report/data/test-cases/{a3216b951d3fac8b.json => 624b364c1e1f6bc7.json} (94%) rename allure-report/data/test-cases/{e8ed1f5e4a826f53.json => 625a87864855843c.json} (65%) create mode 100644 allure-report/data/test-cases/62a6bbd8d87be20e.json delete mode 100644 allure-report/data/test-cases/62ef482e2cb3493b.json create mode 100644 allure-report/data/test-cases/631ed8ca3aead56c.json rename allure-report/data/test-cases/{12ac45051c49f01a.json => 632eacb89b6e193e.json} (68%) rename allure-report/data/test-cases/{2f520e29faf9fa03.json => 634b88b34b81a74c.json} (92%) create mode 100644 allure-report/data/test-cases/63a8ebd07b8fa1c4.json create mode 100644 allure-report/data/test-cases/63b822db5bae14d4.json rename allure-report/data/test-cases/{996ab105867adbc9.json => 63ceea7fe946ff07.json} (57%) create mode 100644 allure-report/data/test-cases/63ea9545d8dcd43f.json rename allure-report/data/test-cases/{9267ea7150c527ef.json => 64001087ec7aaf2b.json} (63%) create mode 100644 allure-report/data/test-cases/641b1ee7248b1557.json rename allure-report/data/test-cases/{b080152571ac4adf.json => 641fd537e33a59ae.json} (75%) delete mode 100644 allure-report/data/test-cases/6421e8610575915.json create mode 100644 allure-report/data/test-cases/6444bc59e77319f9.json create mode 100644 allure-report/data/test-cases/6463a9e3be0b4026.json create mode 100644 allure-report/data/test-cases/64abc8899e8e691d.json delete mode 100644 allure-report/data/test-cases/64d00badde981bd3.json create mode 100644 allure-report/data/test-cases/64ddebaa5d6679fc.json rename allure-report/data/test-cases/{f63a88604b1d062f.json => 6558b0da7e100d83.json} (72%) rename allure-report/data/test-cases/{55e4a84277d15d0d.json => 6566372edd2dc54c.json} (94%) delete mode 100644 allure-report/data/test-cases/656eaa4febf44ace.json rename allure-report/data/test-cases/{c898f599f64280c3.json => 65b2cf00b86ce444.json} (70%) rename allure-report/data/test-cases/{d58adc2ec0d31961.json => 65bb39f46c25941f.json} (64%) rename allure-report/data/test-cases/{f0700b9c803f7cf9.json => 65c772a236576a2d.json} (61%) delete mode 100644 allure-report/data/test-cases/65d5a47944859245.json create mode 100644 allure-report/data/test-cases/65e9477143af3f55.json create mode 100644 allure-report/data/test-cases/65f6b4f1195a0e9d.json create mode 100644 allure-report/data/test-cases/66020f911b054e74.json delete mode 100644 allure-report/data/test-cases/660684096c18d05d.json create mode 100644 allure-report/data/test-cases/6641c9ab33f4ea66.json rename allure-report/data/test-cases/{5ea1e8d078b774a7.json => 664f2a2d41bf2bd8.json} (55%) rename allure-report/data/test-cases/{b673d7ca3af16ae5.json => 6650fdbb71631571.json} (59%) delete mode 100644 allure-report/data/test-cases/6660f839d8534ee2.json create mode 100644 allure-report/data/test-cases/67a0bf67db9047ee.json rename allure-report/data/test-cases/{d9328098007f6ade.json => 67c96b92db3f1ee1.json} (51%) create mode 100644 allure-report/data/test-cases/67e470215248af57.json rename allure-report/data/test-cases/{32b8a7a180fb722f.json => 681eea057133a7e0.json} (61%) rename allure-report/data/test-cases/{53ac096f64d86d36.json => 68235061ff0b1d1d.json} (75%) rename allure-report/data/test-cases/{4942ac4be65ef1b0.json => 682ca0c47ecc45d4.json} (62%) rename allure-report/data/test-cases/{f97aaf8957be0a89.json => 68489cf8ea35171c.json} (66%) create mode 100644 allure-report/data/test-cases/689b611d3c9a3124.json rename allure-report/data/test-cases/{c42292a9c36c46f3.json => 68a2b9760a533e02.json} (56%) rename allure-report/data/test-cases/{933ecb6fe52a564f.json => 68ad711bfb950e6e.json} (78%) rename allure-report/data/test-cases/{8e1e999ab6569b87.json => 68e1fa91eff84fb2.json} (68%) rename allure-report/data/test-cases/{21f553aee2e150e3.json => 6902a5b0a224435c.json} (67%) delete mode 100644 allure-report/data/test-cases/691701add6daaf89.json rename allure-report/data/test-cases/{fda81d5edcbfeda5.json => 696e651c40149097.json} (57%) create mode 100644 allure-report/data/test-cases/6a3f85e29591c654.json create mode 100644 allure-report/data/test-cases/6a636a909012a6f0.json create mode 100644 allure-report/data/test-cases/6a8f943df9cf325c.json rename allure-report/data/test-cases/{2b98fb3b88f75199.json => 6aa550180790876d.json} (59%) rename allure-report/data/test-cases/{70eff3ae24ccc67a.json => 6aba04a431b7fd70.json} (61%) rename allure-report/data/test-cases/{f649ed8d3c87f7f8.json => 6aeb83ca0df8b3d8.json} (72%) rename allure-report/data/test-cases/{c0f4e1faa852c595.json => 6b42b881fa048473.json} (71%) create mode 100644 allure-report/data/test-cases/6bab07231bfb8a25.json rename allure-report/data/test-cases/{21f08ae936e1de27.json => 6bf2acd0a0db42e5.json} (59%) rename allure-report/data/test-cases/{6309fbba516976ae.json => 6c457590f118b700.json} (69%) rename allure-report/data/test-cases/{5c0b01ada3a3f14e.json => 6c94325f55b8b56c.json} (56%) rename allure-report/data/test-cases/{b01c60cc4e07480b.json => 6d2f9028315647c1.json} (72%) delete mode 100644 allure-report/data/test-cases/6d7f7d9659ba7dd5.json rename allure-report/data/test-cases/{91c9b008755c7351.json => 6d9aec252d158762.json} (70%) create mode 100644 allure-report/data/test-cases/6de398181d9095ee.json create mode 100644 allure-report/data/test-cases/6dfafb882d7cc41f.json rename allure-report/data/test-cases/{73f30fbb9798a5d5.json => 6e173d8e5ff615be.json} (56%) delete mode 100644 allure-report/data/test-cases/6e3ce129a9f8f588.json rename allure-report/data/test-cases/{d4258a66cc0cec29.json => 6e4923e8771eebeb.json} (77%) create mode 100644 allure-report/data/test-cases/6e91e404eb8e624.json create mode 100644 allure-report/data/test-cases/6ef44675aea47099.json rename allure-report/data/test-cases/{2e46c970e553e301.json => 6f37cee94115c50c.json} (64%) rename allure-report/data/test-cases/{6feb6674f3a0e85e.json => 6f9dcb0c09ae9f13.json} (71%) rename allure-report/data/test-cases/{3ae9a46b9a1e7c40.json => 70008c90c6552144.json} (62%) delete mode 100644 allure-report/data/test-cases/702c9f7aebde64af.json rename allure-report/data/test-cases/{7131237025069abe.json => 706d67120123862f.json} (92%) rename allure-report/data/test-cases/{bdddf7ddac3322c3.json => 707862d33841a8ff.json} (68%) rename allure-report/data/test-cases/{1938e37bf1525466.json => 70c180d1e9f40ddc.json} (52%) rename allure-report/data/test-cases/{649728966aa92b06.json => 710a5d14f0382e2f.json} (60%) rename allure-report/data/test-cases/{56da494ae1701253.json => 711b3df283530a5b.json} (54%) rename allure-report/data/test-cases/{90184d6eca761182.json => 71a05925458c8736.json} (71%) rename allure-report/data/test-cases/{5cd4eeb8a4b79d6b.json => 71a87e59b6648413.json} (64%) rename allure-report/data/test-cases/{167f34fe4187417a.json => 71dc0d8169aaad6f.json} (52%) rename allure-report/data/test-cases/{54bb63fb3736b8ae.json => 71f8f5b376b254cf.json} (60%) create mode 100644 allure-report/data/test-cases/720b65d3a7d8ec34.json create mode 100644 allure-report/data/test-cases/72c86ca38c98258.json rename allure-report/data/test-cases/{9585be0acd74f7c1.json => 7312d30334dcfc0d.json} (76%) create mode 100644 allure-report/data/test-cases/732b9dd805d734b8.json create mode 100644 allure-report/data/test-cases/7331de8e7202ad57.json rename allure-report/data/test-cases/{e186c7a758de768a.json => 73622414b649e45a.json} (72%) create mode 100644 allure-report/data/test-cases/7369f3dde824b045.json rename allure-report/data/test-cases/{f12b5c3f29ddd74a.json => 740e72b931a3ed2d.json} (94%) rename allure-report/data/test-cases/{1cf942af51db20a3.json => 741a61f0f9cb4c37.json} (75%) rename allure-report/data/test-cases/{89c602359c6f109b.json => 747c525d425e0efa.json} (72%) rename allure-report/data/test-cases/{d04b40a520c97bdd.json => 749bcfd3f56dec1a.json} (56%) create mode 100644 allure-report/data/test-cases/74f816020df3559.json rename allure-report/data/test-cases/{e40b6e0fafdfb7a4.json => 75040d42480a95e8.json} (78%) delete mode 100644 allure-report/data/test-cases/751027d0ac0cc021.json rename allure-report/data/test-cases/{74c746ac3dc42135.json => 756610bb1a8856d4.json} (66%) rename allure-report/data/test-cases/{2c6c8c712bf1892f.json => 7567c87108e55931.json} (55%) rename allure-report/data/test-cases/{345a3bae73357330.json => 75a0786e7098fd84.json} (52%) create mode 100644 allure-report/data/test-cases/7612354cc3c699d.json create mode 100644 allure-report/data/test-cases/764219a087e938f.json rename allure-report/data/test-cases/{5b88f232b1f58c27.json => 765c2af6ca77e4e9.json} (76%) rename allure-report/data/test-cases/{d42759854937ade9.json => 76614b580d9bd7f8.json} (76%) rename allure-report/data/test-cases/{f7656bca6b03073b.json => 7677af29e8a1671e.json} (78%) rename allure-report/data/test-cases/{2b5d1a28c2e7859f.json => 767acc864b347295.json} (94%) rename allure-report/data/test-cases/{3c3a8d947ad77b59.json => 76b07a3b0b784bd3.json} (54%) delete mode 100644 allure-report/data/test-cases/772c9d6fdd465a8a.json create mode 100644 allure-report/data/test-cases/777ba0c823c5a82a.json rename allure-report/data/test-cases/{d820d165ec4b4b72.json => 77a9a3d99a741f47.json} (55%) create mode 100644 allure-report/data/test-cases/77ce7ba6af0b177a.json create mode 100644 allure-report/data/test-cases/783d8a205b731823.json create mode 100644 allure-report/data/test-cases/78450b76b8629fe6.json rename allure-report/data/test-cases/{47068bee5b06a234.json => 79e5a850abe86297.json} (71%) rename allure-report/data/test-cases/{332b728d7cfdedcf.json => 7b584cbfaa9e2f14.json} (60%) delete mode 100644 allure-report/data/test-cases/7be232a1c65ba711.json create mode 100644 allure-report/data/test-cases/7c6af0e0a129f035.json rename allure-report/data/test-cases/{518cb319be0d6f5c.json => 7d3b7c7449825e20.json} (61%) create mode 100644 allure-report/data/test-cases/7de68906bfa0f18.json create mode 100644 allure-report/data/test-cases/7e066328cfed2428.json rename allure-report/data/test-cases/{a4849e99633e4676.json => 7e0fbf3b4505484b.json} (62%) delete mode 100644 allure-report/data/test-cases/7e357cecc68f801.json rename allure-report/data/test-cases/{d936198953d58b58.json => 7e36f3895c7e5ba3.json} (76%) delete mode 100644 allure-report/data/test-cases/7e997a5018ff0710.json create mode 100644 allure-report/data/test-cases/7ec3425d5267a222.json rename allure-report/data/test-cases/{684d4d6fbb32213a.json => 7ed5e03fb846420f.json} (64%) rename allure-report/data/test-cases/{98c161ccba9924bd.json => 7eedfccbd9267527.json} (54%) rename allure-report/data/test-cases/{b67b48d7bd01382a.json => 7f05453c14dc1c4a.json} (69%) rename allure-report/data/test-cases/{26764a4bab46b2bf.json => 7f0995b9351caed2.json} (52%) rename allure-report/data/test-cases/{65cad3353d8c115b.json => 7f4f6ae800da8214.json} (78%) rename allure-report/data/test-cases/{1f14a6ccebe34b08.json => 7fb0d954404a7411.json} (67%) create mode 100644 allure-report/data/test-cases/801881710b06074.json create mode 100644 allure-report/data/test-cases/80a5eacfa2431348.json rename allure-report/data/test-cases/{b3c5df850665402e.json => 80ba443311cb72ff.json} (67%) rename allure-report/data/test-cases/{be8f9e1d393606ac.json => 80d57c86b12a37c4.json} (52%) create mode 100644 allure-report/data/test-cases/80f314b70b306bd4.json delete mode 100644 allure-report/data/test-cases/813aa9dc885c2882.json rename allure-report/data/test-cases/{2f407878af91b1de.json => 814ad2f745782ad7.json} (71%) rename allure-report/data/test-cases/{c4304a318e243c50.json => 817c95f8ac92a91e.json} (69%) rename allure-report/data/test-cases/{d1974f16b30f7476.json => 821065d4dc841edb.json} (68%) rename allure-report/data/test-cases/{571176bf000b455b.json => 8271119e6077f333.json} (56%) delete mode 100644 allure-report/data/test-cases/82a681e3f0c8f54d.json delete mode 100644 allure-report/data/test-cases/82a8f1ffa445d40.json rename allure-report/data/test-cases/{883f1439af050615.json => 82d71f1a1b9a4c08.json} (70%) create mode 100644 allure-report/data/test-cases/82f0a19d19bd8125.json create mode 100644 allure-report/data/test-cases/832c94aac84bf09.json delete mode 100644 allure-report/data/test-cases/837e4ce24ac45efb.json create mode 100644 allure-report/data/test-cases/8388a8495a8b75af.json rename allure-report/data/test-cases/{4961a0c52d810ec1.json => 83b34d0610fd83c6.json} (79%) delete mode 100644 allure-report/data/test-cases/83c423646ff2d9ba.json rename allure-report/data/test-cases/{f59e61b023eebd26.json => 842b955d145895ca.json} (72%) rename allure-report/data/test-cases/{ea40d4fff96687ff.json => 843678da53c540e6.json} (58%) delete mode 100644 allure-report/data/test-cases/84d177b8ff2c367d.json rename allure-report/data/test-cases/{9f9422c1f71252b6.json => 84ea3c3b3250393e.json} (66%) rename allure-report/data/test-cases/{12f0442ef33f054e.json => 85613c3b6c6421c4.json} (55%) create mode 100644 allure-report/data/test-cases/8605c2bc186d7f9a.json rename allure-report/data/test-cases/{33fff97900a7d8bc.json => 86173a2048ae1d24.json} (71%) rename allure-report/data/test-cases/{be628f1c5b8245e1.json => 861fc17326f7d16a.json} (71%) rename allure-report/data/test-cases/{c5ea93b10613ec53.json => 86447fe348b226fe.json} (66%) rename allure-report/data/test-cases/{c7e963fd1c95dafe.json => 864737f712b002ec.json} (56%) create mode 100644 allure-report/data/test-cases/8672ab2817945b36.json rename allure-report/data/test-cases/{93ceeb95a47fabbf.json => 867b171e961cc6e3.json} (57%) create mode 100644 allure-report/data/test-cases/86bf8b663d5828a.json rename allure-report/data/test-cases/{96df3e350e2ba16f.json => 875881a97b3fc375.json} (67%) rename allure-report/data/test-cases/{2655a1e6934b1850.json => 875e90b046ec092c.json} (51%) rename allure-report/data/test-cases/{48ff8cbb530a1868.json => 8782c11be4532248.json} (73%) rename allure-report/data/test-cases/{4750955362b24610.json => 879748b1d447d0a9.json} (54%) delete mode 100644 allure-report/data/test-cases/8804093a9c3b17d.json rename allure-report/data/test-cases/{b5a113fbe50e74ce.json => 880859ea02196db7.json} (56%) rename allure-report/data/test-cases/{cda9164d86dd0b79.json => 8817b6c726fc2884.json} (64%) rename allure-report/data/test-cases/{e69093187fd70d56.json => 88503943247ae8d5.json} (56%) rename allure-report/data/test-cases/{99b8e6f5f8a43508.json => 88851466a8ab5f44.json} (62%) rename allure-report/data/test-cases/{9f02852e3aa10b6d.json => 88ed1c9da2d9b53b.json} (65%) rename allure-report/data/test-cases/{25a09c2c9e3c88b1.json => 893f14f04872e4c5.json} (63%) rename allure-report/data/test-cases/{d9af06a5366a3631.json => 895071e6126c1fbc.json} (67%) create mode 100644 allure-report/data/test-cases/89c0be4978ed22ba.json create mode 100644 allure-report/data/test-cases/89d5ee585c13bf38.json create mode 100644 allure-report/data/test-cases/8a89827c471bc909.json rename allure-report/data/test-cases/{f841b42c8d697c74.json => 8bbe3b647eb4bfeb.json} (70%) create mode 100644 allure-report/data/test-cases/8bc712dc2d3a7199.json rename allure-report/data/test-cases/{30218f5e2dbf6894.json => 8bc93f78736d3a0e.json} (69%) rename allure-report/data/test-cases/{4b58bd62b05a8814.json => 8bd454f111efcd3e.json} (62%) delete mode 100644 allure-report/data/test-cases/8beabd2469a668.json rename allure-report/data/test-cases/{3fd800b8d3602698.json => 8bf0e4ddc17f51c8.json} (74%) rename allure-report/data/test-cases/{ed566371d87065db.json => 8c4c3ac3b9ddced3.json} (73%) create mode 100644 allure-report/data/test-cases/8d85f39401914c16.json rename allure-report/data/test-cases/{827104e07f2ca2d0.json => 8dcdfa9166c48fb8.json} (71%) create mode 100644 allure-report/data/test-cases/8dfef1ba8856d412.json delete mode 100644 allure-report/data/test-cases/8e1e8d12e75298b.json create mode 100644 allure-report/data/test-cases/8e4b6f6bd251566.json create mode 100644 allure-report/data/test-cases/8e87cfc15c8260a3.json create mode 100644 allure-report/data/test-cases/8e9b4227c17ce17f.json delete mode 100644 allure-report/data/test-cases/8ea6e5a2b5515469.json create mode 100644 allure-report/data/test-cases/8ed1a17310170d88.json rename allure-report/data/test-cases/{5795c1991578aaeb.json => 8edcba07a1a3ea56.json} (77%) rename allure-report/data/test-cases/{8173581ebbb7cc32.json => 8f6f88ab23c0d630.json} (76%) rename allure-report/data/test-cases/{59120ba12cafb7e8.json => 8fd9fc1a4b426539.json} (72%) delete mode 100644 allure-report/data/test-cases/900a2cbb7155295.json rename allure-report/data/test-cases/{5ce6881896e2614d.json => 9054a710a823b80a.json} (63%) delete mode 100644 allure-report/data/test-cases/90a10a824ed5b372.json create mode 100644 allure-report/data/test-cases/90c1df398d2f201a.json delete mode 100644 allure-report/data/test-cases/90d2f619b6b55a93.json create mode 100644 allure-report/data/test-cases/9164bf2c06bf8752.json create mode 100644 allure-report/data/test-cases/91aab0544068789.json rename allure-report/data/test-cases/{27d124696efa8c6c.json => 91cb28173d925ce2.json} (56%) rename allure-report/data/test-cases/{eeed6f5fdf5c1d70.json => 91d86d4a26e41755.json} (85%) rename allure-report/data/test-cases/{f1d39787f3312e8b.json => 921715088233c4e7.json} (74%) create mode 100644 allure-report/data/test-cases/9246dbe4ecdc42ce.json rename allure-report/data/test-cases/{4dc4de0a74fe7f66.json => 935b6bf420709ca7.json} (62%) rename allure-report/data/test-cases/{7718694e0e976912.json => 938f6f7ebecca4c3.json} (70%) create mode 100644 allure-report/data/test-cases/93b00a3d2e7b92c1.json rename allure-report/data/test-cases/{1506cf302ecd21f1.json => 93cbb9687a6c19d2.json} (61%) rename allure-report/data/test-cases/{e4f24bca4471f754.json => 941c0037b0b98fcf.json} (73%) rename allure-report/data/test-cases/{a77a517a493b3eb2.json => 946a2bd47c8adfbc.json} (54%) rename allure-report/data/test-cases/{be34e44ef544dd56.json => 94e103957a6e541c.json} (65%) rename allure-report/data/test-cases/{2b89947e3a3ec46d.json => 950acbfbefb81796.json} (57%) rename allure-report/data/test-cases/{67f932ff555edbd0.json => 95924b9d92f1ced5.json} (69%) rename allure-report/data/test-cases/{371c743cf6f64f1d.json => 95e685797940e119.json} (65%) rename allure-report/data/test-cases/{5187a55d5b7bcbbd.json => 95e7a9865f127b46.json} (80%) rename allure-report/data/test-cases/{2b5bdabfec79d6cf.json => 962ca80dcc908350.json} (67%) create mode 100644 allure-report/data/test-cases/965bac5a2c55f031.json rename allure-report/data/test-cases/{cfaf892be75c5d35.json => 965e1d563752b7d3.json} (52%) rename allure-report/data/test-cases/{ac379271ec16d5ad.json => 9665a188a4944ac6.json} (67%) delete mode 100644 allure-report/data/test-cases/967fef280aa6e796.json rename allure-report/data/test-cases/{973452fbe07efc18.json => 9689f8dcf21c7e63.json} (58%) rename allure-report/data/test-cases/{8efea6185ce9f545.json => 96ce14353b4f3e49.json} (93%) rename allure-report/data/test-cases/{92a7ecb29f4704b1.json => 97a2a77f06d4866c.json} (54%) rename allure-report/data/test-cases/{a7a27da7101eb431.json => 97bb72caed16dfa0.json} (70%) rename allure-report/data/test-cases/{a10876da94fb2b4f.json => 97e1e8aa5714e13a.json} (53%) delete mode 100644 allure-report/data/test-cases/9800852f4c3c1957.json create mode 100644 allure-report/data/test-cases/980af150a499b4e9.json rename allure-report/data/test-cases/{85284c487c263073.json => 98366b42396826ce.json} (67%) create mode 100644 allure-report/data/test-cases/98ca489a74667507.json create mode 100644 allure-report/data/test-cases/98e0aca6e090522b.json rename allure-report/data/test-cases/{58e0261647deccd2.json => 994a4ad6b5f0c1e0.json} (75%) rename allure-report/data/test-cases/{c58cb7ae6e5a9993.json => 998a460e800cbb2b.json} (60%) rename allure-report/data/test-cases/{39376204dc517df6.json => 99a774ce5ee6bba3.json} (73%) create mode 100644 allure-report/data/test-cases/99bd3e79aeea5636.json create mode 100644 allure-report/data/test-cases/99e31d655e3161a.json rename allure-report/data/test-cases/{5d373bcba925975c.json => 99e68c3ce0169a01.json} (64%) rename allure-report/data/test-cases/{b4706ff9d2a2958c.json => 9a17297856f21a74.json} (70%) rename allure-report/data/test-cases/{ad8dd1da3b7d646d.json => 9a72e64592e0ae1b.json} (70%) create mode 100644 allure-report/data/test-cases/9a9def5039f12f67.json rename allure-report/data/test-cases/{f9099a5358c90330.json => 9aaaa009f2bba8b1.json} (73%) create mode 100644 allure-report/data/test-cases/9b0ec4eb2cd2dde7.json rename allure-report/data/test-cases/{7b13f1197b1367b6.json => 9b5105f2c1baa9ed.json} (69%) delete mode 100644 allure-report/data/test-cases/9b613507776a0871.json create mode 100644 allure-report/data/test-cases/9c39905963998c1b.json create mode 100644 allure-report/data/test-cases/9d2b852ea94aa88a.json create mode 100644 allure-report/data/test-cases/9d50fe36fd5059ab.json create mode 100644 allure-report/data/test-cases/9dc0ca62f1db510f.json create mode 100644 allure-report/data/test-cases/9e017ac7fdaf6bf5.json rename allure-report/data/test-cases/{4f0296b5891c7763.json => 9e3c99258a0c64df.json} (72%) create mode 100644 allure-report/data/test-cases/9e71e34228180c1c.json rename allure-report/data/test-cases/{a1b53b199c1c867e.json => 9eac58d1342209e0.json} (93%) rename allure-report/data/test-cases/{b2705032891531e8.json => 9ece4d55c6bd3b35.json} (65%) rename allure-report/data/test-cases/{c5f3069d223f82c6.json => 9ee094a1f359821e.json} (65%) rename allure-report/data/test-cases/{d4af7c6dd9a36bc3.json => 9ef5212b94420bba.json} (63%) rename allure-report/data/test-cases/{bc039aea1f276c5c.json => 9f41894781b470ee.json} (68%) rename allure-report/data/test-cases/{d97402e929388a59.json => 9f8d638b621270bd.json} (66%) rename allure-report/data/test-cases/{9a401d5b28fee66a.json => 9fea94ac2fbcf5b2.json} (74%) rename allure-report/data/test-cases/{acf49fc01f491be4.json => a0013817978e9f1b.json} (68%) rename allure-report/data/test-cases/{d121ae5a75cc69b9.json => a0332cc6a682faac.json} (66%) rename allure-report/data/test-cases/{15dbab6d625f40d3.json => a07fccce3e37ee4a.json} (79%) rename allure-report/data/test-cases/{c6f52d0b9e8ac3c5.json => a12dc2585f9de41f.json} (72%) create mode 100644 allure-report/data/test-cases/a13c451f0f676900.json create mode 100644 allure-report/data/test-cases/a1980ae57d2c7b3.json delete mode 100644 allure-report/data/test-cases/a1a7aeb13172d1f0.json rename allure-report/data/test-cases/{9d10f71bfad2e1ef.json => a20726936132e0f6.json} (72%) rename allure-report/data/test-cases/{f00b7b6604c5e7e4.json => a22d4b8f003df599.json} (71%) rename allure-report/data/test-cases/{8c6df3dc2deaaefa.json => a25791815212e793.json} (70%) rename allure-report/data/test-cases/{f5177f712a8be6da.json => a29d5673ddcf7e8e.json} (55%) rename allure-report/data/test-cases/{62507dec220dfd02.json => a2f70229e4c52322.json} (69%) create mode 100644 allure-report/data/test-cases/a30a3ac9558d7a9c.json rename allure-report/data/test-cases/{5eca272b3b393557.json => a329da92784fccae.json} (61%) rename allure-report/data/test-cases/{85df8de56a96ab7c.json => a35155a27bb8937d.json} (93%) rename allure-report/data/test-cases/{a3b2f77071e9a780.json => a355bc32a0d73da0.json} (70%) rename allure-report/data/test-cases/{c77f51e83226296c.json => a39b53ea962a31f1.json} (57%) rename allure-report/data/test-cases/{5af3f258cf327b2a.json => a3ca7d068d3e7d87.json} (56%) create mode 100644 allure-report/data/test-cases/a3cba1eb012d0834.json rename allure-report/data/test-cases/{13ca3a7cd8b0e3af.json => a456e8af4c590649.json} (70%) rename allure-report/data/test-cases/{33a4a469899e9868.json => a4637a157e542cb8.json} (65%) rename allure-report/data/test-cases/{a7d4500da5fb8933.json => a53e477b227bdf44.json} (52%) rename allure-report/data/test-cases/{5c78d3bc5a71109a.json => a5467cc7a05b3546.json} (71%) rename allure-report/data/test-cases/{f1a24ca70fa28a4b.json => a586415c7c751146.json} (73%) create mode 100644 allure-report/data/test-cases/a5b469ea69ba375b.json rename allure-report/data/test-cases/{c7a63127b0ec26d9.json => a5bb3631db18a9d9.json} (72%) create mode 100644 allure-report/data/test-cases/a618a1e47f6e349d.json create mode 100644 allure-report/data/test-cases/a61ba5af03a1f296.json create mode 100644 allure-report/data/test-cases/a6592dc6717fe514.json rename allure-report/data/test-cases/{ffa13a74003ae703.json => a672dac8835c46c1.json} (52%) rename allure-report/data/test-cases/{239a317b6e090fd8.json => a6a59cc8a0131a02.json} (54%) create mode 100644 allure-report/data/test-cases/a6d26dfb90ab4062.json rename allure-report/data/test-cases/{8e7bc3e134c68e92.json => a6f428498c7694b0.json} (61%) rename allure-report/data/test-cases/{951576068e42ee36.json => a7599be0f5459a3d.json} (78%) create mode 100644 allure-report/data/test-cases/a75aa53086c60820.json delete mode 100644 allure-report/data/test-cases/a76c277b6c0b5940.json create mode 100644 allure-report/data/test-cases/a78b9243c26a61bf.json create mode 100644 allure-report/data/test-cases/a7d954f4aff6f601.json rename allure-report/data/test-cases/{3aa67525242f5614.json => a83b85c2e341a76c.json} (92%) rename allure-report/data/test-cases/{8da01589d3299948.json => a8e7ed0b9e8a05d4.json} (60%) rename allure-report/data/test-cases/{c7eea171ede7ee13.json => a8ee14a37e5c3cb6.json} (68%) delete mode 100644 allure-report/data/test-cases/a8ef326c3cb7b77c.json create mode 100644 allure-report/data/test-cases/a908975bd67b2eca.json rename allure-report/data/test-cases/{602b6b1c829f1e7f.json => a98592d8e6c7fba2.json} (72%) rename allure-report/data/test-cases/{3ec407d8e8742f0d.json => a9ecee1b4fc0ab11.json} (61%) rename allure-report/data/test-cases/{d12fb82b623fefb9.json => aa1a2a69b8a9bf68.json} (59%) create mode 100644 allure-report/data/test-cases/aa37770dd2142a16.json rename allure-report/data/test-cases/{5ea5418b10cdf416.json => aa8525de66192fb3.json} (69%) create mode 100644 allure-report/data/test-cases/ab3687d99fed99d0.json rename allure-report/data/test-cases/{51c4ad89c4a768de.json => ab62ce2428f0e01f.json} (73%) rename allure-report/data/test-cases/{614d8ec123787b56.json => ab7f75990cdffa76.json} (71%) rename allure-report/data/test-cases/{bfc6af42137d4620.json => abed1b9a0913387d.json} (63%) rename allure-report/data/test-cases/{6113acbf67a69117.json => abf4f2031d384e78.json} (63%) rename allure-report/data/test-cases/{57d69ca6b172040d.json => ac35e86bb753fb8c.json} (73%) rename allure-report/data/test-cases/{4073719ea3c0e8fe.json => ac390c8ac17d8363.json} (91%) rename allure-report/data/test-cases/{ebad30d100ba0d2f.json => ac65ef6ef01656e6.json} (71%) delete mode 100644 allure-report/data/test-cases/ac81c5ec86387239.json rename allure-report/data/test-cases/{83b7eb2988572ef6.json => acf18a2788645a5a.json} (72%) rename allure-report/data/test-cases/{a2cc2be21cb9d7cd.json => adbbb2c26291ccd5.json} (65%) create mode 100644 allure-report/data/test-cases/addec93357f6e501.json rename allure-report/data/test-cases/{5519a1e9b61f2ca3.json => ae08758c48a63481.json} (65%) rename allure-report/data/test-cases/{566a56003ac2e703.json => ae4ebdaea3850cc0.json} (64%) rename allure-report/data/test-cases/{4544ac5de6415953.json => ae5dc2ec4f03f9e5.json} (78%) rename allure-report/data/test-cases/{8dde6031964dc28f.json => aea343086c8abd68.json} (54%) create mode 100644 allure-report/data/test-cases/aec2fb642901e92.json rename allure-report/data/test-cases/{f6fab27b83e3ab13.json => af99dc37dcb7799b.json} (75%) rename allure-report/data/test-cases/{307a8cec4e791e32.json => afc07e402ebe38d8.json} (72%) rename allure-report/data/test-cases/{ac136a3215f7ad6c.json => afca78445b5fa23f.json} (57%) rename allure-report/data/test-cases/{5fd184f18d9496f9.json => afe0c9a0972467a3.json} (71%) create mode 100644 allure-report/data/test-cases/b02a54a0a8bd8284.json rename allure-report/data/test-cases/{461527a27e50c04a.json => b054542ab329d2ac.json} (56%) rename allure-report/data/test-cases/{35f08e300f5635d6.json => b0a6327af7d064cf.json} (56%) create mode 100644 allure-report/data/test-cases/b0cc123728fa2f2d.json create mode 100644 allure-report/data/test-cases/b0df4a2c5fe59a12.json create mode 100644 allure-report/data/test-cases/b1056dd0bc1f2f4e.json delete mode 100644 allure-report/data/test-cases/b1cbd478c753b1e.json delete mode 100644 allure-report/data/test-cases/b1f2cc8e1be032d.json create mode 100644 allure-report/data/test-cases/b22afbc33030e55f.json create mode 100644 allure-report/data/test-cases/b26a6745cd367097.json rename allure-report/data/test-cases/{b169e974f5edace2.json => b28ff46b20790be2.json} (76%) create mode 100644 allure-report/data/test-cases/b2f619fce2ea028d.json delete mode 100644 allure-report/data/test-cases/b325ede7f1ceeec3.json create mode 100644 allure-report/data/test-cases/b36ca0513e4048a8.json rename allure-report/data/test-cases/{5f2df3f2c9b86d77.json => b3ade822e686b250.json} (79%) rename allure-report/data/test-cases/{8b3214317e10e87f.json => b3d5b9d863751a3f.json} (58%) delete mode 100644 allure-report/data/test-cases/b3db9caa12a5149e.json create mode 100644 allure-report/data/test-cases/b3f6328bce0de37c.json rename allure-report/data/test-cases/{f727d28e098b30b7.json => b3fa4d42fb1064a9.json} (64%) delete mode 100644 allure-report/data/test-cases/b4abfaf3d77f3f23.json create mode 100644 allure-report/data/test-cases/b4bcf3d5a4367d8.json rename allure-report/data/test-cases/{56cce31bdf350ac7.json => b4e0153f9704bfbb.json} (61%) rename allure-report/data/test-cases/{7560669431ea4aa8.json => b540357a03b90416.json} (53%) rename allure-report/data/test-cases/{64c2df72a296b62e.json => b5cedd1e00782e11.json} (73%) create mode 100644 allure-report/data/test-cases/b684b0c7250ecf6d.json rename allure-report/data/test-cases/{c94aec0d920b7f7d.json => b7107b1da849121a.json} (61%) rename allure-report/data/test-cases/{2e9a9a4090c00445.json => b7108f3053cbc60d.json} (72%) rename allure-report/data/test-cases/{ede6b0c38e1de853.json => b7874e896ca052d2.json} (68%) create mode 100644 allure-report/data/test-cases/b78b9d24e53cd100.json create mode 100644 allure-report/data/test-cases/b7dd8f8438e567a9.json delete mode 100644 allure-report/data/test-cases/b897401968bf0d8.json create mode 100644 allure-report/data/test-cases/b8a2da685a579f99.json rename allure-report/data/test-cases/{48abcc67292a5aa2.json => b8bd7a062c96fe90.json} (79%) rename allure-report/data/test-cases/{3ee1470ea7ce07a6.json => b8f5ce56991bbe59.json} (68%) rename allure-report/data/test-cases/{54043a9fba80789b.json => b9086c98d6d71504.json} (71%) rename allure-report/data/test-cases/{a349732eb44f62b9.json => b98e581eac70f265.json} (60%) rename allure-report/data/test-cases/{3cd6da35a1920265.json => b9bf67d4df9c3970.json} (73%) rename allure-report/data/test-cases/{158f20a061140f84.json => b9d60ed71764b7f4.json} (56%) rename allure-report/data/test-cases/{16f7f5e029216efb.json => b9f8e7d93793c0ea.json} (66%) create mode 100644 allure-report/data/test-cases/ba2c8f43220f0c44.json rename allure-report/data/test-cases/{3d13030ecd2583e8.json => ba3e30be8784f086.json} (68%) create mode 100644 allure-report/data/test-cases/ba71f124345447fc.json rename allure-report/data/test-cases/{57e5e5f4d9d91cf6.json => bae98e899f1ebab4.json} (62%) create mode 100644 allure-report/data/test-cases/baf923b3ced2f0a.json create mode 100644 allure-report/data/test-cases/bb0cb59f0e1a4eca.json rename allure-report/data/test-cases/{6076e8e1aaaa11ab.json => bb6e602a844f0715.json} (59%) rename allure-report/data/test-cases/{59b1922c33f3ac65.json => bb7d4237e3a80dd7.json} (61%) rename allure-report/data/test-cases/{7d6c6bb6b47e11d4.json => bc6803e227b56151.json} (58%) create mode 100644 allure-report/data/test-cases/bca9ba5488466979.json rename allure-report/data/test-cases/{5b3fc84157197066.json => bcdd15975118f527.json} (79%) delete mode 100644 allure-report/data/test-cases/bd11ee5929c6c53a.json rename allure-report/data/test-cases/{36b7cb5a27235272.json => bd28741372a5f921.json} (58%) rename allure-report/data/test-cases/{891203fa0698ca9.json => bd413f89b47699c.json} (55%) create mode 100644 allure-report/data/test-cases/bd65eae3991d6c2c.json delete mode 100644 allure-report/data/test-cases/bd8413842923f1e.json rename allure-report/data/test-cases/{c6eafeb1b2d72c83.json => bda7ad5e74660b56.json} (92%) rename allure-report/data/test-cases/{f040925d9e513197.json => bdcd06f2ac6e82c9.json} (77%) create mode 100644 allure-report/data/test-cases/bdd8b1b0bd82d5b1.json rename allure-report/data/test-cases/{749e2bcfe9e98a99.json => bded3837031681ca.json} (57%) rename allure-report/data/test-cases/{772347d4d5d65952.json => be4d78eb60a06aeb.json} (57%) create mode 100644 allure-report/data/test-cases/be50565df8dfb0ab.json delete mode 100644 allure-report/data/test-cases/be618dffc8aac711.json rename allure-report/data/test-cases/{2dcd793cb9c1cce4.json => bf68fdf036dd98c9.json} (73%) rename allure-report/data/test-cases/{34a84f898de954b5.json => bf7dba429c84fe69.json} (64%) rename allure-report/data/test-cases/{acfebfd078f8e03c.json => bfb03abe3203ecf1.json} (72%) create mode 100644 allure-report/data/test-cases/c005f5247ce8619b.json create mode 100644 allure-report/data/test-cases/c00621abb22a9be3.json rename allure-report/data/test-cases/{38b436d46d6537ee.json => c03eb686eb3e5a89.json} (61%) create mode 100644 allure-report/data/test-cases/c0a4502fedd41667.json create mode 100644 allure-report/data/test-cases/c0b1085f1fbfd7ed.json rename allure-report/data/test-cases/{7d905be84b5c0b77.json => c0b9bbb0a9f351b0.json} (62%) rename allure-report/data/test-cases/{c0d55ad9fdfb0f8a.json => c10fb0178a326f0a.json} (68%) rename allure-report/data/test-cases/{75ba956cc9ee13f9.json => c12e168b06d36fc7.json} (61%) rename allure-report/data/test-cases/{44c1e35d7a7b2adb.json => c1447fd680942c58.json} (65%) create mode 100644 allure-report/data/test-cases/c19e4739f2d4d64c.json rename allure-report/data/test-cases/{d38d4627913b0040.json => c1ac88d1c8e8cadf.json} (72%) create mode 100644 allure-report/data/test-cases/c20970878e009fc6.json create mode 100644 allure-report/data/test-cases/c244be500ebdf146.json create mode 100644 allure-report/data/test-cases/c25f8210fdb51a41.json rename allure-report/data/test-cases/{a8b77a6618ff7e4c.json => c264906d7bf954d5.json} (94%) create mode 100644 allure-report/data/test-cases/c2a15dd126224894.json create mode 100644 allure-report/data/test-cases/c31558e9c7981ac7.json rename allure-report/data/test-cases/{c580e79550c46f66.json => c359ea3a207c31eb.json} (57%) rename allure-report/data/test-cases/{88a73a4735cff92e.json => c38b32e4e940b443.json} (72%) create mode 100644 allure-report/data/test-cases/c3e164f822b7bae.json create mode 100644 allure-report/data/test-cases/c3e9cf6e477b7f80.json rename allure-report/data/test-cases/{63e9aeb63ef06083.json => c3faad8d02b815fd.json} (70%) delete mode 100644 allure-report/data/test-cases/c4a8605181ed2d7.json delete mode 100644 allure-report/data/test-cases/c4d384465e183d6.json rename allure-report/data/test-cases/{5be4a10a1a64fd59.json => c4d9587a3ff2d229.json} (72%) rename allure-report/data/test-cases/{db6f47361aae7a53.json => c4f63c652fed664c.json} (57%) create mode 100644 allure-report/data/test-cases/c52dc9ba56a64495.json create mode 100644 allure-report/data/test-cases/c5bce40c2868c787.json create mode 100644 allure-report/data/test-cases/c5bfa9ec903b7b32.json rename allure-report/data/test-cases/{ef905ece7eeedc77.json => c5cf96cca0ab2f52.json} (50%) create mode 100644 allure-report/data/test-cases/c61d34eb10bf204.json delete mode 100644 allure-report/data/test-cases/c6923016c0d7805e.json create mode 100644 allure-report/data/test-cases/c700736d12b44c86.json rename allure-report/data/test-cases/{4aa537b5c88883a7.json => c7165b4538deb01d.json} (56%) create mode 100644 allure-report/data/test-cases/c730b39a7cf9843.json rename allure-report/data/test-cases/{af31da4a2f7e0b3c.json => c739525d6df646b0.json} (80%) create mode 100644 allure-report/data/test-cases/c78900977fa836.json rename allure-report/data/test-cases/{85b55023f525bac2.json => c793ab5339736af5.json} (73%) rename allure-report/data/test-cases/{580b983b7062983c.json => c7b8f329dd40406f.json} (68%) rename allure-report/data/test-cases/{5f6f3bc16b3488d6.json => c7c4d343c90ce082.json} (57%) create mode 100644 allure-report/data/test-cases/c87eac92a1b3b456.json create mode 100644 allure-report/data/test-cases/c8a70d9350601da5.json create mode 100644 allure-report/data/test-cases/c8da32e94b736fef.json rename allure-report/data/test-cases/{f449c3e5994db83f.json => c8de14a6ed49ac6d.json} (72%) delete mode 100644 allure-report/data/test-cases/c919701b7942665.json rename allure-report/data/test-cases/{97ad1cd914697b30.json => c91f2e2d1c4e5a72.json} (64%) rename allure-report/data/test-cases/{7087926d4a83e9d4.json => c948f5411c74f4a1.json} (63%) rename allure-report/data/test-cases/{de0aa71757f8badf.json => cad7274be200bf39.json} (52%) rename allure-report/data/test-cases/{20ae87fc51fb9338.json => caf985b2a75ee6b7.json} (74%) create mode 100644 allure-report/data/test-cases/cb1927945c40fc3.json rename allure-report/data/test-cases/{8c72192846448826.json => cb7d8edff0d47cc5.json} (66%) create mode 100644 allure-report/data/test-cases/cb9f6d4c2aaf90e3.json rename allure-report/data/test-cases/{a224a931a5567f85.json => cbe27b4f7111917c.json} (70%) create mode 100644 allure-report/data/test-cases/cc4dd11ea285cd92.json create mode 100644 allure-report/data/test-cases/ccb7c5007831ab45.json rename allure-report/data/test-cases/{9521eb418a2faa99.json => cce644bc4fb0b16f.json} (65%) rename allure-report/data/test-cases/{acdec238a53c10e1.json => cd536df0700f3bd3.json} (52%) delete mode 100644 allure-report/data/test-cases/cdb2fb8959394c65.json rename allure-report/data/test-cases/{7e5150fbd4a33237.json => ce75fbdf4ccd46b8.json} (71%) rename allure-report/data/test-cases/{71e40623077306da.json => ceb0c3e5ec48d975.json} (57%) rename allure-report/data/test-cases/{8949506fce676285.json => cedf72c8fbbfdfc5.json} (71%) rename allure-report/data/test-cases/{937c9b1e748aadb0.json => cefd3a9afeec351e.json} (68%) create mode 100644 allure-report/data/test-cases/cf349408f505ed67.json delete mode 100644 allure-report/data/test-cases/cf71a425c4796a9.json rename allure-report/data/test-cases/{1aaf298f74019608.json => cf8fa237e5fc3101.json} (56%) rename allure-report/data/test-cases/{8c8d43e9d38910da.json => cfac23a989211fca.json} (57%) create mode 100644 allure-report/data/test-cases/d0246537274067fb.json create mode 100644 allure-report/data/test-cases/d0931e78c129f8d8.json rename allure-report/data/test-cases/{3f94de18ab2e95fb.json => d0ce09c4ba5ff697.json} (68%) rename allure-report/data/test-cases/{648462a68a83b780.json => d1233b1a931bee1a.json} (66%) create mode 100644 allure-report/data/test-cases/d1bc6da1a117f865.json rename allure-report/data/test-cases/{4ad4524b2ee92967.json => d237c739f4b0c138.json} (67%) rename allure-report/data/test-cases/{3c0afff932465669.json => d34aca89a8362e7c.json} (93%) rename allure-report/data/test-cases/{f4fd5b9fa6dd3840.json => d35364e5c638d89f.json} (71%) rename allure-report/data/test-cases/{2cc2dcb2d1d8eb43.json => d36e2f5707d2a6d3.json} (57%) rename allure-report/data/test-cases/{284ee1b80abfdb89.json => d39d2cfc8c05650c.json} (59%) rename allure-report/data/test-cases/{1b6b658aae9aa73c.json => d3ab7c4bfc7d171f.json} (64%) rename allure-report/data/test-cases/{368118acc0dadb7d.json => d493d526198a7a0a.json} (59%) rename allure-report/data/test-cases/{5fabad9204d0747c.json => d4941a73e9c93a57.json} (55%) delete mode 100644 allure-report/data/test-cases/d4a0809a7647965.json rename allure-report/data/test-cases/{b9ab4feb44c59984.json => d4d3736adb97380b.json} (55%) create mode 100644 allure-report/data/test-cases/d4f29bba77fd180.json rename allure-report/data/test-cases/{81c03b59fa01f666.json => d50213dc9ab240ff.json} (61%) create mode 100644 allure-report/data/test-cases/d5360156ef396b6e.json rename allure-report/data/test-cases/{d562abb8385a61c5.json => d56667f6ac1424a3.json} (64%) delete mode 100644 allure-report/data/test-cases/d58da60cf24b7660.json create mode 100644 allure-report/data/test-cases/d5aba2cd944d7efd.json rename allure-report/data/test-cases/{3ffa72675847f113.json => d5d01c4fe30779a0.json} (54%) rename allure-report/data/test-cases/{8dcfddf689f44d1d.json => d64758690dcdce52.json} (75%) create mode 100644 allure-report/data/test-cases/d6ad7a05187743ff.json rename allure-report/data/test-cases/{910c497042fbb9d7.json => d6fd6e0593022837.json} (92%) create mode 100644 allure-report/data/test-cases/d731ec2306766d91.json create mode 100644 allure-report/data/test-cases/d7ea74c17659aeca.json rename allure-report/data/test-cases/{3e68653192929d9b.json => d86332e2eabe60c3.json} (54%) create mode 100644 allure-report/data/test-cases/d86eb3695c9130c6.json rename allure-report/data/test-cases/{da6d336020bff47c.json => d8b4a2733a1f48dc.json} (77%) rename allure-report/data/test-cases/{b7243d74fc99fb8b.json => d8bbfaabd5a5300d.json} (57%) rename allure-report/data/test-cases/{2f4dd2b3858b1ec4.json => d9bbc705106eff98.json} (69%) rename allure-report/data/test-cases/{dde0d2c7fdfdde63.json => d9e0974c92057e94.json} (64%) create mode 100644 allure-report/data/test-cases/d9e0d2d6c00c88e9.json create mode 100644 allure-report/data/test-cases/d9e7bf55554cd705.json delete mode 100644 allure-report/data/test-cases/da02dcc2ce3c4d85.json rename allure-report/data/test-cases/{64cdb3b918aa694e.json => da222867360b442e.json} (72%) create mode 100644 allure-report/data/test-cases/dc076040e5481dc9.json create mode 100644 allure-report/data/test-cases/dc89f010c8fc632.json rename allure-report/data/test-cases/{5a497340f38e6588.json => dc9bdff2273b81f8.json} (64%) delete mode 100644 allure-report/data/test-cases/dcee0c4d2268b964.json rename allure-report/data/test-cases/{614133ca9c69e105.json => dd53e52e1ab13306.json} (57%) create mode 100644 allure-report/data/test-cases/dd86378e3a37dfe4.json rename allure-report/data/test-cases/{843ad9a1e8e9ca65.json => de09867d078b6af4.json} (70%) rename allure-report/data/test-cases/{409a2a4f316497c6.json => de0a077377bec456.json} (71%) rename allure-report/data/test-cases/{4df34ce2718b817c.json => dee6c3b3d0dc73e4.json} (56%) rename allure-report/data/test-cases/{e71fa3f33c33eb50.json => df5176bbed48ed91.json} (72%) create mode 100644 allure-report/data/test-cases/df9a9f68276bbb84.json rename allure-report/data/test-cases/{ed0bae89bbbcdb66.json => dfa8d9395e9495b6.json} (70%) rename allure-report/data/test-cases/{2de3f7cf44554fd8.json => dfae17616fb702cf.json} (55%) create mode 100644 allure-report/data/test-cases/e0d2f09c0da8121.json rename allure-report/data/test-cases/{47bce28013711283.json => e0e01cfda157cf01.json} (74%) create mode 100644 allure-report/data/test-cases/e1af2c095108694d.json delete mode 100644 allure-report/data/test-cases/e2326ee427488be9.json rename allure-report/data/test-cases/{607f84fe70696eb5.json => e248ed6a4ff28aaa.json} (64%) create mode 100644 allure-report/data/test-cases/e29868febcecd61d.json rename allure-report/data/test-cases/{6373ea673c2617a2.json => e2a8e239adf783da.json} (72%) rename allure-report/data/test-cases/{419686fbcf063822.json => e2ed60d0ac53c788.json} (56%) delete mode 100644 allure-report/data/test-cases/e330dbdee7dc6874.json create mode 100644 allure-report/data/test-cases/e41edf94f198f2c7.json rename allure-report/data/test-cases/{1c59e45321407518.json => e480fe95093fd8e7.json} (80%) create mode 100644 allure-report/data/test-cases/e532878179cb6f87.json create mode 100644 allure-report/data/test-cases/e53952640c2c9e47.json rename allure-report/data/test-cases/{f91e38b8c375d31c.json => e55f716219844475.json} (59%) rename allure-report/data/test-cases/{1a1c24c0cb125454.json => e5a7c04cf0e6c2f9.json} (68%) delete mode 100644 allure-report/data/test-cases/e5b1f301926fe23.json rename allure-report/data/test-cases/{9b5127c91b9deeb6.json => e5d70f307aec9205.json} (54%) create mode 100644 allure-report/data/test-cases/e604a93a8ee1253f.json rename allure-report/data/test-cases/{33bc4a62afa9ed1a.json => e63c100babc1267d.json} (78%) rename allure-report/data/test-cases/{bf2c284d4d5bb98c.json => e65c2aee0db2b724.json} (71%) create mode 100644 allure-report/data/test-cases/e687a692c2c18f1b.json rename allure-report/data/test-cases/{a076808e43574371.json => e695b3f4b0bdd51b.json} (63%) rename allure-report/data/test-cases/{e0f78ca1d7d1823c.json => e6abe3c64e54cb9f.json} (67%) rename allure-report/data/test-cases/{100aeca8c0207022.json => e6ed73d965a64ee5.json} (75%) create mode 100644 allure-report/data/test-cases/e7035dc3ef8d99c0.json rename allure-report/data/test-cases/{bd4541daca134967.json => e71092ad871851c8.json} (56%) create mode 100644 allure-report/data/test-cases/e751c9c9dc3d04e6.json rename allure-report/data/test-cases/{2f4ba657dc51e0d2.json => e76c8429b652e3f0.json} (75%) rename allure-report/data/test-cases/{5d8c14adba840438.json => e776a97a9aadedfc.json} (66%) rename allure-report/data/test-cases/{c7c4b4c39dca1f7a.json => e78a552d574aad16.json} (64%) rename allure-report/data/test-cases/{94af9200e69d147a.json => e7b4bfe5c117b0b5.json} (79%) rename allure-report/data/test-cases/{693d19da33d622de.json => e8a3e54ef5fe796f.json} (65%) create mode 100644 allure-report/data/test-cases/e91954f86960f5cf.json rename allure-report/data/test-cases/{af4da168bd187f62.json => e9cabde1f2c64760.json} (93%) rename allure-report/data/test-cases/{8dea57e5544d4774.json => e9f92529af3ab5ff.json} (71%) rename allure-report/data/test-cases/{711e095503a0cf45.json => ea018bd2743d350e.json} (71%) create mode 100644 allure-report/data/test-cases/ea636867f014d21.json rename allure-report/data/test-cases/{87d2fa2dfc5fe491.json => ea733e6b4760e89e.json} (52%) create mode 100644 allure-report/data/test-cases/ea77ab4395e92566.json rename allure-report/data/test-cases/{3e8741eae0b44214.json => eac7f340d73193c2.json} (62%) rename allure-report/data/test-cases/{1a8ee4991fa5fcbc.json => eb1b904b9e574ded.json} (79%) create mode 100644 allure-report/data/test-cases/eb4d3d652c38eb3f.json rename allure-report/data/test-cases/{26f23a936b51b328.json => eb60d649770273d6.json} (65%) create mode 100644 allure-report/data/test-cases/ebad1371009d2223.json rename allure-report/data/test-cases/{844543e89f44e3d5.json => ebb627dfa50cb94d.json} (69%) rename allure-report/data/test-cases/{68db53b8169ad957.json => ebea1136229ab9bf.json} (74%) delete mode 100644 allure-report/data/test-cases/ec3117c5f0ca458.json rename allure-report/data/test-cases/{4b8219eb37520d2d.json => ec528f5ba60e276b.json} (62%) rename allure-report/data/test-cases/{898b5d5677e24adf.json => ed0b0c9c45304a0b.json} (68%) rename allure-report/data/test-cases/{fbd7acf611333772.json => ed242b4479970e98.json} (72%) rename allure-report/data/test-cases/{33e90a465d3b6e95.json => ed44c13e0e5a3954.json} (58%) rename allure-report/data/test-cases/{bf6ae18a8ec3d384.json => ed5a184ed941933a.json} (70%) rename allure-report/data/test-cases/{edb4f03386c56c72.json => ed783d7ab62f1ba4.json} (78%) rename allure-report/data/test-cases/{9fa9266ff3a1c464.json => ed9cfa6ba87dba0e.json} (62%) rename allure-report/data/test-cases/{27f5e11d20d2d96c.json => edb0e461adb94f5b.json} (61%) create mode 100644 allure-report/data/test-cases/edb8f84ee9c3dd36.json create mode 100644 allure-report/data/test-cases/edfd5d811972f420.json create mode 100644 allure-report/data/test-cases/ee07ce647fa212f.json rename allure-report/data/test-cases/{af82a0c3b0cef265.json => ee16b6e353dfd7cd.json} (59%) rename allure-report/data/test-cases/{f9c645ee48c4616c.json => ee182a5a1f4b39dc.json} (67%) rename allure-report/data/test-cases/{30b1174850b5a822.json => ee3233c4ab89c7ec.json} (93%) delete mode 100644 allure-report/data/test-cases/ee3eb820ef7c27.json create mode 100644 allure-report/data/test-cases/ee50880cc545f1d3.json rename allure-report/data/test-cases/{a57a3497f4402b67.json => ee7ac80cd7bb8f8d.json} (56%) delete mode 100644 allure-report/data/test-cases/eea4c328ad2eaeca.json create mode 100644 allure-report/data/test-cases/ef2b00c02db84592.json rename allure-report/data/test-cases/{ef2d26c76c436892.json => ef2ebe964f1d2f5f.json} (94%) create mode 100644 allure-report/data/test-cases/ef53249dd3798b49.json rename allure-report/data/test-cases/{920950efadf9f044.json => efdfaccb93c4c6b4.json} (67%) rename allure-report/data/test-cases/{191f183f3ba0c8ea.json => f0cf41ee7ec62257.json} (59%) rename allure-report/data/test-cases/{445f2e59cb6a4191.json => f10852a0a46489bf.json} (93%) rename allure-report/data/test-cases/{5b153d545c48d264.json => f17cc6d65b0932fd.json} (72%) rename allure-report/data/test-cases/{8cf44bb18023836b.json => f1908dde48e8dbb5.json} (75%) rename allure-report/data/test-cases/{dea092a037f048cd.json => f1c13dcc2ec25637.json} (66%) rename allure-report/data/test-cases/{893dcbf3da59eb02.json => f1c17d8d31f590b0.json} (60%) rename allure-report/data/test-cases/{815ff7102e2d18bc.json => f207a08521ff3dd3.json} (64%) rename allure-report/data/test-cases/{342dee44f5f15fde.json => f20c6ac583494462.json} (65%) rename allure-report/data/test-cases/{9c43e0c7813423da.json => f25197354d7a779d.json} (66%) rename allure-report/data/test-cases/{e7e28dd8f45c4374.json => f253bf40e74f545d.json} (74%) create mode 100644 allure-report/data/test-cases/f26dca06c76121c7.json rename allure-report/data/test-cases/{bf7acd85eab5cf37.json => f2826391ba216705.json} (67%) rename allure-report/data/test-cases/{924a52587e7b2c82.json => f293d4274aefdd43.json} (68%) rename allure-report/data/test-cases/{7c9ea3ba0070bf05.json => f2a7bab28da55269.json} (69%) create mode 100644 allure-report/data/test-cases/f30b225377e5683d.json rename allure-report/data/test-cases/{62141a9b45e036f9.json => f30d62828063f744.json} (55%) rename allure-report/data/test-cases/{4c77d97bc41048ff.json => f3b1ea272cafb8c8.json} (55%) delete mode 100644 allure-report/data/test-cases/f3baf14f5477154.json rename allure-report/data/test-cases/{965a3663c8644328.json => f40d2270a86983a1.json} (73%) create mode 100644 allure-report/data/test-cases/f48dcf9628fe90ff.json rename allure-report/data/test-cases/{65a370055ee8e2b9.json => f507fecee61d3d94.json} (76%) rename allure-report/data/test-cases/{1700dd3f253e8636.json => f520dc2a3cdded7a.json} (57%) delete mode 100644 allure-report/data/test-cases/f52e2a19a3ffe707.json rename allure-report/data/test-cases/{3a0034b3910c9f0c.json => f5725ff55458d02a.json} (76%) delete mode 100644 allure-report/data/test-cases/f5819c4c1535edeb.json rename allure-report/data/test-cases/{dd76819b5fd836d3.json => f585eec372fcc899.json} (56%) create mode 100644 allure-report/data/test-cases/f5c9e062133dbbbb.json delete mode 100644 allure-report/data/test-cases/f619b88d74382886.json rename allure-report/data/test-cases/{5b15d7c039eaff13.json => f631ad3e8bb02244.json} (64%) rename allure-report/data/test-cases/{86b489ae6b8c1d23.json => f6681b778f42e33c.json} (68%) rename allure-report/data/test-cases/{8215947106021b54.json => f6b3bc73a428b4db.json} (57%) create mode 100644 allure-report/data/test-cases/f6c63ae7fdc54916.json create mode 100644 allure-report/data/test-cases/f6dea82ce819c148.json rename allure-report/data/test-cases/{fc455123cb448d3e.json => f6df3cbfc02e5094.json} (60%) rename allure-report/data/test-cases/{9b1bc0b9a480db3e.json => f71bd4516df37f52.json} (85%) rename allure-report/data/test-cases/{5ffc43ce0a9f46c9.json => f7ae1e1fc4481de3.json} (54%) rename allure-report/data/test-cases/{9c241cc9403723af.json => f7d9041670997ad6.json} (62%) rename allure-report/data/test-cases/{8cdb3386cf094e1f.json => f7f7ddd6c717f082.json} (81%) rename allure-report/data/test-cases/{8e17b24d548befe2.json => f801b2352cd357fc.json} (76%) rename allure-report/data/test-cases/{945a96aedc88e8fe.json => f9778b72019f6060.json} (94%) delete mode 100644 allure-report/data/test-cases/f9df20ba5fd613f1.json rename allure-report/data/test-cases/{416790ca79634ed0.json => fa27e6e3693a7b83.json} (68%) rename allure-report/data/test-cases/{16a9ca9919e5cef5.json => fa5cd4b7c764fede.json} (62%) create mode 100644 allure-report/data/test-cases/fa69c95248558058.json create mode 100644 allure-report/data/test-cases/fa6c346b04c031d5.json rename allure-report/data/test-cases/{c1b76ff1cacf5544.json => faf400d308fb1d4e.json} (68%) rename allure-report/data/test-cases/{f809105a155a665a.json => fb64f9c33c11676a.json} (70%) rename allure-report/data/test-cases/{784b6f629ce5c547.json => fc6ce7cf48700667.json} (61%) create mode 100644 allure-report/data/test-cases/fcb92722bb71757b.json rename allure-report/data/test-cases/{3eea5577d98c581f.json => fd4ef8d041ff123e.json} (59%) rename allure-report/data/test-cases/{34783e6754d286ec.json => fd85877ffe0d5722.json} (75%) rename allure-report/data/test-cases/{b921129ad79b857f.json => fe040c66880e0b15.json} (71%) rename allure-report/data/test-cases/{2951c359ba3fd421.json => fe07573cd07e1ed8.json} (65%) rename allure-report/data/test-cases/{5998f9acb6d6dab8.json => fe13696efb68455a.json} (68%) create mode 100644 allure-report/data/test-cases/fea5f749a1c464e4.json create mode 100644 allure-report/data/test-cases/fef2d68159e448ff.json rename allure-report/data/test-cases/{ff776776c9a8991f.json => fefeabf3e26a53bd.json} (56%) create mode 100644 allure-report/data/test-cases/ff18bec5c293c228.json rename allure-report/data/test-cases/{8d5ed16bbc896a22.json => ff24b513a2221397.json} (71%) create mode 100644 allure-report/data/test-cases/ff9c64bdd3b3fc0c.json create mode 100644 allure-report/data/test-cases/ffc8d600f4ca1daf.json diff --git a/allure-report/data/attachments/e806fd65a1519daa.txt b/allure-report/data/attachments/102e6d56faf7b4e2.txt similarity index 100% rename from allure-report/data/attachments/e806fd65a1519daa.txt rename to allure-report/data/attachments/102e6d56faf7b4e2.txt diff --git a/allure-report/data/attachments/3fdf05bb544c0162.txt b/allure-report/data/attachments/113f10167539853c.txt similarity index 100% rename from allure-report/data/attachments/3fdf05bb544c0162.txt rename to allure-report/data/attachments/113f10167539853c.txt diff --git a/allure-report/data/attachments/70a5ec7cc829789f.txt b/allure-report/data/attachments/13227bd500cb42e3.txt similarity index 100% rename from allure-report/data/attachments/70a5ec7cc829789f.txt rename to allure-report/data/attachments/13227bd500cb42e3.txt diff --git a/allure-report/data/attachments/62d969149cac19e2.txt b/allure-report/data/attachments/1342cdaa6481456c.txt similarity index 100% rename from allure-report/data/attachments/62d969149cac19e2.txt rename to allure-report/data/attachments/1342cdaa6481456c.txt diff --git a/allure-report/data/attachments/4091cd5629c473be.txt b/allure-report/data/attachments/145b065c02fb875.txt similarity index 100% rename from allure-report/data/attachments/4091cd5629c473be.txt rename to allure-report/data/attachments/145b065c02fb875.txt diff --git a/allure-report/data/attachments/253cdd605d9ea305.txt b/allure-report/data/attachments/14f2aef00cdbb284.txt similarity index 100% rename from allure-report/data/attachments/253cdd605d9ea305.txt rename to allure-report/data/attachments/14f2aef00cdbb284.txt diff --git a/allure-report/data/attachments/5d918ffd5978feb.txt b/allure-report/data/attachments/15093916dbf3d716.txt similarity index 100% rename from allure-report/data/attachments/5d918ffd5978feb.txt rename to allure-report/data/attachments/15093916dbf3d716.txt diff --git a/allure-report/data/attachments/2862210bad838236.txt b/allure-report/data/attachments/157d07999fe8bb77.txt similarity index 100% rename from allure-report/data/attachments/2862210bad838236.txt rename to allure-report/data/attachments/157d07999fe8bb77.txt diff --git a/allure-report/data/attachments/50b324c74021da7c.txt b/allure-report/data/attachments/16068cef6801ede5.txt similarity index 100% rename from allure-report/data/attachments/50b324c74021da7c.txt rename to allure-report/data/attachments/16068cef6801ede5.txt diff --git a/allure-report/data/attachments/6100c33a0bd08814.txt b/allure-report/data/attachments/175a566935f714fc.txt similarity index 100% rename from allure-report/data/attachments/6100c33a0bd08814.txt rename to allure-report/data/attachments/175a566935f714fc.txt diff --git a/allure-report/data/attachments/95dd879b5dc89b5e.txt b/allure-report/data/attachments/17e1f12bcdd4240f.txt similarity index 100% rename from allure-report/data/attachments/95dd879b5dc89b5e.txt rename to allure-report/data/attachments/17e1f12bcdd4240f.txt diff --git a/allure-report/data/attachments/546f6d6d1d510331.txt b/allure-report/data/attachments/1889e3b457f9320a.txt similarity index 100% rename from allure-report/data/attachments/546f6d6d1d510331.txt rename to allure-report/data/attachments/1889e3b457f9320a.txt diff --git a/allure-report/data/attachments/4e248e61461ec35c.txt b/allure-report/data/attachments/18e75387bd3b0160.txt similarity index 100% rename from allure-report/data/attachments/4e248e61461ec35c.txt rename to allure-report/data/attachments/18e75387bd3b0160.txt diff --git a/allure-report/data/attachments/1b71217f4d0fe3a2.txt b/allure-report/data/attachments/1ad9ab8a22025032.txt similarity index 100% rename from allure-report/data/attachments/1b71217f4d0fe3a2.txt rename to allure-report/data/attachments/1ad9ab8a22025032.txt diff --git a/allure-report/data/attachments/697db26b4ade1966.txt b/allure-report/data/attachments/1ce4c0edbbe04f9e.txt similarity index 100% rename from allure-report/data/attachments/697db26b4ade1966.txt rename to allure-report/data/attachments/1ce4c0edbbe04f9e.txt diff --git a/allure-report/data/attachments/459e1a71d63acc96.txt b/allure-report/data/attachments/1d47ca07980ea016.txt similarity index 100% rename from allure-report/data/attachments/459e1a71d63acc96.txt rename to allure-report/data/attachments/1d47ca07980ea016.txt diff --git a/allure-report/data/attachments/a31af19dcd964af7.txt b/allure-report/data/attachments/1de780c85f2aabb6.txt similarity index 100% rename from allure-report/data/attachments/a31af19dcd964af7.txt rename to allure-report/data/attachments/1de780c85f2aabb6.txt diff --git a/allure-report/data/attachments/6f4b7e883a26cafe.txt b/allure-report/data/attachments/1dfb198a7253b941.txt similarity index 100% rename from allure-report/data/attachments/6f4b7e883a26cafe.txt rename to allure-report/data/attachments/1dfb198a7253b941.txt diff --git a/allure-report/data/attachments/3326f8b00659b17c.txt b/allure-report/data/attachments/1f6883e774d20c18.txt similarity index 100% rename from allure-report/data/attachments/3326f8b00659b17c.txt rename to allure-report/data/attachments/1f6883e774d20c18.txt diff --git a/allure-report/data/attachments/1ab4a085da0164d2.txt b/allure-report/data/attachments/20671bf346c43317.txt similarity index 100% rename from allure-report/data/attachments/1ab4a085da0164d2.txt rename to allure-report/data/attachments/20671bf346c43317.txt diff --git a/allure-report/data/attachments/26c18e7ac55b0476.txt b/allure-report/data/attachments/20cbc8ca27f67538.txt similarity index 100% rename from allure-report/data/attachments/26c18e7ac55b0476.txt rename to allure-report/data/attachments/20cbc8ca27f67538.txt diff --git a/allure-report/data/attachments/25583e198df733bf.txt b/allure-report/data/attachments/20e82e5aa37702bc.txt similarity index 100% rename from allure-report/data/attachments/25583e198df733bf.txt rename to allure-report/data/attachments/20e82e5aa37702bc.txt diff --git a/allure-report/data/attachments/67be9974a45dfae3.txt b/allure-report/data/attachments/214be7d831eff2b3.txt similarity index 100% rename from allure-report/data/attachments/67be9974a45dfae3.txt rename to allure-report/data/attachments/214be7d831eff2b3.txt diff --git a/allure-report/data/attachments/9c17474dc274435d.txt b/allure-report/data/attachments/21b3833bd58160c1.txt similarity index 100% rename from allure-report/data/attachments/9c17474dc274435d.txt rename to allure-report/data/attachments/21b3833bd58160c1.txt diff --git a/allure-report/data/attachments/92cddf6ef1a2b768.txt b/allure-report/data/attachments/22c24dd6f011f9a2.txt similarity index 100% rename from allure-report/data/attachments/92cddf6ef1a2b768.txt rename to allure-report/data/attachments/22c24dd6f011f9a2.txt diff --git a/allure-report/data/attachments/6ae645e567750bb1.txt b/allure-report/data/attachments/24af1d7a0c0925a.txt similarity index 100% rename from allure-report/data/attachments/6ae645e567750bb1.txt rename to allure-report/data/attachments/24af1d7a0c0925a.txt diff --git a/allure-report/data/attachments/ab72754d2ac3d657.txt b/allure-report/data/attachments/250afdca61317e51.txt similarity index 100% rename from allure-report/data/attachments/ab72754d2ac3d657.txt rename to allure-report/data/attachments/250afdca61317e51.txt diff --git a/allure-report/data/attachments/105658932c1d51ff.txt b/allure-report/data/attachments/250e2e008fa1f7b7.txt similarity index 100% rename from allure-report/data/attachments/105658932c1d51ff.txt rename to allure-report/data/attachments/250e2e008fa1f7b7.txt diff --git a/allure-report/data/attachments/dcb5cf58cdd3658a.txt b/allure-report/data/attachments/251fc94fc6c7a32c.txt similarity index 100% rename from allure-report/data/attachments/dcb5cf58cdd3658a.txt rename to allure-report/data/attachments/251fc94fc6c7a32c.txt diff --git a/allure-report/data/attachments/fab77c156ff5bb2b.txt b/allure-report/data/attachments/2696faacdbe9d8c7.txt similarity index 100% rename from allure-report/data/attachments/fab77c156ff5bb2b.txt rename to allure-report/data/attachments/2696faacdbe9d8c7.txt diff --git a/allure-report/data/attachments/addbfb5be788ff64.txt b/allure-report/data/attachments/26e6b6f5238c5b93.txt similarity index 100% rename from allure-report/data/attachments/addbfb5be788ff64.txt rename to allure-report/data/attachments/26e6b6f5238c5b93.txt diff --git a/allure-report/data/attachments/419d7e1cf9a3c9b.txt b/allure-report/data/attachments/2731ba669f341d4.txt similarity index 100% rename from allure-report/data/attachments/419d7e1cf9a3c9b.txt rename to allure-report/data/attachments/2731ba669f341d4.txt diff --git a/allure-report/data/attachments/1ff678a4c7734b0.txt b/allure-report/data/attachments/27790d440082a497.txt similarity index 100% rename from allure-report/data/attachments/1ff678a4c7734b0.txt rename to allure-report/data/attachments/27790d440082a497.txt diff --git a/allure-report/data/attachments/27df6f7a31afa4ff.txt b/allure-report/data/attachments/27997c5236222053.txt similarity index 100% rename from allure-report/data/attachments/27df6f7a31afa4ff.txt rename to allure-report/data/attachments/27997c5236222053.txt diff --git a/allure-report/data/attachments/22f6f0c737bac26b.txt b/allure-report/data/attachments/27ebdb1cdb347243.txt similarity index 100% rename from allure-report/data/attachments/22f6f0c737bac26b.txt rename to allure-report/data/attachments/27ebdb1cdb347243.txt diff --git a/allure-report/data/attachments/8dfc11179dd2dd46.txt b/allure-report/data/attachments/2857c06d429f0757.txt similarity index 100% rename from allure-report/data/attachments/8dfc11179dd2dd46.txt rename to allure-report/data/attachments/2857c06d429f0757.txt diff --git a/allure-report/data/attachments/518d45d1073ca74.txt b/allure-report/data/attachments/287eb5fa3fe3b8e6.txt similarity index 100% rename from allure-report/data/attachments/518d45d1073ca74.txt rename to allure-report/data/attachments/287eb5fa3fe3b8e6.txt diff --git a/allure-report/data/attachments/f66e1341a4df20a3.txt b/allure-report/data/attachments/29aa0c598c1f2d04.txt similarity index 100% rename from allure-report/data/attachments/f66e1341a4df20a3.txt rename to allure-report/data/attachments/29aa0c598c1f2d04.txt diff --git a/allure-report/data/attachments/2bee8bc5b94972e3.txt b/allure-report/data/attachments/2a2e64e7212768ad.txt similarity index 100% rename from allure-report/data/attachments/2bee8bc5b94972e3.txt rename to allure-report/data/attachments/2a2e64e7212768ad.txt diff --git a/allure-report/data/attachments/8ce1da867cdb9cd9.txt b/allure-report/data/attachments/2a7e83a8939aa3ea.txt similarity index 100% rename from allure-report/data/attachments/8ce1da867cdb9cd9.txt rename to allure-report/data/attachments/2a7e83a8939aa3ea.txt diff --git a/allure-report/data/attachments/9cd8266cfd985687.txt b/allure-report/data/attachments/2b123edd90aa8cfa.txt similarity index 100% rename from allure-report/data/attachments/9cd8266cfd985687.txt rename to allure-report/data/attachments/2b123edd90aa8cfa.txt diff --git a/allure-report/data/attachments/730a4e5abf4ea8ba.txt b/allure-report/data/attachments/2b2e74011774c312.txt similarity index 100% rename from allure-report/data/attachments/730a4e5abf4ea8ba.txt rename to allure-report/data/attachments/2b2e74011774c312.txt diff --git a/allure-report/data/attachments/c02985fbd2700004.txt b/allure-report/data/attachments/2c51ebffe286fde1.txt similarity index 100% rename from allure-report/data/attachments/c02985fbd2700004.txt rename to allure-report/data/attachments/2c51ebffe286fde1.txt diff --git a/allure-report/data/attachments/2f3f1653d6bd83ea.txt b/allure-report/data/attachments/2d724952cd20b6e1.txt similarity index 100% rename from allure-report/data/attachments/2f3f1653d6bd83ea.txt rename to allure-report/data/attachments/2d724952cd20b6e1.txt diff --git a/allure-report/data/attachments/6e968c2a309c9083.txt b/allure-report/data/attachments/2de6534e84498685.txt similarity index 100% rename from allure-report/data/attachments/6e968c2a309c9083.txt rename to allure-report/data/attachments/2de6534e84498685.txt diff --git a/allure-report/data/attachments/4f617786d1167bf5.txt b/allure-report/data/attachments/2e0ebd0ab799745b.txt similarity index 100% rename from allure-report/data/attachments/4f617786d1167bf5.txt rename to allure-report/data/attachments/2e0ebd0ab799745b.txt diff --git a/allure-report/data/attachments/4c19c67f026536b3.txt b/allure-report/data/attachments/2e61a28436ed8397.txt similarity index 100% rename from allure-report/data/attachments/4c19c67f026536b3.txt rename to allure-report/data/attachments/2e61a28436ed8397.txt diff --git a/allure-report/data/attachments/4fea0728042fecef.txt b/allure-report/data/attachments/2f4fbc6ed8dc7bd7.txt similarity index 100% rename from allure-report/data/attachments/4fea0728042fecef.txt rename to allure-report/data/attachments/2f4fbc6ed8dc7bd7.txt diff --git a/allure-report/data/attachments/d6c5e78c2bca1b60.txt b/allure-report/data/attachments/2f6f124c7be3a6e5.txt similarity index 100% rename from allure-report/data/attachments/d6c5e78c2bca1b60.txt rename to allure-report/data/attachments/2f6f124c7be3a6e5.txt diff --git a/allure-report/data/attachments/d4ab56b3974e742a.txt b/allure-report/data/attachments/2f87f52236c75608.txt similarity index 100% rename from allure-report/data/attachments/d4ab56b3974e742a.txt rename to allure-report/data/attachments/2f87f52236c75608.txt diff --git a/allure-report/data/attachments/9b753e8aa39a2b6c.txt b/allure-report/data/attachments/2f8e2ebe7761508b.txt similarity index 100% rename from allure-report/data/attachments/9b753e8aa39a2b6c.txt rename to allure-report/data/attachments/2f8e2ebe7761508b.txt diff --git a/allure-report/data/attachments/3a4387d961fd6fe2.txt b/allure-report/data/attachments/30ae8f4eae56e738.txt similarity index 100% rename from allure-report/data/attachments/3a4387d961fd6fe2.txt rename to allure-report/data/attachments/30ae8f4eae56e738.txt diff --git a/allure-report/data/attachments/f1a162618bd1b29d.txt b/allure-report/data/attachments/30e865fe73fa5b27.txt similarity index 100% rename from allure-report/data/attachments/f1a162618bd1b29d.txt rename to allure-report/data/attachments/30e865fe73fa5b27.txt diff --git a/allure-report/data/attachments/dd90e5bd6518035b.txt b/allure-report/data/attachments/312062c4d3ad84ef.txt similarity index 100% rename from allure-report/data/attachments/dd90e5bd6518035b.txt rename to allure-report/data/attachments/312062c4d3ad84ef.txt diff --git a/allure-report/data/attachments/1905a023fe62d7a5.txt b/allure-report/data/attachments/312dff4578efa314.txt similarity index 100% rename from allure-report/data/attachments/1905a023fe62d7a5.txt rename to allure-report/data/attachments/312dff4578efa314.txt diff --git a/allure-report/data/attachments/773f7227b3021ebf.txt b/allure-report/data/attachments/31e63916e4212e6.txt similarity index 100% rename from allure-report/data/attachments/773f7227b3021ebf.txt rename to allure-report/data/attachments/31e63916e4212e6.txt diff --git a/allure-report/data/attachments/888fe7b1e08f632a.txt b/allure-report/data/attachments/3228eb12f2ec789a.txt similarity index 100% rename from allure-report/data/attachments/888fe7b1e08f632a.txt rename to allure-report/data/attachments/3228eb12f2ec789a.txt diff --git a/allure-report/data/attachments/31ba7c014fce4298.txt b/allure-report/data/attachments/32bad6265b9c6d8f.txt similarity index 100% rename from allure-report/data/attachments/31ba7c014fce4298.txt rename to allure-report/data/attachments/32bad6265b9c6d8f.txt diff --git a/allure-report/data/attachments/76446d802fca4221.txt b/allure-report/data/attachments/349072694382d10e.txt similarity index 100% rename from allure-report/data/attachments/76446d802fca4221.txt rename to allure-report/data/attachments/349072694382d10e.txt diff --git a/allure-report/data/attachments/660305aec4aa6e06.txt b/allure-report/data/attachments/358b4a5251243888.txt similarity index 100% rename from allure-report/data/attachments/660305aec4aa6e06.txt rename to allure-report/data/attachments/358b4a5251243888.txt diff --git a/allure-report/data/attachments/ff867546b68da848.txt b/allure-report/data/attachments/3642f149df538341.txt similarity index 100% rename from allure-report/data/attachments/ff867546b68da848.txt rename to allure-report/data/attachments/3642f149df538341.txt diff --git a/allure-report/data/attachments/2dd75c6915b1e704.txt b/allure-report/data/attachments/36a84ce1aa4434a.txt similarity index 100% rename from allure-report/data/attachments/2dd75c6915b1e704.txt rename to allure-report/data/attachments/36a84ce1aa4434a.txt diff --git a/allure-report/data/attachments/a5fe4c42944f89c8.txt b/allure-report/data/attachments/379cf75cca245ee2.txt similarity index 100% rename from allure-report/data/attachments/a5fe4c42944f89c8.txt rename to allure-report/data/attachments/379cf75cca245ee2.txt diff --git a/allure-report/data/attachments/63b31f8c0af20d94.txt b/allure-report/data/attachments/38035331d2572599.txt similarity index 100% rename from allure-report/data/attachments/63b31f8c0af20d94.txt rename to allure-report/data/attachments/38035331d2572599.txt diff --git a/allure-report/data/attachments/8244325875cc8c2.txt b/allure-report/data/attachments/38545087bdeef541.txt similarity index 100% rename from allure-report/data/attachments/8244325875cc8c2.txt rename to allure-report/data/attachments/38545087bdeef541.txt diff --git a/allure-report/data/attachments/17ccb2223275d18f.txt b/allure-report/data/attachments/38a8ba45b2ebefd2.txt similarity index 100% rename from allure-report/data/attachments/17ccb2223275d18f.txt rename to allure-report/data/attachments/38a8ba45b2ebefd2.txt diff --git a/allure-report/data/attachments/857a5351e31f1baf.txt b/allure-report/data/attachments/38c339de2200090.txt similarity index 100% rename from allure-report/data/attachments/857a5351e31f1baf.txt rename to allure-report/data/attachments/38c339de2200090.txt diff --git a/allure-report/data/attachments/1d5dc16fdfe05c84.txt b/allure-report/data/attachments/3934a31f83c6b392.txt similarity index 100% rename from allure-report/data/attachments/1d5dc16fdfe05c84.txt rename to allure-report/data/attachments/3934a31f83c6b392.txt diff --git a/allure-report/data/attachments/1d395e740ae82411.txt b/allure-report/data/attachments/3aa04a43be2f48f8.txt similarity index 100% rename from allure-report/data/attachments/1d395e740ae82411.txt rename to allure-report/data/attachments/3aa04a43be2f48f8.txt diff --git a/allure-report/data/attachments/23dd45ddb469c4aa.txt b/allure-report/data/attachments/3b202dd3c9afa278.txt similarity index 100% rename from allure-report/data/attachments/23dd45ddb469c4aa.txt rename to allure-report/data/attachments/3b202dd3c9afa278.txt diff --git a/allure-report/data/attachments/5b8ca288b44682ec.txt b/allure-report/data/attachments/3cf96ebaed3b737c.txt similarity index 100% rename from allure-report/data/attachments/5b8ca288b44682ec.txt rename to allure-report/data/attachments/3cf96ebaed3b737c.txt diff --git a/allure-report/data/attachments/2d58a8a8ac8fa12e.txt b/allure-report/data/attachments/3e106a35f51e50cd.txt similarity index 100% rename from allure-report/data/attachments/2d58a8a8ac8fa12e.txt rename to allure-report/data/attachments/3e106a35f51e50cd.txt diff --git a/allure-report/data/attachments/64217426bd0c7f09.txt b/allure-report/data/attachments/3f0fa9f25e69b0db.txt similarity index 100% rename from allure-report/data/attachments/64217426bd0c7f09.txt rename to allure-report/data/attachments/3f0fa9f25e69b0db.txt diff --git a/allure-report/data/attachments/a881d3345681241e.txt b/allure-report/data/attachments/3f196c8197b3dace.txt similarity index 100% rename from allure-report/data/attachments/a881d3345681241e.txt rename to allure-report/data/attachments/3f196c8197b3dace.txt diff --git a/allure-report/data/attachments/8ef03709815f1ee7.txt b/allure-report/data/attachments/3fb645b301593c3.txt similarity index 100% rename from allure-report/data/attachments/8ef03709815f1ee7.txt rename to allure-report/data/attachments/3fb645b301593c3.txt diff --git a/allure-report/data/attachments/4a05a037b7d71615.txt b/allure-report/data/attachments/3fc74f16bec5bbf3.txt similarity index 100% rename from allure-report/data/attachments/4a05a037b7d71615.txt rename to allure-report/data/attachments/3fc74f16bec5bbf3.txt diff --git a/allure-report/data/attachments/1ca9750c0956602d.txt b/allure-report/data/attachments/3fda8fe35c793420.txt similarity index 100% rename from allure-report/data/attachments/1ca9750c0956602d.txt rename to allure-report/data/attachments/3fda8fe35c793420.txt diff --git a/allure-report/data/attachments/215c30a7cf2d2e11.txt b/allure-report/data/attachments/406f6d7cefafc12f.txt similarity index 100% rename from allure-report/data/attachments/215c30a7cf2d2e11.txt rename to allure-report/data/attachments/406f6d7cefafc12f.txt diff --git a/allure-report/data/attachments/3272d488a926cad0.txt b/allure-report/data/attachments/407f6f4c1f9bb5a2.txt similarity index 100% rename from allure-report/data/attachments/3272d488a926cad0.txt rename to allure-report/data/attachments/407f6f4c1f9bb5a2.txt diff --git a/allure-report/data/attachments/2fa4e18b8435ce88.txt b/allure-report/data/attachments/408eed1715a3503c.txt similarity index 100% rename from allure-report/data/attachments/2fa4e18b8435ce88.txt rename to allure-report/data/attachments/408eed1715a3503c.txt diff --git a/allure-report/data/attachments/3e088b2fc3849ac3.txt b/allure-report/data/attachments/40d2195f3173474a.txt similarity index 100% rename from allure-report/data/attachments/3e088b2fc3849ac3.txt rename to allure-report/data/attachments/40d2195f3173474a.txt diff --git a/allure-report/data/attachments/285de4a0d9b150b3.txt b/allure-report/data/attachments/40f2f98b11de943f.txt similarity index 100% rename from allure-report/data/attachments/285de4a0d9b150b3.txt rename to allure-report/data/attachments/40f2f98b11de943f.txt diff --git a/allure-report/data/attachments/94c19824e08a6a92.txt b/allure-report/data/attachments/41608c9ef684cb1e.txt similarity index 100% rename from allure-report/data/attachments/94c19824e08a6a92.txt rename to allure-report/data/attachments/41608c9ef684cb1e.txt diff --git a/allure-report/data/attachments/464f7036130e9df9.txt b/allure-report/data/attachments/4163d90850028d14.txt similarity index 100% rename from allure-report/data/attachments/464f7036130e9df9.txt rename to allure-report/data/attachments/4163d90850028d14.txt diff --git a/allure-report/data/attachments/f6ed689bd033eb8a.txt b/allure-report/data/attachments/41b26a3792b70bd8.txt similarity index 100% rename from allure-report/data/attachments/f6ed689bd033eb8a.txt rename to allure-report/data/attachments/41b26a3792b70bd8.txt diff --git a/allure-report/data/attachments/169bdc8e4de5949e.txt b/allure-report/data/attachments/41d5484e0bc70d7d.txt similarity index 100% rename from allure-report/data/attachments/169bdc8e4de5949e.txt rename to allure-report/data/attachments/41d5484e0bc70d7d.txt diff --git a/allure-report/data/attachments/16b3d133c1b1141f.txt b/allure-report/data/attachments/41df37e97a182fa4.txt similarity index 100% rename from allure-report/data/attachments/16b3d133c1b1141f.txt rename to allure-report/data/attachments/41df37e97a182fa4.txt diff --git a/allure-report/data/attachments/7bc78567c01b81e.txt b/allure-report/data/attachments/420f806ee93872a1.txt similarity index 100% rename from allure-report/data/attachments/7bc78567c01b81e.txt rename to allure-report/data/attachments/420f806ee93872a1.txt diff --git a/allure-report/data/attachments/7e0608ae57e6ca33.txt b/allure-report/data/attachments/42b879e2f735a0ac.txt similarity index 100% rename from allure-report/data/attachments/7e0608ae57e6ca33.txt rename to allure-report/data/attachments/42b879e2f735a0ac.txt diff --git a/allure-report/data/attachments/abe246047ca80d75.txt b/allure-report/data/attachments/42c6735b0fe92ce1.txt similarity index 100% rename from allure-report/data/attachments/abe246047ca80d75.txt rename to allure-report/data/attachments/42c6735b0fe92ce1.txt diff --git a/allure-report/data/attachments/ed14694d3d785456.txt b/allure-report/data/attachments/44f1e11e2ff687a2.txt similarity index 100% rename from allure-report/data/attachments/ed14694d3d785456.txt rename to allure-report/data/attachments/44f1e11e2ff687a2.txt diff --git a/allure-report/data/attachments/a7f10bb4c8e33c64.txt b/allure-report/data/attachments/45607bc70f60caca.txt similarity index 100% rename from allure-report/data/attachments/a7f10bb4c8e33c64.txt rename to allure-report/data/attachments/45607bc70f60caca.txt diff --git a/allure-report/data/attachments/ae7d7256cc9cd87f.txt b/allure-report/data/attachments/4562f85c852f0a97.txt similarity index 100% rename from allure-report/data/attachments/ae7d7256cc9cd87f.txt rename to allure-report/data/attachments/4562f85c852f0a97.txt diff --git a/allure-report/data/attachments/f3f8f8256722f1a9.txt b/allure-report/data/attachments/458fa73ae78d8720.txt similarity index 100% rename from allure-report/data/attachments/f3f8f8256722f1a9.txt rename to allure-report/data/attachments/458fa73ae78d8720.txt diff --git a/allure-report/data/attachments/403983f6828d59c5.txt b/allure-report/data/attachments/45f7f0c7806d7a5f.txt similarity index 100% rename from allure-report/data/attachments/403983f6828d59c5.txt rename to allure-report/data/attachments/45f7f0c7806d7a5f.txt diff --git a/allure-report/data/attachments/642ca5006c94cc7.txt b/allure-report/data/attachments/47825a7b608174fa.txt similarity index 100% rename from allure-report/data/attachments/642ca5006c94cc7.txt rename to allure-report/data/attachments/47825a7b608174fa.txt diff --git a/allure-report/data/attachments/26557f5777ce8a7b.txt b/allure-report/data/attachments/479118fc0413c04b.txt similarity index 100% rename from allure-report/data/attachments/26557f5777ce8a7b.txt rename to allure-report/data/attachments/479118fc0413c04b.txt diff --git a/allure-report/data/attachments/c629f823771e2123.txt b/allure-report/data/attachments/47a1750ca1ae0253.txt similarity index 100% rename from allure-report/data/attachments/c629f823771e2123.txt rename to allure-report/data/attachments/47a1750ca1ae0253.txt diff --git a/allure-report/data/attachments/443a1d8f74495540.txt b/allure-report/data/attachments/47ad300a7de26866.txt similarity index 100% rename from allure-report/data/attachments/443a1d8f74495540.txt rename to allure-report/data/attachments/47ad300a7de26866.txt diff --git a/allure-report/data/attachments/1fcc34d0c68ae769.txt b/allure-report/data/attachments/47cbc31b80f9d83c.txt similarity index 100% rename from allure-report/data/attachments/1fcc34d0c68ae769.txt rename to allure-report/data/attachments/47cbc31b80f9d83c.txt diff --git a/allure-report/data/attachments/ae418f132f3362c9.txt b/allure-report/data/attachments/485b7a7482b5d8a7.txt similarity index 100% rename from allure-report/data/attachments/ae418f132f3362c9.txt rename to allure-report/data/attachments/485b7a7482b5d8a7.txt diff --git a/allure-report/data/attachments/6ccd74e070792411.txt b/allure-report/data/attachments/491bdfb319cbef56.txt similarity index 100% rename from allure-report/data/attachments/6ccd74e070792411.txt rename to allure-report/data/attachments/491bdfb319cbef56.txt diff --git a/allure-report/data/attachments/65c05475b72ce468.txt b/allure-report/data/attachments/491da570f7a6ee0b.txt similarity index 100% rename from allure-report/data/attachments/65c05475b72ce468.txt rename to allure-report/data/attachments/491da570f7a6ee0b.txt diff --git a/allure-report/data/attachments/72f4c1312eb8e355.txt b/allure-report/data/attachments/4a17336d068efc8d.txt similarity index 100% rename from allure-report/data/attachments/72f4c1312eb8e355.txt rename to allure-report/data/attachments/4a17336d068efc8d.txt diff --git a/allure-report/data/attachments/8b32e9e6b9d5730c.txt b/allure-report/data/attachments/4b1abe2714e07e88.txt similarity index 100% rename from allure-report/data/attachments/8b32e9e6b9d5730c.txt rename to allure-report/data/attachments/4b1abe2714e07e88.txt diff --git a/allure-report/data/attachments/1dc0d1d2e3a97f3c.txt b/allure-report/data/attachments/4b36d71052a1b866.txt similarity index 100% rename from allure-report/data/attachments/1dc0d1d2e3a97f3c.txt rename to allure-report/data/attachments/4b36d71052a1b866.txt diff --git a/allure-report/data/attachments/a05ee87cd665f265.txt b/allure-report/data/attachments/4d30848274c8ad1.txt similarity index 100% rename from allure-report/data/attachments/a05ee87cd665f265.txt rename to allure-report/data/attachments/4d30848274c8ad1.txt diff --git a/allure-report/data/attachments/62418f4fe99b4a3a.txt b/allure-report/data/attachments/4d7d20a8fa5049ef.txt similarity index 100% rename from allure-report/data/attachments/62418f4fe99b4a3a.txt rename to allure-report/data/attachments/4d7d20a8fa5049ef.txt diff --git a/allure-report/data/attachments/484cb5d49df72338.txt b/allure-report/data/attachments/4e1d630f27c230cc.txt similarity index 100% rename from allure-report/data/attachments/484cb5d49df72338.txt rename to allure-report/data/attachments/4e1d630f27c230cc.txt diff --git a/allure-report/data/attachments/f24a9f86ff4ef095.txt b/allure-report/data/attachments/4e693ea1a91f61ae.txt similarity index 100% rename from allure-report/data/attachments/f24a9f86ff4ef095.txt rename to allure-report/data/attachments/4e693ea1a91f61ae.txt diff --git a/allure-report/data/attachments/724f9727a6725fde.txt b/allure-report/data/attachments/4eb3eb579b763a8f.txt similarity index 100% rename from allure-report/data/attachments/724f9727a6725fde.txt rename to allure-report/data/attachments/4eb3eb579b763a8f.txt diff --git a/allure-report/data/attachments/4a2cdaf17ee494c.txt b/allure-report/data/attachments/4f2668e4eadc4184.txt similarity index 100% rename from allure-report/data/attachments/4a2cdaf17ee494c.txt rename to allure-report/data/attachments/4f2668e4eadc4184.txt diff --git a/allure-report/data/attachments/8fe3e8aa201d424a.txt b/allure-report/data/attachments/506f9b1aa47477d8.txt similarity index 100% rename from allure-report/data/attachments/8fe3e8aa201d424a.txt rename to allure-report/data/attachments/506f9b1aa47477d8.txt diff --git a/allure-report/data/attachments/d83a50edd6b56e2a.txt b/allure-report/data/attachments/50b40a6b644cd21e.txt similarity index 100% rename from allure-report/data/attachments/d83a50edd6b56e2a.txt rename to allure-report/data/attachments/50b40a6b644cd21e.txt diff --git a/allure-report/data/attachments/de83cab412c71bc2.txt b/allure-report/data/attachments/50fb258de88c9004.txt similarity index 100% rename from allure-report/data/attachments/de83cab412c71bc2.txt rename to allure-report/data/attachments/50fb258de88c9004.txt diff --git a/allure-report/data/attachments/974d8c9279e15557.txt b/allure-report/data/attachments/51739cb22fa4b9dd.txt similarity index 100% rename from allure-report/data/attachments/974d8c9279e15557.txt rename to allure-report/data/attachments/51739cb22fa4b9dd.txt diff --git a/allure-report/data/attachments/f428986b0baf88be.txt b/allure-report/data/attachments/524aa4f029baa8f0.txt similarity index 100% rename from allure-report/data/attachments/f428986b0baf88be.txt rename to allure-report/data/attachments/524aa4f029baa8f0.txt diff --git a/allure-report/data/attachments/126d44dc6bf2e98e.txt b/allure-report/data/attachments/53f4bbebe56fedf8.txt similarity index 100% rename from allure-report/data/attachments/126d44dc6bf2e98e.txt rename to allure-report/data/attachments/53f4bbebe56fedf8.txt diff --git a/allure-report/data/attachments/36e52eee6ec1696f.txt b/allure-report/data/attachments/54520f78b41446af.txt similarity index 100% rename from allure-report/data/attachments/36e52eee6ec1696f.txt rename to allure-report/data/attachments/54520f78b41446af.txt diff --git a/allure-report/data/attachments/76d9ba77a7bb2817.txt b/allure-report/data/attachments/5473bc31f56d9a8c.txt similarity index 100% rename from allure-report/data/attachments/76d9ba77a7bb2817.txt rename to allure-report/data/attachments/5473bc31f56d9a8c.txt diff --git a/allure-report/data/attachments/5c2711b7e4875740.txt b/allure-report/data/attachments/55397a95b3056409.txt similarity index 100% rename from allure-report/data/attachments/5c2711b7e4875740.txt rename to allure-report/data/attachments/55397a95b3056409.txt diff --git a/allure-report/data/attachments/4bafaae940d73b69.txt b/allure-report/data/attachments/55f2f3a355e5f2ed.txt similarity index 100% rename from allure-report/data/attachments/4bafaae940d73b69.txt rename to allure-report/data/attachments/55f2f3a355e5f2ed.txt diff --git a/allure-report/data/attachments/6ec9f0fb81f46c5f.txt b/allure-report/data/attachments/57a50be8b38a35c0.txt similarity index 100% rename from allure-report/data/attachments/6ec9f0fb81f46c5f.txt rename to allure-report/data/attachments/57a50be8b38a35c0.txt diff --git a/allure-report/data/attachments/1aea611207a542f.txt b/allure-report/data/attachments/57e00ad1037160b6.txt similarity index 100% rename from allure-report/data/attachments/1aea611207a542f.txt rename to allure-report/data/attachments/57e00ad1037160b6.txt diff --git a/allure-report/data/attachments/e599d37b78101a20.txt b/allure-report/data/attachments/58062fc7761306e3.txt similarity index 100% rename from allure-report/data/attachments/e599d37b78101a20.txt rename to allure-report/data/attachments/58062fc7761306e3.txt diff --git a/allure-report/data/attachments/3fe96e9fb5bb6b3f.txt b/allure-report/data/attachments/58c4828262135699.txt similarity index 100% rename from allure-report/data/attachments/3fe96e9fb5bb6b3f.txt rename to allure-report/data/attachments/58c4828262135699.txt diff --git a/allure-report/data/attachments/54a96af48234a9eb.txt b/allure-report/data/attachments/5932d90eab3398ae.txt similarity index 100% rename from allure-report/data/attachments/54a96af48234a9eb.txt rename to allure-report/data/attachments/5932d90eab3398ae.txt diff --git a/allure-report/data/attachments/5c2daa57ff9298a6.txt b/allure-report/data/attachments/5947f9b7e86e5fe4.txt similarity index 100% rename from allure-report/data/attachments/5c2daa57ff9298a6.txt rename to allure-report/data/attachments/5947f9b7e86e5fe4.txt diff --git a/allure-report/data/attachments/ef8a05f468c4eca0.txt b/allure-report/data/attachments/5967a008f3d7b308.txt similarity index 100% rename from allure-report/data/attachments/ef8a05f468c4eca0.txt rename to allure-report/data/attachments/5967a008f3d7b308.txt diff --git a/allure-report/data/attachments/666caf8f2715f1b6.txt b/allure-report/data/attachments/59ffb265a3e6098c.txt similarity index 100% rename from allure-report/data/attachments/666caf8f2715f1b6.txt rename to allure-report/data/attachments/59ffb265a3e6098c.txt diff --git a/allure-report/data/attachments/c34a92b7a1b9869e.txt b/allure-report/data/attachments/5a774371a2badce6.txt similarity index 100% rename from allure-report/data/attachments/c34a92b7a1b9869e.txt rename to allure-report/data/attachments/5a774371a2badce6.txt diff --git a/allure-report/data/attachments/69c2dd61a98f0df6.txt b/allure-report/data/attachments/5bbee37443803595.txt similarity index 100% rename from allure-report/data/attachments/69c2dd61a98f0df6.txt rename to allure-report/data/attachments/5bbee37443803595.txt diff --git a/allure-report/data/attachments/519607e9e5d7219c.txt b/allure-report/data/attachments/5cd6ffe4ff4d743f.txt similarity index 100% rename from allure-report/data/attachments/519607e9e5d7219c.txt rename to allure-report/data/attachments/5cd6ffe4ff4d743f.txt diff --git a/allure-report/data/attachments/1e123d763e6ea7e5.txt b/allure-report/data/attachments/5d2b03d7ca85feb9.txt similarity index 100% rename from allure-report/data/attachments/1e123d763e6ea7e5.txt rename to allure-report/data/attachments/5d2b03d7ca85feb9.txt diff --git a/allure-report/data/attachments/bb1a14f7acaf229.txt b/allure-report/data/attachments/5d69906a8709b5cf.txt similarity index 100% rename from allure-report/data/attachments/bb1a14f7acaf229.txt rename to allure-report/data/attachments/5d69906a8709b5cf.txt diff --git a/allure-report/data/attachments/1bfd50f00e4c2ad5.txt b/allure-report/data/attachments/5d705772211817a.txt similarity index 100% rename from allure-report/data/attachments/1bfd50f00e4c2ad5.txt rename to allure-report/data/attachments/5d705772211817a.txt diff --git a/allure-report/data/attachments/ca0d330469f49836.txt b/allure-report/data/attachments/5e949b4a7c16c61.txt similarity index 100% rename from allure-report/data/attachments/ca0d330469f49836.txt rename to allure-report/data/attachments/5e949b4a7c16c61.txt diff --git a/allure-report/data/attachments/ca908a3276ec1f33.txt b/allure-report/data/attachments/5f030da14b8e67d2.txt similarity index 100% rename from allure-report/data/attachments/ca908a3276ec1f33.txt rename to allure-report/data/attachments/5f030da14b8e67d2.txt diff --git a/allure-report/data/attachments/14f1a5601096c54c.txt b/allure-report/data/attachments/5f8aca645c6a63be.txt similarity index 100% rename from allure-report/data/attachments/14f1a5601096c54c.txt rename to allure-report/data/attachments/5f8aca645c6a63be.txt diff --git a/allure-report/data/attachments/4db95168982ce3dd.txt b/allure-report/data/attachments/5fb2caa4cfa17eeb.txt similarity index 100% rename from allure-report/data/attachments/4db95168982ce3dd.txt rename to allure-report/data/attachments/5fb2caa4cfa17eeb.txt diff --git a/allure-report/data/attachments/45d7b9435ff3c623.txt b/allure-report/data/attachments/6003c650ea768633.txt similarity index 100% rename from allure-report/data/attachments/45d7b9435ff3c623.txt rename to allure-report/data/attachments/6003c650ea768633.txt diff --git a/allure-report/data/attachments/f5ae4dee965d4aad.txt b/allure-report/data/attachments/60553188e91eeef0.txt similarity index 100% rename from allure-report/data/attachments/f5ae4dee965d4aad.txt rename to allure-report/data/attachments/60553188e91eeef0.txt diff --git a/allure-report/data/attachments/73e237e2a607b73d.txt b/allure-report/data/attachments/609bbc010bbea5b7.txt similarity index 100% rename from allure-report/data/attachments/73e237e2a607b73d.txt rename to allure-report/data/attachments/609bbc010bbea5b7.txt diff --git a/allure-report/data/attachments/2e5a8277ac6080e3.txt b/allure-report/data/attachments/60a8c5c2c7c00ce5.txt similarity index 100% rename from allure-report/data/attachments/2e5a8277ac6080e3.txt rename to allure-report/data/attachments/60a8c5c2c7c00ce5.txt diff --git a/allure-report/data/attachments/e448201e6af0cd65.txt b/allure-report/data/attachments/60b6667cdd104689.txt similarity index 100% rename from allure-report/data/attachments/e448201e6af0cd65.txt rename to allure-report/data/attachments/60b6667cdd104689.txt diff --git a/allure-report/data/attachments/d8b7ee3418e7b9e0.txt b/allure-report/data/attachments/613c4bb712b376ab.txt similarity index 100% rename from allure-report/data/attachments/d8b7ee3418e7b9e0.txt rename to allure-report/data/attachments/613c4bb712b376ab.txt diff --git a/allure-report/data/attachments/8f909ea616537459.txt b/allure-report/data/attachments/6152f64a0232194a.txt similarity index 100% rename from allure-report/data/attachments/8f909ea616537459.txt rename to allure-report/data/attachments/6152f64a0232194a.txt diff --git a/allure-report/data/attachments/678cdbc81118a45c.txt b/allure-report/data/attachments/61785349fe52fbcf.txt similarity index 100% rename from allure-report/data/attachments/678cdbc81118a45c.txt rename to allure-report/data/attachments/61785349fe52fbcf.txt diff --git a/allure-report/data/attachments/6d7dcbe4dae3ba12.txt b/allure-report/data/attachments/61ad30a7c0f382b9.txt similarity index 100% rename from allure-report/data/attachments/6d7dcbe4dae3ba12.txt rename to allure-report/data/attachments/61ad30a7c0f382b9.txt diff --git a/allure-report/data/attachments/1ce9d59c982071d0.txt b/allure-report/data/attachments/633abad852203ff8.txt similarity index 100% rename from allure-report/data/attachments/1ce9d59c982071d0.txt rename to allure-report/data/attachments/633abad852203ff8.txt diff --git a/allure-report/data/attachments/7cd06e1d94c0b146.txt b/allure-report/data/attachments/636126aa0fb68ef3.txt similarity index 100% rename from allure-report/data/attachments/7cd06e1d94c0b146.txt rename to allure-report/data/attachments/636126aa0fb68ef3.txt diff --git a/allure-report/data/attachments/be7449bab7c02e56.txt b/allure-report/data/attachments/6362c8f15fc6c9c0.txt similarity index 100% rename from allure-report/data/attachments/be7449bab7c02e56.txt rename to allure-report/data/attachments/6362c8f15fc6c9c0.txt diff --git a/allure-report/data/attachments/5343662cb85dce05.txt b/allure-report/data/attachments/64228c9b0b57911a.txt similarity index 100% rename from allure-report/data/attachments/5343662cb85dce05.txt rename to allure-report/data/attachments/64228c9b0b57911a.txt diff --git a/allure-report/data/attachments/3fbdb209be30e4e9.txt b/allure-report/data/attachments/653d98a4ef66ecba.txt similarity index 100% rename from allure-report/data/attachments/3fbdb209be30e4e9.txt rename to allure-report/data/attachments/653d98a4ef66ecba.txt diff --git a/allure-report/data/attachments/f27833c43953c1b1.txt b/allure-report/data/attachments/657871840dfd173c.txt similarity index 100% rename from allure-report/data/attachments/f27833c43953c1b1.txt rename to allure-report/data/attachments/657871840dfd173c.txt diff --git a/allure-report/data/attachments/8d52b389398fe1ce.txt b/allure-report/data/attachments/662510f84e87d061.txt similarity index 100% rename from allure-report/data/attachments/8d52b389398fe1ce.txt rename to allure-report/data/attachments/662510f84e87d061.txt diff --git a/allure-report/data/attachments/c52989139561013a.txt b/allure-report/data/attachments/66609ce44d720b41.txt similarity index 100% rename from allure-report/data/attachments/c52989139561013a.txt rename to allure-report/data/attachments/66609ce44d720b41.txt diff --git a/allure-report/data/attachments/273b19c655c226cd.txt b/allure-report/data/attachments/67853a4b20ca2cdb.txt similarity index 100% rename from allure-report/data/attachments/273b19c655c226cd.txt rename to allure-report/data/attachments/67853a4b20ca2cdb.txt diff --git a/allure-report/data/attachments/8a45c99b47ae5bc6.txt b/allure-report/data/attachments/678cbfc79956849c.txt similarity index 100% rename from allure-report/data/attachments/8a45c99b47ae5bc6.txt rename to allure-report/data/attachments/678cbfc79956849c.txt diff --git a/allure-report/data/attachments/cd8ecc1f6b5a44.txt b/allure-report/data/attachments/6a40280d8ceb16cd.txt similarity index 100% rename from allure-report/data/attachments/cd8ecc1f6b5a44.txt rename to allure-report/data/attachments/6a40280d8ceb16cd.txt diff --git a/allure-report/data/attachments/a40dc509f3c7162d.txt b/allure-report/data/attachments/6a90a8741dd8ba1f.txt similarity index 100% rename from allure-report/data/attachments/a40dc509f3c7162d.txt rename to allure-report/data/attachments/6a90a8741dd8ba1f.txt diff --git a/allure-report/data/attachments/22b576ff182f36ef.txt b/allure-report/data/attachments/6c8cae3bc3627567.txt similarity index 100% rename from allure-report/data/attachments/22b576ff182f36ef.txt rename to allure-report/data/attachments/6c8cae3bc3627567.txt diff --git a/allure-report/data/attachments/75f6639f39c4b7d0.txt b/allure-report/data/attachments/6ccbedecdc10bf7c.txt similarity index 100% rename from allure-report/data/attachments/75f6639f39c4b7d0.txt rename to allure-report/data/attachments/6ccbedecdc10bf7c.txt diff --git a/allure-report/data/attachments/2d3f2d22c5115b6e.txt b/allure-report/data/attachments/6d177fc91cdd3978.txt similarity index 100% rename from allure-report/data/attachments/2d3f2d22c5115b6e.txt rename to allure-report/data/attachments/6d177fc91cdd3978.txt diff --git a/allure-report/data/attachments/1e1f708218c48d04.txt b/allure-report/data/attachments/6d3df2dabc5ae756.txt similarity index 100% rename from allure-report/data/attachments/1e1f708218c48d04.txt rename to allure-report/data/attachments/6d3df2dabc5ae756.txt diff --git a/allure-report/data/attachments/ce026a7ada5eb7bc.txt b/allure-report/data/attachments/6d437f4331d47546.txt similarity index 100% rename from allure-report/data/attachments/ce026a7ada5eb7bc.txt rename to allure-report/data/attachments/6d437f4331d47546.txt diff --git a/allure-report/data/attachments/a95c78a9496692b3.txt b/allure-report/data/attachments/6dd9ffa61a5d6299.txt similarity index 100% rename from allure-report/data/attachments/a95c78a9496692b3.txt rename to allure-report/data/attachments/6dd9ffa61a5d6299.txt diff --git a/allure-report/data/attachments/6dccc5ff56326cce.txt b/allure-report/data/attachments/6de140d5a479d77f.txt similarity index 100% rename from allure-report/data/attachments/6dccc5ff56326cce.txt rename to allure-report/data/attachments/6de140d5a479d77f.txt diff --git a/allure-report/data/attachments/97bc633acb769f22.txt b/allure-report/data/attachments/6eedc0bd484f71d7.txt similarity index 100% rename from allure-report/data/attachments/97bc633acb769f22.txt rename to allure-report/data/attachments/6eedc0bd484f71d7.txt diff --git a/allure-report/data/attachments/8c6b281f58e4fbe3.txt b/allure-report/data/attachments/6f187ca9e0f038e3.txt similarity index 100% rename from allure-report/data/attachments/8c6b281f58e4fbe3.txt rename to allure-report/data/attachments/6f187ca9e0f038e3.txt diff --git a/allure-report/data/attachments/12f3e703f687ed41.txt b/allure-report/data/attachments/70a5653f29871a87.txt similarity index 100% rename from allure-report/data/attachments/12f3e703f687ed41.txt rename to allure-report/data/attachments/70a5653f29871a87.txt diff --git a/allure-report/data/attachments/a823a6dcaaab38a.txt b/allure-report/data/attachments/716034871f152875.txt similarity index 100% rename from allure-report/data/attachments/a823a6dcaaab38a.txt rename to allure-report/data/attachments/716034871f152875.txt diff --git a/allure-report/data/attachments/998cb255bcb4a08e.txt b/allure-report/data/attachments/7269f46fd31058ea.txt similarity index 100% rename from allure-report/data/attachments/998cb255bcb4a08e.txt rename to allure-report/data/attachments/7269f46fd31058ea.txt diff --git a/allure-report/data/attachments/40789a2ed03aa082.txt b/allure-report/data/attachments/72987b318aa88c6e.txt similarity index 100% rename from allure-report/data/attachments/40789a2ed03aa082.txt rename to allure-report/data/attachments/72987b318aa88c6e.txt diff --git a/allure-report/data/attachments/e7e4c2d208b9b87.txt b/allure-report/data/attachments/72a8521de031df4e.txt similarity index 100% rename from allure-report/data/attachments/e7e4c2d208b9b87.txt rename to allure-report/data/attachments/72a8521de031df4e.txt diff --git a/allure-report/data/attachments/6cd50ae6a92d4a65.txt b/allure-report/data/attachments/72a9f976cb96a98d.txt similarity index 100% rename from allure-report/data/attachments/6cd50ae6a92d4a65.txt rename to allure-report/data/attachments/72a9f976cb96a98d.txt diff --git a/allure-report/data/attachments/c520dd2a3bb6ed30.txt b/allure-report/data/attachments/72e5eb2953c41fef.txt similarity index 100% rename from allure-report/data/attachments/c520dd2a3bb6ed30.txt rename to allure-report/data/attachments/72e5eb2953c41fef.txt diff --git a/allure-report/data/attachments/d2ebd6c7bb69da29.txt b/allure-report/data/attachments/73b1a6171e8a5d4c.txt similarity index 100% rename from allure-report/data/attachments/d2ebd6c7bb69da29.txt rename to allure-report/data/attachments/73b1a6171e8a5d4c.txt diff --git a/allure-report/data/attachments/b102eb36f048a843.txt b/allure-report/data/attachments/73fc8f8784290b40.txt similarity index 100% rename from allure-report/data/attachments/b102eb36f048a843.txt rename to allure-report/data/attachments/73fc8f8784290b40.txt diff --git a/allure-report/data/attachments/9ef0f4c8246dad00.txt b/allure-report/data/attachments/74cdc928e034d6b3.txt similarity index 100% rename from allure-report/data/attachments/9ef0f4c8246dad00.txt rename to allure-report/data/attachments/74cdc928e034d6b3.txt diff --git a/allure-report/data/attachments/eea11ddd2a3b1d10.txt b/allure-report/data/attachments/74dc839f94675f1c.txt similarity index 100% rename from allure-report/data/attachments/eea11ddd2a3b1d10.txt rename to allure-report/data/attachments/74dc839f94675f1c.txt diff --git a/allure-report/data/attachments/ba31ccf0eed329a1.txt b/allure-report/data/attachments/760dfa55370d45f9.txt similarity index 100% rename from allure-report/data/attachments/ba31ccf0eed329a1.txt rename to allure-report/data/attachments/760dfa55370d45f9.txt diff --git a/allure-report/data/attachments/77adc248069b48d7.txt b/allure-report/data/attachments/763b805ca97b9cb4.txt similarity index 100% rename from allure-report/data/attachments/77adc248069b48d7.txt rename to allure-report/data/attachments/763b805ca97b9cb4.txt diff --git a/allure-report/data/attachments/97827ebef7dd2119.txt b/allure-report/data/attachments/77ebc227660f6677.txt similarity index 100% rename from allure-report/data/attachments/97827ebef7dd2119.txt rename to allure-report/data/attachments/77ebc227660f6677.txt diff --git a/allure-report/data/attachments/b3d5e98a684cd625.txt b/allure-report/data/attachments/780df00dc666cbbd.txt similarity index 100% rename from allure-report/data/attachments/b3d5e98a684cd625.txt rename to allure-report/data/attachments/780df00dc666cbbd.txt diff --git a/allure-report/data/attachments/554fb31ae5f3473b.txt b/allure-report/data/attachments/7899fdb7c4350c2b.txt similarity index 100% rename from allure-report/data/attachments/554fb31ae5f3473b.txt rename to allure-report/data/attachments/7899fdb7c4350c2b.txt diff --git a/allure-report/data/attachments/4988f81545fa9dcf.txt b/allure-report/data/attachments/78bed3c0bc3ed4a.txt similarity index 100% rename from allure-report/data/attachments/4988f81545fa9dcf.txt rename to allure-report/data/attachments/78bed3c0bc3ed4a.txt diff --git a/allure-report/data/attachments/d0b96f0ad42d1de6.txt b/allure-report/data/attachments/78d708b30903548d.txt similarity index 100% rename from allure-report/data/attachments/d0b96f0ad42d1de6.txt rename to allure-report/data/attachments/78d708b30903548d.txt diff --git a/allure-report/data/attachments/3d8fef51a9e30706.txt b/allure-report/data/attachments/796b2b673c5d0f8b.txt similarity index 100% rename from allure-report/data/attachments/3d8fef51a9e30706.txt rename to allure-report/data/attachments/796b2b673c5d0f8b.txt diff --git a/allure-report/data/attachments/246dacd86be04ffa.txt b/allure-report/data/attachments/797fb7eadd505b53.txt similarity index 100% rename from allure-report/data/attachments/246dacd86be04ffa.txt rename to allure-report/data/attachments/797fb7eadd505b53.txt diff --git a/allure-report/data/attachments/b5b702f79cbcea35.txt b/allure-report/data/attachments/7a82343faf93d23b.txt similarity index 100% rename from allure-report/data/attachments/b5b702f79cbcea35.txt rename to allure-report/data/attachments/7a82343faf93d23b.txt diff --git a/allure-report/data/attachments/452e28e5668d68f6.txt b/allure-report/data/attachments/7ac45d8c1df7c43f.txt similarity index 100% rename from allure-report/data/attachments/452e28e5668d68f6.txt rename to allure-report/data/attachments/7ac45d8c1df7c43f.txt diff --git a/allure-report/data/attachments/5f888d9c16f6ee3a.txt b/allure-report/data/attachments/7b12ebc1ff02117.txt similarity index 100% rename from allure-report/data/attachments/5f888d9c16f6ee3a.txt rename to allure-report/data/attachments/7b12ebc1ff02117.txt diff --git a/allure-report/data/attachments/fe536534de68582a.txt b/allure-report/data/attachments/7bf0ce4c1ec59dfa.txt similarity index 100% rename from allure-report/data/attachments/fe536534de68582a.txt rename to allure-report/data/attachments/7bf0ce4c1ec59dfa.txt diff --git a/allure-report/data/attachments/1e1a39cd8bddfb25.txt b/allure-report/data/attachments/7cf8e66e6e1debdd.txt similarity index 100% rename from allure-report/data/attachments/1e1a39cd8bddfb25.txt rename to allure-report/data/attachments/7cf8e66e6e1debdd.txt diff --git a/allure-report/data/attachments/b650a2b5eace42e.txt b/allure-report/data/attachments/8026ef3ff023cc9a.txt similarity index 100% rename from allure-report/data/attachments/b650a2b5eace42e.txt rename to allure-report/data/attachments/8026ef3ff023cc9a.txt diff --git a/allure-report/data/attachments/bfd7eb06540fa1b6.txt b/allure-report/data/attachments/804c421dc94f15f8.txt similarity index 100% rename from allure-report/data/attachments/bfd7eb06540fa1b6.txt rename to allure-report/data/attachments/804c421dc94f15f8.txt diff --git a/allure-report/data/attachments/d1cecae81ecbadad.txt b/allure-report/data/attachments/80cb92b2a68485aa.txt similarity index 100% rename from allure-report/data/attachments/d1cecae81ecbadad.txt rename to allure-report/data/attachments/80cb92b2a68485aa.txt diff --git a/allure-report/data/attachments/d03e7f0ed07eb16c.txt b/allure-report/data/attachments/817f3cd0d39f56b9.txt similarity index 100% rename from allure-report/data/attachments/d03e7f0ed07eb16c.txt rename to allure-report/data/attachments/817f3cd0d39f56b9.txt diff --git a/allure-report/data/attachments/3f14e07d274c2e01.txt b/allure-report/data/attachments/81acaad5616d047a.txt similarity index 100% rename from allure-report/data/attachments/3f14e07d274c2e01.txt rename to allure-report/data/attachments/81acaad5616d047a.txt diff --git a/allure-report/data/attachments/5ab72755d6763015.txt b/allure-report/data/attachments/835e4619c5013fd1.txt similarity index 100% rename from allure-report/data/attachments/5ab72755d6763015.txt rename to allure-report/data/attachments/835e4619c5013fd1.txt diff --git a/allure-report/data/attachments/880a2c92c8612a83.txt b/allure-report/data/attachments/84790cd414c0264a.txt similarity index 100% rename from allure-report/data/attachments/880a2c92c8612a83.txt rename to allure-report/data/attachments/84790cd414c0264a.txt diff --git a/allure-report/data/attachments/8b338c3953869594.txt b/allure-report/data/attachments/850bcf9305b7e315.txt similarity index 100% rename from allure-report/data/attachments/8b338c3953869594.txt rename to allure-report/data/attachments/850bcf9305b7e315.txt diff --git a/allure-report/data/attachments/34515415abccae34.txt b/allure-report/data/attachments/85813043366b6b90.txt similarity index 100% rename from allure-report/data/attachments/34515415abccae34.txt rename to allure-report/data/attachments/85813043366b6b90.txt diff --git a/allure-report/data/attachments/6534e5921b3f960d.txt b/allure-report/data/attachments/85c42dfa3ebb2236.txt similarity index 100% rename from allure-report/data/attachments/6534e5921b3f960d.txt rename to allure-report/data/attachments/85c42dfa3ebb2236.txt diff --git a/allure-report/data/attachments/7757a124114dd519.txt b/allure-report/data/attachments/85d8941907447826.txt similarity index 100% rename from allure-report/data/attachments/7757a124114dd519.txt rename to allure-report/data/attachments/85d8941907447826.txt diff --git a/allure-report/data/attachments/cece8653b698fb5f.txt b/allure-report/data/attachments/8778cf7e4eef01cb.txt similarity index 100% rename from allure-report/data/attachments/cece8653b698fb5f.txt rename to allure-report/data/attachments/8778cf7e4eef01cb.txt diff --git a/allure-report/data/attachments/c703e2fc1b8c856f.txt b/allure-report/data/attachments/87d3adc8617c894b.txt similarity index 100% rename from allure-report/data/attachments/c703e2fc1b8c856f.txt rename to allure-report/data/attachments/87d3adc8617c894b.txt diff --git a/allure-report/data/attachments/eaa46cbb4e98fc76.txt b/allure-report/data/attachments/894b6ecea0eca1b4.txt similarity index 100% rename from allure-report/data/attachments/eaa46cbb4e98fc76.txt rename to allure-report/data/attachments/894b6ecea0eca1b4.txt diff --git a/allure-report/data/attachments/a648c0041b64d7a8.txt b/allure-report/data/attachments/8afe9706a7ce18ad.txt similarity index 100% rename from allure-report/data/attachments/a648c0041b64d7a8.txt rename to allure-report/data/attachments/8afe9706a7ce18ad.txt diff --git a/allure-report/data/attachments/e89f9d3c4680bc47.txt b/allure-report/data/attachments/8b971d66be6d6e40.txt similarity index 100% rename from allure-report/data/attachments/e89f9d3c4680bc47.txt rename to allure-report/data/attachments/8b971d66be6d6e40.txt diff --git a/allure-report/data/attachments/8a1d25baaaa2cac0.txt b/allure-report/data/attachments/8bb1795fd7e9c165.txt similarity index 100% rename from allure-report/data/attachments/8a1d25baaaa2cac0.txt rename to allure-report/data/attachments/8bb1795fd7e9c165.txt diff --git a/allure-report/data/attachments/f8b59f79bb13d8ea.txt b/allure-report/data/attachments/8c55c5917aa6e797.txt similarity index 100% rename from allure-report/data/attachments/f8b59f79bb13d8ea.txt rename to allure-report/data/attachments/8c55c5917aa6e797.txt diff --git a/allure-report/data/attachments/e6328cf6a3bf7297.txt b/allure-report/data/attachments/8d340a810a5e354f.txt similarity index 100% rename from allure-report/data/attachments/e6328cf6a3bf7297.txt rename to allure-report/data/attachments/8d340a810a5e354f.txt diff --git a/allure-report/data/attachments/e321f5d691b52e57.txt b/allure-report/data/attachments/8e812b8e3303683b.txt similarity index 100% rename from allure-report/data/attachments/e321f5d691b52e57.txt rename to allure-report/data/attachments/8e812b8e3303683b.txt diff --git a/allure-report/data/attachments/cd5591b59d574128.txt b/allure-report/data/attachments/8ecb0410a6ed3d7.txt similarity index 100% rename from allure-report/data/attachments/cd5591b59d574128.txt rename to allure-report/data/attachments/8ecb0410a6ed3d7.txt diff --git a/allure-report/data/attachments/32849bcbd7d5b064.txt b/allure-report/data/attachments/8fe17348ea95e36a.txt similarity index 100% rename from allure-report/data/attachments/32849bcbd7d5b064.txt rename to allure-report/data/attachments/8fe17348ea95e36a.txt diff --git a/allure-report/data/attachments/c319238385a5cb6d.txt b/allure-report/data/attachments/912408d5d8c9a319.txt similarity index 100% rename from allure-report/data/attachments/c319238385a5cb6d.txt rename to allure-report/data/attachments/912408d5d8c9a319.txt diff --git a/allure-report/data/attachments/c258bec5b6c8eafe.txt b/allure-report/data/attachments/94063c17619b52a4.txt similarity index 100% rename from allure-report/data/attachments/c258bec5b6c8eafe.txt rename to allure-report/data/attachments/94063c17619b52a4.txt diff --git a/allure-report/data/attachments/d6941eaebe2a3ba3.txt b/allure-report/data/attachments/943e8734629abe38.txt similarity index 100% rename from allure-report/data/attachments/d6941eaebe2a3ba3.txt rename to allure-report/data/attachments/943e8734629abe38.txt diff --git a/allure-report/data/attachments/486146c7b14fd6fd.txt b/allure-report/data/attachments/9473dcf11398d47e.txt similarity index 100% rename from allure-report/data/attachments/486146c7b14fd6fd.txt rename to allure-report/data/attachments/9473dcf11398d47e.txt diff --git a/allure-report/data/attachments/a1418ed9afde7ea1.txt b/allure-report/data/attachments/94e9d8b306bae268.txt similarity index 100% rename from allure-report/data/attachments/a1418ed9afde7ea1.txt rename to allure-report/data/attachments/94e9d8b306bae268.txt diff --git a/allure-report/data/attachments/ad44f1f08939323f.txt b/allure-report/data/attachments/96a11dda30514e67.txt similarity index 100% rename from allure-report/data/attachments/ad44f1f08939323f.txt rename to allure-report/data/attachments/96a11dda30514e67.txt diff --git a/allure-report/data/attachments/2fb64bb60201538c.txt b/allure-report/data/attachments/96d9a9c4b2d76831.txt similarity index 100% rename from allure-report/data/attachments/2fb64bb60201538c.txt rename to allure-report/data/attachments/96d9a9c4b2d76831.txt diff --git a/allure-report/data/attachments/b0341cfdabd60782.txt b/allure-report/data/attachments/9799e3f6110c5a32.txt similarity index 100% rename from allure-report/data/attachments/b0341cfdabd60782.txt rename to allure-report/data/attachments/9799e3f6110c5a32.txt diff --git a/allure-report/data/attachments/5d574363acc62acc.txt b/allure-report/data/attachments/97c0819228c5b269.txt similarity index 100% rename from allure-report/data/attachments/5d574363acc62acc.txt rename to allure-report/data/attachments/97c0819228c5b269.txt diff --git a/allure-report/data/attachments/c452ee18f96c325a.txt b/allure-report/data/attachments/9905895b50875943.txt similarity index 100% rename from allure-report/data/attachments/c452ee18f96c325a.txt rename to allure-report/data/attachments/9905895b50875943.txt diff --git a/allure-report/data/attachments/ff15e181fd0e6388.txt b/allure-report/data/attachments/9970c74c966a73af.txt similarity index 100% rename from allure-report/data/attachments/ff15e181fd0e6388.txt rename to allure-report/data/attachments/9970c74c966a73af.txt diff --git a/allure-report/data/attachments/282ef4a825ddd5b7.txt b/allure-report/data/attachments/998c70b07f1415e5.txt similarity index 100% rename from allure-report/data/attachments/282ef4a825ddd5b7.txt rename to allure-report/data/attachments/998c70b07f1415e5.txt diff --git a/allure-report/data/attachments/f375c406aca5ef66.txt b/allure-report/data/attachments/9999070a00162057.txt similarity index 100% rename from allure-report/data/attachments/f375c406aca5ef66.txt rename to allure-report/data/attachments/9999070a00162057.txt diff --git a/allure-report/data/attachments/9047acd474e52c7c.txt b/allure-report/data/attachments/9b1c37b21b76b29e.txt similarity index 100% rename from allure-report/data/attachments/9047acd474e52c7c.txt rename to allure-report/data/attachments/9b1c37b21b76b29e.txt diff --git a/allure-report/data/attachments/cc9e92a1032075c9.txt b/allure-report/data/attachments/9b3917a8b59d5897.txt similarity index 100% rename from allure-report/data/attachments/cc9e92a1032075c9.txt rename to allure-report/data/attachments/9b3917a8b59d5897.txt diff --git a/allure-report/data/attachments/cca44b266aa98436.txt b/allure-report/data/attachments/9ca1d978c6df1121.txt similarity index 100% rename from allure-report/data/attachments/cca44b266aa98436.txt rename to allure-report/data/attachments/9ca1d978c6df1121.txt diff --git a/allure-report/data/attachments/cda2f56ac699fd36.txt b/allure-report/data/attachments/9d7d21f763543a21.txt similarity index 100% rename from allure-report/data/attachments/cda2f56ac699fd36.txt rename to allure-report/data/attachments/9d7d21f763543a21.txt diff --git a/allure-report/data/attachments/5e25d7437b08e659.txt b/allure-report/data/attachments/9e245b3b58a92040.txt similarity index 100% rename from allure-report/data/attachments/5e25d7437b08e659.txt rename to allure-report/data/attachments/9e245b3b58a92040.txt diff --git a/allure-report/data/attachments/47ba37195574156f.txt b/allure-report/data/attachments/9e367429b8224516.txt similarity index 100% rename from allure-report/data/attachments/47ba37195574156f.txt rename to allure-report/data/attachments/9e367429b8224516.txt diff --git a/allure-report/data/attachments/b18a61fc243fdba8.txt b/allure-report/data/attachments/9e567229f9ee12b7.txt similarity index 100% rename from allure-report/data/attachments/b18a61fc243fdba8.txt rename to allure-report/data/attachments/9e567229f9ee12b7.txt diff --git a/allure-report/data/attachments/3f23fd2a44d74bcb.txt b/allure-report/data/attachments/9e573d2ead28469f.txt similarity index 100% rename from allure-report/data/attachments/3f23fd2a44d74bcb.txt rename to allure-report/data/attachments/9e573d2ead28469f.txt diff --git a/allure-report/data/attachments/75eae5551f423f5f.txt b/allure-report/data/attachments/9f73c3d7a4d872db.txt similarity index 100% rename from allure-report/data/attachments/75eae5551f423f5f.txt rename to allure-report/data/attachments/9f73c3d7a4d872db.txt diff --git a/allure-report/data/attachments/d85ac6726b459082.txt b/allure-report/data/attachments/9f9ce9c609c0bc6d.txt similarity index 100% rename from allure-report/data/attachments/d85ac6726b459082.txt rename to allure-report/data/attachments/9f9ce9c609c0bc6d.txt diff --git a/allure-report/data/attachments/b82715c67d99ec0e.txt b/allure-report/data/attachments/9fbeafabb75260d1.txt similarity index 100% rename from allure-report/data/attachments/b82715c67d99ec0e.txt rename to allure-report/data/attachments/9fbeafabb75260d1.txt diff --git a/allure-report/data/attachments/4143349f87c576ac.txt b/allure-report/data/attachments/a21b9ca1dd2e7b86.txt similarity index 100% rename from allure-report/data/attachments/4143349f87c576ac.txt rename to allure-report/data/attachments/a21b9ca1dd2e7b86.txt diff --git a/allure-report/data/attachments/1f33a24130d10b19.txt b/allure-report/data/attachments/a2484027e285a197.txt similarity index 100% rename from allure-report/data/attachments/1f33a24130d10b19.txt rename to allure-report/data/attachments/a2484027e285a197.txt diff --git a/allure-report/data/attachments/537ecc9a719af32f.txt b/allure-report/data/attachments/a3653a5d01cb978a.txt similarity index 100% rename from allure-report/data/attachments/537ecc9a719af32f.txt rename to allure-report/data/attachments/a3653a5d01cb978a.txt diff --git a/allure-report/data/attachments/e7393a784e166457.txt b/allure-report/data/attachments/a3b3cc61f9d4e36a.txt similarity index 100% rename from allure-report/data/attachments/e7393a784e166457.txt rename to allure-report/data/attachments/a3b3cc61f9d4e36a.txt diff --git a/allure-report/data/attachments/6ee6aafaeecdbf.txt b/allure-report/data/attachments/a42bbda54a679e90.txt similarity index 100% rename from allure-report/data/attachments/6ee6aafaeecdbf.txt rename to allure-report/data/attachments/a42bbda54a679e90.txt diff --git a/allure-report/data/attachments/8a8a2d0c90cfef1e.txt b/allure-report/data/attachments/a45595e4822528c2.txt similarity index 100% rename from allure-report/data/attachments/8a8a2d0c90cfef1e.txt rename to allure-report/data/attachments/a45595e4822528c2.txt diff --git a/allure-report/data/attachments/e3dd9c2915855555.txt b/allure-report/data/attachments/a66e2ef0dd5ae597.txt similarity index 100% rename from allure-report/data/attachments/e3dd9c2915855555.txt rename to allure-report/data/attachments/a66e2ef0dd5ae597.txt diff --git a/allure-report/data/attachments/d8ed65aadf059368.txt b/allure-report/data/attachments/a68de0f4d0253c8.txt similarity index 100% rename from allure-report/data/attachments/d8ed65aadf059368.txt rename to allure-report/data/attachments/a68de0f4d0253c8.txt diff --git a/allure-report/data/attachments/63652035df5cd6e2.txt b/allure-report/data/attachments/a6b1894a1d267067.txt similarity index 100% rename from allure-report/data/attachments/63652035df5cd6e2.txt rename to allure-report/data/attachments/a6b1894a1d267067.txt diff --git a/allure-report/data/attachments/f5a2b8e600c203d1.txt b/allure-report/data/attachments/a77304cbd9f33e1a.txt similarity index 100% rename from allure-report/data/attachments/f5a2b8e600c203d1.txt rename to allure-report/data/attachments/a77304cbd9f33e1a.txt diff --git a/allure-report/data/attachments/e2e513778c4c6c4f.txt b/allure-report/data/attachments/a85d028b53b2fa36.txt similarity index 100% rename from allure-report/data/attachments/e2e513778c4c6c4f.txt rename to allure-report/data/attachments/a85d028b53b2fa36.txt diff --git a/allure-report/data/attachments/394707a7900b643f.txt b/allure-report/data/attachments/a8645f795d532c99.txt similarity index 100% rename from allure-report/data/attachments/394707a7900b643f.txt rename to allure-report/data/attachments/a8645f795d532c99.txt diff --git a/allure-report/data/attachments/d8f05623e6466063.txt b/allure-report/data/attachments/a9137c6294090d64.txt similarity index 100% rename from allure-report/data/attachments/d8f05623e6466063.txt rename to allure-report/data/attachments/a9137c6294090d64.txt diff --git a/allure-report/data/attachments/ffe9d790c546ddb7.txt b/allure-report/data/attachments/a93887f366c469bf.txt similarity index 100% rename from allure-report/data/attachments/ffe9d790c546ddb7.txt rename to allure-report/data/attachments/a93887f366c469bf.txt diff --git a/allure-report/data/attachments/bee515a36bc2165b.txt b/allure-report/data/attachments/a96837b21492cfc6.txt similarity index 100% rename from allure-report/data/attachments/bee515a36bc2165b.txt rename to allure-report/data/attachments/a96837b21492cfc6.txt diff --git a/allure-report/data/attachments/ca8a9ae1b56b4086.txt b/allure-report/data/attachments/aa1c2e562160f609.txt similarity index 100% rename from allure-report/data/attachments/ca8a9ae1b56b4086.txt rename to allure-report/data/attachments/aa1c2e562160f609.txt diff --git a/allure-report/data/attachments/c77e43a426f47681.txt b/allure-report/data/attachments/abb95e0c50272d33.txt similarity index 100% rename from allure-report/data/attachments/c77e43a426f47681.txt rename to allure-report/data/attachments/abb95e0c50272d33.txt diff --git a/allure-report/data/attachments/8e484f9bfa00ca83.txt b/allure-report/data/attachments/abff3e6ddecc6408.txt similarity index 100% rename from allure-report/data/attachments/8e484f9bfa00ca83.txt rename to allure-report/data/attachments/abff3e6ddecc6408.txt diff --git a/allure-report/data/attachments/1f7ee012a96ef9b6.txt b/allure-report/data/attachments/ad735a94d30c45bf.txt similarity index 100% rename from allure-report/data/attachments/1f7ee012a96ef9b6.txt rename to allure-report/data/attachments/ad735a94d30c45bf.txt diff --git a/allure-report/data/attachments/929957d5beb797a6.txt b/allure-report/data/attachments/afa2344a5891233b.txt similarity index 100% rename from allure-report/data/attachments/929957d5beb797a6.txt rename to allure-report/data/attachments/afa2344a5891233b.txt diff --git a/allure-report/data/attachments/f50d22d7c09cd383.txt b/allure-report/data/attachments/b010be274d24546e.txt similarity index 100% rename from allure-report/data/attachments/f50d22d7c09cd383.txt rename to allure-report/data/attachments/b010be274d24546e.txt diff --git a/allure-report/data/attachments/56be0299a0ca1906.txt b/allure-report/data/attachments/b1cd53c85d21b130.txt similarity index 100% rename from allure-report/data/attachments/56be0299a0ca1906.txt rename to allure-report/data/attachments/b1cd53c85d21b130.txt diff --git a/allure-report/data/attachments/7f3ec04c5333a588.txt b/allure-report/data/attachments/b1edf41b3f6059d4.txt similarity index 100% rename from allure-report/data/attachments/7f3ec04c5333a588.txt rename to allure-report/data/attachments/b1edf41b3f6059d4.txt diff --git a/allure-report/data/attachments/6d216ad47549f357.txt b/allure-report/data/attachments/b3163cc1ff017e55.txt similarity index 100% rename from allure-report/data/attachments/6d216ad47549f357.txt rename to allure-report/data/attachments/b3163cc1ff017e55.txt diff --git a/allure-report/data/attachments/3a4c00d99760de4b.txt b/allure-report/data/attachments/b38075c83e7baebb.txt similarity index 100% rename from allure-report/data/attachments/3a4c00d99760de4b.txt rename to allure-report/data/attachments/b38075c83e7baebb.txt diff --git a/allure-report/data/attachments/77c66732e5fdad66.txt b/allure-report/data/attachments/b3d868139d71d5f7.txt similarity index 100% rename from allure-report/data/attachments/77c66732e5fdad66.txt rename to allure-report/data/attachments/b3d868139d71d5f7.txt diff --git a/allure-report/data/attachments/939b7ea8b8b69174.txt b/allure-report/data/attachments/b3fc324c4038294.txt similarity index 100% rename from allure-report/data/attachments/939b7ea8b8b69174.txt rename to allure-report/data/attachments/b3fc324c4038294.txt diff --git a/allure-report/data/attachments/ce20c6dd4e02cb56.txt b/allure-report/data/attachments/b56e36dfb1d3c6b9.txt similarity index 100% rename from allure-report/data/attachments/ce20c6dd4e02cb56.txt rename to allure-report/data/attachments/b56e36dfb1d3c6b9.txt diff --git a/allure-report/data/attachments/19d9a21eca90a0a9.txt b/allure-report/data/attachments/b668f07fa0a63017.txt similarity index 100% rename from allure-report/data/attachments/19d9a21eca90a0a9.txt rename to allure-report/data/attachments/b668f07fa0a63017.txt diff --git a/allure-report/data/attachments/36d455921a73202d.txt b/allure-report/data/attachments/b75f0fc5a14ca4fd.txt similarity index 100% rename from allure-report/data/attachments/36d455921a73202d.txt rename to allure-report/data/attachments/b75f0fc5a14ca4fd.txt diff --git a/allure-report/data/attachments/ff2bf17d38e7cc3b.txt b/allure-report/data/attachments/b7eae48ecc824334.txt similarity index 100% rename from allure-report/data/attachments/ff2bf17d38e7cc3b.txt rename to allure-report/data/attachments/b7eae48ecc824334.txt diff --git a/allure-report/data/attachments/2b6038e2de6e977a.txt b/allure-report/data/attachments/b8984e5480e91547.txt similarity index 100% rename from allure-report/data/attachments/2b6038e2de6e977a.txt rename to allure-report/data/attachments/b8984e5480e91547.txt diff --git a/allure-report/data/attachments/a3957b3e858fa9c0.txt b/allure-report/data/attachments/b9b51ca36b85ae94.txt similarity index 100% rename from allure-report/data/attachments/a3957b3e858fa9c0.txt rename to allure-report/data/attachments/b9b51ca36b85ae94.txt diff --git a/allure-report/data/attachments/aa8cd00c6909033a.txt b/allure-report/data/attachments/ba852967ab446eeb.txt similarity index 100% rename from allure-report/data/attachments/aa8cd00c6909033a.txt rename to allure-report/data/attachments/ba852967ab446eeb.txt diff --git a/allure-report/data/attachments/5e1e694e393088b4.txt b/allure-report/data/attachments/baaad4c171b47b9e.txt similarity index 100% rename from allure-report/data/attachments/5e1e694e393088b4.txt rename to allure-report/data/attachments/baaad4c171b47b9e.txt diff --git a/allure-report/data/attachments/fc0a9047ac128608.txt b/allure-report/data/attachments/baac53f2bcc51cfd.txt similarity index 100% rename from allure-report/data/attachments/fc0a9047ac128608.txt rename to allure-report/data/attachments/baac53f2bcc51cfd.txt diff --git a/allure-report/data/attachments/ef12aa7c4aaaeed2.txt b/allure-report/data/attachments/bbc90d26ad4a4f8d.txt similarity index 100% rename from allure-report/data/attachments/ef12aa7c4aaaeed2.txt rename to allure-report/data/attachments/bbc90d26ad4a4f8d.txt diff --git a/allure-report/data/attachments/73d36ba66285cf8e.txt b/allure-report/data/attachments/bc75ae4e4dd30a2d.txt similarity index 100% rename from allure-report/data/attachments/73d36ba66285cf8e.txt rename to allure-report/data/attachments/bc75ae4e4dd30a2d.txt diff --git a/allure-report/data/attachments/9b1bb88dc50af4ea.txt b/allure-report/data/attachments/bcefb385384ff8bd.txt similarity index 100% rename from allure-report/data/attachments/9b1bb88dc50af4ea.txt rename to allure-report/data/attachments/bcefb385384ff8bd.txt diff --git a/allure-report/data/attachments/8ef3c2609186193.txt b/allure-report/data/attachments/bcfe223ecfa6a3c6.txt similarity index 100% rename from allure-report/data/attachments/8ef3c2609186193.txt rename to allure-report/data/attachments/bcfe223ecfa6a3c6.txt diff --git a/allure-report/data/attachments/d01b1971a8a3587e.txt b/allure-report/data/attachments/be09c92a6fe0ac60.txt similarity index 100% rename from allure-report/data/attachments/d01b1971a8a3587e.txt rename to allure-report/data/attachments/be09c92a6fe0ac60.txt diff --git a/allure-report/data/attachments/ef14b2090647c37e.txt b/allure-report/data/attachments/c2e7b358c14deeef.txt similarity index 100% rename from allure-report/data/attachments/ef14b2090647c37e.txt rename to allure-report/data/attachments/c2e7b358c14deeef.txt diff --git a/allure-report/data/attachments/ccdd1b5f063278d8.txt b/allure-report/data/attachments/c37932e6bf05499f.txt similarity index 100% rename from allure-report/data/attachments/ccdd1b5f063278d8.txt rename to allure-report/data/attachments/c37932e6bf05499f.txt diff --git a/allure-report/data/attachments/37e73f373251accf.txt b/allure-report/data/attachments/c396a9cbff279a34.txt similarity index 100% rename from allure-report/data/attachments/37e73f373251accf.txt rename to allure-report/data/attachments/c396a9cbff279a34.txt diff --git a/allure-report/data/attachments/dea157c47f361971.txt b/allure-report/data/attachments/c41bf0bbb023a57f.txt similarity index 100% rename from allure-report/data/attachments/dea157c47f361971.txt rename to allure-report/data/attachments/c41bf0bbb023a57f.txt diff --git a/allure-report/data/attachments/a3e3342383736358.txt b/allure-report/data/attachments/c5a486abc69fc1fc.txt similarity index 100% rename from allure-report/data/attachments/a3e3342383736358.txt rename to allure-report/data/attachments/c5a486abc69fc1fc.txt diff --git a/allure-report/data/attachments/a5fae94f2517e85b.txt b/allure-report/data/attachments/c81a97703cb852b3.txt similarity index 100% rename from allure-report/data/attachments/a5fae94f2517e85b.txt rename to allure-report/data/attachments/c81a97703cb852b3.txt diff --git a/allure-report/data/attachments/c38727f5bb9d52ae.txt b/allure-report/data/attachments/c9000a1177d78061.txt similarity index 100% rename from allure-report/data/attachments/c38727f5bb9d52ae.txt rename to allure-report/data/attachments/c9000a1177d78061.txt diff --git a/allure-report/data/attachments/f0a043619d2b0689.txt b/allure-report/data/attachments/c9806239f448fcb9.txt similarity index 100% rename from allure-report/data/attachments/f0a043619d2b0689.txt rename to allure-report/data/attachments/c9806239f448fcb9.txt diff --git a/allure-report/data/attachments/f180498d197d8df1.txt b/allure-report/data/attachments/c9b22cc9dc28f439.txt similarity index 100% rename from allure-report/data/attachments/f180498d197d8df1.txt rename to allure-report/data/attachments/c9b22cc9dc28f439.txt diff --git a/allure-report/data/attachments/e41ceec6c0cda082.txt b/allure-report/data/attachments/ca30023d79faffff.txt similarity index 100% rename from allure-report/data/attachments/e41ceec6c0cda082.txt rename to allure-report/data/attachments/ca30023d79faffff.txt diff --git a/allure-report/data/attachments/fac594686b0a84bd.txt b/allure-report/data/attachments/ca809417038f1f70.txt similarity index 100% rename from allure-report/data/attachments/fac594686b0a84bd.txt rename to allure-report/data/attachments/ca809417038f1f70.txt diff --git a/allure-report/data/attachments/45655b08b75495d0.txt b/allure-report/data/attachments/cbf43f2ebe410372.txt similarity index 100% rename from allure-report/data/attachments/45655b08b75495d0.txt rename to allure-report/data/attachments/cbf43f2ebe410372.txt diff --git a/allure-report/data/attachments/bf8644536e05f3d6.txt b/allure-report/data/attachments/cc1b1893c2b8b52d.txt similarity index 100% rename from allure-report/data/attachments/bf8644536e05f3d6.txt rename to allure-report/data/attachments/cc1b1893c2b8b52d.txt diff --git a/allure-report/data/attachments/f329250c4d2cb198.txt b/allure-report/data/attachments/cc532e29d77b891e.txt similarity index 100% rename from allure-report/data/attachments/f329250c4d2cb198.txt rename to allure-report/data/attachments/cc532e29d77b891e.txt diff --git a/allure-report/data/attachments/ab4c5be84836fafb.txt b/allure-report/data/attachments/cd297c98bb2f9177.txt similarity index 100% rename from allure-report/data/attachments/ab4c5be84836fafb.txt rename to allure-report/data/attachments/cd297c98bb2f9177.txt diff --git a/allure-report/data/attachments/1629f3862628691e.txt b/allure-report/data/attachments/cd47dccaf2814ffa.txt similarity index 100% rename from allure-report/data/attachments/1629f3862628691e.txt rename to allure-report/data/attachments/cd47dccaf2814ffa.txt diff --git a/allure-report/data/attachments/e04892408ba7673f.txt b/allure-report/data/attachments/cfdd9038af68abcd.txt similarity index 100% rename from allure-report/data/attachments/e04892408ba7673f.txt rename to allure-report/data/attachments/cfdd9038af68abcd.txt diff --git a/allure-report/data/attachments/21cec5980af4ec14.txt b/allure-report/data/attachments/cff9f69ec70ee0f7.txt similarity index 100% rename from allure-report/data/attachments/21cec5980af4ec14.txt rename to allure-report/data/attachments/cff9f69ec70ee0f7.txt diff --git a/allure-report/data/attachments/c0c4047155365dbf.txt b/allure-report/data/attachments/d03a9a8c81cbe39f.txt similarity index 100% rename from allure-report/data/attachments/c0c4047155365dbf.txt rename to allure-report/data/attachments/d03a9a8c81cbe39f.txt diff --git a/allure-report/data/attachments/d1bf3e067845857a.txt b/allure-report/data/attachments/d07a2236fba5201a.txt similarity index 100% rename from allure-report/data/attachments/d1bf3e067845857a.txt rename to allure-report/data/attachments/d07a2236fba5201a.txt diff --git a/allure-report/data/attachments/98b58e86a56b6f3b.txt b/allure-report/data/attachments/d0bc1ad841243b6a.txt similarity index 100% rename from allure-report/data/attachments/98b58e86a56b6f3b.txt rename to allure-report/data/attachments/d0bc1ad841243b6a.txt diff --git a/allure-report/data/attachments/3e79fdee962a6c7a.txt b/allure-report/data/attachments/d10d4fe51ef67a7e.txt similarity index 100% rename from allure-report/data/attachments/3e79fdee962a6c7a.txt rename to allure-report/data/attachments/d10d4fe51ef67a7e.txt diff --git a/allure-report/data/attachments/e11dfdc5beea1549.txt b/allure-report/data/attachments/d1599295a3f41ee0.txt similarity index 100% rename from allure-report/data/attachments/e11dfdc5beea1549.txt rename to allure-report/data/attachments/d1599295a3f41ee0.txt diff --git a/allure-report/data/attachments/dd695e9095070885.txt b/allure-report/data/attachments/d1ef36a16a608c99.txt similarity index 100% rename from allure-report/data/attachments/dd695e9095070885.txt rename to allure-report/data/attachments/d1ef36a16a608c99.txt diff --git a/allure-report/data/attachments/aef94a39bd8b19be.txt b/allure-report/data/attachments/d21731264b505a67.txt similarity index 100% rename from allure-report/data/attachments/aef94a39bd8b19be.txt rename to allure-report/data/attachments/d21731264b505a67.txt diff --git a/allure-report/data/attachments/b2176623a3e27602.txt b/allure-report/data/attachments/d22073d8d3352f3e.txt similarity index 100% rename from allure-report/data/attachments/b2176623a3e27602.txt rename to allure-report/data/attachments/d22073d8d3352f3e.txt diff --git a/allure-report/data/attachments/fae7f8901012b2cd.txt b/allure-report/data/attachments/d23d24d51ab0f2ec.txt similarity index 100% rename from allure-report/data/attachments/fae7f8901012b2cd.txt rename to allure-report/data/attachments/d23d24d51ab0f2ec.txt diff --git a/allure-report/data/attachments/efae8b9f43d09441.txt b/allure-report/data/attachments/d2685b3f41e9f61c.txt similarity index 100% rename from allure-report/data/attachments/efae8b9f43d09441.txt rename to allure-report/data/attachments/d2685b3f41e9f61c.txt diff --git a/allure-report/data/attachments/f5c031a187e70f58.txt b/allure-report/data/attachments/d31f2c0a44e75654.txt similarity index 100% rename from allure-report/data/attachments/f5c031a187e70f58.txt rename to allure-report/data/attachments/d31f2c0a44e75654.txt diff --git a/allure-report/data/attachments/c5afc30c761eea74.txt b/allure-report/data/attachments/d38be6ef6dfa6828.txt similarity index 100% rename from allure-report/data/attachments/c5afc30c761eea74.txt rename to allure-report/data/attachments/d38be6ef6dfa6828.txt diff --git a/allure-report/data/attachments/7dd6b645422c34b6.txt b/allure-report/data/attachments/d3d4f5edff7b23a8.txt similarity index 100% rename from allure-report/data/attachments/7dd6b645422c34b6.txt rename to allure-report/data/attachments/d3d4f5edff7b23a8.txt diff --git a/allure-report/data/attachments/e0673a9df06bdbef.txt b/allure-report/data/attachments/d473fba435502d8.txt similarity index 100% rename from allure-report/data/attachments/e0673a9df06bdbef.txt rename to allure-report/data/attachments/d473fba435502d8.txt diff --git a/allure-report/data/attachments/ce2512d2a26a891e.txt b/allure-report/data/attachments/d497d06498897878.txt similarity index 100% rename from allure-report/data/attachments/ce2512d2a26a891e.txt rename to allure-report/data/attachments/d497d06498897878.txt diff --git a/allure-report/data/attachments/67751593ff534b14.txt b/allure-report/data/attachments/d4f2ea957f6fd3d1.txt similarity index 100% rename from allure-report/data/attachments/67751593ff534b14.txt rename to allure-report/data/attachments/d4f2ea957f6fd3d1.txt diff --git a/allure-report/data/attachments/760266e95eacb400.txt b/allure-report/data/attachments/d53bb0f8a7466de9.txt similarity index 100% rename from allure-report/data/attachments/760266e95eacb400.txt rename to allure-report/data/attachments/d53bb0f8a7466de9.txt diff --git a/allure-report/data/attachments/a62856bc357d2685.txt b/allure-report/data/attachments/d5812afb446c78ce.txt similarity index 100% rename from allure-report/data/attachments/a62856bc357d2685.txt rename to allure-report/data/attachments/d5812afb446c78ce.txt diff --git a/allure-report/data/attachments/f24a53f1fea24b32.txt b/allure-report/data/attachments/d8719a36b49cd420.txt similarity index 100% rename from allure-report/data/attachments/f24a53f1fea24b32.txt rename to allure-report/data/attachments/d8719a36b49cd420.txt diff --git a/allure-report/data/attachments/e160bbe65fc37bcd.txt b/allure-report/data/attachments/d8a2a5280a09e0f4.txt similarity index 100% rename from allure-report/data/attachments/e160bbe65fc37bcd.txt rename to allure-report/data/attachments/d8a2a5280a09e0f4.txt diff --git a/allure-report/data/attachments/d43641784540be20.txt b/allure-report/data/attachments/d9ffb014ecda8013.txt similarity index 100% rename from allure-report/data/attachments/d43641784540be20.txt rename to allure-report/data/attachments/d9ffb014ecda8013.txt diff --git a/allure-report/data/attachments/6d73a4f3af439d6.txt b/allure-report/data/attachments/da21be7860f58cf6.txt similarity index 100% rename from allure-report/data/attachments/6d73a4f3af439d6.txt rename to allure-report/data/attachments/da21be7860f58cf6.txt diff --git a/allure-report/data/attachments/fdbdb95799e89350.txt b/allure-report/data/attachments/db8507235524f855.txt similarity index 100% rename from allure-report/data/attachments/fdbdb95799e89350.txt rename to allure-report/data/attachments/db8507235524f855.txt diff --git a/allure-report/data/attachments/d9853791dbf86dfe.txt b/allure-report/data/attachments/dc735d6cbaa38cba.txt similarity index 100% rename from allure-report/data/attachments/d9853791dbf86dfe.txt rename to allure-report/data/attachments/dc735d6cbaa38cba.txt diff --git a/allure-report/data/attachments/30a819977a6f7bba.txt b/allure-report/data/attachments/dd8004b465c9b5f8.txt similarity index 100% rename from allure-report/data/attachments/30a819977a6f7bba.txt rename to allure-report/data/attachments/dd8004b465c9b5f8.txt diff --git a/allure-report/data/attachments/e3a1df6b2bd53059.txt b/allure-report/data/attachments/df41cf6b46c44c9e.txt similarity index 100% rename from allure-report/data/attachments/e3a1df6b2bd53059.txt rename to allure-report/data/attachments/df41cf6b46c44c9e.txt diff --git a/allure-report/data/attachments/7a383696eff0b379.txt b/allure-report/data/attachments/dfbdbb71de71756e.txt similarity index 100% rename from allure-report/data/attachments/7a383696eff0b379.txt rename to allure-report/data/attachments/dfbdbb71de71756e.txt diff --git a/allure-report/data/attachments/a66ea3c1c7d07513.txt b/allure-report/data/attachments/e01af9821f0d361c.txt similarity index 100% rename from allure-report/data/attachments/a66ea3c1c7d07513.txt rename to allure-report/data/attachments/e01af9821f0d361c.txt diff --git a/allure-report/data/attachments/b94b97d784c6cf01.txt b/allure-report/data/attachments/e07fc7bf167a48cd.txt similarity index 100% rename from allure-report/data/attachments/b94b97d784c6cf01.txt rename to allure-report/data/attachments/e07fc7bf167a48cd.txt diff --git a/allure-report/data/attachments/2dbf09b568ff5668.txt b/allure-report/data/attachments/e084f22fa99f8e9d.txt similarity index 100% rename from allure-report/data/attachments/2dbf09b568ff5668.txt rename to allure-report/data/attachments/e084f22fa99f8e9d.txt diff --git a/allure-report/data/attachments/cfc199981b020b59.txt b/allure-report/data/attachments/e1032190833aaac7.txt similarity index 100% rename from allure-report/data/attachments/cfc199981b020b59.txt rename to allure-report/data/attachments/e1032190833aaac7.txt diff --git a/allure-report/data/attachments/d7dd41e46efca9ee.txt b/allure-report/data/attachments/e22a14740da9552.txt similarity index 100% rename from allure-report/data/attachments/d7dd41e46efca9ee.txt rename to allure-report/data/attachments/e22a14740da9552.txt diff --git a/allure-report/data/attachments/10b8961e386c4fec.txt b/allure-report/data/attachments/e255c73086be3d07.txt similarity index 100% rename from allure-report/data/attachments/10b8961e386c4fec.txt rename to allure-report/data/attachments/e255c73086be3d07.txt diff --git a/allure-report/data/attachments/54a6fca37064555a.txt b/allure-report/data/attachments/e4c3264e25c98281.txt similarity index 100% rename from allure-report/data/attachments/54a6fca37064555a.txt rename to allure-report/data/attachments/e4c3264e25c98281.txt diff --git a/allure-report/data/attachments/3f3d8444cfb8c128.txt b/allure-report/data/attachments/e6e24d1199424ffc.txt similarity index 100% rename from allure-report/data/attachments/3f3d8444cfb8c128.txt rename to allure-report/data/attachments/e6e24d1199424ffc.txt diff --git a/allure-report/data/attachments/92375ce905d3bb32.txt b/allure-report/data/attachments/e707854c25108dd3.txt similarity index 100% rename from allure-report/data/attachments/92375ce905d3bb32.txt rename to allure-report/data/attachments/e707854c25108dd3.txt diff --git a/allure-report/data/attachments/d0030f8b38971a56.txt b/allure-report/data/attachments/e7a51c8d74f448fe.txt similarity index 100% rename from allure-report/data/attachments/d0030f8b38971a56.txt rename to allure-report/data/attachments/e7a51c8d74f448fe.txt diff --git a/allure-report/data/attachments/81997e6990138a02.txt b/allure-report/data/attachments/e932ac087f99689b.txt similarity index 100% rename from allure-report/data/attachments/81997e6990138a02.txt rename to allure-report/data/attachments/e932ac087f99689b.txt diff --git a/allure-report/data/attachments/ba5b206c202bb2e0.txt b/allure-report/data/attachments/ea9613cb4c662f2e.txt similarity index 100% rename from allure-report/data/attachments/ba5b206c202bb2e0.txt rename to allure-report/data/attachments/ea9613cb4c662f2e.txt diff --git a/allure-report/data/attachments/572eaf1e6f057287.txt b/allure-report/data/attachments/eaf9f3a704742209.txt similarity index 100% rename from allure-report/data/attachments/572eaf1e6f057287.txt rename to allure-report/data/attachments/eaf9f3a704742209.txt diff --git a/allure-report/data/attachments/e44deaae3b3d699a.txt b/allure-report/data/attachments/eb2a7d798a0dd1d2.txt similarity index 100% rename from allure-report/data/attachments/e44deaae3b3d699a.txt rename to allure-report/data/attachments/eb2a7d798a0dd1d2.txt diff --git a/allure-report/data/attachments/8ac039f3bc7f748f.txt b/allure-report/data/attachments/eb5eccf50db39cb4.txt similarity index 100% rename from allure-report/data/attachments/8ac039f3bc7f748f.txt rename to allure-report/data/attachments/eb5eccf50db39cb4.txt diff --git a/allure-report/data/attachments/3df0050d216178a3.txt b/allure-report/data/attachments/ebde2b3c5f7bae47.txt similarity index 100% rename from allure-report/data/attachments/3df0050d216178a3.txt rename to allure-report/data/attachments/ebde2b3c5f7bae47.txt diff --git a/allure-report/data/attachments/6aaa7a7ffc396f31.txt b/allure-report/data/attachments/ec0aa2198d4850df.txt similarity index 100% rename from allure-report/data/attachments/6aaa7a7ffc396f31.txt rename to allure-report/data/attachments/ec0aa2198d4850df.txt diff --git a/allure-report/data/attachments/a9f925f082e601ea.txt b/allure-report/data/attachments/ec381cac44a14e7f.txt similarity index 100% rename from allure-report/data/attachments/a9f925f082e601ea.txt rename to allure-report/data/attachments/ec381cac44a14e7f.txt diff --git a/allure-report/data/attachments/a73f85a8fac351b8.txt b/allure-report/data/attachments/ed1895964a4f1dc3.txt similarity index 100% rename from allure-report/data/attachments/a73f85a8fac351b8.txt rename to allure-report/data/attachments/ed1895964a4f1dc3.txt diff --git a/allure-report/data/attachments/12c58087789a46ca.txt b/allure-report/data/attachments/ed45fb968677e918.txt similarity index 100% rename from allure-report/data/attachments/12c58087789a46ca.txt rename to allure-report/data/attachments/ed45fb968677e918.txt diff --git a/allure-report/data/attachments/9819ce1f0ac184a6.txt b/allure-report/data/attachments/ee8e3a23a26b4600.txt similarity index 100% rename from allure-report/data/attachments/9819ce1f0ac184a6.txt rename to allure-report/data/attachments/ee8e3a23a26b4600.txt diff --git a/allure-report/data/attachments/b436923321373575.txt b/allure-report/data/attachments/eecd5302084b69b0.txt similarity index 100% rename from allure-report/data/attachments/b436923321373575.txt rename to allure-report/data/attachments/eecd5302084b69b0.txt diff --git a/allure-report/data/attachments/a193aa0d76e6e0f1.txt b/allure-report/data/attachments/ef03ba760fe885c0.txt similarity index 100% rename from allure-report/data/attachments/a193aa0d76e6e0f1.txt rename to allure-report/data/attachments/ef03ba760fe885c0.txt diff --git a/allure-report/data/attachments/f209dfd0dcd30d55.txt b/allure-report/data/attachments/ef0993259005a4f7.txt similarity index 100% rename from allure-report/data/attachments/f209dfd0dcd30d55.txt rename to allure-report/data/attachments/ef0993259005a4f7.txt diff --git a/allure-report/data/attachments/5ab43402bfd67bde.txt b/allure-report/data/attachments/ef5ba384071190d7.txt similarity index 100% rename from allure-report/data/attachments/5ab43402bfd67bde.txt rename to allure-report/data/attachments/ef5ba384071190d7.txt diff --git a/allure-report/data/attachments/8c002cae94869ae.txt b/allure-report/data/attachments/efdc700a12236023.txt similarity index 100% rename from allure-report/data/attachments/8c002cae94869ae.txt rename to allure-report/data/attachments/efdc700a12236023.txt diff --git a/allure-report/data/attachments/e1db63f604b55e53.txt b/allure-report/data/attachments/f135592d4f270e5c.txt similarity index 100% rename from allure-report/data/attachments/e1db63f604b55e53.txt rename to allure-report/data/attachments/f135592d4f270e5c.txt diff --git a/allure-report/data/attachments/d89f3d58b0c226e8.txt b/allure-report/data/attachments/f146e27128e108d6.txt similarity index 100% rename from allure-report/data/attachments/d89f3d58b0c226e8.txt rename to allure-report/data/attachments/f146e27128e108d6.txt diff --git a/allure-report/data/attachments/1f8aa4666b4af5af.txt b/allure-report/data/attachments/f1567e8d01d8dfde.txt similarity index 100% rename from allure-report/data/attachments/1f8aa4666b4af5af.txt rename to allure-report/data/attachments/f1567e8d01d8dfde.txt diff --git a/allure-report/data/attachments/e13819432a0a8bbc.txt b/allure-report/data/attachments/f2a9e45ebf48d755.txt similarity index 100% rename from allure-report/data/attachments/e13819432a0a8bbc.txt rename to allure-report/data/attachments/f2a9e45ebf48d755.txt diff --git a/allure-report/data/attachments/ed71ca1a830493f6.txt b/allure-report/data/attachments/f451e0abb748fcc1.txt similarity index 100% rename from allure-report/data/attachments/ed71ca1a830493f6.txt rename to allure-report/data/attachments/f451e0abb748fcc1.txt diff --git a/allure-report/data/attachments/839cae885131e395.txt b/allure-report/data/attachments/f469dcf875239b3a.txt similarity index 100% rename from allure-report/data/attachments/839cae885131e395.txt rename to allure-report/data/attachments/f469dcf875239b3a.txt diff --git a/allure-report/data/attachments/e9b85a28a1d1502.txt b/allure-report/data/attachments/f4832c8bd9f79614.txt similarity index 100% rename from allure-report/data/attachments/e9b85a28a1d1502.txt rename to allure-report/data/attachments/f4832c8bd9f79614.txt diff --git a/allure-report/data/attachments/bfa0e041a65d579a.txt b/allure-report/data/attachments/f4b8bcccd8e3d9a5.txt similarity index 100% rename from allure-report/data/attachments/bfa0e041a65d579a.txt rename to allure-report/data/attachments/f4b8bcccd8e3d9a5.txt diff --git a/allure-report/data/attachments/a613cf938d78c4d4.txt b/allure-report/data/attachments/f4f546882d08a1ac.txt similarity index 100% rename from allure-report/data/attachments/a613cf938d78c4d4.txt rename to allure-report/data/attachments/f4f546882d08a1ac.txt diff --git a/allure-report/data/attachments/df1294dda064bff1.txt b/allure-report/data/attachments/f5e7c985bb14104f.txt similarity index 100% rename from allure-report/data/attachments/df1294dda064bff1.txt rename to allure-report/data/attachments/f5e7c985bb14104f.txt diff --git a/allure-report/data/attachments/aeaa6146da01ffaa.txt b/allure-report/data/attachments/f7cb1151a0bdf19c.txt similarity index 100% rename from allure-report/data/attachments/aeaa6146da01ffaa.txt rename to allure-report/data/attachments/f7cb1151a0bdf19c.txt diff --git a/allure-report/data/attachments/ef954a973a3165a7.txt b/allure-report/data/attachments/f82dd65f45ebad45.txt similarity index 100% rename from allure-report/data/attachments/ef954a973a3165a7.txt rename to allure-report/data/attachments/f82dd65f45ebad45.txt diff --git a/allure-report/data/attachments/8324986f2adab578.txt b/allure-report/data/attachments/f8693f25c4ee9e10.txt similarity index 100% rename from allure-report/data/attachments/8324986f2adab578.txt rename to allure-report/data/attachments/f8693f25c4ee9e10.txt diff --git a/allure-report/data/attachments/7fc42db42407a1b3.txt b/allure-report/data/attachments/f91cde579304f854.txt similarity index 100% rename from allure-report/data/attachments/7fc42db42407a1b3.txt rename to allure-report/data/attachments/f91cde579304f854.txt diff --git a/allure-report/data/attachments/7d49bbac8d757852.txt b/allure-report/data/attachments/f965c0bd2baa205.txt similarity index 100% rename from allure-report/data/attachments/7d49bbac8d757852.txt rename to allure-report/data/attachments/f965c0bd2baa205.txt diff --git a/allure-report/data/attachments/a3af1182be2fa344.txt b/allure-report/data/attachments/f9925186cd87d138.txt similarity index 100% rename from allure-report/data/attachments/a3af1182be2fa344.txt rename to allure-report/data/attachments/f9925186cd87d138.txt diff --git a/allure-report/data/attachments/697ce25e72082ee1.txt b/allure-report/data/attachments/f9be06237574ec64.txt similarity index 100% rename from allure-report/data/attachments/697ce25e72082ee1.txt rename to allure-report/data/attachments/f9be06237574ec64.txt diff --git a/allure-report/data/attachments/dcb18087db2eef7c.txt b/allure-report/data/attachments/fb0a5c86d6124176.txt similarity index 100% rename from allure-report/data/attachments/dcb18087db2eef7c.txt rename to allure-report/data/attachments/fb0a5c86d6124176.txt diff --git a/allure-report/data/attachments/69b865faf74786aa.txt b/allure-report/data/attachments/fb983dadd4fd2138.txt similarity index 100% rename from allure-report/data/attachments/69b865faf74786aa.txt rename to allure-report/data/attachments/fb983dadd4fd2138.txt diff --git a/allure-report/data/attachments/5d5a8c5ce62738a7.txt b/allure-report/data/attachments/fba7e6f7e7538915.txt similarity index 100% rename from allure-report/data/attachments/5d5a8c5ce62738a7.txt rename to allure-report/data/attachments/fba7e6f7e7538915.txt diff --git a/allure-report/data/attachments/f509afa4d498e7c1.txt b/allure-report/data/attachments/fbbce307fc80ae94.txt similarity index 100% rename from allure-report/data/attachments/f509afa4d498e7c1.txt rename to allure-report/data/attachments/fbbce307fc80ae94.txt diff --git a/allure-report/data/attachments/9252a83ce892d840.txt b/allure-report/data/attachments/fcd71aa1ac7b19de.txt similarity index 100% rename from allure-report/data/attachments/9252a83ce892d840.txt rename to allure-report/data/attachments/fcd71aa1ac7b19de.txt diff --git a/allure-report/data/attachments/e7750817bf2ce3d3.txt b/allure-report/data/attachments/fceb9ab1ca4c439c.txt similarity index 100% rename from allure-report/data/attachments/e7750817bf2ce3d3.txt rename to allure-report/data/attachments/fceb9ab1ca4c439c.txt diff --git a/allure-report/data/attachments/62359e715edfaf26.txt b/allure-report/data/attachments/fe10e73cc4ad9f0b.txt similarity index 100% rename from allure-report/data/attachments/62359e715edfaf26.txt rename to allure-report/data/attachments/fe10e73cc4ad9f0b.txt diff --git a/allure-report/data/attachments/cb2ee8571e9e5841.txt b/allure-report/data/attachments/fec9fd349f1d045f.txt similarity index 100% rename from allure-report/data/attachments/cb2ee8571e9e5841.txt rename to allure-report/data/attachments/fec9fd349f1d045f.txt diff --git a/allure-report/data/attachments/c2916b6d9a3730c2.txt b/allure-report/data/attachments/ff7405a34f99b6d6.txt similarity index 100% rename from allure-report/data/attachments/c2916b6d9a3730c2.txt rename to allure-report/data/attachments/ff7405a34f99b6d6.txt diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index e9602829cfe..56d7ab60e14 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,157 +1,158 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" +"0","6 kyu","0","String","3","0","Character frequency","0" +"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" +"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" +"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" +"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" +"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" +"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" +"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" +"0","8 kyu","0","String","3","0","Reversed Strings","0" "0","7 kyu","0","Square Calculation","6","0","You're a square","0" -"0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" -"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" "0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" -"0","No kyu","0","Utils","2","0","Testing is_prime util","0" -"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" +"0","7 kyu","0","String","2","0","Help Bob count letters and digits.","0" "0","3 kyu","0","String","1","0","Calculator","0" -"0","5 kyu","0","Lists","3","0","Find the safest places in town","0" -"0","6 kyu","0","Lists","1","0","Sort the odd","0" -"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" -"0","7 kyu","0","String","1","0","Isograms","0" -"0","7 kyu","0","String","1","0","V A P O R C O D E","0" -"0","5 kyu","0","Math","1","0","Human Readable Time","0" -"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" -"0","8 kyu","0","Addition","1","0","Messi goals function","0" -"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" -"0","6 kyu","0","Classes","6","0","DefaultList","0" -"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" +"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" +"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" +"0","5 kyu","0","String","1","0","Where my anagrams at?","0" +"0","7 kyu","0","Lists","1","0","Always perfect","0" "0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" -"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" -"0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" -"0","8 kyu","0","String","3","0","Reversed Strings","0" -"0","7 kyu","0","String","2","0","Jaden Casing Strings","0" -"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" -"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" -"0","8 kyu","0","Math","1","0","Will you make it?","0" -"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" -"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" -"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" -"0","8 kyu","0","String","1","0","Remove First and Last Character","0" -"0","5 kyu","0","Lists","1","0","Directions Reduction","0" -"0","8 kyu","0","Tuple","1","0","Greek Sort","0" "0","3 kyu","0","String","2","2","Line Safari - Is that a line?","0" -"0","4 kyu","0","String","0","1","Permutations","0" +"0","5 kyu","0","Lists","3","0","Find the safest places in town","0" +"0","6 kyu","0","String","1","0","String subpattern recognition III","0" +"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" +"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" +"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" +"0","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" +"0","7 kyu","0","String","1","0","Password validator","0" +"0","4 kyu","0","Lists","1","0","Sum by Factors","0" +"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" +"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" "0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" -"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" -"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" -"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" -"0","6 kyu","0","String","3","0","Permute a Palindrome","0" -"0","7 kyu","0","String","1","0","Significant Figures","0" -"0","6 kyu","0","Algorithms","1","0","Unique In Order","0" -"0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" -"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" -"0","7 kyu","0","Math","3","0","Easy Line","0" "0","5 kyu","0","Math","0","4","Diophantine Equation","0" -"0","8 kyu","0","Lists","4","0","Counting sheep...","0" -"0","6 kyu","0","String","1","0","String subpattern recognition II","0" -"0","7 kyu","0","String","2","0","Help Bob count letters and digits.","0" -"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" -"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" -"0","6 kyu","0","Lists","1","0","Array.diff","0" -"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" -"0","7 kyu","0","Lists","1","0","Always perfect","0" -"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" -"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" -"0","6 kyu","0","String","1","0","Who likes it?","0" -"0","4 kyu","0","String","1","0","Strings Mix","0" "0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" -"0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" -"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" -"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" -"0","4 kyu","0","String","1","0","Range Extraction","0" -"0","5 kyu","0","String","1","0","Not very secure","0" -"0","7 kyu","0","Math","1","0","Share prices","0" -"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" -"0","3 kyu","0","Lists","1","0","Battleship field validator","0" -"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" -"0","6 kyu","0","String","6","0","First character that repeats","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","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" +"0","6 kyu","0","Lists","1","0","Array to HTML table","0" "0","6 kyu","0","Algorithms","1","0","Sums of Parts","0" -"0","5 kyu","0","String","1","0","The Hashtag Generator","0" -"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" -"0","7 kyu","0","Classes","1","0","Make Class","0" -"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" -"0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" -"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" -"0","6 kyu","0","String","1","0","String subpattern recognition I","0" -"0","6 kyu","0","Lists","1","0","Pyramid Array","0" -"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" +"0","6 kyu","0","Classes","6","0","DefaultList","0" +"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" +"0","7 kyu","0","Math","3","0","Easy Line","0" +"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" "0","4 kyu","0","Lists","1","0","Snail","0" -"0","5 kyu","0","String","1","0","Where my anagrams at?","0" -"0","5 kyu","0","Lists","1","0","flatten()","0" -"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" -"0","8 kyu","0","Math","1","0","Century From Year","0" -"0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" -"0","6 kyu","0","Algorithms","1","0","Scheduling (Shortest Job First or SJF)","0" -"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" -"0","8 kyu","0","Lists","1","0","Check the exam","0" -"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" -"0","4 kyu","0","String","1","0","Human readable duration format","0" -"0","6 kyu","0","Math","1","0","Disease Spread","0" -"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" -"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" -"0","6 kyu","0","Math","1","0","Casino chips","0" -"0","8 kyu","0","Lists","3","0","Logical Calculator","0" -"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" -"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" -"0","6 kyu","0","String","3","0","Character frequency","0" -"0","3 kyu","0","Lists","1","0","Make a spiral","0" -"0","6 kyu","0","String","1","0","String subpattern recognition III","0" -"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" -"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" -"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" -"0","8 kyu","0","Multiplication","1","0","Multiply","0" -"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" -"0","8 kyu","0","Lists","1","0","Swap Values","0" -"0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" -"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" -"0","4 kyu","0","Lists","1","0","Sum by Factors","0" -"0","5 kyu","0","Lists","2","0","Sports League Table Ranking","0" -"0","5 kyu","0","String","1","0","First non-repeating character","0" -"0","8 kyu","0","String","1","0","Is it a palindrome?","0" +"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" +"0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" +"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" "0","5 kyu","0","Lists","0","1","Find the smallest","0" +"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" +"0","5 kyu","0","String","1","0","Simple Pig Latin","0" +"0","8 kyu","0","Lists","3","0","Logical Calculator","0" +"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" +"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" +"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" +"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" +"0","6 kyu","0","String","6","0","First character that repeats","0" +"0","7 kyu","0","String","1","0","Pull your words together, man!","0" +"0","4 kyu","0","String","1","0","Human readable duration format","0" +"0","6 kyu","0","Lists","1","0","Pyramid Array","0" +"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" "0","7 kyu","0","String","1","0","Find the longest gap!","0" +"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" "0","6 kyu","0","String","1","0","Numericals of a String","0" -"0","7 kyu","0","Lists","2","0","Simple Fun #152: Invite More Women?","0" -"0","5 kyu","0","String","1","0","Simple Pig Latin","0" -"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" +"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" +"0","4 kyu","0","String","1","0","Strip Comments","0" +"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","No kyu","0","Utils","2","0","Testing is_prime util","0" +"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" +"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" +"0","6 kyu","0","Algorithms","1","0","Scheduling (Shortest Job First or SJF)","0" +"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" +"0","8 kyu","0","Math","1","0","Century From Year","0" +"0","6 kyu","0","Algorithms","1","0","Valid Braces","0" +"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" +"0","6 kyu","0","String","1","0","Count letters in string","0" +"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" +"0","5 kyu","0","Lists","2","0","Sports League Table Ranking","0" +"0","7 kyu","0","Classes","1","0","Make Class","0" +"0","8 kyu","0","Lists","4","0","Counting sheep...","0" +"0","4 kyu","0","String","0","1","Permutations","0" +"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" +"0","4 kyu","0","String","1","0","Range Extraction","0" +"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" +"0","6 kyu","0","String","3","0","Permute a Palindrome","0" +"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" +"0","8 kyu","0","Tuple","1","0","Greek Sort","0" +"0","8 kyu","0","String","1","0","MakeUpperCase","0" +"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" +"0","5 kyu","0","String","1","0","The Hashtag Generator","0" +"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" +"0","6 kyu","0","Math","1","0","Disease Spread","0" +"0","7 kyu","0","String","2","0","Jaden Casing Strings","0" +"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" +"0","5 kyu","0","Lists","1","0","flatten()","0" "0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" -"0","6 kyu","0","String","1","0","String transformer","0" +"0","5 kyu","0","String","1","0","First non-repeating character","0" +"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" +"0","8 kyu","0","String","1","0","Remove First and Last Character","0" "0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" -"0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" -"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" -"0","6 kyu","0","String","1","0","Count letters in string","0" -"0","6 kyu","0","Lists","1","0","Array to HTML table","0" -"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" -"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" -"0","8 kyu","0","Conditions","1","0","Personalized greeting","0" -"0","7 kyu","0","String","1","0","Pull your words together, man!","0" -"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" -"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" "0","7 kyu","0","Formatting","1","0","Formatting decimal places #1","0" -"0","6 kyu","0","Lists","1","0","Find the odd int","0" -"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" "0","5 kyu","0","Math","0","1","Josephus Survivor","0" +"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" +"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" +"0","8 kyu","0","Lists","1","0","Check the exam","0" +"0","7 kyu","0","String","1","0","Isograms","0" +"0","6 kyu","0","Algorithms","1","0","Unique In Order","0" +"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" +"0","6 kyu","0","Lists","1","0","Find the odd int","0" +"0","3 kyu","0","Lists","1","0","Make a spiral","0" +"0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" +"0","6 kyu","0","Lists","1","0","Array.diff","0" +"0","5 kyu","0","String","1","0","Not very secure","0" "0","6 kyu","0","Factorial","1","0","Color Choice","0" -"0","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" -"0","5 kyu","0","String","0","1","Count IP Addresses","0" -"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" -"0","4 kyu","0","String","1","0","Strip Comments","0" -"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" -"0","5 kyu","0","String","1","0","String incrementer","0" "0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" -"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" -"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" -"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" +"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" "0","6 kyu","0","String","1","0","Your order, please","0" -"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" -"0","6 kyu","0","String","1","0","Duplicate Encoder","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","4 kyu","0","String","1","0","Strings Mix","0" +"0","5 kyu","0","Math","1","0","Human Readable Time","0" +"0","6 kyu","0","Lists","1","0","Sort the odd","0" +"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" +"0","6 kyu","0","String","1","0","String subpattern recognition II","0" +"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" +"0","8 kyu","0","Conditions","1","0","Personalized greeting","0" +"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" +"0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" +"0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" +"0","8 kyu","0","Addition","1","0","Messi goals function","0" +"0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" +"0","7 kyu","0","String","1","0","Significant Figures","0" +"0","5 kyu","0","String","1","0","String incrementer","0" +"0","6 kyu","0","String","1","0","String transformer","0" +"0","5 kyu","0","Lists","1","0","Directions Reduction","0" +"0","8 kyu","0","String","1","0","Remove String Spaces","0" +"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" +"0","6 kyu","0","Math","1","0","Casino chips","0" +"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" "0","6 kyu","0","Algorithms","1","0","Decipher this!","0" -"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" -"0","8 kyu","0","String","1","0","MakeUpperCase","0" -"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" +"0","8 kyu","0","Multiplication","1","0","Multiply","0" +"0","8 kyu","0","Math","1","0","Will you make it?","0" +"0","6 kyu","0","String","1","0","String subpattern recognition I","0" "0","7 kyu","0","Flow Control","1","0","Powers of 3","0" -"0","8 kyu","0","String","1","0","Remove String Spaces","0" -"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" -"0","7 kyu","0","String","1","0","Password validator","0" +"0","7 kyu","0","Math","1","0","Share prices","0" +"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" +"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" +"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" +"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" +"0","7 kyu","0","String","1","0","V A P O R C O D E","0" +"0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" +"0","3 kyu","0","Lists","1","0","Battleship field validator","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","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" +"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" +"0","8 kyu","0","String","1","0","Is it a palindrome?","0" +"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" +"0","6 kyu","0","String","1","0","Who likes it?","0" diff --git a/allure-report/data/behaviors.json b/allure-report/data/behaviors.json index 6329454eb88..086758d9458 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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"3ffa72675847f113","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b36380d1077ce20b","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 (negative)","uid":"b03752c3145720e6","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"3529b67f8df1184b","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ea40d4fff96687ff","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a076808e43574371","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":"62e01ffb20b661b5","parentUid":"2c812329d9b34f7fcedf688bc9c33806","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"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"900a2cbb7155295","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"44c1e35d7a7b2adb","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9521eb418a2faa99","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"27f5e11d20d2d96c","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"9a0c160871c69941729fb974987bc16e"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3e00c2c35d282154598febaf022db8e7"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"419686fbcf063822","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd6fef8ab37d71ba","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d562abb8385a61c5","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"56ad7c473898c46d","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6660f839d8534ee2","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"649728966aa92b06","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e08b527d12d4e4df","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3e68653192929d9b","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"72a7c9402c254937","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":"d7d1e3c0f9370311","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","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"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Directions Reduction","children":[{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"String","children":[{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b89947e3a3ec46d","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cf71a425c4796a9","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6076e8e1aaaa11ab","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9b5127c91b9deeb6","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1265911f14bcd919","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_basic","uid":"a57a3497f4402b67","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"67a957cc2815c6ee","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b98fb3b88f75199","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"607f84fe70696eb5","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5d373bcba925975c","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e78e70d10bce7cf5","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Line Safari - Is that a line?","children":[{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7cc0844ab5ecf216","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f85ab0d3a8429db7","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a3395496d8bde803","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9f9422c1f71252b6","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ac136a3215f7ad6c","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"15f47b991f284575","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e051944b31d54c14","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2bfddef765c09569","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2ea4d6d64dc027a","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"fc455123cb448d3e","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"a38a360357cb186b186e0b296da9b925"},{"name":"Character frequency","children":[{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"87dc5713a007f1d7","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2e46c970e553e301","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70963d87150b1b7f","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bcc8c6b28fb32dd0","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9267ea7150c527ef","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Scheduling (Shortest Job First or SJF)","children":[{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"84a5fe3bfc444bfb52c89833f8b6b28e","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"]}],"uid":"84a5fe3bfc444bfb52c89833f8b6b28e"},{"name":"Sums of Parts","children":[{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"f2707c42d3822b9eaf4ba0c414ab6249","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"]}],"uid":"f2707c42d3822b9eaf4ba0c414ab6249"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f91e38b8c375d31c","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a1a7aeb13172d1f0","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"92a7ecb29f4704b1","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Reversed Strings","children":[{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2705032891531e8","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Lists","children":[{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"984af3d5d8056be9","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"af241db983f2d0be4c7832f6a37c6a42"},{"name":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9c241cc9403723af","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"8c8d43e9d38910da","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"784b6f629ce5c547","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"614133ca9c69e105","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6c70ddf45fea2887","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a4849e99633e4676","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"345a3bae73357330","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"}],"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":"54bb63fb3736b8ae","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd76819b5fd836d3","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"fe77bba421870077d5d6e0fa886c7cb5"}],"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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"732b9dd805d734b8","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c700736d12b44c86","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 (negative)","uid":"7e066328cfed2428","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c52dc9ba56a64495","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e695b3f4b0bdd51b","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":"183ba5aa4a18280","parentUid":"2c812329d9b34f7fcedf688bc9c33806","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"405b625cf95f9fbd","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"cb9f6d4c2aaf90e3","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f48dcf9628fe90ff","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"a3cba1eb012d0834","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"9a0c160871c69941729fb974987bc16e"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3e00c2c35d282154598febaf022db8e7"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"5215ad6eb474a73c045aec07a6a3c16b"},{"name":"Sum of odd numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"fa6c346b04c031d5","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9246dbe4ecdc42ce","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"56d019840f444cec","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"631ed8ca3aead56c","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1abde016dd7f5ee7","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"addec93357f6e501","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1bd3919646678e3f","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"197e80b267cccc2b","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":"9e017ac7fdaf6bf5","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Directions Reduction","children":[{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"String","children":[{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6a3f85e29591c654","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ad5cb812fbd5d4a","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"60f7c96f923539a5","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"dc076040e5481dc9","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3de1512f067d459d","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1251fa1056fea3d4","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5654bb5658921dcd","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3c7a781e3674db5e","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ef2b00c02db84592","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8e4b6f6bd251566","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5194ad39db439d08","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Line Safari - Is that a line?","children":[{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4249127f6bff6f10","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"450fbb27e2067be4","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d5aba2cd944d7efd","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"61e07c6ddcc506b1","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c00621abb22a9be3","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"25f6d563b3f222fd3637ec178f1b3829"}],"uid":"1b88ab8e8506eaa709573095130a441e"},{"name":"Control Flow","children":[{"name":"Validate Sudoku with size `NxN`","children":[{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b22afbc33030e55f","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"354cda6601a7cded","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"59e860fc2782867c","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e53952640c2c9e47","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b0cc123728fa2f2d","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"d6ad7a05187743ff","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c3655d4a978bd79","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c5bce40c2868c787","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63a8ebd07b8fa1c4","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4d8c29fe45d13f2d","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"64ddebaa5d6679fc","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Scheduling (Shortest Job First or SJF)","children":[{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"84a5fe3bfc444bfb52c89833f8b6b28e","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"84a5fe3bfc444bfb52c89833f8b6b28e"},{"name":"Sums of Parts","children":[{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"f2707c42d3822b9eaf4ba0c414ab6249","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"f2707c42d3822b9eaf4ba0c414ab6249"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Valid Braces","children":[{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"fda66cb9e919f6eb1da529d16b4523e0","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"]}],"uid":"fda66cb9e919f6eb1da529d16b4523e0"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"8a24f091ab8ff2e6405b466c1e4a82b3"}],"uid":"d1c03c9ab51dd09075f7a945d20660c1"},{"name":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f30b225377e5683d","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63b822db5bae14d4","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Reversed Strings","children":[{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7c6af0e0a129f035","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Lists","children":[{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8672ab2817945b36","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: positive flow","uid":"302e450946481df3","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1f1df83d6cc10b66","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6dfafb882d7cc41f","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a61ba5af03a1f296","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ff18bec5c293c228","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b02a54a0a8bd8284","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d0246537274067fb","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"2be24f9b66669d76","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"}],"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":"4710cc2182eb85cb","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9b0ec4eb2cd2dde7","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 9b4df98f0a9..7e984f0e765 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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"3ffa72675847f113","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"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":"a076808e43574371","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":"62e01ffb20b661b5","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","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"]}],"uid":"help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"always_perfect.test_check_root"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"900a2cbb7155295","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"de0aa71757f8badf","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"44c1e35d7a7b2adb","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d562abb8385a61c5","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3b89778e0f9a0b66","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"56ad7c473898c46d","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"growing_plant.test_growing_plant"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"649728966aa92b06","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"password_validator.test_password"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"powers_of_3.test_largest_power"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"b36380d1077ce20b","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"share_prices.test_share_price"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3529b67f8df1184b","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a349732eb44f62b9","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"419686fbcf063822","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"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 big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"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":"ea40d4fff96687ff","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"vaporcode.test_vaporcode"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Square numbers (positive)","uid":"3e68653192929d9b","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_5","children":[{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"72a7c9402c254937","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":"d7d1e3c0f9370311","parentUid":"3e59bcb34719d71bd9719866840227a7","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"]}],"uid":"sports_league_table_ranking.test_compute_ranks"},{"name":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"diophantine_equation.test_solution","children":[{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b89947e3a3ec46d","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7087926d4a83e9d4","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5cd4eeb8a4b79d6b","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cf71a425c4796a9","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"533bf937be1aa466","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"7560669431ea4aa8","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70eff3ae24ccc67a","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e99ca5757342b866","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c7c4b4c39dca1f7a","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2b98fb3b88f75199","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6076e8e1aaaa11ab","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"cfaf892be75c5d35","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"43e7aaf3ed9f3ed0","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e78e70d10bce7cf5","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_line_negative","children":[{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b7243d74fc99fb8b","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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_decoding","children":[{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"},{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"f85ab0d3a8429db7","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a3395496d8bde803","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"aa08a95162404297","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9f9422c1f71252b6","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"ac136a3215f7ad6c","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"751027d0ac0cc021","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"15f47b991f284575","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2bfddef765c09569","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"40c938f8f83f34f7","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","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":"d19efceb39f40f4f","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 upper case","uid":"196d34645221ebb4","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"character_frequency.test_character_frequency"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"256a10c9792b808f","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"d4a0809a7647965","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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: append","uid":"2655a1e6934b1850","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5f6f3bc16b3488d6","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"87dc5713a007f1d7","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b6d0f7b70ff35380","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e051944b31d54c14","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"acdec238a53c10e1","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"numericals_of_string.test_numericals"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"25fd6f6c5cfe2b58","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"59b1922c33f3ac65","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"scheduling.test_solution","children":[{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"7da07fec565898f0b48598a1fee6b886","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"]}],"uid":"scheduling.test_solution"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3ae9a46b9a1e7c40","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2e46c970e553e301","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"70963d87150b1b7f","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"sums_of_parts.test_solution","children":[{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"62a001897925dea7414ec58a1095f23c","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"]}],"uid":"sums_of_parts.test_solution"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"vasya_clerk.test_tickets"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"898b5d5677e24adf","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a1a7aeb13172d1f0","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dde0d2c7fdfdde63","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","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: positive flow","uid":"60180807c3815756","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"405cf642fa0cf7c1","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"784b6f629ce5c547","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"614133ca9c69e105","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"73f30fbb9798a5d5","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"877a76cbb202d7b3","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2951c359ba3fd421","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","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":"b3db9caa12a5149e","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 (negative)","uid":"345a3bae73357330","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a77a517a493b3eb2","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"aa3ebaa27581f198","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"9c241cc9403723af","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"6ca78efd90ffa643","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"92a7ecb29f4704b1","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 regular string","uid":"f701011259e850f6","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a10876da94fb2b4f","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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 'Fail!'s","uid":"973452fbe07efc18","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"893dcbf3da59eb02","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"b2705032891531e8","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"8c8d43e9d38910da","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"54bb63fb3736b8ae","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"dd76819b5fd836d3","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"20f0deee24a1e834e03a32549c14c866"}],"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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"732b9dd805d734b8","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e695b3f4b0bdd51b","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":"183ba5aa4a18280","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"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":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"always_perfect.test_check_root"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"405b625cf95f9fbd","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b1056dd0bc1f2f4e","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"cb9f6d4c2aaf90e3","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9246dbe4ecdc42ce","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c87eac92a1b3b456","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"56d019840f444cec","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"growing_plant.test_growing_plant"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1abde016dd7f5ee7","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"password_validator.test_password"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"powers_of_3.test_largest_power"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"c700736d12b44c86","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"share_prices.test_share_price"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"edfd5d811972f420","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5f97df940bb3f46a","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"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 big number as an input","uid":"fa6c346b04c031d5","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"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":"c52dc9ba56a64495","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"vaporcode.test_vaporcode"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Square numbers (positive)","uid":"1bd3919646678e3f","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_5","children":[{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"197e80b267cccc2b","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":"9e017ac7fdaf6bf5","parentUid":"3e59bcb34719d71bd9719866840227a7","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"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":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"diophantine_equation.test_solution","children":[{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 dir_reduc function","uid":"4eb91d777aea105a","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6a3f85e29591c654","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"720b65d3a7d8ec34","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"bb0cb59f0e1a4eca","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ad5cb812fbd5d4a","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"fef2d68159e448ff","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b7dd8f8438e567a9","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6ef44675aea47099","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c9684bf403c80de","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"14829aa4ce177c0a","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3c7a781e3674db5e","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"60f7c96f923539a5","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"dc076040e5481dc9","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"300c045916564a1","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5194ad39db439d08","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_line_negative","children":[{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"32a39f3c0fa23567","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_decoding","children":[{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"},{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"450fbb27e2067be4","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d5aba2cd944d7efd","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7331de8e7202ad57","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"61e07c6ddcc506b1","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c00621abb22a9be3","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"8649c3105decfce4138f9d41edf0cec5"},{"name":"test_warrior","children":[{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"0d62047a621cabeef8af32bce4e63018"}],"uid":"833d211f8698ccfc8f9c16129c62c235"},{"name":"validate_sudoku_with_size.test_sudoku","children":[{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"354cda6601a7cded","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e687a692c2c18f1b","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4d4729a99109106e","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 upper case","uid":"b0cc123728fa2f2d","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"character_frequency.test_character_frequency"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d6ad7a05187743ff","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"37bcd45d30c593a7","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: append","uid":"a78b9243c26a61bf","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"default_list.test_default_list"},{"name":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c3655d4a978bd79","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"2890c501d19b5f47","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b22afbc33030e55f","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b36ca0513e4048a8","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]}],"uid":"numericals_of_string.test_numericals"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ee07ce647fa212f","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"416bb0c0ac58f7b6","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"scheduling.test_solution","children":[{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"7da07fec565898f0b48598a1fee6b886","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"scheduling.test_solution"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ff3f93ff1ffe8b3","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c5bce40c2868c787","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63a8ebd07b8fa1c4","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"sums_of_parts.test_solution","children":[{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"62a001897925dea7414ec58a1095f23c","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"sums_of_parts.test_solution"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"valid_braces.test_valid_braces","children":[{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"11736fc2b9c82a80098d60bb185fad78","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"]}],"uid":"valid_braces.test_valid_braces"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"vasya_clerk.test_tickets"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8a89827c471bc909","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f30b225377e5683d","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d9e0d2d6c00c88e9","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: positive flow","uid":"302e450946481df3","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"98e0aca6e090522b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a61ba5af03a1f296","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ff18bec5c293c228","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"965bac5a2c55f031","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1b57aafe4439b9a8","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3de5bbe9e7cab5b6","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","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":"e532878179cb6f87","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 (negative)","uid":"2be24f9b66669d76","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"591cfdbc90cf4c5e","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b2f619fce2ea028d","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1f1df83d6cc10b66","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c2a15dd126224894","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63b822db5bae14d4","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 regular string","uid":"a5b469ea69ba375b","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"77ce7ba6af0b177a","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 'Fail!'s","uid":"112ca50049d27c","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c31558e9c7981ac7","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7c6af0e0a129f035","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6dfafb882d7cc41f","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4710cc2182eb85cb","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9b0ec4eb2cd2dde7","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 114c4188096..39086d36f2d 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,271 +1,391 @@ "DESCRIPTION","DURATION IN MS","NAME","PARENT SUITE","START TIME","STATUS","STOP TIME","SUB SUITE","SUITE","TEST CLASS","TEST METHOD" " - 0 is a square number + Testing letter_frequency function + where all chars are in upper case :return: - ","0","Zero","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","All chars are in upper case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Testing 'save' function: positive + Testing Sudoku class - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + 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 'save' function: positive","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing Sudoku class","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Negative tests + 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","Testing period_is_late function (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing 'factorial' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing potion function with various test inputs + Testing fix_the_meerkat function with various test data :return: - ","0","Testing Potion class","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Classes","","" + ","0","fix_the_meerkat function function verification","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Positive test cases for is_prime function testing + Testing the function with various test data :return: - ","0","Positive test cases for is_prime function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" + ","0","Testing take function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing shark function -> positive + Testing letter_frequency function + where all chars are in mixed case :return: - ","1","Testing shark function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" -" - 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 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ","1","All chars are in mixed case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 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. + Basic test case :return: - ","4","Testing advice function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","3","test_triangle","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - The 'sort_array' function. + Test namelist - The task is to sort ascending odd numbers but - even numbers must be on their places. + Given: + an array containing hashes of names - Zero isn't an odd number and you don't need to - move it. If you have an empty array, you need - to return 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 the 'sort_array' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","String with no duplicate chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing to_alternating_case function + Testing list_squared function + :return: - ","0","Testing to_alternating_case function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","145","Testing list_squared function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Testing 'is_isogram' function - ","0","Testing 'is_isogram' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + Test with one char only + :return: + ","0","Test with one char only","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing 'vaporcode' function + -1: Negative numbers cannot be square numbers :return: - ","0","Testing 'vaporcode' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Negative numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - 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) - - 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) + Returns a list that misses only one element :return: - ","0","Testing make_readable function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","'multiply' function verification with random list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - 4 is a square number + Testing potion function with various test inputs :return: - ","1","Square numbers (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","2","Testing Potion class","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Classes","","" " - 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!' + 25 is a square number :return: - ","1","Testing done_or_not function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Square numbers (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - Verify that the function returns Messi's - total number of goals in all three leagues. + Testing the function with various test data :return: - ","1","goals function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing count_letters_and_digits function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - 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","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 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. + 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","Testing 'DefaultList' class: __getitem__","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","0","Wolf at the end of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" " - Testing enough function - with various test data + 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. - 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","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing the 'find_missing_number' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing 'sum_triangular_numbers' function - with negative numbers + 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","Testing 'sum_triangular_numbers' with negative numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing anagrams function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - The player rolls the dice and moves the number - of spaces indicated by the dice two times. + Testing check_root function with various test inputs - Pass position and roll and compare the output - to the expected 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","move function tests","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","1","Testing check_root function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Test with empty list + Testing 'sum_triangular_numbers' function + with negative numbers :return: - ","0","'multiply' function verification with empty list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing 'sum_triangular_numbers' with negative numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Test with empty string - :return: - ","0","Test with empty string","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + Testing Walker class + Testing starting position property based on positive grids + ","1","Testing Walker class - position property from positive grids","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Simple negative test + 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","Testing toJadenCase function (negative)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing create_city_map function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Assert that 'domain_name' function - returns domain name from given URL string. + Verify that 'has_subpattern' function + + 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 domain_name function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing 'has_subpattern' (part 3) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" " - a an b are positive numbers - :return: - ","1","a an b are positive numbers","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + Testing Decoding functionality + ","0","Testing Decoding functionality","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing the function with various test data - :return: - ","2","Testing zero_fuel function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" + 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - non-consecutive is a negative number. + Testing litres function with various test inputs :return: - ","0","Negative non consecutive number should be returned","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing litres function with various test inputs","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Test with regular string + 0 is a square number :return: - ","0","Test with regular string","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","Zero","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - a or b is negative + Testing binary_to_string function + with various test data :return: - ","0","a or b is negative","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing binary_to_string function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Character Encodings","","" " - 26 is not a square number + Testing password function with various test inputs :return: - ","1","Non square numbers (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","1","Testing password function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - If there are no good ideas, - as is often the case, return 'Fail!'. + Testing sum_for_list function :return: - ","0","Should return 'Fail!'s","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","55","Testing sum_for_list function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing set_alarm function with various test inputs. - - The function should return true if you are employed - and not on vacation (because these are the circumstances - under which you need to set an alarm). It should return - false otherwise. + Testing hoop_count function (positive) - Examples: + Alex just got a new hula hoop, he loves it but feels + discouraged because his little brother is better than him - setAlarm(true, true) -> false - setAlarm(false, true) -> false - setAlarm(false, false) -> false - setAlarm(true, false) -> true - :return: - ","0","Testing set_alarm function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Test that 'remove_char' function - removes the first and - last characters of a string. - :return: - ","0","Testing remove_char function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 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). + Write a program where Alex can input (n) how many times + the hoop goes round and it will return him an encouraging message - The Haskell version takes a list of directions with - data Direction = North | East | West | South. + - 10 or more hoops, return ""Great, now move on to tricks"". - The Clojure version returns nil when the path is - reduced to nothing. + - Not 10 hoops, return ""Keep at it until you get it"". - The Rust version takes a slice of enum Direction - {NORTH, SOUTH, EAST, WEST}. - :return: - ","0","Testing dir_reduc function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing greek_comparator function - with various test inputs :return: - ","0","Testing 'greek_comparator' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" -" - Testing Walker class - Testing starting position property based on negative grids - ","0","Testing Walker class - position property from negative grids","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing hoop_count function (positive test case)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" " - Testing permutations function + Testing sum_of_intervals 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 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - 25 is a square number + 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. :return: - ","0","Square numbers (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","1","Testing sum_of_intervals function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " Testing check_for_factor function. This function should test if the factor is a factor of base. - Return false if it is not a factor. + Return true if it is a factor. :return: - ","0","Testing check_for_factor function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing check_for_factor function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - Testing 'sum_triangular_numbers' function - with positive numbers + Testing using big test data :return: - ","0","Testing 'sum_triangular_numbers' with positive numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" + ","0","test_solution_big","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing easy_diagonal function - :param self: + 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" +" + Simple Fun #152: Invite More Women? + Testing invite_more_women function (positive) + :return: + ","1","Testing invite_more_women function (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + Testing ips_between function + + Testing a function that receives two IPv4 addresses, + and returns the number of addresses between them + (including the first one, excluding the last one). + + 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","test_ips_between","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Test with regular string + :return: + ","0","Test with regular string","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 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. + :return: + ","0","Testing two_decimal_places function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + Testing to_table with various test data + :return: + ","1","Testing to_table function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" +" + Testing 'parts_sums' function with various test data + :return: + ","0","Testing 'parts_sums' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" +" + Testing 'DefaultList' class: append + :return: + ","0","Testing 'DefaultList' class: append","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" +" + 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!' + :return: + ","0","Testing done_or_not function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Advanced/random test case + :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","","" +" + Testing easy line function exception + :return: + ","0","Testing easy_line function exception message","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" +" + Testing shark function -> negative + :return: + ","1","Testing shark function (negative)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" +" + 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Test top_3_words function + ","0","Testing top_3_words function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'save' function: negative + + 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","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + The string ""This website is for losers LOL!"" + should become ""Ths wbst s fr lsrs LL!"" + :return: + ","0","a and b are equal","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" +" + 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","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing the function with various test data + :return: + ","0","Testing row_sum_odd_numbers function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + 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: + ","1","Testing pig_it function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" +" + 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","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" +" + Testing set_alarm function with various test inputs. + + The function should return true if you are employed + and not on vacation (because these are the circumstances + under which you need to set an alarm). It should return + false otherwise. + + Examples: + + setAlarm(true, true) -> false + setAlarm(false, true) -> false + setAlarm(false, false) -> false + setAlarm(true, false) -> true + :return: + ","0","Testing set_alarm function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" +" + Testing to_alternating_case function + :return: + ","0","Testing to_alternating_case function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + Testing Walker class + Testing starting position property based on negative grids + ","0","Testing Walker class - position property from negative grids","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + The function powers takes a single parameter, + the number n, and should return an array of + unique numbers. + :return: + ","4","powers function should return an array of unique numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" +" + Testing using basic test data :return: - ","717","Testing easy_diagonal function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","test_solution_basic","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " Testing growing_plant function @@ -306,173 +426,131 @@ 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","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" -" - 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 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" -" - Testing Walker class - Testing starting position property based on positive grids - ","1","Testing Walker class - position property from positive grids","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing growing_plant function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Negative testing permute_a_palindrome function + Test string with mixed type of chars. :return: - ","0","Testing permute_a_palindrome (negative)","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","1","String with mixed type of chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing number_of_sigfigs function - with various test inputs + 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","Testing number_of_sigfigs function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing 'solution' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing the 'unique_in_order' function - with various test data + 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. :return: - ","0","Testing the 'unique_in_order' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" + ","5","Testing format_duration","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing summation function - with various test inputs + The 'pyramid' function should return + an Array of ascending length subarrays. + + Note: the subarrays should be filled with 1s. :return: - ","0","Testing 'summation' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" -" - Testing Warrior class >>> tom - ","1","Testing Warrior class >>> tom","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" + ","0","Testing the 'pyramid' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing calc_combinations_per_row function + 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: - ","0","Testing calc_combinations_per_row function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","XOR logical operator","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing using basic test data + Testing shark function -> positive :return: - ","0","test_solution_basic","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing shark function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like null/undefined - :return: - ","1","Testing 'count_sheeps' function: bad input","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + Testing Encoding functionality + ","0","Testing Encoding functionality","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Returns [] if list has only one element + A function f(n), should returns the n-th member of sequence. :return: - ","3","'multiply' function verification with one element list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","test_sequence","Novice","Wed Nov 27 19:23:40 PST 2024","skipped","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - 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. + Testing gap function with various test inputs - 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; + A binary gap within a positive number num is + any sequence of consecutive zeros that is + surrounded by ones at both ends in the binary + representation of num. - 2. the strings you will be given might or might not - be created repeating a given subpattern, then - shuffling the result. + The gap function should return the length of + its longest binary gap. + + The function should return 0 if num doesn't + contain a binary gap. :return: - ","0","Testing 'has_subpattern' (part 2) function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" -"","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 gap function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing first_non_repeated function - :return: - ","0","Testing first_non_repeated function with various inputs","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + Testing Line Safari functionality + Positive test cases + ","0","test_line_positive","Competent","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Positive test cases for gen_primes function testing + Testing length function + + The method length, which accepts a linked list + (head), and returns the length of the list. :return: - ","0","Positive test cases for gen_primes function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" + ","0","Testing length function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing array_diff function + Testing 'numericals' function :return: - ","0","Testing array_diff function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'numericals' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - 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: + 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. - 12 ==> 21 - 513 ==> 531 - 2017 ==> 2071 + Examples - If no bigger number can be composed using those digits, return -1 - ","0","Testing next_bigger function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ""()"" => true + "")(()))"" => false + ""("" => false + ""(())((()())())"" => true + :return: + ","0","Testing valid_parentheses function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Testing check_root function with various test inputs - - 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"". + Testing 'solution' function - If string contains 4 numbers but not consecutive it - returns ""not consecutive"". - :return: - ","0","Testing check_root function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + 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. + ","1","Testing 'solution' function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - if there are more than 2 return - 'I smell a series!'. + Negative tests :return: - ","1","Should return 'I smell a series!'","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing period_is_late function (negative)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing 'thirt' function with various test data + Testing letter_frequency function + where all chars are in lower case :return: - ","0","Testing 'thirt' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" + ","1","All chars are in lower case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + Negative test cases for is_prime function testing :return: - ","0","Wolf at the beginning of the queue","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" + ","1","Negative test cases for is_prime function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" " - If there are one or two good ideas, - return 'Publish!', - :return: - ","0","Should return 'Publish!'","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like mixed list - :return: - ","1","Testing 'count_sheeps' function: mixed list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing likes function with various test data - :return: - ","0","Testing likes function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" -" - Testing 'mix' function - - Given two strings s1 and s2, the 'mix' function - should visualize how different the two strings are. - ","2","Testing 'mix' function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" -" - 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing 'DefaultList' class: pop - :return: - ","0","Testing 'DefaultList' class: pop","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" -" - 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 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" -" - Testing 'DefaultList' class: append - :return: - ","0","Testing 'DefaultList' class: append","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" -" - 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. + Testing string_to_array function. - The function should remove all agents that are outside of the city boundaries. + A function to split a string and + convert it into an array of words. :return: - ","1","Testing agents_cleanup function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing string_to_array function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns @@ -484,197 +562,196 @@ The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9. :return: - ","1","Testing validSolution","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing validSolution","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - 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. + Testing 'shortest_job_first' function with various test data :return: - ","1","Testing sum_of_intervals function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing 'shortest_job_first(' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing solution function - ","2","Testing solution function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + Testing Warrior class >>> tom + ","0","Testing Warrior class >>> tom","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" " - 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Advanced Language Features","","" + Testing Battle method + ","0","Testing Battle method","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" " - Testing share_price function - with multiple test inputs + Testing 'DefaultList' class: extend :return: - ","1","Testing share_price function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","2","Testing 'DefaultList' class: extend","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing all_fibonacci_numbers function - - You're going to provide a needy programmer a - utility method that generates an infinite sized, - sequential IntStream (in Python generator) - which contains all the numbers in a fibonacci - sequence. - - A fibonacci sequence starts with two 1s. - Every element afterwards is the sum of - the two previous elements. + Testing century function + ","0","Testing century function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Numbers","","" +" + Testing the 'valid_braces' function + with various test data :return: - ","0","Testing all_fibonacci_numbers function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","2","Testing the 'valid_braces' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing Battleship field validator + Testing is_solved 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","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + 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). + ","2","Testing done_or_not function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - If the whole array is consecutive then return - null or Nothing or None. + Testing 'letter_count' function :return: - ","1","Non is expected","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","Testing 'letter_count' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Data Structures","","" " - Testing list_squared function - + Positive test cases for gen_primes function testing :return: - ","132","Testing list_squared function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","Positive test cases for gen_primes function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" " - 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) + Testing 'sum_triangular_numbers' function + with zero as an input :return: - ","0","Testing 'longest_repetition' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing 'sum_triangular_numbers' with zero","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing 'parts_sums' function with various test data + 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","Testing 'parts_sums' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Negative test cases for is_prime function testing + Testing make_class function :return: - ","0","Negative test cases for is_prime function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" + ","0","Testing make_class function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","OOP","","" " - Testing Battle method - ","0","Testing Battle method","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like mixed list + :return: + ","0","Testing 'count_sheeps' function: mixed list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing 'generate_hashtag' function - ","0","Testing 'generate_hashtag' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + a an b are positive numbers + :return: + ","0","a an b are positive numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Test top_3_words function - ","1","Testing top_3_words function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + 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","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Test lists with multiple digits + Test string with no alphabet chars. :return: - ","0","'multiply' function verification: lists with multiple digits","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","String with no alphabet chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing make_class function + Testing 'sum_triangular_numbers' function + with big number as an input :return: - ","0","Testing make_class function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","OOP","","" + ","1","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing max_multiple function with - various test data + 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. :return: - ","0","Testing max_multiple function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","14","Testing advice function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing using big test data + Simple Fun #152: Invite More Women? + Testing invite_more_women function (negative) :return: - ","0","test_solution_big","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing invite_more_women function (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - -1: Negative numbers cannot be square numbers + Testing calculate function with various test data + :return: + ","0","Testing calculate function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" +" + Testing solution function + ","0","Testing solution function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'zeros' program that should calculate the number + of trailing zeros in a factorial of a given number. + :return: None + ","2","Testing zeros function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" +" + Testing permute_a_palindrome function with empty string :return: - ","0","Negative numbers","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing permute_a_palindrome (empty string)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" +" + Testing calc class + Given a mathematical expression as a string you + must return the result as a number. + ","0","Testing calc function","Proficient","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing Line Safari functionality + Negative test cases + ","0","test_line_negative","Competent","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 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). + Hint: Don't forget to check for + bad values like empty list :return: - ","1","Testing 'count_sheeps' function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","2","Testing 'count_sheeps' function: empty list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing solution function - - If we list all the natural numbers below 10 - that are multiples of 3 or 5, we get 3, 5, 6 and 9. - The sum of these multiples is 23. - - Finish the solution so that it returns the sum of - all the multiples of 3 or 5 below the number passed in. - - Note: If the number is a multiple of both 3 and 5, - only count it once. + Testing greek_comparator function + with various test inputs :return: - ","1","Testing the 'solution' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","1","Testing 'greek_comparator' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" " - Returns a list that misses only one element + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :return: - ","2","'multiply' function verification with random list","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Wolf at the beginning of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" " - 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. + Sample Tests for make_upper_case function :return: - ","1","Testing the 'group_cities' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing make_upper_case function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - String subpattern recognition I - - 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. + Assert that 'domain_name' function + returns domain name from given URL string. :return: - ","0","Testing 'has_subpattern' (part 1) function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" + ","2","Testing domain_name function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - The 'pyramid' function should return - an Array of ascending length subarrays. + Testing 'generate_hashtag' function + ","0","Testing 'generate_hashtag' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" +" + Testing enough function + with various test data - Note: the subarrays should be filled with 1s. + If there is enough space, return 0, + and if there isn't, return the number + of passengers he can't take. :return: - ","1","Testing the 'pyramid' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","STesting enough function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Testing calculate function with various test data + Testing epidemic function :return: - ","1","Testing calculate function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","6","Testing epidemic function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" " - Testing Warrior class >>> bruce_lee - ","0","Testing Warrior class >>> bruce_lee","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","OOP","","" + Simple positive test + :return: + ","1","Testing toJadenCase function (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + 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: + ","1","Non consecutive number should be returned","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - 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. + a or b is negative :return: - ","0","Testing anagrams function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","a or b is negative","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " For this exercise you will create a global flatten method. The method takes in any number of arguments and flattens @@ -691,645 +768,525 @@ flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns ['a', 'b', 2, 3, None, 4, 'c'] :return: - ","0","Testing flatten function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing Encoding functionality - ","0","Testing Encoding functionality","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - Large lists - :return: - ","0","Large lists","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing century function - ","0","Testing century function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Numbers","","" + ","0","Testing flatten function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Test with one char only + Testing odd_row function with various test data :return: - ","0","Test with one char only","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing odd_row function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Performance","","" " - Testing next_smaller function + 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. - You have to test a function that takes a positive integer number - and returns the next smaller number formed by the same digits: + 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. - 21 ==> 12 - 531 ==> 513 - 2071 ==> 2017 + 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 no smaller number can be composed using those digits, return -1 - ","1","Testing next_smaller function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - Testing 'shortest_job_first' function with various test data + If a string contains all repeating characters, it should + return an empty string ("""") or None -- see sample tests. :return: - ","1","Testing 'shortest_job_first(' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing first_non_repeating_letter function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Basic test case + 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","test_basic","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" + ","3","Testing the 'group_cities' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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). - + Test that 'remove_char' function + removes the first and + last characters of a string. :return: - ","0","Testing check_exam function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing remove_char function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - 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 + Testing tickets function with various test inputs. - - 10 or more hoops, return ""Great, now move on to tricks"". + 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. - - Not 10 hoops, return ""Keep at it until you get it"". + Vasya is currently working as a clerk. + He wants to sell a ticket to every single person + in this line. - :return: - ","0","Testing hoop_count function (positive test case)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" -" - Testing using medium test data - :return: - ","0","test_solution_medium","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing easy line function exception - :return: - ","1","Testing easy_line function exception message","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" -" - Testing permute_a_palindrome function with empty string - :return: - ","0","Testing permute_a_palindrome (empty string)","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" -" - Test a function which formats a duration, - given as a number of seconds, in a human-friendly way. + 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 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 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - Testing epidemic function - :return: - ","3","Testing epidemic function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" -" - Positive tests - :return: - ","0","Testing period_is_late function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing fix_the_meerkat function with various test data - :return: - ","0","fix_the_meerkat function function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing Decoding functionality - ","2","Testing Decoding functionality","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - Test sum_two_smallest_numbers function - The function should return the sum of - the two lowest positive numbers + 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","Two smallest numbers in the start of the list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing tickets function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing 'solve' function with various test data + 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 solve function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing compute_ranks","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - 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: + Testing 'DefaultList' class: __getitem__ - Source: - https://en.wikipedia.org/wiki/Exclusive_or + 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: - ","1","XOR logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","Testing 'DefaultList' class: __getitem__","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing length function - where head = None + Testing check_for_factor function. - The method length, which accepts a linked list - (head), and returns the length of the list. - :return: - ","1","Testing length function where head = None","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" -" - Testing Sudoku class + This function should test if the + factor is a factor of base. - 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 Sudoku class","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing letter_frequency function - where all chars are in lower case + Return false if it is not a factor. :return: - ","0","All chars are in lower case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - Testing spiralize function - ","1","Testing spiralize function","Competent","Sat Nov 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ","2","Testing check_for_factor function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - 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 - + Test with empty list :return: - ","0","AND logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","'multiply' function verification with empty list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - In logic and mathematics, or is the - truth-functional operator of (inclusive) - disjunction, also known as alternation. + Testing two_decimal_places function + with various test inputs - The or of a set of operands is true if - and only if one or more of its operands is true. + Each floating-point number should be + formatted that only the first two + decimal places are returned. - Source: - https://en.wikipedia.org/wiki/Logical_disjunction + You don't need to check whether the input + is a valid number because only valid numbers + are used in the tests. - :return: - ","1","OR logical operator","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - Testing length function + Don't round the numbers! Just cut them + after two decimal places! - The method length, which accepts a linked list - (head), and returns the length of the list. :return: - ","1","Testing length function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing two_decimal_places function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing the function with various test data - :return: - ","0","Testing count_letters_and_digits function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" -" - Test string with no duplicate chars. - :return: - ","1","String with no duplicate chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" -" - Verify that 'has_subpattern' function - - 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). + Test lists with multiple digits :return: - ","0","Testing 'has_subpattern' (part 3) function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" + ","0","'multiply' function verification: lists with multiple digits","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing 'sum_triangular_numbers' function - with big number as an input + In this kata you have to correctly return who + is the ""survivor"", ie: the last element of a + Josephus permutation. :return: - ","0","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" + ","0","test_josephus_survivor","Novice","Wed Nov 27 19:23:39 PST 2024","skipped","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Test namelist - - Given: - an array containing hashes of names + Testing all_fibonacci_numbers function - 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. + You're going to provide a needy programmer a + utility method that generates an infinite sized, + sequential IntStream (in Python generator) + which contains all the numbers in a fibonacci + sequence. + A fibonacci sequence starts with two 1s. + Every element afterwards is the sum of + the two previous elements. :return: - ","0","String with no duplicate chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" -" - Testing 'DefaultList' class: extend - :return: - ","2","Testing 'DefaultList' class: extend","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" -" - Testing calculate_damage with various test data - :return: - ","0","Testing calculate_damage function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Games","","" + ","0","Testing all_fibonacci_numbers function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 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 max_multiple function with + various test data :return: - ","0","Testing the 'find_missing_number' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing max_multiple function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing Line Safari functionality - Positive test cases - ","0","test_line_positive","Competent","Sat Nov 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - 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. + 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). - The function should generate city map with coordinates. :return: - ","1","Testing create_city_map function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing check_exam function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Verify that multiply function - returns correct result - :return: - ","0","'multiply' function verification","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + Testing 'is_isogram' function + ","0","Testing 'is_isogram' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing permute_a_palindrome function + Testing the 'unique_in_order' function + with various test data :return: - ","1","Testing permute_a_palindrome (positive)","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'unique_in_order' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - 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 23 22:03:13 PST 2024","passed","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" -" - 3 is not a square number + Testing stock_list function with various test data :return: - ","0","Non square numbers (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing stock_list function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing letter_frequency function - where all chars are in upper case + Sample testing. :return: - ","0","All chars are in upper case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Find the int that appears an odd number of times","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing 'sum_triangular_numbers' function - with zero as an input + Testing using medium test data :return: - ","1","Testing 'sum_triangular_numbers' with zero","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Algorithms","","" + ","0","test_solution_medium","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing swap_values function - ","0","Testing swap_values function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + Testing spiralize function + ","1","Testing spiralize function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Testing two_decimal_places function - with various test inputs. + Testing solution function - 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: - ","1","Testing two_decimal_places function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" -" - In this kata, you must create a digital root function. + If we list all the natural numbers below 10 + that are multiples of 3 or 5, we get 3, 5, 6 and 9. + The sum of these multiples is 23. - 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 digital_root function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" -" - Testing sum_for_list function - :return: - ","60","Testing sum_for_list function","Competent","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" -" - 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 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" -" - Testing 'DefaultList' class: insert + Finish the solution so that it returns the sum of + all the multiples of 3 or 5 below the number passed in. + + Note: If the number is a multiple of both 3 and 5, + only count it once. :return: - ","1","Testing 'DefaultList' class: insert","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","0","Testing the 'solution' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing shark function -> negative + Testing array_diff function :return: - ","1","Testing shark function (negative)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing array_diff function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" " - 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 alphanumeric function with + various test inputs - :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","","" -" - 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. + The string has the following conditions + to be alphanumeric only - 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. + 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 - 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'. + :return: None + ","0","Testing alphanumeric function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Advanced Language Features","","" +" + 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. - If a string contains all repeating characters, it should - return an empty string ("""") or None -- see sample tests. + 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" +" + Test string with alphabet chars only. :return: - ","0","Testing first_non_repeating_letter function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","String with alphabet chars only","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - 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","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + You are given two angles (in degrees) of a triangle. + Find the 3rd. + :return: + ","0","You are given two angles -> find the 3rd.","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 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""). + Test sum_two_smallest_numbers function + The function should return the sum of + the two lowest positive numbers :return: - ","0","test_smallest","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","Two smallest numbers in the start of the list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing gap function with various test inputs + Your task is to verify that 'order' function + sorts a given string by following rules: - A binary gap within a positive number num is - any sequence of consecutive zeros that is - surrounded by ones at both ends in the binary - representation of num. + 1. Each word in the string will contain a single number. + This number is the position the word should have in + the result. - The gap function should return the length of - its longest binary gap. + 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 0 if num doesn't - contain a binary gap. :return: - ","1","Testing gap function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" -" - Testing Line Safari functionality - Negative test cases - ","0","test_line_negative","Competent","Sat Nov 23 22:03:13 PST 2024","skipped","Sat Nov 23 22:03:13 PST 2024","Unit Tests","Algorithms","","" + ","1","Testing 'order' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'numericals' function + Testing first_non_repeated function :return: - ","0","Testing 'numericals' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing first_non_repeated function with various inputs","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Basic test case - :return: - ","1","test_triangle","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + Testing swap_values function + ","1","Testing swap_values function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) + Simple negative test :return: - ","1","Testing invite_more_women function (positive)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing toJadenCase function (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing pig_it function + Testing 'mix' 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: - ","1","Testing pig_it function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + Given two strings s1 and s2, the 'mix' function + should visualize how different the two strings are. + ","0","Testing 'mix' function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Fundamentals","","" " - 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). + 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 :return: - ","0","Testing is_prime function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","OR logical operator","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing odd_row function with various test data + Positive tests :return: - ","0","Testing odd_row function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Performance","","" + ","2","Testing period_is_late function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing string_transformer function - with multiple test data. + Testing 'save' function: positive - Given a string, return a new string that has - transformed based on the input: + The function should determine how many + files of the copy queue you will be able + to save into your Hard Disk Drive. + :return: + ","1","Testing 'save' function: positive","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + Testing make_readable function - 1. Change case of every character, ie. lower - case to upper case, upper case to lower case. + Write a function, which takes a non-negative integer + (seconds) as input and returns the time in a human-readable + format (HH:MM:SS) - 2. Reverse the order of words from the input. + 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 string_transformer function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing make_readable function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 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. + The 'sort_array' function. - Vasya is currently working as a clerk. - He wants to sell a ticket to every single person - in this line. + The task is to sort ascending odd numbers but + even numbers must be on their places. - 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? + Zero isn't an odd number and you don't need to + move it. If you have an empty array, you need + to return it. - 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 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing the 'sort_array' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing encrypt_this function - :param self: + if there are more than 2 return + 'I smell a series!'. :return: - ","0","Testing encrypt_this function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","Should return 'I smell a series!'","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing litres function with various test inputs + 26 is not a square number :return: - ","0","Testing litres function with various test inputs","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","1","Non square numbers (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - Testing 'letter_count' function + If the whole array is consecutive then return + null or Nothing or None. :return: - ","0","Testing 'letter_count' function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Data Structures","","" + ","2","Non is expected","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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. + 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. :return: - ","0","Non consecutive number should be returned","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing 'has_subpattern' (part 2) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing to_table with various test data + 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 to_table function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'count_sheeps' function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing get_size function with various inputs + 4 is a square number :return: - ","0","get_size function tests","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","1","Square numbers (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - Testing string_to_array function. + Testing 'sum_pairs' function - A function to split a string and - convert it into an array of words. - :return: - ","0","Testing string_to_array function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " Use conditionals to to verify that greet function returns the proper message. :return: - ","0","Verify that greet function returns the proper message","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" + ","0","Verify that greet function returns the proper message","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Control Flow","","" " - 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 get_size function with various inputs :return: - ","0","Testing 'solution' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","get_size function tests","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Testing 'feast' function with various test inputs + Testing next_smaller function - 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. + You have to test a function that takes a positive integer number + and returns the next smaller number formed by the same digits: - 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. + 21 ==> 12 + 531 ==> 513 + 2071 ==> 2017 - 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. + If no smaller number can be composed using those digits, return -1 + ","0","Testing next_smaller function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'sum_triangular_numbers' function + with positive numbers :return: - ","0","Testing 'feast' function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing 'sum_triangular_numbers' with positive numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Negative test cases for gen_primes function testing + Testing summation function + with various test inputs :return: - ","0","Negative test cases for gen_primes function testing","Helper methods","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","No kyu helper methods","","" + ","2","Testing 'summation' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" " - Test string with no alphabet chars. + Verify that the function returns Messi's + total number of goals in all three leagues. :return: - ","0","String with no alphabet chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","goals function verification","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - 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 shark function -> positive :return: - ","1","Testing men_from_boys function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing shark function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Testing two_decimal_places function + Testing encrypt_this function + :param self: + :return: + ","0","Testing encrypt_this function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" +" + If there are one or two good ideas, + return 'Publish!', + :return: + ","1","Should return 'Publish!'","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" +" + Testing number_of_sigfigs function with various test inputs - - Each floating-point number should be - formatted that only the first two - decimal places are returned. - - You don't need to check whether the input - is a valid number because only valid numbers - are used in the tests. - - Don't round the numbers! Just cut them - after two decimal places! - :return: - ","0","Testing two_decimal_places function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing number_of_sigfigs function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Sample testing. + Negative test cases for gen_primes function testing :return: - ","0","Find the int that appears an odd number of times","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Negative test cases for gen_primes function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" " - Advanced/random test case + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :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","Wolf in the middle of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" " - Testing the function with various test data + Positive test cases for is_prime function testing :return: - ","0","Testing row_sum_odd_numbers function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","1","Positive test cases for is_prime function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" " - In this kata you have to correctly return who - is the ""survivor"", ie: the last element of a - Josephus permutation. + Testing a function named increment_string :return: - ","0","test_josephus_survivor","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","2","Testing increment_string function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Testing letter_frequency function - where all chars are in mixed case + 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","All chars are in mixed case","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing string_transformer function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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. + 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). - 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" + 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","Testing dir_reduc function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Test that no_space function removes the spaces + from the string, then return the resultant string. + :return: + ","0","Test that no_space function removes the spaces","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" +" + Large lists + :return: + ","0","Large lists","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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). + Negative testing permute_a_palindrome function :return: - ","0","Testing 'factorial' function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","1","Testing permute_a_palindrome (negative)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing binary_to_string function - with various test data + Returns [] if list has only one element :return: - ","0","Testing binary_to_string function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Character Encodings","","" + ","9","'multiply' function verification with one element list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing ips_between function - - Testing a function that receives two IPv4 addresses, - and returns the number of addresses between them - (including the first one, excluding the last one). + Testing length function + where head = None - All inputs will be valid IPv4 addresses in the form - of strings. The last address will always be greater - than the first one. + The method length, which accepts a linked list + (head), and returns the length of the list. :return: - ","0","test_ips_between","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","Testing length function where head = None","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + Testing calc_combinations_per_row function + :return: + ","1","Testing calc_combinations_per_row function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'solution' function + In this kata, you must create a digital root 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 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + 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 digital_root function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" +" + a and b are equal + :return: + ","0","a and b are equal","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'solve' function with various test data + :return: + ","0","Testing solve function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " Testing monkey_count function @@ -1343,71 +1300,84 @@ numbers up to and including that number, but excluding zero. :return: - ","0","Testing monkey_count function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing monkey_count function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - a and b are equal + 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","a and b are equal","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","1","Testing 'longest_repetition' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing a function named increment_string + Testing permute_a_palindrome function :return: - ","0","Testing increment_string function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing permute_a_palindrome (positive)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing 'save' function: negative - - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + Testing decipher_this function + :param self: :return: - ","0","Testing 'save' function: negative","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing decipher_this function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" " - Test string with mixed type of chars. + Verify that multiply function + returns correct result :return: - ","0","String with mixed type of chars","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","'multiply' function verification","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" " - Testing shark function -> positive + Testing 'DefaultList' class: pop :return: - ","1","Testing shark function (positive)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","2","Testing 'DefaultList' class: pop","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" " - You are given two angles (in degrees) of a triangle. - Find the 3rd. + Testing the function with various test data :return: - ","1","You are given two angles -> find the 3rd.","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","0","Testing zero_fuel function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Algorithms","","" " - A function f(n), should returns the n-th member of sequence. + String subpattern recognition I + + 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","test_sequence","Novice","Sat Nov 23 22:03:15 PST 2024","skipped","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing 'has_subpattern' (part 1) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing easy_line function + Testing largestPower function :return: - ","1","Testing easy_line function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing largestPower function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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. + Repeating char is a space. :return: - ","0","Wolf at the end of the queue","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Control Flow","","" + ","1","String alphabet chars and spaces","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Testing the function with various test data + Testing 'DefaultList' class: remove :return: - ","0","Testing take function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","Testing 'DefaultList' class: remove","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing share_price function + with multiple test inputs :return: - ","0","Testing invite_more_women function (negative)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing share_price function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - Simple positive test + Basic test case + :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 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 calculate_damage with various test data :return: - ","1","Testing toJadenCase function (positive)","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing calculate_damage function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Games","","" " - Testing hoop_count function (negative) + Testing 'thirt' function with various test data :return: - ","2","Testing hoop_count function (negative test case)","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'thirt' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" " - Test string with alphabet chars only. + 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). + :return: - ","0","String with alphabet chars only","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing is_prime function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " Testing alphabet_war function @@ -1438,117 +1408,152 @@ the next shelter (or beginning/end of battlefield). The below samples make it clear for you. :return: - ","0","Testing alphabet_war function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing alphabet_war function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Advanced Language Features","","" " - 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. + Test string with no duplicate chars. :return: - ","0","Testing compute_ranks","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","1","String with no duplicate chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" " - 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 'vaporcode' function :return: - ","0","Testing 'order' function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'vaporcode' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing check_for_factor function. - - This function should test if the - factor is a factor of base. - - Return true if it is a factor. + Testing Warrior class >>> bruce_lee + ","1","Testing Warrior class >>> bruce_lee","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" +" + If there are no good ideas, + as is often the case, return 'Fail!'. :return: - ","1","Testing check_for_factor function: positive flow","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Math","","" + ","2","Should return 'Fail!'s","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - Testing stock_list function with various test data + 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 stock_list function","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'solution' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Testing using empty test data + 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","test_solution_empty","Novice","Sat Nov 23 22:03:14 PST 2024","skipped","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing agents_cleanup function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Repeating char is a space. + Testing Battleship field validator + + 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like null/undefined + :return: + ","1","Testing 'count_sheeps' function: bad input","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" +" + non-consecutive is a negative number. :return: - ","0","String alphabet chars and spaces","Novice","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Negative non consecutive number should be returned","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " Testing duplicate_encode function with various test inputs :return: - ","0","Testing duplicate_encode function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing duplicate_encode function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" " - Testing decipher_this function - :param self: + 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. + + 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 decipher_this function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'feast' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 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. + The player rolls the dice and moves the number + of spaces indicated by the dice two times. - Examples + Pass position and roll and compare the output + to the expected result + :return: + ","1","move function tests","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" +" + Testing men_from_boys function with + various test inputs - ""()"" => true - "")(()))"" => false - ""("" => false - ""(())((()())())"" => true + 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 valid_parentheses function","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing men_from_boys function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" " - Sample Tests for make_upper_case function + 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","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" +" + Testing 'DefaultList' class: insert :return: - ","0","Testing make_upper_case function","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","1","Testing 'DefaultList' class: insert","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing 'DefaultList' class: remove + Test with empty string :return: - ","1","Testing 'DefaultList' class: remove","Novice","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","1","Test with empty string","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" " - The function powers takes a single parameter, - the number n, and should return an array of - unique numbers. + Testing hoop_count function (negative) :return: - ","0","powers function should return an array of unique numbers","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","0","Testing hoop_count function (negative test case)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" " - Testing largestPower function + 3 is not a square number :return: - ","0","Testing largestPower function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Algorithms","","" + ","1","Non square numbers (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like empty list + Testing using empty test data :return: - ","0","Testing 'count_sheeps' function: empty list","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","test_solution_empty","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" " - Test that no_space function removes the spaces - from the string, then return the resultant string. + Testing easy_line function :return: - ","0","Test that no_space function removes the spaces","Beginner","Sat Nov 23 22:03:16 PST 2024","passed","Sat Nov 23 22:03:16 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing easy_line function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - 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","Sat Nov 23 22:03:14 PST 2024","passed","Sat Nov 23 22:03:14 PST 2024","Unit Tests","Algorithms","","" + Testing easy_diagonal function + :param self: + :return: + ","745","Testing easy_diagonal function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" " - Testing password function with various test inputs + Testing likes function with various test data :return: - ","0","Testing password function","Beginner","Sat Nov 23 22:03:15 PST 2024","passed","Sat Nov 23 22:03:15 PST 2024","Unit Tests","Data Structures","","" + ","0","Testing likes function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" diff --git a/allure-report/data/suites.json b/allure-report/data/suites.json index f4f0447feb0..03ebf3a3157 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_basic","uid":"9fa9266ff3a1c464","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_random","uid":"5ea1e8d078b774a7","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":"dc1c20798f5a8f0a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"3ffa72675847f113","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"d562abb8385a61c5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"b36380d1077ce20b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing men_from_boys function","uid":"3529b67f8df1184b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"419686fbcf063822","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Two smallest numbers in the start of the list","uid":"ea40d4fff96687ff","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"a1a7aeb13172d1f0","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"784b6f629ce5c547","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"345a3bae73357330","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"fix_the_meerkat function function verification","uid":"9c241cc9403723af","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test that no_space function removes the spaces","uid":"92a7ecb29f4704b1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a076808e43574371","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":"fbd37fe4a302b125","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"62e01ffb20b661b5","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","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 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"56ad7c473898c46d","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"649728966aa92b06","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"b2705032891531e8","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"900a2cbb7155295","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"44c1e35d7a7b2adb","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5af3f258cf327b2a","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"3e68653192929d9b","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"614133ca9c69e105","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"698c99dcac4b0d93","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Wolf at the end of the queue","uid":"8c8d43e9d38910da","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"72a7c9402c254937","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":"e5b1f301926fe23","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing domain_name function","uid":"2b89947e3a3ec46d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"f727d28e098b30b7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeating_letter function","uid":"cf71a425c4796a9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1b6b658aae9aa73c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"2b98fb3b88f75199","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"6076e8e1aaaa11ab","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"d7d1e3c0f9370311","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","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":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"87dc5713a007f1d7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'find_missing_number' function","uid":"e051944b31d54c14","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"5d8c14adba840438","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"2e46c970e553e301","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"70963d87150b1b7f","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"777edc280c74020d","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"2bfddef765c09569","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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 'parts_sums' function","uid":"ac379271ec16d5ad","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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 likes function","uid":"fb237eeb673713e3","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"1d2104b5fa1d29b","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"ea2292968a342cdc2f3e82fe12bc3a60"}],"uid":"fa9a202351dae141f823df5882ab8297"},{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"c77f51e83226296c","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"bd11ee5929c6c53a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"e78e70d10bce7cf5","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"a76c277b6c0b5940","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"f85ab0d3a8429db7","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"a3395496d8bde803","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"9f9422c1f71252b6","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"15f47b991f284575","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"2cc2dcb2d1d8eb43","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"ac136a3215f7ad6c","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"54bb63fb3736b8ae","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for gen_primes function testing","uid":"dd76819b5fd836d3","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"ba71f124345447fc","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"732b9dd805d734b8","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"9246dbe4ecdc42ce","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"c700736d12b44c86","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Two smallest numbers in the start of the list","uid":"c52dc9ba56a64495","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"f30b225377e5683d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"302e450946481df3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"a61ba5af03a1f296","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"2be24f9b66669d76","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"fix_the_meerkat function function verification","uid":"1f1df83d6cc10b66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test that no_space function removes the spaces","uid":"63b822db5bae14d4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e695b3f4b0bdd51b","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":"1857a7ece8075aa5","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"183ba5aa4a18280","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"56d019840f444cec","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"1abde016dd7f5ee7","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"fa6c346b04c031d5","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"7c6af0e0a129f035","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"405b625cf95f9fbd","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"cb9f6d4c2aaf90e3","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ab3687d99fed99d0","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1bd3919646678e3f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"ff18bec5c293c228","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"190ed93e28b901b","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Wolf at the end of the queue","uid":"6dfafb882d7cc41f","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"197e80b267cccc2b","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":"93b00a3d2e7b92c1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing domain_name function","uid":"6a3f85e29591c654","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeating_letter function","uid":"5ad5cb812fbd5d4a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"3c7a781e3674db5e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"60f7c96f923539a5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"9e017ac7fdaf6bf5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"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":"dc076040e5481dc9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"b0cc123728fa2f2d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"1c3655d4a978bd79","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'find_missing_number' function","uid":"b22afbc33030e55f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e91954f86960f5cf","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c5bce40c2868c787","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"63a8ebd07b8fa1c4","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"354cda6601a7cded","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d6ad7a05187743ff","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"5194ad39db439d08","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"450fbb27e2067be4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"d5aba2cd944d7efd","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"61e07c6ddcc506b1","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3b9e344534b3c5db","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"c00621abb22a9be3","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","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":"4710cc2182eb85cb","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for gen_primes function testing","uid":"9b0ec4eb2cd2dde7","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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/10105e91d30d0887.json b/allure-report/data/test-cases/10105e91d30d0887.json deleted file mode 100644 index aadc3615cfe..00000000000 --- a/allure-report/data/test-cases/10105e91d30d0887.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"10105e91d30d0887","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"484cb5d49df72338","name":"stdout","source":"484cb5d49df72338.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"10105e91d30d0887.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/997065a61e801d4c.json b/allure-report/data/test-cases/1065b8b44c0afc6f.json similarity index 77% rename from allure-report/data/test-cases/997065a61e801d4c.json rename to allure-report/data/test-cases/1065b8b44c0afc6f.json index 8f330320d63..e4eac33b65f 100644 --- a/allure-report/data/test-cases/997065a61e801d4c.json +++ b/allure-report/data/test-cases/1065b8b44c0afc6f.json @@ -1 +1 @@ -{"uid":"997065a61e801d4c","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2dd75c6915b1e704","name":"stdout","source":"2dd75c6915b1e704.txt","type":"text/plain","size":931}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"997065a61e801d4c.json","parameterValues":[]} \ No newline at end of file +{"uid":"1065b8b44c0afc6f","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3f196c8197b3dace","name":"stdout","source":"3f196c8197b3dace.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1065b8b44c0afc6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/10f08e5166368fc8.json b/allure-report/data/test-cases/10f08e5166368fc8.json new file mode 100644 index 00000000000..0917ba481bd --- /dev/null +++ b/allure-report/data/test-cases/10f08e5166368fc8.json @@ -0,0 +1 @@ +{"uid":"10f08e5166368fc8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"10f08e5166368fc8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/500ac2fecd2b527c.json b/allure-report/data/test-cases/11195fbf11e8bfc3.json similarity index 60% rename from allure-report/data/test-cases/500ac2fecd2b527c.json rename to allure-report/data/test-cases/11195fbf11e8bfc3.json index e39400a64c3..8062a46f94d 100644 --- a/allure-report/data/test-cases/500ac2fecd2b527c.json +++ b/allure-report/data/test-cases/11195fbf11e8bfc3.json @@ -1 +1 @@ -{"uid":"500ac2fecd2b527c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"32849bcbd7d5b064","name":"stdout","source":"32849bcbd7d5b064.txt","type":"text/plain","size":129}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"500ac2fecd2b527c.json","parameterValues":[]} \ No newline at end of file +{"uid":"11195fbf11e8bfc3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d9ffb014ecda8013","name":"stdout","source":"d9ffb014ecda8013.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"11195fbf11e8bfc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95a29a9545c416cd.json b/allure-report/data/test-cases/111dbc365b1f3e78.json similarity index 71% rename from allure-report/data/test-cases/95a29a9545c416cd.json rename to allure-report/data/test-cases/111dbc365b1f3e78.json index 76c42fa1f7d..e9494e47799 100644 --- a/allure-report/data/test-cases/95a29a9545c416cd.json +++ b/allure-report/data/test-cases/111dbc365b1f3e78.json @@ -1 +1 @@ -{"uid":"95a29a9545c416cd","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"95a29a9545c416cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"111dbc365b1f3e78","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"111dbc365b1f3e78.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/112ca50049d27c.json b/allure-report/data/test-cases/112ca50049d27c.json new file mode 100644 index 00000000000..539394fd953 --- /dev/null +++ b/allure-report/data/test-cases/112ca50049d27c.json @@ -0,0 +1 @@ +{"uid":"112ca50049d27c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732764221288,"stop":1732764221288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9689f8dcf21c7e63","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0}},{"uid":"a355bc32a0d73da0","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"65b2cf00b86ce444","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"112ca50049d27c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/113e69c4ee0f071.json b/allure-report/data/test-cases/113e69c4ee0f071.json new file mode 100644 index 00000000000..c95f76c9dd8 --- /dev/null +++ b/allure-report/data/test-cases/113e69c4ee0f071.json @@ -0,0 +1 @@ +{"uid":"113e69c4ee0f071","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"113e69c4ee0f071.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b982073aac2c9d08.json b/allure-report/data/test-cases/117e19024dff1cfd.json similarity index 61% rename from allure-report/data/test-cases/b982073aac2c9d08.json rename to allure-report/data/test-cases/117e19024dff1cfd.json index 770c5535b1f..8435268529a 100644 --- a/allure-report/data/test-cases/b982073aac2c9d08.json +++ b/allure-report/data/test-cases/117e19024dff1cfd.json @@ -1 +1 @@ -{"uid":"b982073aac2c9d08","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a613cf938d78c4d4","name":"stdout","source":"a613cf938d78c4d4.txt","type":"text/plain","size":531}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"b982073aac2c9d08.json","parameterValues":[]} \ No newline at end of file +{"uid":"117e19024dff1cfd","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f8e2ebe7761508b","name":"stdout","source":"2f8e2ebe7761508b.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"117e19024dff1cfd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8b3178794c4402b.json b/allure-report/data/test-cases/11ff02c2df19530d.json similarity index 70% rename from allure-report/data/test-cases/e8b3178794c4402b.json rename to allure-report/data/test-cases/11ff02c2df19530d.json index ca9a1d10850..6eb66b72949 100644 --- a/allure-report/data/test-cases/e8b3178794c4402b.json +++ b/allure-report/data/test-cases/11ff02c2df19530d.json @@ -1 +1 @@ -{"uid":"e8b3178794c4402b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d6941eaebe2a3ba3","name":"stdout","source":"d6941eaebe2a3ba3.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e8b3178794c4402b.json","parameterValues":[]} \ No newline at end of file +{"uid":"11ff02c2df19530d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"943e8734629abe38","name":"stdout","source":"943e8734629abe38.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"11ff02c2df19530d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd9da9d797a3c2ab.json b/allure-report/data/test-cases/1212df96f6b2dc34.json similarity index 65% rename from allure-report/data/test-cases/cd9da9d797a3c2ab.json rename to allure-report/data/test-cases/1212df96f6b2dc34.json index a08d6a00a55..266e6c65736 100644 --- a/allure-report/data/test-cases/cd9da9d797a3c2ab.json +++ b/allure-report/data/test-cases/1212df96f6b2dc34.json @@ -1 +1 @@ -{"uid":"cd9da9d797a3c2ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7f3ec04c5333a588","name":"stdout","source":"7f3ec04c5333a588.txt","type":"text/plain","size":298}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cd9da9d797a3c2ab.json","parameterValues":[]} \ No newline at end of file +{"uid":"1212df96f6b2dc34","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b1edf41b3f6059d4","name":"stdout","source":"b1edf41b3f6059d4.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1212df96f6b2dc34.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/777edc280c74020d.json b/allure-report/data/test-cases/1216cba41972f97c.json similarity index 53% rename from allure-report/data/test-cases/777edc280c74020d.json rename to allure-report/data/test-cases/1216cba41972f97c.json index d3c953ae516..a2351577046 100644 --- a/allure-report/data/test-cases/777edc280c74020d.json +++ b/allure-report/data/test-cases/1216cba41972f97c.json @@ -1 +1 @@ -{"uid":"777edc280c74020d","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1732428194553,"stop":1732428194553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"772c9d6fdd465a8a","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"7a3ebc7dbd092b26","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"777edc280c74020d.json","parameterValues":[]} \ No newline at end of file +{"uid":"1216cba41972f97c","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1216cba41972f97c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2db5e1fafcf7f4e1.json b/allure-report/data/test-cases/122ba025ebcea5dd.json similarity index 71% rename from allure-report/data/test-cases/2db5e1fafcf7f4e1.json rename to allure-report/data/test-cases/122ba025ebcea5dd.json index c7ad708daed..52ffe61d363 100644 --- a/allure-report/data/test-cases/2db5e1fafcf7f4e1.json +++ b/allure-report/data/test-cases/122ba025ebcea5dd.json @@ -1 +1 @@ -{"uid":"2db5e1fafcf7f4e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"92375ce905d3bb32","name":"stdout","source":"92375ce905d3bb32.txt","type":"text/plain","size":59}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2db5e1fafcf7f4e1.json","parameterValues":[]} \ No newline at end of file +{"uid":"122ba025ebcea5dd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ed1895964a4f1dc3","name":"stdout","source":"ed1895964a4f1dc3.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"122ba025ebcea5dd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87dc5713a007f1d7.json b/allure-report/data/test-cases/1230413e064883bb.json similarity index 59% rename from allure-report/data/test-cases/87dc5713a007f1d7.json rename to allure-report/data/test-cases/1230413e064883bb.json index 83866760356..2e017b98bf7 100644 --- a/allure-report/data/test-cases/87dc5713a007f1d7.json +++ b/allure-report/data/test-cases/1230413e064883bb.json @@ -1 +1 @@ -{"uid":"87dc5713a007f1d7","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1732428195504,"stop":1732428195504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4544ac5de6415953","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"951576068e42ee36","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d9458c8615b9e985","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"87dc5713a007f1d7.json","parameterValues":[]} \ No newline at end of file +{"uid":"1230413e064883bb","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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":"1230413e064883bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1251fa1056fea3d4.json b/allure-report/data/test-cases/1251fa1056fea3d4.json new file mode 100644 index 00000000000..5b32476148a --- /dev/null +++ b/allure-report/data/test-cases/1251fa1056fea3d4.json @@ -0,0 +1 @@ +{"uid":"1251fa1056fea3d4","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dc89f010c8fc632","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1}},{"uid":"86173a2048ae1d24","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"b9086c98d6d71504","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1251fa1056fea3d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1265911f14bcd919.json b/allure-report/data/test-cases/1265911f14bcd919.json deleted file mode 100644 index 77fa8634fea..00000000000 --- a/allure-report/data/test-cases/1265911f14bcd919.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1265911f14bcd919","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732428194179,"stop":1732428194179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"33fff97900a7d8bc","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"54043a9fba80789b","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1265911f14bcd919.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12688af3a6e6b4d.json b/allure-report/data/test-cases/12688af3a6e6b4d.json deleted file mode 100644 index 95027662db0..00000000000 --- a/allure-report/data/test-cases/12688af3a6e6b4d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"12688af3a6e6b4d","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5fae94f2517e85b","name":"stdout","source":"a5fae94f2517e85b.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"12688af3a6e6b4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62e01ffb20b661b5.json b/allure-report/data/test-cases/126c2e67245419a9.json similarity index 66% rename from allure-report/data/test-cases/62e01ffb20b661b5.json rename to allure-report/data/test-cases/126c2e67245419a9.json index 7a9af991b34..f3a85b045d8 100644 --- a/allure-report/data/test-cases/62e01ffb20b661b5.json +++ b/allure-report/data/test-cases/126c2e67245419a9.json @@ -1 +1 @@ -{"uid":"62e01ffb20b661b5","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":1732428195854,"stop":1732428195854,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"62e01ffb20b661b5.json","parameterValues":[]} \ No newline at end of file +{"uid":"126c2e67245419a9","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":1732428195854,"stop":1732428195854,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"126c2e67245419a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0b6b39a4d4f9bf4.json b/allure-report/data/test-cases/12c07b407ce072f5.json similarity index 67% rename from allure-report/data/test-cases/e0b6b39a4d4f9bf4.json rename to allure-report/data/test-cases/12c07b407ce072f5.json index c32362dd485..70ed72b666e 100644 --- a/allure-report/data/test-cases/e0b6b39a4d4f9bf4.json +++ b/allure-report/data/test-cases/12c07b407ce072f5.json @@ -1 +1 @@ -{"uid":"e0b6b39a4d4f9bf4","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"888fe7b1e08f632a","name":"stdout","source":"888fe7b1e08f632a.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"e0b6b39a4d4f9bf4.json","parameterValues":[]} \ No newline at end of file +{"uid":"12c07b407ce072f5","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7a82343faf93d23b","name":"stdout","source":"7a82343faf93d23b.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"12c07b407ce072f5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4d9b4f519ec1ce3.json b/allure-report/data/test-cases/139cceadff83cc0d.json similarity index 76% rename from allure-report/data/test-cases/d4d9b4f519ec1ce3.json rename to allure-report/data/test-cases/139cceadff83cc0d.json index 2fe406ae561..8c012a93518 100644 --- a/allure-report/data/test-cases/d4d9b4f519ec1ce3.json +++ b/allure-report/data/test-cases/139cceadff83cc0d.json @@ -1 +1 @@ -{"uid":"d4d9b4f519ec1ce3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ba5b206c202bb2e0","name":"stdout","source":"ba5b206c202bb2e0.txt","type":"text/plain","size":1178}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d4d9b4f519ec1ce3.json","parameterValues":[]} \ No newline at end of file +{"uid":"139cceadff83cc0d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9fbeafabb75260d1","name":"stdout","source":"9fbeafabb75260d1.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"139cceadff83cc0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eaaef6c05ba4cb98.json b/allure-report/data/test-cases/13c4343c88a790e8.json similarity index 71% rename from allure-report/data/test-cases/eaaef6c05ba4cb98.json rename to allure-report/data/test-cases/13c4343c88a790e8.json index 1fa88357ad1..d45875d7899 100644 --- a/allure-report/data/test-cases/eaaef6c05ba4cb98.json +++ b/allure-report/data/test-cases/13c4343c88a790e8.json @@ -1 +1 @@ -{"uid":"eaaef6c05ba4cb98","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c02985fbd2700004","name":"stdout","source":"c02985fbd2700004.txt","type":"text/plain","size":263}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"eaaef6c05ba4cb98.json","parameterValues":[]} \ No newline at end of file +{"uid":"13c4343c88a790e8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"287eb5fa3fe3b8e6","name":"stdout","source":"287eb5fa3fe3b8e6.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"13c4343c88a790e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/593778a5ba99d447.json b/allure-report/data/test-cases/13c5e35ef3c791a0.json similarity index 58% rename from allure-report/data/test-cases/593778a5ba99d447.json rename to allure-report/data/test-cases/13c5e35ef3c791a0.json index 8c664abe1b1..5a3e2eb6500 100644 --- a/allure-report/data/test-cases/593778a5ba99d447.json +++ b/allure-report/data/test-cases/13c5e35ef3c791a0.json @@ -1 +1 @@ -{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should raise exception for invalid n (n < 0) values.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2dc119e05306bc09","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"d936198953d58b58","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"593778a5ba99d447.json","parameterValues":[]} \ No newline at end of file +{"uid":"13c5e35ef3c791a0","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"13c5e35ef3c791a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13f340b5f893b4e2.json b/allure-report/data/test-cases/13f340b5f893b4e2.json new file mode 100644 index 00000000000..bf94ae32e60 --- /dev/null +++ b/allure-report/data/test-cases/13f340b5f893b4e2.json @@ -0,0 +1 @@ +{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732764220798,"stop":1732764220798,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"76b07a3b0b784bd3","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1}},{"uid":"ed242b4479970e98","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"6d2f9028315647c1","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"13f340b5f893b4e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c17e0f5363e3016.json b/allure-report/data/test-cases/142b0c4f3754d996.json similarity index 76% rename from allure-report/data/test-cases/3c17e0f5363e3016.json rename to allure-report/data/test-cases/142b0c4f3754d996.json index d6a58039119..c13f342bed9 100644 --- a/allure-report/data/test-cases/3c17e0f5363e3016.json +++ b/allure-report/data/test-cases/142b0c4f3754d996.json @@ -1 +1 @@ -{"uid":"3c17e0f5363e3016","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2bee8bc5b94972e3","name":"stdout","source":"2bee8bc5b94972e3.txt","type":"text/plain","size":12051}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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 PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3c17e0f5363e3016.json","parameterValues":[]} \ No newline at end of file +{"uid":"142b0c4f3754d996","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc1b1893c2b8b52d","name":"stdout","source":"cc1b1893c2b8b52d.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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 PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"142b0c4f3754d996.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/142f5165c8452d36.json b/allure-report/data/test-cases/142f5165c8452d36.json new file mode 100644 index 00000000000..338b1e58ac4 --- /dev/null +++ b/allure-report/data/test-cases/142f5165c8452d36.json @@ -0,0 +1 @@ +{"uid":"142f5165c8452d36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732764219132,"stop":1732764219132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"MEMOIZATION"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d3ab7c4bfc7d171f","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0}},{"uid":"8edcba07a1a3ea56","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"6e4923e8771eebeb","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"142f5165c8452d36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14829aa4ce177c0a.json b/allure-report/data/test-cases/14829aa4ce177c0a.json new file mode 100644 index 00000000000..587f86ecab1 --- /dev/null +++ b/allure-report/data/test-cases/14829aa4ce177c0a.json @@ -0,0 +1 @@ +{"uid":"14829aa4ce177c0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732764219144,"stop":1732764219144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732764219146,"stop":1732764219146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BUGS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e78a552d574aad16","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0}},{"uid":"4df9c941adb35f26","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"d8b4a2733a1f48dc","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"14829aa4ce177c0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f1172fa5620cc18.json b/allure-report/data/test-cases/14c8b0cd48caa4d6.json similarity index 68% rename from allure-report/data/test-cases/4f1172fa5620cc18.json rename to allure-report/data/test-cases/14c8b0cd48caa4d6.json index e7b854dfb9f..0eafee3e8e3 100644 --- a/allure-report/data/test-cases/4f1172fa5620cc18.json +++ b/allure-report/data/test-cases/14c8b0cd48caa4d6.json @@ -1 +1 @@ -{"uid":"4f1172fa5620cc18","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9252a83ce892d840","name":"stdout","source":"9252a83ce892d840.txt","type":"text/plain","size":1536}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"4f1172fa5620cc18.json","parameterValues":[]} \ No newline at end of file +{"uid":"14c8b0cd48caa4d6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcd71aa1ac7b19de","name":"stdout","source":"fcd71aa1ac7b19de.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"14c8b0cd48caa4d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14cdd8696beec9a.json b/allure-report/data/test-cases/14cdd8696beec9a.json new file mode 100644 index 00000000000..cd3c3734dd9 --- /dev/null +++ b/allure-report/data/test-cases/14cdd8696beec9a.json @@ -0,0 +1 @@ +{"uid":"14cdd8696beec9a","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":1732428195568,"stop":1732428195568,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"14cdd8696beec9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/152d6167de0fb37e.json b/allure-report/data/test-cases/152d6167de0fb37e.json new file mode 100644 index 00000000000..fd38ee6fa11 --- /dev/null +++ b/allure-report/data/test-cases/152d6167de0fb37e.json @@ -0,0 +1 @@ +{"uid":"152d6167de0fb37e","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41d5484e0bc70d7d","name":"stdout","source":"41d5484e0bc70d7d.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"152d6167de0fb37e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15315242cf60389c.json b/allure-report/data/test-cases/15315242cf60389c.json new file mode 100644 index 00000000000..8b878b1d35d --- /dev/null +++ b/allure-report/data/test-cases/15315242cf60389c.json @@ -0,0 +1 @@ +{"uid":"15315242cf60389c","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":1732428195998,"stop":1732428195998,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732428196003,"stop":1732428196003,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of powers of 2"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"15315242cf60389c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73100341c811e8de.json b/allure-report/data/test-cases/1531ff5e4d5380e4.json similarity index 72% rename from allure-report/data/test-cases/73100341c811e8de.json rename to allure-report/data/test-cases/1531ff5e4d5380e4.json index 64d8b19c4bf..dd8b02a1303 100644 --- a/allure-report/data/test-cases/73100341c811e8de.json +++ b/allure-report/data/test-cases/1531ff5e4d5380e4.json @@ -1 +1 @@ -{"uid":"73100341c811e8de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"73100341c811e8de.json","parameterValues":[]} \ No newline at end of file +{"uid":"1531ff5e4d5380e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1531ff5e4d5380e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28c03a6c5cc24cef.json b/allure-report/data/test-cases/156fc08ab7167514.json similarity index 54% rename from allure-report/data/test-cases/28c03a6c5cc24cef.json rename to allure-report/data/test-cases/156fc08ab7167514.json index 89aef4cbda0..1a46bf41891 100644 --- a/allure-report/data/test-cases/28c03a6c5cc24cef.json +++ b/allure-report/data/test-cases/156fc08ab7167514.json @@ -1 +1 @@ -{"uid":"28c03a6c5cc24cef","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"38365b0f6f350ca5","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"64d00badde981bd3","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"28c03a6c5cc24cef.json","parameterValues":[]} \ No newline at end of file +{"uid":"156fc08ab7167514","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"156fc08ab7167514.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15f47b991f284575.json b/allure-report/data/test-cases/15f47b991f284575.json deleted file mode 100644 index c7e20dc063a..00000000000 --- a/allure-report/data/test-cases/15f47b991f284575.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"15f47b991f284575","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":30,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1732428194156,"stop":1732428194156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b9ab4feb44c59984","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"837e4ce24ac45efb","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"15f47b991f284575.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/161e5fcc0f247.json b/allure-report/data/test-cases/161e5fcc0f247.json deleted file mode 100644 index 3fdf9b7217e..00000000000 --- a/allure-report/data/test-cases/161e5fcc0f247.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"161e5fcc0f247","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d01b1971a8a3587e","name":"stdout","source":"d01b1971a8a3587e.txt","type":"text/plain","size":336}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"161e5fcc0f247.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/162a4f2fa010c721.json b/allure-report/data/test-cases/162a4f2fa010c721.json new file mode 100644 index 00000000000..e64d8517bfa --- /dev/null +++ b/allure-report/data/test-cases/162a4f2fa010c721.json @@ -0,0 +1 @@ +{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732764220793,"stop":1732764220793,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fefeabf3e26a53bd","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1}},{"uid":"3846d19bb4975491","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"acf18a2788645a5a","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"162a4f2fa010c721.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/168d1058a213deae.json b/allure-report/data/test-cases/168d1058a213deae.json new file mode 100644 index 00000000000..064c607e9f7 --- /dev/null +++ b/allure-report/data/test-cases/168d1058a213deae.json @@ -0,0 +1 @@ +{"uid":"168d1058a213deae","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732764220365,"stop":1732764220365,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Sums of Parts"},{"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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9665a188a4944ac6","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"168d1058a213deae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a9b52813983814b.json b/allure-report/data/test-cases/168ffd09c766442f.json similarity index 74% rename from allure-report/data/test-cases/8a9b52813983814b.json rename to allure-report/data/test-cases/168ffd09c766442f.json index 9a07e42ae15..147e4b67809 100644 --- a/allure-report/data/test-cases/8a9b52813983814b.json +++ b/allure-report/data/test-cases/168ffd09c766442f.json @@ -1 +1 @@ -{"uid":"8a9b52813983814b","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5b8ca288b44682ec","name":"stdout","source":"5b8ca288b44682ec.txt","type":"text/plain","size":348}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"8a9b52813983814b.json","parameterValues":[]} \ No newline at end of file +{"uid":"168ffd09c766442f","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e812b8e3303683b","name":"stdout","source":"8e812b8e3303683b.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"168ffd09c766442f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd6fef8ab37d71ba.json b/allure-report/data/test-cases/170ac645fcf8229c.json similarity index 60% rename from allure-report/data/test-cases/dd6fef8ab37d71ba.json rename to allure-report/data/test-cases/170ac645fcf8229c.json index 19f22c3e6b1..bb98617c31f 100644 --- a/allure-report/data/test-cases/dd6fef8ab37d71ba.json +++ b/allure-report/data/test-cases/170ac645fcf8229c.json @@ -1 +1 @@ -{"uid":"dd6fef8ab37d71ba","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":1732428196011,"stop":1732428196011,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4706ff9d2a2958c","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"6e3ce129a9f8f588","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e7eaed29fbceb75","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"dd6fef8ab37d71ba.json","parameterValues":[]} \ No newline at end of file +{"uid":"170ac645fcf8229c","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":1732428196011,"stop":1732428196011,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"170ac645fcf8229c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e97ebddff1ce0b6f.json b/allure-report/data/test-cases/1751fe3c0a6687c3.json similarity index 64% rename from allure-report/data/test-cases/e97ebddff1ce0b6f.json rename to allure-report/data/test-cases/1751fe3c0a6687c3.json index aba63f806f0..6bfed4d3e4f 100644 --- a/allure-report/data/test-cases/e97ebddff1ce0b6f.json +++ b/allure-report/data/test-cases/1751fe3c0a6687c3.json @@ -1 +1 @@ -{"uid":"e97ebddff1ce0b6f","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d574363acc62acc","name":"stdout","source":"5d574363acc62acc.txt","type":"text/plain","size":1088}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"e97ebddff1ce0b6f.json","parameterValues":[]} \ No newline at end of file +{"uid":"1751fe3c0a6687c3","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d23d24d51ab0f2ec","name":"stdout","source":"d23d24d51ab0f2ec.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"1751fe3c0a6687c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/17c9a97f8a5ea815.json b/allure-report/data/test-cases/17c9a97f8a5ea815.json new file mode 100644 index 00000000000..d2985d5ff5a --- /dev/null +++ b/allure-report/data/test-cases/17c9a97f8a5ea815.json @@ -0,0 +1 @@ +{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219332,"stop":1732764219332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a8e7ed0b9e8a05d4","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0}},{"uid":"632eacb89b6e193e","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"4430fa612ad99844","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"17c9a97f8a5ea815.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/183ba5aa4a18280.json b/allure-report/data/test-cases/183ba5aa4a18280.json new file mode 100644 index 00000000000..45303676eab --- /dev/null +++ b/allure-report/data/test-cases/183ba5aa4a18280.json @@ -0,0 +1 @@ +{"uid":"183ba5aa4a18280","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":1732764220545,"stop":1732764220545,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":1732764220544,"stop":1732764220544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"126c2e67245419a9","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"183ba5aa4a18280.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1857a7ece8075aa5.json b/allure-report/data/test-cases/1857a7ece8075aa5.json new file mode 100644 index 00000000000..85630edf532 --- /dev/null +++ b/allure-report/data/test-cases/1857a7ece8075aa5.json @@ -0,0 +1 @@ +{"uid":"1857a7ece8075aa5","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b6850c9f0a02820","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1}},{"uid":"dc9bdff2273b81f8","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"7ed5e03fb846420f","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1857a7ece8075aa5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/190ed93e28b901b.json b/allure-report/data/test-cases/190ed93e28b901b.json new file mode 100644 index 00000000000..f8388ce96c0 --- /dev/null +++ b/allure-report/data/test-cases/190ed93e28b901b.json @@ -0,0 +1 @@ +{"uid":"190ed93e28b901b","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":1732764220999,"stop":1732764220999,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732764221002,"stop":1732764221002,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Personalized greeting"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3714d7b27c33cf44","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0}},{"uid":"6902a5b0a224435c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"12c07b407ce072f5","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"190ed93e28b901b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e911f85aab34c4e6.json b/allure-report/data/test-cases/1938d829429abf54.json similarity index 71% rename from allure-report/data/test-cases/e911f85aab34c4e6.json rename to allure-report/data/test-cases/1938d829429abf54.json index 08e92cdf4b5..073c1edef51 100644 --- a/allure-report/data/test-cases/e911f85aab34c4e6.json +++ b/allure-report/data/test-cases/1938d829429abf54.json @@ -1 +1 @@ -{"uid":"e911f85aab34c4e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cfc199981b020b59","name":"stdout","source":"cfc199981b020b59.txt","type":"text/plain","size":36}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e911f85aab34c4e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1938d829429abf54","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e1032190833aaac7","name":"stdout","source":"e1032190833aaac7.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1938d829429abf54.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aeac31a6eff8ced3.json b/allure-report/data/test-cases/197e00510d3eb166.json similarity index 63% rename from allure-report/data/test-cases/aeac31a6eff8ced3.json rename to allure-report/data/test-cases/197e00510d3eb166.json index cb58caa0c07..2d2fd53ad3a 100644 --- a/allure-report/data/test-cases/aeac31a6eff8ced3.json +++ b/allure-report/data/test-cases/197e00510d3eb166.json @@ -1 +1 @@ -{"uid":"aeac31a6eff8ced3","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a45c99b47ae5bc6","name":"stdout","source":"8a45c99b47ae5bc6.txt","type":"text/plain","size":896}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"aeac31a6eff8ced3.json","parameterValues":[]} \ No newline at end of file +{"uid":"197e00510d3eb166","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9799e3f6110c5a32","name":"stdout","source":"9799e3f6110c5a32.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"197e00510d3eb166.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/72a7c9402c254937.json b/allure-report/data/test-cases/197e80b267cccc2b.json similarity index 69% rename from allure-report/data/test-cases/72a7c9402c254937.json rename to allure-report/data/test-cases/197e80b267cccc2b.json index 357a4822cc7..287379644ff 100644 --- a/allure-report/data/test-cases/72a7c9402c254937.json +++ b/allure-report/data/test-cases/197e80b267cccc2b.json @@ -1 +1 @@ -{"uid":"72a7c9402c254937","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"63b31f8c0af20d94","name":"stdout","source":"63b31f8c0af20d94.txt","type":"text/plain","size":772}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9a401d5b28fee66a","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"38639b46d1e381a9","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"72a7c9402c254937.json","parameterValues":[]} \ No newline at end of file +{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73b1a6171e8a5d4c","name":"stdout","source":"73b1a6171e8a5d4c.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9fea94ac2fbcf5b2","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"197e80b267cccc2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19cfe4000991e820.json b/allure-report/data/test-cases/19cfe4000991e820.json new file mode 100644 index 00000000000..e1840707753 --- /dev/null +++ b/allure-report/data/test-cases/19cfe4000991e820.json @@ -0,0 +1 @@ +{"uid":"19cfe4000991e820","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":1732764220374,"stop":1732764220374,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732764220376,"stop":1732764220376,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Unique In Order"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f0cf41ee7ec62257","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0}},{"uid":"8bbe3b647eb4bfeb","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"d7ea74c17659aeca","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"19cfe4000991e820.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a13c6a89153460b.json b/allure-report/data/test-cases/1a13c6a89153460b.json new file mode 100644 index 00000000000..28583762493 --- /dev/null +++ b/allure-report/data/test-cases/1a13c6a89153460b.json @@ -0,0 +1 @@ +{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1732764218545,"stop":1732764218545,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aec2fb642901e92","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0}},{"uid":"1c217987ee1a1d39","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"616388e3d3f3ad4c","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1a13c6a89153460b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e78e70d10bce7cf5.json b/allure-report/data/test-cases/1a204aa873a93d86.json similarity index 56% rename from allure-report/data/test-cases/e78e70d10bce7cf5.json rename to allure-report/data/test-cases/1a204aa873a93d86.json index fc3968a7b46..3a089df8de2 100644 --- a/allure-report/data/test-cases/e78e70d10bce7cf5.json +++ b/allure-report/data/test-cases/1a204aa873a93d86.json @@ -1 +1 @@ -{"uid":"e78e70d10bce7cf5","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732428193910,"stop":1732428193910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aeac31a6eff8ced3","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"bfc6af42137d4620","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"371888dd705cab28","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"e78e70d10bce7cf5.json","parameterValues":[]} \ No newline at end of file +{"uid":"1a204aa873a93d86","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732428193910,"stop":1732428193910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"1a204aa873a93d86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a8f12ae9a258bd1.json b/allure-report/data/test-cases/1a8f12ae9a258bd1.json new file mode 100644 index 00000000000..ddac1b9cac1 --- /dev/null +++ b/allure-report/data/test-cases/1a8f12ae9a258bd1.json @@ -0,0 +1 @@ +{"uid":"1a8f12ae9a258bd1","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a68de0f4d0253c8","name":"stdout","source":"a68de0f4d0253c8.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1a8f12ae9a258bd1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1abde016dd7f5ee7.json b/allure-report/data/test-cases/1abde016dd7f5ee7.json new file mode 100644 index 00000000000..020d5cbc480 --- /dev/null +++ b/allure-report/data/test-cases/1abde016dd7f5ee7.json @@ -0,0 +1 @@ +{"uid":"1abde016dd7f5ee7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732764220591,"stop":1732764220591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Maximum Multiple"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"710a5d14f0382e2f","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0}},{"uid":"a1980ae57d2c7b3","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"da222867360b442e","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"1abde016dd7f5ee7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8d7fd46b923bc4f.json b/allure-report/data/test-cases/1ae269d449ac7d5e.json similarity index 66% rename from allure-report/data/test-cases/f8d7fd46b923bc4f.json rename to allure-report/data/test-cases/1ae269d449ac7d5e.json index 339e72de6f4..7f47892533f 100644 --- a/allure-report/data/test-cases/f8d7fd46b923bc4f.json +++ b/allure-report/data/test-cases/1ae269d449ac7d5e.json @@ -1 +1 @@ -{"uid":"f8d7fd46b923bc4f","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"403983f6828d59c5","name":"stdout","source":"403983f6828d59c5.txt","type":"text/plain","size":196}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"f8d7fd46b923bc4f.json","parameterValues":[]} \ No newline at end of file +{"uid":"1ae269d449ac7d5e","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4a17336d068efc8d","name":"stdout","source":"4a17336d068efc8d.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"1ae269d449ac7d5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3d1eec0ca08f2cd.json b/allure-report/data/test-cases/1b24a6e8f9065ccb.json similarity index 62% rename from allure-report/data/test-cases/c3d1eec0ca08f2cd.json rename to allure-report/data/test-cases/1b24a6e8f9065ccb.json index 5a3ffa30861..dcfae60e73f 100644 --- a/allure-report/data/test-cases/c3d1eec0ca08f2cd.json +++ b/allure-report/data/test-cases/1b24a6e8f9065ccb.json @@ -1 +1 @@ -{"uid":"c3d1eec0ca08f2cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732428195676,"stop":1732428195676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8cf44bb18023836b","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"34783e6754d286ec","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"debf2b82465b0240","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"c3d1eec0ca08f2cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b24a6e8f9065ccb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732428195676,"stop":1732428195676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"1b24a6e8f9065ccb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b57aafe4439b9a8.json b/allure-report/data/test-cases/1b57aafe4439b9a8.json new file mode 100644 index 00000000000..595cfebb536 --- /dev/null +++ b/allure-report/data/test-cases/1b57aafe4439b9a8.json @@ -0,0 +1 @@ +{"uid":"1b57aafe4439b9a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732764221008,"stop":1732764221008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732764221010,"stop":1732764221010,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732764221011,"stop":1732764221011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"393b88e5ac625a50","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0}},{"uid":"6b42b881fa048473","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"e65c2aee0db2b724","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"1b57aafe4439b9a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbd37fe4a302b125.json b/allure-report/data/test-cases/1b6850c9f0a02820.json similarity index 59% rename from allure-report/data/test-cases/fbd37fe4a302b125.json rename to allure-report/data/test-cases/1b6850c9f0a02820.json index 9ceb4f32708..6a4ba3f292c 100644 --- a/allure-report/data/test-cases/fbd37fe4a302b125.json +++ b/allure-report/data/test-cases/1b6850c9f0a02820.json @@ -1 +1 @@ -{"uid":"fbd37fe4a302b125","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732428195732,"stop":1732428195732,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195734,"stop":1732428195734,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5a497340f38e6588","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"684d4d6fbb32213a","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fbd37fe4a302b125.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b6850c9f0a02820","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1b6850c9f0a02820.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36b60db7bef82294.json b/allure-report/data/test-cases/1b6eab50f2f722f5.json similarity index 64% rename from allure-report/data/test-cases/36b60db7bef82294.json rename to allure-report/data/test-cases/1b6eab50f2f722f5.json index 9eafca65175..68e95235e1a 100644 --- a/allure-report/data/test-cases/36b60db7bef82294.json +++ b/allure-report/data/test-cases/1b6eab50f2f722f5.json @@ -1 +1 @@ -{"uid":"36b60db7bef82294","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d216ad47549f357","name":"stdout","source":"6d216ad47549f357.txt","type":"text/plain","size":353}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"36b60db7bef82294.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b6eab50f2f722f5","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"479118fc0413c04b","name":"stdout","source":"479118fc0413c04b.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1b6eab50f2f722f5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e051944b31d54c14.json b/allure-report/data/test-cases/1b7657273f039658.json similarity index 59% rename from allure-report/data/test-cases/e051944b31d54c14.json rename to allure-report/data/test-cases/1b7657273f039658.json index 86de1875ef4..2e2490c35d8 100644 --- a/allure-report/data/test-cases/e051944b31d54c14.json +++ b/allure-report/data/test-cases/1b7657273f039658.json @@ -1 +1 @@ -{"uid":"e051944b31d54c14","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":1732428195544,"stop":1732428195544,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1732428195546,"stop":1732428195546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"82a681e3f0c8f54d","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"c8870275fadfceea","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"e051944b31d54c14.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b7657273f039658","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":1732428195544,"stop":1732428195544,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1b7657273f039658.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e32d03efab2941f.json b/allure-report/data/test-cases/1b95adcea61e4ef5.json similarity index 68% rename from allure-report/data/test-cases/4e32d03efab2941f.json rename to allure-report/data/test-cases/1b95adcea61e4ef5.json index 686ff87c6fa..154d20aeb6a 100644 --- a/allure-report/data/test-cases/4e32d03efab2941f.json +++ b/allure-report/data/test-cases/1b95adcea61e4ef5.json @@ -1 +1 @@ -{"uid":"4e32d03efab2941f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4e32d03efab2941f.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b95adcea61e4ef5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b95adcea61e4ef5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90c86a448294d535.json b/allure-report/data/test-cases/1b9a7ef859e6370c.json similarity index 70% rename from allure-report/data/test-cases/90c86a448294d535.json rename to allure-report/data/test-cases/1b9a7ef859e6370c.json index fe1c04b0c00..860f6eedd79 100644 --- a/allure-report/data/test-cases/90c86a448294d535.json +++ b/allure-report/data/test-cases/1b9a7ef859e6370c.json @@ -1 +1 @@ -{"uid":"90c86a448294d535","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c34a92b7a1b9869e","name":"stdout","source":"c34a92b7a1b9869e.txt","type":"text/plain","size":939}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"90c86a448294d535.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b9a7ef859e6370c","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"113f10167539853c","name":"stdout","source":"113f10167539853c.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"1b9a7ef859e6370c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1baceb9fc9699f7.json b/allure-report/data/test-cases/1baceb9fc9699f7.json deleted file mode 100644 index 4bee9227e4e..00000000000 --- a/allure-report/data/test-cases/1baceb9fc9699f7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1baceb9fc9699f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"14f1a5601096c54c","name":"stdout","source":"14f1a5601096c54c.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1baceb9fc9699f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3287e9af1a22ed8b.json b/allure-report/data/test-cases/1bcebf4fb624aad6.json similarity index 73% rename from allure-report/data/test-cases/3287e9af1a22ed8b.json rename to allure-report/data/test-cases/1bcebf4fb624aad6.json index a5453547c39..ec8ddd1f1d5 100644 --- a/allure-report/data/test-cases/3287e9af1a22ed8b.json +++ b/allure-report/data/test-cases/1bcebf4fb624aad6.json @@ -1 +1 @@ -{"uid":"3287e9af1a22ed8b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"40789a2ed03aa082","name":"stdout","source":"40789a2ed03aa082.txt","type":"text/plain","size":48}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3287e9af1a22ed8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"1bcebf4fb624aad6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ff7405a34f99b6d6","name":"stdout","source":"ff7405a34f99b6d6.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1bcebf4fb624aad6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bd3919646678e3f.json b/allure-report/data/test-cases/1bd3919646678e3f.json new file mode 100644 index 00000000000..5cf72781175 --- /dev/null +++ b/allure-report/data/test-cases/1bd3919646678e3f.json @@ -0,0 +1 @@ +{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d86332e2eabe60c3","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0}},{"uid":"a5bb3631db18a9d9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"1531ff5e4d5380e4","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"1bd3919646678e3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e378762a5dac9d1e.json b/allure-report/data/test-cases/1be5b98a41807de8.json similarity index 72% rename from allure-report/data/test-cases/e378762a5dac9d1e.json rename to allure-report/data/test-cases/1be5b98a41807de8.json index acd1933b005..3d00b09915d 100644 --- a/allure-report/data/test-cases/e378762a5dac9d1e.json +++ b/allure-report/data/test-cases/1be5b98a41807de8.json @@ -1 +1 @@ -{"uid":"e378762a5dac9d1e","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a62856bc357d2685","name":"stdout","source":"a62856bc357d2685.txt","type":"text/plain","size":1013}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"e378762a5dac9d1e.json","parameterValues":[]} \ No newline at end of file +{"uid":"1be5b98a41807de8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d5812afb446c78ce","name":"stdout","source":"d5812afb446c78ce.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1be5b98a41807de8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bf4128bcf35143f.json b/allure-report/data/test-cases/1bf4128bcf35143f.json new file mode 100644 index 00000000000..6dffa75edb7 --- /dev/null +++ b/allure-report/data/test-cases/1bf4128bcf35143f.json @@ -0,0 +1 @@ +{"uid":"1bf4128bcf35143f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e8bbbba63c3bb75","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0}},{"uid":"c10fb0178a326f0a","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"36552864c04c1cf9","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1bf4128bcf35143f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c70ddf45fea2887.json b/allure-report/data/test-cases/1bfd57b8cda6c028.json similarity index 56% rename from allure-report/data/test-cases/6c70ddf45fea2887.json rename to allure-report/data/test-cases/1bfd57b8cda6c028.json index e502815c7c2..f088e7cf21e 100644 --- a/allure-report/data/test-cases/6c70ddf45fea2887.json +++ b/allure-report/data/test-cases/1bfd57b8cda6c028.json @@ -1 +1 @@ -{"uid":"6c70ddf45fea2887","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196288,"stop":1732428196288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6309fbba516976ae","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"2f4dd2b3858b1ec4","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1073662453fffbc9","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"6c70ddf45fea2887.json","parameterValues":[]} \ No newline at end of file +{"uid":"1bfd57b8cda6c028","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196288,"stop":1732428196288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1bfd57b8cda6c028.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49355004a4136993.json b/allure-report/data/test-cases/1c217987ee1a1d39.json similarity index 65% rename from allure-report/data/test-cases/49355004a4136993.json rename to allure-report/data/test-cases/1c217987ee1a1d39.json index bfdea462ad7..f3d96660212 100644 --- a/allure-report/data/test-cases/49355004a4136993.json +++ b/allure-report/data/test-cases/1c217987ee1a1d39.json @@ -1 +1 @@ -{"uid":"49355004a4136993","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e160bbe65fc37bcd","name":"stdout","source":"e160bbe65fc37bcd.txt","type":"text/plain","size":3898}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"49355004a4136993.json","parameterValues":[]} \ No newline at end of file +{"uid":"1c217987ee1a1d39","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1ef36a16a608c99","name":"stdout","source":"d1ef36a16a608c99.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1c217987ee1a1d39.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9abe86e868e9efe6.json b/allure-report/data/test-cases/1c33446eccccc45a.json similarity index 69% rename from allure-report/data/test-cases/9abe86e868e9efe6.json rename to allure-report/data/test-cases/1c33446eccccc45a.json index 99f9611de71..4c6150691ce 100644 --- a/allure-report/data/test-cases/9abe86e868e9efe6.json +++ b/allure-report/data/test-cases/1c33446eccccc45a.json @@ -1 +1 @@ -{"uid":"9abe86e868e9efe6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3d8fef51a9e30706","name":"stdout","source":"3d8fef51a9e30706.txt","type":"text/plain","size":277}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"9abe86e868e9efe6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1c33446eccccc45a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"796b2b673c5d0f8b","name":"stdout","source":"796b2b673c5d0f8b.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1c33446eccccc45a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c3655d4a978bd79.json b/allure-report/data/test-cases/1c3655d4a978bd79.json new file mode 100644 index 00000000000..d5d8b6f7662 --- /dev/null +++ b/allure-report/data/test-cases/1c3655d4a978bd79.json @@ -0,0 +1 @@ +{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1732764220192,"stop":1732764220192,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732764220190,"stop":1732764220190,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1230413e064883bb","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0}},{"uid":"ae5dc2ec4f03f9e5","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"a7599be0f5459a3d","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"1c3655d4a978bd79.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c8c3b6600a20e75.json b/allure-report/data/test-cases/1c8c3b6600a20e75.json deleted file mode 100644 index eaf80b39ab3..00000000000 --- a/allure-report/data/test-cases/1c8c3b6600a20e75.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1c8c3b6600a20e75","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":1732428195568,"stop":1732428195568,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"500ac2fecd2b527c","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"332b728d7cfdedcf","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9098856200f13690","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"1c8c3b6600a20e75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c9684bf403c80de.json b/allure-report/data/test-cases/1c9684bf403c80de.json new file mode 100644 index 00000000000..5700b81e14d --- /dev/null +++ b/allure-report/data/test-cases/1c9684bf403c80de.json @@ -0,0 +1 @@ +{"uid":"1c9684bf403c80de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732764219139,"stop":1732764219139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4df5cc35809df545","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0}},{"uid":"482801cdd802c850","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"1b9a7ef859e6370c","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"1c9684bf403c80de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7d1e3c0f9370311.json b/allure-report/data/test-cases/1d02b155522c6119.json similarity index 75% rename from allure-report/data/test-cases/d7d1e3c0f9370311.json rename to allure-report/data/test-cases/1d02b155522c6119.json index 9d1e5586791..bae3cdd7b51 100644 --- a/allure-report/data/test-cases/d7d1e3c0f9370311.json +++ b/allure-report/data/test-cases/1d02b155522c6119.json @@ -1 +1 @@ -{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732428194496,"stop":1732428194496,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732428194497,"stop":1732428194497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"d7d1e3c0f9370311.json","parameterValues":[]} \ No newline at end of file +{"uid":"1d02b155522c6119","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732428194496,"stop":1732428194496,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732428194497,"stop":1732428194497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"1d02b155522c6119.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d2104b5fa1d29b.json b/allure-report/data/test-cases/1d2104b5fa1d29b.json deleted file mode 100644 index 744571b9174..00000000000 --- a/allure-report/data/test-cases/1d2104b5fa1d29b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1d2104b5fa1d29b","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":1732428194577,"stop":1732428194577,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1732428194580,"stop":1732428194580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8949506fce676285","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"f00b7b6604c5e7e4","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b38fe6b8a5a46","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"1d2104b5fa1d29b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab40fd2a8eefa024.json b/allure-report/data/test-cases/1d437c172b71c55f.json similarity index 78% rename from allure-report/data/test-cases/ab40fd2a8eefa024.json rename to allure-report/data/test-cases/1d437c172b71c55f.json index 243803973ff..a8b793c760e 100644 --- a/allure-report/data/test-cases/ab40fd2a8eefa024.json +++ b/allure-report/data/test-cases/1d437c172b71c55f.json @@ -1 +1 @@ -{"uid":"ab40fd2a8eefa024","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c703e2fc1b8c856f","name":"stdout","source":"c703e2fc1b8c856f.txt","type":"text/plain","size":314}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ab40fd2a8eefa024.json","parameterValues":[]} \ No newline at end of file +{"uid":"1d437c172b71c55f","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8b971d66be6d6e40","name":"stdout","source":"8b971d66be6d6e40.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"1d437c172b71c55f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95521fe2b6cd2563.json b/allure-report/data/test-cases/1d4c3341dfe8e289.json similarity index 62% rename from allure-report/data/test-cases/95521fe2b6cd2563.json rename to allure-report/data/test-cases/1d4c3341dfe8e289.json index 563a8704589..30e39d64724 100644 --- a/allure-report/data/test-cases/95521fe2b6cd2563.json +++ b/allure-report/data/test-cases/1d4c3341dfe8e289.json @@ -1 +1 @@ -{"uid":"95521fe2b6cd2563","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"97827ebef7dd2119","name":"stdout","source":"97827ebef7dd2119.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95521fe2b6cd2563.json","parameterValues":[]} \ No newline at end of file +{"uid":"1d4c3341dfe8e289","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61ad30a7c0f382b9","name":"stdout","source":"61ad30a7c0f382b9.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1d4c3341dfe8e289.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e08b527d12d4e4df.json b/allure-report/data/test-cases/1d756394430052ee.json similarity index 59% rename from allure-report/data/test-cases/e08b527d12d4e4df.json rename to allure-report/data/test-cases/1d756394430052ee.json index 72c6c242635..816be0eb4cf 100644 --- a/allure-report/data/test-cases/e08b527d12d4e4df.json +++ b/allure-report/data/test-cases/1d756394430052ee.json @@ -1 +1 @@ -{"uid":"e08b527d12d4e4df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732428195905,"stop":1732428195906,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732428195908,"stop":1732428195908,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Flow Control"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4a35a10fb92b5fdb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"12688af3a6e6b4d","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"70085274c959a3cb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"e08b527d12d4e4df.json","parameterValues":[]} \ No newline at end of file +{"uid":"1d756394430052ee","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732428195905,"stop":1732428195906,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732428195908,"stop":1732428195908,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Flow Control"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"1d756394430052ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b03752c3145720e6.json b/allure-report/data/test-cases/1d7a8665bbc3ca3a.json similarity index 57% rename from allure-report/data/test-cases/b03752c3145720e6.json rename to allure-report/data/test-cases/1d7a8665bbc3ca3a.json index 6fc246a6978..825f30cf502 100644 --- a/allure-report/data/test-cases/b03752c3145720e6.json +++ b/allure-report/data/test-cases/1d7a8665bbc3ca3a.json @@ -1 +1 @@ -{"uid":"b03752c3145720e6","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":1732428195961,"stop":1732428195961,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f809105a155a665a","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"63e9aeb63ef06083","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2d35bd18d5e6ee6b","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":["GAMES","PUZZLES"]},"source":"b03752c3145720e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1d7a8665bbc3ca3a","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":1732428195961,"stop":1732428195961,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"1d7a8665bbc3ca3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9dd09ce35083af7.json b/allure-report/data/test-cases/1dd416b71393e4f8.json similarity index 74% rename from allure-report/data/test-cases/d9dd09ce35083af7.json rename to allure-report/data/test-cases/1dd416b71393e4f8.json index b338ea08d52..4dee2b797c2 100644 --- a/allure-report/data/test-cases/d9dd09ce35083af7.json +++ b/allure-report/data/test-cases/1dd416b71393e4f8.json @@ -1 +1 @@ -{"uid":"d9dd09ce35083af7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9dd09ce35083af7.json","parameterValues":[]} \ No newline at end of file +{"uid":"1dd416b71393e4f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1dd416b71393e4f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/984af3d5d8056be9.json b/allure-report/data/test-cases/1ddf203d8a3c498d.json similarity index 60% rename from allure-report/data/test-cases/984af3d5d8056be9.json rename to allure-report/data/test-cases/1ddf203d8a3c498d.json index 2907eb03d98..a1d374fe858 100644 --- a/allure-report/data/test-cases/984af3d5d8056be9.json +++ b/allure-report/data/test-cases/1ddf203d8a3c498d.json @@ -1 +1 @@ -{"uid":"984af3d5d8056be9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732428196119,"stop":1732428196119,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Convert a string to an array"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e330dbdee7dc6874","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"9d10f71bfad2e1ef","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52715db4a1ce5955","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"984af3d5d8056be9.json","parameterValues":[]} \ No newline at end of file +{"uid":"1ddf203d8a3c498d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732428196119,"stop":1732428196119,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Convert a string to an array"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1ddf203d8a3c498d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36685d778f756fae.json b/allure-report/data/test-cases/1e4e59f90ff35603.json similarity index 56% rename from allure-report/data/test-cases/36685d778f756fae.json rename to allure-report/data/test-cases/1e4e59f90ff35603.json index 3d9e0c2a315..6d0c209597b 100644 --- a/allure-report/data/test-cases/36685d778f756fae.json +++ b/allure-report/data/test-cases/1e4e59f90ff35603.json @@ -1 +1 @@ -{"uid":"36685d778f756fae","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":1732428196138,"stop":1732428196139,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"108dd2ab8a90859d","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"2f4ba657dc51e0d2","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7c3ec7eab2e0be6d","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"36685d778f756fae.json","parameterValues":[]} \ No newline at end of file +{"uid":"1e4e59f90ff35603","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":1732428196138,"stop":1732428196139,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1e4e59f90ff35603.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7cc0844ab5ecf216.json b/allure-report/data/test-cases/1e6c7d1c4189d9dd.json similarity index 62% rename from allure-report/data/test-cases/7cc0844ab5ecf216.json rename to allure-report/data/test-cases/1e6c7d1c4189d9dd.json index 5ea38925e9d..fc4335a61de 100644 --- a/allure-report/data/test-cases/7cc0844ab5ecf216.json +++ b/allure-report/data/test-cases/1e6c7d1c4189d9dd.json @@ -1 +1 @@ -{"uid":"7cc0844ab5ecf216","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":13,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1732428193969,"stop":1732428193969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31050b40d7651adc","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"bc039aea1f276c5c","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"47f8df09a84d8337","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"7cc0844ab5ecf216.json","parameterValues":[]} \ No newline at end of file +{"uid":"1e6c7d1c4189d9dd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1e6c7d1c4189d9dd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f1df83d6cc10b66.json b/allure-report/data/test-cases/1f1df83d6cc10b66.json new file mode 100644 index 00000000000..0904a500cea --- /dev/null +++ b/allure-report/data/test-cases/1f1df83d6cc10b66.json @@ -0,0 +1 @@ +{"uid":"1f1df83d6cc10b66","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":1732764221169,"stop":1732764221169,"duration":0},"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7d9041670997ad6","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0}},{"uid":"5c657b72ebb12427","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"a0013817978e9f1b","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1f1df83d6cc10b66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f85ab0d3a8429db7.json b/allure-report/data/test-cases/1f21450476aa4c9a.json similarity index 51% rename from allure-report/data/test-cases/f85ab0d3a8429db7.json rename to allure-report/data/test-cases/1f21450476aa4c9a.json index 8747d0a04d4..b69b240b0d7 100644 --- a/allure-report/data/test-cases/f85ab0d3a8429db7.json +++ b/allure-report/data/test-cases/1f21450476aa4c9a.json @@ -1 +1 @@ -{"uid":"f85ab0d3a8429db7","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1732428193977,"stop":1732428193977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f0700b9c803f7cf9","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"be618dffc8aac711","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f85ab0d3a8429db7.json","parameterValues":[]} \ No newline at end of file +{"uid":"1f21450476aa4c9a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1f21450476aa4c9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/200b5f0b4ec790a3.json b/allure-report/data/test-cases/200b5f0b4ec790a3.json new file mode 100644 index 00000000000..b9264f37e3a --- /dev/null +++ b/allure-report/data/test-cases/200b5f0b4ec790a3.json @@ -0,0 +1 @@ +{"uid":"200b5f0b4ec790a3","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732764219366,"stop":1732764219366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7c4d343c90ce082","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3}},{"uid":"4c31a5ec99c6ca69","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"437936b48694b75d","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"200b5f0b4ec790a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76dad62f743b3603.json b/allure-report/data/test-cases/200c9d07d930b3b1.json similarity index 72% rename from allure-report/data/test-cases/76dad62f743b3603.json rename to allure-report/data/test-cases/200c9d07d930b3b1.json index 66039d3377f..d86011c0bd3 100644 --- a/allure-report/data/test-cases/76dad62f743b3603.json +++ b/allure-report/data/test-cases/200c9d07d930b3b1.json @@ -1 +1 @@ -{"uid":"76dad62f743b3603","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ae418f132f3362c9","name":"stdout","source":"ae418f132f3362c9.txt","type":"text/plain","size":352}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"76dad62f743b3603.json","parameterValues":[]} \ No newline at end of file +{"uid":"200c9d07d930b3b1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9000a1177d78061","name":"stdout","source":"c9000a1177d78061.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"200c9d07d930b3b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20301c2d6922300e.json b/allure-report/data/test-cases/20301c2d6922300e.json new file mode 100644 index 00000000000..47cb58cb7f6 --- /dev/null +++ b/allure-report/data/test-cases/20301c2d6922300e.json @@ -0,0 +1 @@ +{"uid":"20301c2d6922300e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"20301c2d6922300e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7008d20e58a9d6a.json b/allure-report/data/test-cases/20569c47774cf3c7.json similarity index 66% rename from allure-report/data/test-cases/a7008d20e58a9d6a.json rename to allure-report/data/test-cases/20569c47774cf3c7.json index 53cc0931e6f..049b4f23a33 100644 --- a/allure-report/data/test-cases/a7008d20e58a9d6a.json +++ b/allure-report/data/test-cases/20569c47774cf3c7.json @@ -1 +1 @@ -{"uid":"a7008d20e58a9d6a","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ccdd1b5f063278d8","name":"stdout","source":"ccdd1b5f063278d8.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a7008d20e58a9d6a.json","parameterValues":[]} \ No newline at end of file +{"uid":"20569c47774cf3c7","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c37932e6bf05499f","name":"stdout","source":"c37932e6bf05499f.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"20569c47774cf3c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2064c7d6b1732474.json b/allure-report/data/test-cases/2064c7d6b1732474.json new file mode 100644 index 00000000000..91c441359b6 --- /dev/null +++ b/allure-report/data/test-cases/2064c7d6b1732474.json @@ -0,0 +1 @@ +{"uid":"2064c7d6b1732474","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5932d90eab3398ae","name":"stdout","source":"5932d90eab3398ae.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2064c7d6b1732474.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89027a401f5af485.json b/allure-report/data/test-cases/210d6cbbe1051e7b.json similarity index 76% rename from allure-report/data/test-cases/89027a401f5af485.json rename to allure-report/data/test-cases/210d6cbbe1051e7b.json index 3569f628701..7689243602d 100644 --- a/allure-report/data/test-cases/89027a401f5af485.json +++ b/allure-report/data/test-cases/210d6cbbe1051e7b.json @@ -1 +1 @@ -{"uid":"89027a401f5af485","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2fa4e18b8435ce88","name":"stdout","source":"2fa4e18b8435ce88.txt","type":"text/plain","size":142}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"89027a401f5af485.json","parameterValues":[]} \ No newline at end of file +{"uid":"210d6cbbe1051e7b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27997c5236222053","name":"stdout","source":"27997c5236222053.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"210d6cbbe1051e7b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12432569c8b8923f.json b/allure-report/data/test-cases/2180a5f5e79006a1.json similarity index 77% rename from allure-report/data/test-cases/12432569c8b8923f.json rename to allure-report/data/test-cases/2180a5f5e79006a1.json index c6fff389ea2..3875457eff5 100644 --- a/allure-report/data/test-cases/12432569c8b8923f.json +++ b/allure-report/data/test-cases/2180a5f5e79006a1.json @@ -1 +1 @@ -{"uid":"12432569c8b8923f","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"97bc633acb769f22","name":"stdout","source":"97bc633acb769f22.txt","type":"text/plain","size":90}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"12432569c8b8923f.json","parameterValues":[]} \ No newline at end of file +{"uid":"2180a5f5e79006a1","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"6eedc0bd484f71d7","name":"stdout","source":"6eedc0bd484f71d7.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"2180a5f5e79006a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9557455e27a468ef.json b/allure-report/data/test-cases/21dca02637c8027f.json similarity index 74% rename from allure-report/data/test-cases/9557455e27a468ef.json rename to allure-report/data/test-cases/21dca02637c8027f.json index f3060fdf352..2e720a10d06 100644 --- a/allure-report/data/test-cases/9557455e27a468ef.json +++ b/allure-report/data/test-cases/21dca02637c8027f.json @@ -1 +1 @@ -{"uid":"9557455e27a468ef","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9557455e27a468ef.json","parameterValues":[]} \ No newline at end of file +{"uid":"21dca02637c8027f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"21dca02637c8027f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c7db5518444ac71.json b/allure-report/data/test-cases/229dd074fbcb6ca1.json similarity index 64% rename from allure-report/data/test-cases/8c7db5518444ac71.json rename to allure-report/data/test-cases/229dd074fbcb6ca1.json index 1196408a727..3af6d2f6335 100644 --- a/allure-report/data/test-cases/8c7db5518444ac71.json +++ b/allure-report/data/test-cases/229dd074fbcb6ca1.json @@ -1 +1 @@ -{"uid":"8c7db5518444ac71","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fae7f8901012b2cd","name":"stdout","source":"fae7f8901012b2cd.txt","type":"text/plain","size":1088}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"8c7db5518444ac71.json","parameterValues":[]} \ No newline at end of file +{"uid":"229dd074fbcb6ca1","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"97c0819228c5b269","name":"stdout","source":"97c0819228c5b269.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"229dd074fbcb6ca1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/196d34645221ebb4.json b/allure-report/data/test-cases/22d82bbeb537c71a.json similarity index 58% rename from allure-report/data/test-cases/196d34645221ebb4.json rename to allure-report/data/test-cases/22d82bbeb537c71a.json index c7bff6ccd81..7a36d8ded19 100644 --- a/allure-report/data/test-cases/196d34645221ebb4.json +++ b/allure-report/data/test-cases/22d82bbeb537c71a.json @@ -1 +1 @@ -{"uid":"196d34645221ebb4","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":1732428194595,"stop":1732428194595,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4aa405db56695158","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"40819c186d07d3de","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d5ae1235bc27ccba","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"196d34645221ebb4.json","parameterValues":[]} \ No newline at end of file +{"uid":"22d82bbeb537c71a","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":1732428194595,"stop":1732428194595,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"22d82bbeb537c71a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99ca7a938f9d4989.json b/allure-report/data/test-cases/22f939e586318511.json similarity index 72% rename from allure-report/data/test-cases/99ca7a938f9d4989.json rename to allure-report/data/test-cases/22f939e586318511.json index d614b052685..fb88e472992 100644 --- a/allure-report/data/test-cases/99ca7a938f9d4989.json +++ b/allure-report/data/test-cases/22f939e586318511.json @@ -1 +1 @@ -{"uid":"99ca7a938f9d4989","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca908a3276ec1f33","name":"stdout","source":"ca908a3276ec1f33.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"99ca7a938f9d4989.json","parameterValues":[]} \ No newline at end of file +{"uid":"22f939e586318511","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"358b4a5251243888","name":"stdout","source":"358b4a5251243888.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"22f939e586318511.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d19efceb39f40f4f.json b/allure-report/data/test-cases/23151e1dbdaacb09.json similarity index 54% rename from allure-report/data/test-cases/d19efceb39f40f4f.json rename to allure-report/data/test-cases/23151e1dbdaacb09.json index 68bf219f3c9..5ebed6e73e6 100644 --- a/allure-report/data/test-cases/d19efceb39f40f4f.json +++ b/allure-report/data/test-cases/23151e1dbdaacb09.json @@ -1 +1 @@ -{"uid":"d19efceb39f40f4f","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732428194586,"stop":1732428194586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":13,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1732428194588,"stop":1732428194588,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6030df3a53146090","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"552742d77daecee9","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d19efceb39f40f4f.json","parameterValues":[]} \ No newline at end of file +{"uid":"23151e1dbdaacb09","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"23151e1dbdaacb09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59e6c1fe5b50c363.json b/allure-report/data/test-cases/23199ebc2c7c1fa2.json similarity index 67% rename from allure-report/data/test-cases/59e6c1fe5b50c363.json rename to allure-report/data/test-cases/23199ebc2c7c1fa2.json index 869ac3e8bd1..275adda6326 100644 --- a/allure-report/data/test-cases/59e6c1fe5b50c363.json +++ b/allure-report/data/test-cases/23199ebc2c7c1fa2.json @@ -1 +1 @@ -{"uid":"59e6c1fe5b50c363","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"94c19824e08a6a92","name":"stdout","source":"94c19824e08a6a92.txt","type":"text/plain","size":60}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59e6c1fe5b50c363.json","parameterValues":[]} \ No newline at end of file +{"uid":"23199ebc2c7c1fa2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41b26a3792b70bd8","name":"stdout","source":"41b26a3792b70bd8.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23199ebc2c7c1fa2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2399abc94e3173da.json b/allure-report/data/test-cases/2399abc94e3173da.json new file mode 100644 index 00000000000..e5938d89555 --- /dev/null +++ b/allure-report/data/test-cases/2399abc94e3173da.json @@ -0,0 +1 @@ +{"uid":"2399abc94e3173da","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"716034871f152875","name":"stdout","source":"716034871f152875.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2399abc94e3173da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23e61e29448b9218.json b/allure-report/data/test-cases/23e61e29448b9218.json deleted file mode 100644 index 5235a6041b0..00000000000 --- a/allure-report/data/test-cases/23e61e29448b9218.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"23e61e29448b9218","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd5591b59d574128","name":"stdout","source":"cd5591b59d574128.txt","type":"text/plain","size":375}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"23e61e29448b9218.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/108dd2ab8a90859d.json b/allure-report/data/test-cases/23e7f7a9e25073fa.json similarity index 75% rename from allure-report/data/test-cases/108dd2ab8a90859d.json rename to allure-report/data/test-cases/23e7f7a9e25073fa.json index 3b8b067f22b..16a283dd799 100644 --- a/allure-report/data/test-cases/108dd2ab8a90859d.json +++ b/allure-report/data/test-cases/23e7f7a9e25073fa.json @@ -1 +1 @@ -{"uid":"108dd2ab8a90859d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"2f3f1653d6bd83ea","name":"stdout","source":"2f3f1653d6bd83ea.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"108dd2ab8a90859d.json","parameterValues":[]} \ No newline at end of file +{"uid":"23e7f7a9e25073fa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d22073d8d3352f3e","name":"stdout","source":"d22073d8d3352f3e.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"23e7f7a9e25073fa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2483ff464fe4ea07.json b/allure-report/data/test-cases/2483ff464fe4ea07.json new file mode 100644 index 00000000000..d8107c0c58f --- /dev/null +++ b/allure-report/data/test-cases/2483ff464fe4ea07.json @@ -0,0 +1 @@ +{"uid":"2483ff464fe4ea07","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38c339de2200090","name":"stdout","source":"38c339de2200090.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2483ff464fe4ea07.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef1a5cba4efb343a.json b/allure-report/data/test-cases/2488d38c1be516d6.json similarity index 93% rename from allure-report/data/test-cases/ef1a5cba4efb343a.json rename to allure-report/data/test-cases/2488d38c1be516d6.json index 8e543b441a7..b83830ddd32 100644 --- a/allure-report/data/test-cases/ef1a5cba4efb343a.json +++ b/allure-report/data/test-cases/2488d38c1be516d6.json @@ -1 +1 @@ -{"uid":"ef1a5cba4efb343a","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":"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":"ef1a5cba4efb343a.json","parameterValues":[]} \ No newline at end of file +{"uid":"2488d38c1be516d6","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":"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":"2488d38c1be516d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24b136640bd96c68.json b/allure-report/data/test-cases/24b136640bd96c68.json new file mode 100644 index 00000000000..769b23970db --- /dev/null +++ b/allure-report/data/test-cases/24b136640bd96c68.json @@ -0,0 +1 @@ +{"uid":"24b136640bd96c68","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5fb2caa4cfa17eeb","name":"stdout","source":"5fb2caa4cfa17eeb.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"24b136640bd96c68.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7a3ebc7dbd092b26.json b/allure-report/data/test-cases/24b32ad032525022.json similarity index 68% rename from allure-report/data/test-cases/7a3ebc7dbd092b26.json rename to allure-report/data/test-cases/24b32ad032525022.json index e61f7b2588e..af11ae7c2c8 100644 --- a/allure-report/data/test-cases/7a3ebc7dbd092b26.json +++ b/allure-report/data/test-cases/24b32ad032525022.json @@ -1 +1 @@ -{"uid":"7a3ebc7dbd092b26","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8ed65aadf059368","name":"stdout","source":"d8ed65aadf059368.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"7a3ebc7dbd092b26.json","parameterValues":[]} \ No newline at end of file +{"uid":"24b32ad032525022","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22c24dd6f011f9a2","name":"stdout","source":"22c24dd6f011f9a2.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"24b32ad032525022.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ca9562da84c64b4.json b/allure-report/data/test-cases/24df9329b634133a.json similarity index 72% rename from allure-report/data/test-cases/1ca9562da84c64b4.json rename to allure-report/data/test-cases/24df9329b634133a.json index c2cc6c8d6b7..bf290096f6f 100644 --- a/allure-report/data/test-cases/1ca9562da84c64b4.json +++ b/allure-report/data/test-cases/24df9329b634133a.json @@ -1 +1 @@ -{"uid":"1ca9562da84c64b4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d03e7f0ed07eb16c","name":"stdout","source":"d03e7f0ed07eb16c.txt","type":"text/plain","size":510}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1ca9562da84c64b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"24df9329b634133a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2b2e74011774c312","name":"stdout","source":"2b2e74011774c312.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"24df9329b634133a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c89e6a91bc0b9e52.json b/allure-report/data/test-cases/256439519ef758bc.json similarity index 64% rename from allure-report/data/test-cases/c89e6a91bc0b9e52.json rename to allure-report/data/test-cases/256439519ef758bc.json index 39455d69e36..33275205507 100644 --- a/allure-report/data/test-cases/c89e6a91bc0b9e52.json +++ b/allure-report/data/test-cases/256439519ef758bc.json @@ -1 +1 @@ -{"uid":"c89e6a91bc0b9e52","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c629f823771e2123","name":"stdout","source":"c629f823771e2123.txt","type":"text/plain","size":375}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"c89e6a91bc0b9e52.json","parameterValues":[]} \ No newline at end of file +{"uid":"256439519ef758bc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47a1750ca1ae0253","name":"stdout","source":"47a1750ca1ae0253.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"256439519ef758bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6d0f7b70ff35380.json b/allure-report/data/test-cases/25a19c539143ffc2.json similarity index 58% rename from allure-report/data/test-cases/b6d0f7b70ff35380.json rename to allure-report/data/test-cases/25a19c539143ffc2.json index 2a1da48897b..36ee59054c8 100644 --- a/allure-report/data/test-cases/b6d0f7b70ff35380.json +++ b/allure-report/data/test-cases/25a19c539143ffc2.json @@ -1 +1 @@ -{"uid":"b6d0f7b70ff35380","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732428195535,"stop":1732428195535,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c6eafeb1b2d72c83","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"910c497042fbb9d7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b6d0f7b70ff35380.json","parameterValues":[]} \ No newline at end of file +{"uid":"25a19c539143ffc2","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732428195535,"stop":1732428195535,"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":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":"25a19c539143ffc2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27b26e7a6523571a.json b/allure-report/data/test-cases/25b0f3d782a2ed03.json similarity index 63% rename from allure-report/data/test-cases/27b26e7a6523571a.json rename to allure-report/data/test-cases/25b0f3d782a2ed03.json index d3822f605e5..c93409aa6c4 100644 --- a/allure-report/data/test-cases/27b26e7a6523571a.json +++ b/allure-report/data/test-cases/25b0f3d782a2ed03.json @@ -1 +1 @@ -{"uid":"27b26e7a6523571a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cb2ee8571e9e5841","name":"stdout","source":"cb2ee8571e9e5841.txt","type":"text/plain","size":530}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"27b26e7a6523571a.json","parameterValues":[]} \ No newline at end of file +{"uid":"25b0f3d782a2ed03","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fec9fd349f1d045f","name":"stdout","source":"fec9fd349f1d045f.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"25b0f3d782a2ed03.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f701011259e850f6.json b/allure-report/data/test-cases/26a447cb7c15cb4e.json similarity index 54% rename from allure-report/data/test-cases/f701011259e850f6.json rename to allure-report/data/test-cases/26a447cb7c15cb4e.json index 05d99323eda..ca43067985d 100644 --- a/allure-report/data/test-cases/f701011259e850f6.json +++ b/allure-report/data/test-cases/26a447cb7c15cb4e.json @@ -1 +1 @@ -{"uid":"f701011259e850f6","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"843ad9a1e8e9ca65","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"e8b3178794c4402b","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e10517b1ea4eb479","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"f701011259e850f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"26a447cb7c15cb4e","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"26a447cb7c15cb4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/405cf642fa0cf7c1.json b/allure-report/data/test-cases/27e5ed0c95dfc112.json similarity index 53% rename from allure-report/data/test-cases/405cf642fa0cf7c1.json rename to allure-report/data/test-cases/27e5ed0c95dfc112.json index dc0ae2f547e..d4ec3f6a85e 100644 --- a/allure-report/data/test-cases/405cf642fa0cf7c1.json +++ b/allure-report/data/test-cases/27e5ed0c95dfc112.json @@ -1 +1 @@ -{"uid":"405cf642fa0cf7c1","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"416790ca79634ed0","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"86b489ae6b8c1d23","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"83105e24306c53ac","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"405cf642fa0cf7c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"27e5ed0c95dfc112","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"27e5ed0c95dfc112.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc1c20798f5a8f0a.json b/allure-report/data/test-cases/280752ec061c1457.json similarity index 65% rename from allure-report/data/test-cases/dc1c20798f5a8f0a.json rename to allure-report/data/test-cases/280752ec061c1457.json index b4bb283cd19..cd5f2ed7193 100644 --- a/allure-report/data/test-cases/dc1c20798f5a8f0a.json +++ b/allure-report/data/test-cases/280752ec061c1457.json @@ -1 +1 @@ -{"uid":"dc1c20798f5a8f0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732428195727,"stop":1732428195727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Always perfect"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a8ee4991fa5fcbc","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"94af9200e69d147a","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fbd4191028146e80","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"dc1c20798f5a8f0a.json","parameterValues":[]} \ No newline at end of file +{"uid":"280752ec061c1457","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732428195727,"stop":1732428195727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Always perfect"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"280752ec061c1457.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e47ebce66bbb53cd.json b/allure-report/data/test-cases/28083507c1397923.json similarity index 92% rename from allure-report/data/test-cases/e47ebce66bbb53cd.json rename to allure-report/data/test-cases/28083507c1397923.json index 716585226bc..736c718143e 100644 --- a/allure-report/data/test-cases/e47ebce66bbb53cd.json +++ b/allure-report/data/test-cases/28083507c1397923.json @@ -1 +1 @@ -{"uid":"e47ebce66bbb53cd","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"e47ebce66bbb53cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"28083507c1397923","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"28083507c1397923.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28847243d9b7f290.json b/allure-report/data/test-cases/28847243d9b7f290.json new file mode 100644 index 00000000000..0df2020f200 --- /dev/null +++ b/allure-report/data/test-cases/28847243d9b7f290.json @@ -0,0 +1 @@ +{"uid":"28847243d9b7f290","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c81a97703cb852b3","name":"stdout","source":"c81a97703cb852b3.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"28847243d9b7f290.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a405e7d50def0411.json b/allure-report/data/test-cases/288e814175ef5830.json similarity index 55% rename from allure-report/data/test-cases/a405e7d50def0411.json rename to allure-report/data/test-cases/288e814175ef5830.json index 4a8bcf31772..f463946a3ed 100644 --- a/allure-report/data/test-cases/a405e7d50def0411.json +++ b/allure-report/data/test-cases/288e814175ef5830.json @@ -1 +1 @@ -{"uid":"a405e7d50def0411","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f619b88d74382886","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f52e2a19a3ffe707","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"715edf62d220bc66","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a405e7d50def0411.json","parameterValues":[]} \ No newline at end of file +{"uid":"288e814175ef5830","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"288e814175ef5830.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2890c501d19b5f47.json b/allure-report/data/test-cases/2890c501d19b5f47.json new file mode 100644 index 00000000000..c5d456d43e8 --- /dev/null +++ b/allure-report/data/test-cases/2890c501d19b5f47.json @@ -0,0 +1 @@ +{"uid":"2890c501d19b5f47","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732764220219,"stop":1732764220219,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25a19c539143ffc2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428195535,"stop":1732428195535,"duration":0}},{"uid":"bda7ad5e74660b56","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"d6fd6e0593022837","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"2890c501d19b5f47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28a9bedc22c54787.json b/allure-report/data/test-cases/28a9bedc22c54787.json new file mode 100644 index 00000000000..a695f797d08 --- /dev/null +++ b/allure-report/data/test-cases/28a9bedc22c54787.json @@ -0,0 +1 @@ +{"uid":"28a9bedc22c54787","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":1732764220741,"stop":1732764220741,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6b3bc73a428b4db","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0}},{"uid":"71a05925458c8736","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"122ba025ebcea5dd","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"28a9bedc22c54787.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3529b67f8df1184b.json b/allure-report/data/test-cases/294aa341a28271bb.json similarity index 66% rename from allure-report/data/test-cases/3529b67f8df1184b.json rename to allure-report/data/test-cases/294aa341a28271bb.json index ebb9f44f2fe..d88d5239ad4 100644 --- a/allure-report/data/test-cases/3529b67f8df1184b.json +++ b/allure-report/data/test-cases/294aa341a28271bb.json @@ -1 +1 @@ -{"uid":"3529b67f8df1184b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732428195975,"stop":1732428195975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Sort Out The Men From Boys"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Lists"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4d9b4f519ec1ce3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"80598dcd2309aaf9","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e5ae32dea8d8e5c3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"3529b67f8df1184b.json","parameterValues":[]} \ No newline at end of file +{"uid":"294aa341a28271bb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732428195975,"stop":1732428195975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Sort Out The Men From Boys"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Lists"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"294aa341a28271bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ee9ff331756b11e.json b/allure-report/data/test-cases/296f86e34803d6c1.json similarity index 54% rename from allure-report/data/test-cases/9ee9ff331756b11e.json rename to allure-report/data/test-cases/296f86e34803d6c1.json index f3b0169ab86..e23f25a958a 100644 --- a/allure-report/data/test-cases/9ee9ff331756b11e.json +++ b/allure-report/data/test-cases/296f86e34803d6c1.json @@ -1 +1 @@ -{"uid":"9ee9ff331756b11e","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"419d7e1cf9a3c9b","name":"stdout","source":"419d7e1cf9a3c9b.txt","type":"text/plain","size":1127}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"9ee9ff331756b11e.json","parameterValues":[]} \ No newline at end of file +{"uid":"296f86e34803d6c1","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"efdc700a12236023","name":"stdout","source":"efdc700a12236023.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"296f86e34803d6c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2991adec6435da10.json b/allure-report/data/test-cases/2991adec6435da10.json new file mode 100644 index 00000000000..1a24b688d29 --- /dev/null +++ b/allure-report/data/test-cases/2991adec6435da10.json @@ -0,0 +1 @@ +{"uid":"2991adec6435da10","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":1732764220892,"stop":1732764220893,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e4e59f90ff35603","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1}},{"uid":"23e7f7a9e25073fa","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"e76c8429b652e3f0","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2991adec6435da10.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5319ceacad5a43bc.json b/allure-report/data/test-cases/2ac4d21875a44bdb.json similarity index 78% rename from allure-report/data/test-cases/5319ceacad5a43bc.json rename to allure-report/data/test-cases/2ac4d21875a44bdb.json index 5d7757bc9a3..a8dd7abafd2 100644 --- a/allure-report/data/test-cases/5319ceacad5a43bc.json +++ b/allure-report/data/test-cases/2ac4d21875a44bdb.json @@ -1 +1 @@ -{"uid":"5319ceacad5a43bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"be7449bab7c02e56","name":"stdout","source":"be7449bab7c02e56.txt","type":"text/plain","size":949}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"5319ceacad5a43bc.json","parameterValues":[]} \ No newline at end of file +{"uid":"2ac4d21875a44bdb","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6362c8f15fc6c9c0","name":"stdout","source":"6362c8f15fc6c9c0.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2ac4d21875a44bdb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dc85df7fba3a78e.json b/allure-report/data/test-cases/2ba00773a1bfae2e.json similarity index 61% rename from allure-report/data/test-cases/9dc85df7fba3a78e.json rename to allure-report/data/test-cases/2ba00773a1bfae2e.json index 00e0bf0f35f..fe9085acb97 100644 --- a/allure-report/data/test-cases/9dc85df7fba3a78e.json +++ b/allure-report/data/test-cases/2ba00773a1bfae2e.json @@ -1 +1 @@ -{"uid":"9dc85df7fba3a78e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a05ee87cd665f265","name":"stdout","source":"a05ee87cd665f265.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9dc85df7fba3a78e.json","parameterValues":[]} \ No newline at end of file +{"uid":"2ba00773a1bfae2e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d07a2236fba5201a","name":"stdout","source":"d07a2236fba5201a.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"2ba00773a1bfae2e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2be24f9b66669d76.json b/allure-report/data/test-cases/2be24f9b66669d76.json new file mode 100644 index 00000000000..0536e6a8c56 --- /dev/null +++ b/allure-report/data/test-cases/2be24f9b66669d76.json @@ -0,0 +1 @@ +{"uid":"2be24f9b66669d76","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":1732764221056,"stop":1732764221056,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"75a0786e7098fd84","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0}},{"uid":"93cbb9687a6c19d2","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"c03eb686eb3e5a89","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"2be24f9b66669d76.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c38900f28571c1.json b/allure-report/data/test-cases/2c38900f28571c1.json new file mode 100644 index 00000000000..3fa356c22e4 --- /dev/null +++ b/allure-report/data/test-cases/2c38900f28571c1.json @@ -0,0 +1 @@ +{"uid":"2c38900f28571c1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d69906a8709b5cf","name":"stdout","source":"5d69906a8709b5cf.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2c38900f28571c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c53cc9448de91f2.json b/allure-report/data/test-cases/2c53cc9448de91f2.json new file mode 100644 index 00000000000..8a762b7d814 --- /dev/null +++ b/allure-report/data/test-cases/2c53cc9448de91f2.json @@ -0,0 +1 @@ +{"uid":"2c53cc9448de91f2","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36a84ce1aa4434a","name":"stdout","source":"36a84ce1aa4434a.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2c53cc9448de91f2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d1981370251e5ca.json b/allure-report/data/test-cases/2c7af88777002151.json similarity index 71% rename from allure-report/data/test-cases/5d1981370251e5ca.json rename to allure-report/data/test-cases/2c7af88777002151.json index 3679199e02e..70cc3b8be7a 100644 --- a/allure-report/data/test-cases/5d1981370251e5ca.json +++ b/allure-report/data/test-cases/2c7af88777002151.json @@ -1 +1 @@ -{"uid":"5d1981370251e5ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3e79fdee962a6c7a","name":"stdout","source":"3e79fdee962a6c7a.txt","type":"text/plain","size":808}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5d1981370251e5ca.json","parameterValues":[]} \ No newline at end of file +{"uid":"2c7af88777002151","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d10d4fe51ef67a7e","name":"stdout","source":"d10d4fe51ef67a7e.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2c7af88777002151.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ce701a458e1cd31.json b/allure-report/data/test-cases/2ce701a458e1cd31.json deleted file mode 100644 index ddcd20ca909..00000000000 --- a/allure-report/data/test-cases/2ce701a458e1cd31.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2ce701a458e1cd31","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a823a6dcaaab38a","name":"stdout","source":"a823a6dcaaab38a.txt","type":"text/plain","size":32}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2ce701a458e1cd31.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d49ce73ea45d7a1.json b/allure-report/data/test-cases/2d49ce73ea45d7a1.json new file mode 100644 index 00000000000..88d6100d17a --- /dev/null +++ b/allure-report/data/test-cases/2d49ce73ea45d7a1.json @@ -0,0 +1 @@ +{"uid":"2d49ce73ea45d7a1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4f2668e4eadc4184","name":"stdout","source":"4f2668e4eadc4184.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"2d49ce73ea45d7a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7362d176d35d3813.json b/allure-report/data/test-cases/2da97da2ac2c9bbd.json similarity index 69% rename from allure-report/data/test-cases/7362d176d35d3813.json rename to allure-report/data/test-cases/2da97da2ac2c9bbd.json index 658f2ccf576..12e420fcac1 100644 --- a/allure-report/data/test-cases/7362d176d35d3813.json +++ b/allure-report/data/test-cases/2da97da2ac2c9bbd.json @@ -1 +1 @@ -{"uid":"7362d176d35d3813","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff2bf17d38e7cc3b","name":"stdout","source":"ff2bf17d38e7cc3b.txt","type":"text/plain","size":277}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"7362d176d35d3813.json","parameterValues":[]} \ No newline at end of file +{"uid":"2da97da2ac2c9bbd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b7eae48ecc824334","name":"stdout","source":"b7eae48ecc824334.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2da97da2ac2c9bbd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/462780a7368c9ffd.json b/allure-report/data/test-cases/2dcba5fbac259354.json similarity index 65% rename from allure-report/data/test-cases/462780a7368c9ffd.json rename to allure-report/data/test-cases/2dcba5fbac259354.json index 92ec3bbd124..25f89bd9b2e 100644 --- a/allure-report/data/test-cases/462780a7368c9ffd.json +++ b/allure-report/data/test-cases/2dcba5fbac259354.json @@ -1 +1 @@ -{"uid":"462780a7368c9ffd","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef12aa7c4aaaeed2","name":"stdout","source":"ef12aa7c4aaaeed2.txt","type":"text/plain","size":985}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"462780a7368c9ffd.json","parameterValues":[]} \ No newline at end of file +{"uid":"2dcba5fbac259354","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20cbc8ca27f67538","name":"stdout","source":"20cbc8ca27f67538.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2dcba5fbac259354.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb237eeb673713e3.json b/allure-report/data/test-cases/2e0eb113649e95e6.json similarity index 60% rename from allure-report/data/test-cases/fb237eeb673713e3.json rename to allure-report/data/test-cases/2e0eb113649e95e6.json index 70f95f806e9..0454ec12a4f 100644 --- a/allure-report/data/test-cases/fb237eeb673713e3.json +++ b/allure-report/data/test-cases/2e0eb113649e95e6.json @@ -1 +1 @@ -{"uid":"fb237eeb673713e3","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1732428195708,"stop":1732428195708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bdb6e0764902ab4","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"8a9b52813983814b","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d7357eaa8c15ec47","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"fb237eeb673713e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"2e0eb113649e95e6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2e0eb113649e95e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a770e6ac7d91604a.json b/allure-report/data/test-cases/2ee59d9a8c304f3b.json similarity index 61% rename from allure-report/data/test-cases/a770e6ac7d91604a.json rename to allure-report/data/test-cases/2ee59d9a8c304f3b.json index 70212a30c1c..79e5ef4af78 100644 --- a/allure-report/data/test-cases/a770e6ac7d91604a.json +++ b/allure-report/data/test-cases/2ee59d9a8c304f3b.json @@ -1 +1 @@ -{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732428195810,"stop":1732428195810,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e71fa3f33c33eb50","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"bd8413842923f1e","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6a1d96979e635e7f","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"a770e6ac7d91604a.json","parameterValues":[]} \ No newline at end of file +{"uid":"2ee59d9a8c304f3b","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732428195810,"stop":1732428195810,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"2ee59d9a8c304f3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f46a2e41d4cb55.json b/allure-report/data/test-cases/2f46a2e41d4cb55.json new file mode 100644 index 00000000000..574f3f6d6ea --- /dev/null +++ b/allure-report/data/test-cases/2f46a2e41d4cb55.json @@ -0,0 +1 @@ +{"uid":"2f46a2e41d4cb55","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"80cb92b2a68485aa","name":"stdout","source":"80cb92b2a68485aa.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2f46a2e41d4cb55.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9b6a14fc4bd1dd7.json b/allure-report/data/test-cases/2fb895d93acc0bab.json similarity index 55% rename from allure-report/data/test-cases/b9b6a14fc4bd1dd7.json rename to allure-report/data/test-cases/2fb895d93acc0bab.json index 251074db408..f89710b62d1 100644 --- a/allure-report/data/test-cases/b9b6a14fc4bd1dd7.json +++ b/allure-report/data/test-cases/2fb895d93acc0bab.json @@ -1 +1 @@ -{"uid":"b9b6a14fc4bd1dd7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"937c9b1e748aadb0","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"580b983b7062983c","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"56a28cc490d83b65","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"b9b6a14fc4bd1dd7.json","parameterValues":[]} \ No newline at end of file +{"uid":"2fb895d93acc0bab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2fb895d93acc0bab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/300c045916564a1.json b/allure-report/data/test-cases/300c045916564a1.json new file mode 100644 index 00000000000..005e6560e56 --- /dev/null +++ b/allure-report/data/test-cases/300c045916564a1.json @@ -0,0 +1 @@ +{"uid":"300c045916564a1","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732764219225,"stop":1732764219225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"479b452abb7b813c","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0}},{"uid":"4d57a8ddade5816","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"e480fe95093fd8e7","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"300c045916564a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/302e450946481df3.json b/allure-report/data/test-cases/302e450946481df3.json new file mode 100644 index 00000000000..d1543e04a65 --- /dev/null +++ b/allure-report/data/test-cases/302e450946481df3.json @@ -0,0 +1 @@ +{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732764220887,"stop":1732764220887,"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"510e078ddda4bd3c","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1}},{"uid":"68235061ff0b1d1d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"5a4c9eb3dcb32bf5","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"302e450946481df3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/711928de75b599ba.json b/allure-report/data/test-cases/303f99106d04e0c7.json similarity index 64% rename from allure-report/data/test-cases/711928de75b599ba.json rename to allure-report/data/test-cases/303f99106d04e0c7.json index 54eecf9ee2d..7a506e17305 100644 --- a/allure-report/data/test-cases/711928de75b599ba.json +++ b/allure-report/data/test-cases/303f99106d04e0c7.json @@ -1 +1 @@ -{"uid":"711928de75b599ba","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732428195795,"stop":1732428195795,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732428195797,"stop":1732428195797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"891203fa0698ca9","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"9326ca5c3b3bcaf3","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"33b81b348332f41f","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"711928de75b599ba.json","parameterValues":[]} \ No newline at end of file +{"uid":"303f99106d04e0c7","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732428195795,"stop":1732428195795,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732428195797,"stop":1732428195797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"303f99106d04e0c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30977e1fdeed6f0a.json b/allure-report/data/test-cases/30977e1fdeed6f0a.json new file mode 100644 index 00000000000..0f5b94e2133 --- /dev/null +++ b/allure-report/data/test-cases/30977e1fdeed6f0a.json @@ -0,0 +1 @@ +{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7567c87108e55931","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0}},{"uid":"f6dea82ce819c148","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"801881710b06074","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"30977e1fdeed6f0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49fb68289fb078f8.json b/allure-report/data/test-cases/30ac3ffad3316fea.json similarity index 71% rename from allure-report/data/test-cases/49fb68289fb078f8.json rename to allure-report/data/test-cases/30ac3ffad3316fea.json index 93c51e6b74f..46cb4807028 100644 --- a/allure-report/data/test-cases/49fb68289fb078f8.json +++ b/allure-report/data/test-cases/30ac3ffad3316fea.json @@ -1 +1 @@ -{"uid":"49fb68289fb078f8","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aef94a39bd8b19be","name":"stdout","source":"aef94a39bd8b19be.txt","type":"text/plain","size":1579}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"49fb68289fb078f8.json","parameterValues":[]} \ No newline at end of file +{"uid":"30ac3ffad3316fea","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d21731264b505a67","name":"stdout","source":"d21731264b505a67.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"30ac3ffad3316fea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c74e320818fb9682.json b/allure-report/data/test-cases/30e62f45ee93d21d.json similarity index 79% rename from allure-report/data/test-cases/c74e320818fb9682.json rename to allure-report/data/test-cases/30e62f45ee93d21d.json index b39ba2d554b..81029f12f49 100644 --- a/allure-report/data/test-cases/c74e320818fb9682.json +++ b/allure-report/data/test-cases/30e62f45ee93d21d.json @@ -1 +1 @@ -{"uid":"c74e320818fb9682","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c74e320818fb9682.json","parameterValues":[]} \ No newline at end of file +{"uid":"30e62f45ee93d21d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"30e62f45ee93d21d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30ebc2ebd440c488.json b/allure-report/data/test-cases/30ebc2ebd440c488.json new file mode 100644 index 00000000000..9065f7cacd3 --- /dev/null +++ b/allure-report/data/test-cases/30ebc2ebd440c488.json @@ -0,0 +1 @@ +{"uid":"30ebc2ebd440c488","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb2a7d798a0dd1d2","name":"stdout","source":"eb2a7d798a0dd1d2.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"30ebc2ebd440c488.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31802a90aeba5e97.json b/allure-report/data/test-cases/31802a90aeba5e97.json new file mode 100644 index 00000000000..f80570497f6 --- /dev/null +++ b/allure-report/data/test-cases/31802a90aeba5e97.json @@ -0,0 +1 @@ +{"uid":"31802a90aeba5e97","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732764218842,"stop":1732764218842,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"68a2b9760a533e02","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194190,"stop":1732428194190,"duration":0}},{"uid":"4d0958f9149b5791","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"a83b85c2e341a76c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"31802a90aeba5e97.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87c07388b10e55d5.json b/allure-report/data/test-cases/319c2fc51c0b8912.json similarity index 65% rename from allure-report/data/test-cases/87c07388b10e55d5.json rename to allure-report/data/test-cases/319c2fc51c0b8912.json index 70f3460103d..389b8057af5 100644 --- a/allure-report/data/test-cases/87c07388b10e55d5.json +++ b/allure-report/data/test-cases/319c2fc51c0b8912.json @@ -1 +1 @@ -{"uid":"87c07388b10e55d5","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8fe3e8aa201d424a","name":"stdout","source":"8fe3e8aa201d424a.txt","type":"text/plain","size":932}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"87c07388b10e55d5.json","parameterValues":[]} \ No newline at end of file +{"uid":"319c2fc51c0b8912","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"506f9b1aa47477d8","name":"stdout","source":"506f9b1aa47477d8.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"319c2fc51c0b8912.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39a19c10cf88efee.json b/allure-report/data/test-cases/31a691fa5a56c905.json similarity index 81% rename from allure-report/data/test-cases/39a19c10cf88efee.json rename to allure-report/data/test-cases/31a691fa5a56c905.json index 0ce48bf2a99..fd260f1806b 100644 --- a/allure-report/data/test-cases/39a19c10cf88efee.json +++ b/allure-report/data/test-cases/31a691fa5a56c905.json @@ -1 +1 @@ -{"uid":"39a19c10cf88efee","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"394707a7900b643f","name":"stdout","source":"394707a7900b643f.txt","type":"text/plain","size":392}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"39a19c10cf88efee.json","parameterValues":[]} \ No newline at end of file +{"uid":"31a691fa5a56c905","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8645f795d532c99","name":"stdout","source":"a8645f795d532c99.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"31a691fa5a56c905.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31ab703bf65847e5.json b/allure-report/data/test-cases/31ab703bf65847e5.json new file mode 100644 index 00000000000..53923f92b4e --- /dev/null +++ b/allure-report/data/test-cases/31ab703bf65847e5.json @@ -0,0 +1 @@ +{"uid":"31ab703bf65847e5","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"31ab703bf65847e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/324d19209fbeb70d.json b/allure-report/data/test-cases/324d19209fbeb70d.json new file mode 100644 index 00000000000..44b320d620b --- /dev/null +++ b/allure-report/data/test-cases/324d19209fbeb70d.json @@ -0,0 +1 @@ +{"uid":"324d19209fbeb70d","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"156fc08ab7167514","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1}},{"uid":"45bc1447720343e5","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"d9e7bf55554cd705","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"324d19209fbeb70d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32703c37c2f9cfbd.json b/allure-report/data/test-cases/32703c37c2f9cfbd.json deleted file mode 100644 index e29f1c08659..00000000000 --- a/allure-report/data/test-cases/32703c37c2f9cfbd.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"32703c37c2f9cfbd","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f3f8f8256722f1a9","name":"stdout","source":"f3f8f8256722f1a9.txt","type":"text/plain","size":637}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"32703c37c2f9cfbd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1fe0122d9c0870d.json b/allure-report/data/test-cases/329cbbd27ed228a7.json similarity index 62% rename from allure-report/data/test-cases/e1fe0122d9c0870d.json rename to allure-report/data/test-cases/329cbbd27ed228a7.json index 73e44216cea..1e3a17f9bd8 100644 --- a/allure-report/data/test-cases/e1fe0122d9c0870d.json +++ b/allure-report/data/test-cases/329cbbd27ed228a7.json @@ -1 +1 @@ -{"uid":"e1fe0122d9c0870d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d7dcbe4dae3ba12","name":"stdout","source":"6d7dcbe4dae3ba12.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e1fe0122d9c0870d.json","parameterValues":[]} \ No newline at end of file +{"uid":"329cbbd27ed228a7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"77ebc227660f6677","name":"stdout","source":"77ebc227660f6677.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"329cbbd27ed228a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32a39f3c0fa23567.json b/allure-report/data/test-cases/32a39f3c0fa23567.json new file mode 100644 index 00000000000..4749d28a56f --- /dev/null +++ b/allure-report/data/test-cases/32a39f3c0fa23567.json @@ -0,0 +1 @@ +{"uid":"32a39f3c0fa23567","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d8bbfaabd5a5300d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193918,"stop":1732428193918,"duration":0}},{"uid":"2488d38c1be516d6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"9eac58d1342209e0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"32a39f3c0fa23567.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9451201a4cae53ad.json b/allure-report/data/test-cases/330a0128cd73780c.json similarity index 67% rename from allure-report/data/test-cases/9451201a4cae53ad.json rename to allure-report/data/test-cases/330a0128cd73780c.json index 6e1f49f8a7b..fd135b288ce 100644 --- a/allure-report/data/test-cases/9451201a4cae53ad.json +++ b/allure-report/data/test-cases/330a0128cd73780c.json @@ -1 +1 @@ -{"uid":"9451201a4cae53ad","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f6ed689bd033eb8a","name":"stdout","source":"f6ed689bd033eb8a.txt","type":"text/plain","size":60}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9451201a4cae53ad.json","parameterValues":[]} \ No newline at end of file +{"uid":"330a0128cd73780c","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41608c9ef684cb1e","name":"stdout","source":"41608c9ef684cb1e.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"330a0128cd73780c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e427c3eece0f34c3.json b/allure-report/data/test-cases/335c39c3e0f7aa15.json similarity index 73% rename from allure-report/data/test-cases/e427c3eece0f34c3.json rename to allure-report/data/test-cases/335c39c3e0f7aa15.json index b199d507a27..86147039fb5 100644 --- a/allure-report/data/test-cases/e427c3eece0f34c3.json +++ b/allure-report/data/test-cases/335c39c3e0f7aa15.json @@ -1 +1 @@ -{"uid":"e427c3eece0f34c3","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77c66732e5fdad66","name":"stdout","source":"77c66732e5fdad66.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"e427c3eece0f34c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"335c39c3e0f7aa15","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ec381cac44a14e7f","name":"stdout","source":"ec381cac44a14e7f.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"335c39c3e0f7aa15.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/102a91ff9d2e2c1f.json b/allure-report/data/test-cases/3400d1d080e82f75.json similarity index 72% rename from allure-report/data/test-cases/102a91ff9d2e2c1f.json rename to allure-report/data/test-cases/3400d1d080e82f75.json index dadc1a7ca77..f6e95e28449 100644 --- a/allure-report/data/test-cases/102a91ff9d2e2c1f.json +++ b/allure-report/data/test-cases/3400d1d080e82f75.json @@ -1 +1 @@ -{"uid":"102a91ff9d2e2c1f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2fb64bb60201538c","name":"stdout","source":"2fb64bb60201538c.txt","type":"text/plain","size":225}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"102a91ff9d2e2c1f.json","parameterValues":[]} \ No newline at end of file +{"uid":"3400d1d080e82f75","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a3653a5d01cb978a","name":"stdout","source":"a3653a5d01cb978a.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3400d1d080e82f75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8870275fadfceea.json b/allure-report/data/test-cases/3460c7a02debe899.json similarity index 70% rename from allure-report/data/test-cases/c8870275fadfceea.json rename to allure-report/data/test-cases/3460c7a02debe899.json index 6e87679bc77..3f11ce9e088 100644 --- a/allure-report/data/test-cases/c8870275fadfceea.json +++ b/allure-report/data/test-cases/3460c7a02debe899.json @@ -1 +1 @@ -{"uid":"c8870275fadfceea","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"939b7ea8b8b69174","name":"stdout","source":"939b7ea8b8b69174.txt","type":"text/plain","size":2621}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c8870275fadfceea.json","parameterValues":[]} \ No newline at end of file +{"uid":"3460c7a02debe899","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9925186cd87d138","name":"stdout","source":"f9925186cd87d138.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3460c7a02debe899.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34931ad2bd045d0c.json b/allure-report/data/test-cases/34931ad2bd045d0c.json new file mode 100644 index 00000000000..0c2357f35d4 --- /dev/null +++ b/allure-report/data/test-cases/34931ad2bd045d0c.json @@ -0,0 +1 @@ +{"uid":"34931ad2bd045d0c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a7e83a8939aa3ea","name":"stdout","source":"2a7e83a8939aa3ea.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"34931ad2bd045d0c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bcc8c6b28fb32dd0.json b/allure-report/data/test-cases/34ca51906297ee6f.json similarity index 65% rename from allure-report/data/test-cases/bcc8c6b28fb32dd0.json rename to allure-report/data/test-cases/34ca51906297ee6f.json index 69db19b3ebd..f8f3b26c5bd 100644 --- a/allure-report/data/test-cases/bcc8c6b28fb32dd0.json +++ b/allure-report/data/test-cases/34ca51906297ee6f.json @@ -1 +1 @@ -{"uid":"bcc8c6b28fb32dd0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732428195668,"stop":1732428195668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4d384465e183d6","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"9f8b999462605375","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"704aacac2db91585","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"bcc8c6b28fb32dd0.json","parameterValues":[]} \ No newline at end of file +{"uid":"34ca51906297ee6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732428195668,"stop":1732428195668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"34ca51906297ee6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/354cda6601a7cded.json b/allure-report/data/test-cases/354cda6601a7cded.json new file mode 100644 index 00000000000..f2e63eee27e --- /dev/null +++ b/allure-report/data/test-cases/354cda6601a7cded.json @@ -0,0 +1 @@ +{"uid":"354cda6601a7cded","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"41a6baf598873d9b","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0}},{"uid":"359cda8d66959d20","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"6a8f943df9cf325c","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"354cda6601a7cded.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35836d979e37575.json b/allure-report/data/test-cases/35836d979e37575.json deleted file mode 100644 index 1427de9d15c..00000000000 --- a/allure-report/data/test-cases/35836d979e37575.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"35836d979e37575","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67751593ff534b14","name":"stdout","source":"67751593ff534b14.txt","type":"text/plain","size":1009}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"35836d979e37575.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ea31191e1f5ab3b.json b/allure-report/data/test-cases/359cda8d66959d20.json similarity index 63% rename from allure-report/data/test-cases/4ea31191e1f5ab3b.json rename to allure-report/data/test-cases/359cda8d66959d20.json index 66743a7d8d5..e67d8051189 100644 --- a/allure-report/data/test-cases/4ea31191e1f5ab3b.json +++ b/allure-report/data/test-cases/359cda8d66959d20.json @@ -1 +1 @@ -{"uid":"4ea31191e1f5ab3b","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f3d8444cfb8c128","name":"stdout","source":"3f3d8444cfb8c128.txt","type":"text/plain","size":502}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"4ea31191e1f5ab3b.json","parameterValues":[]} \ No newline at end of file +{"uid":"359cda8d66959d20","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6e24d1199424ffc","name":"stdout","source":"e6e24d1199424ffc.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"359cda8d66959d20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35f4051adfa3517.json b/allure-report/data/test-cases/35f4051adfa3517.json new file mode 100644 index 00000000000..2da0ec400d5 --- /dev/null +++ b/allure-report/data/test-cases/35f4051adfa3517.json @@ -0,0 +1 @@ +{"uid":"35f4051adfa3517","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"35f4051adfa3517.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6399c372aa4005f1.json b/allure-report/data/test-cases/3604ad2531e10e0a.json similarity index 66% rename from allure-report/data/test-cases/6399c372aa4005f1.json rename to allure-report/data/test-cases/3604ad2531e10e0a.json index 6154a4b0a69..f5dc69f9cbd 100644 --- a/allure-report/data/test-cases/6399c372aa4005f1.json +++ b/allure-report/data/test-cases/3604ad2531e10e0a.json @@ -1 +1 @@ -{"uid":"6399c372aa4005f1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"72f4c1312eb8e355","name":"stdout","source":"72f4c1312eb8e355.txt","type":"text/plain","size":196}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"6399c372aa4005f1.json","parameterValues":[]} \ No newline at end of file +{"uid":"3604ad2531e10e0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45f7f0c7806d7a5f","name":"stdout","source":"45f7f0c7806d7a5f.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"3604ad2531e10e0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33a7277db5231ef9.json b/allure-report/data/test-cases/36552864c04c1cf9.json similarity index 68% rename from allure-report/data/test-cases/33a7277db5231ef9.json rename to allure-report/data/test-cases/36552864c04c1cf9.json index a0ad60f2a3a..364e1f1582a 100644 --- a/allure-report/data/test-cases/33a7277db5231ef9.json +++ b/allure-report/data/test-cases/36552864c04c1cf9.json @@ -1 +1 @@ -{"uid":"33a7277db5231ef9","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"459e1a71d63acc96","name":"stdout","source":"459e1a71d63acc96.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"33a7277db5231ef9.json","parameterValues":[]} \ No newline at end of file +{"uid":"36552864c04c1cf9","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1d47ca07980ea016","name":"stdout","source":"1d47ca07980ea016.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"36552864c04c1cf9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/698c99dcac4b0d93.json b/allure-report/data/test-cases/3714d7b27c33cf44.json similarity index 58% rename from allure-report/data/test-cases/698c99dcac4b0d93.json rename to allure-report/data/test-cases/3714d7b27c33cf44.json index 0abcf57b0ef..860d2271131 100644 --- a/allure-report/data/test-cases/698c99dcac4b0d93.json +++ b/allure-report/data/test-cases/3714d7b27c33cf44.json @@ -1 +1 @@ -{"uid":"698c99dcac4b0d93","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732428196217,"stop":1732428196217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"21f553aee2e150e3","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"e0b6b39a4d4f9bf4","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1188dda60b67ea96","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"698c99dcac4b0d93.json","parameterValues":[]} \ No newline at end of file +{"uid":"3714d7b27c33cf44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732428196217,"stop":1732428196217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"3714d7b27c33cf44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7d2073500029121.json b/allure-report/data/test-cases/3719e4e464aa700e.json similarity index 53% rename from allure-report/data/test-cases/f7d2073500029121.json rename to allure-report/data/test-cases/3719e4e464aa700e.json index 8a9ab39c9e9..c53b89b96d5 100644 --- a/allure-report/data/test-cases/f7d2073500029121.json +++ b/allure-report/data/test-cases/3719e4e464aa700e.json @@ -1 +1 @@ -{"uid":"f7d2073500029121","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dea092a037f048cd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"d97402e929388a59","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"dcfefe9c10c1f5d2","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f7d2073500029121.json","parameterValues":[]} \ No newline at end of file +{"uid":"3719e4e464aa700e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"3719e4e464aa700e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11fa683d801b6c42.json b/allure-report/data/test-cases/3785819940a9985f.json similarity index 56% rename from allure-report/data/test-cases/11fa683d801b6c42.json rename to allure-report/data/test-cases/3785819940a9985f.json index 32362cc791d..0a550cc26d8 100644 --- a/allure-report/data/test-cases/11fa683d801b6c42.json +++ b/allure-report/data/test-cases/3785819940a9985f.json @@ -1 +1 @@ -{"uid":"11fa683d801b6c42","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732428196392,"stop":1732428196392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732428196394,"stop":1732428196394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Swap Values"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"tag","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_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"96df3e350e2ba16f","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e0f78ca1d7d1823c","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"874b39a75ad8fa3b","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"11fa683d801b6c42.json","parameterValues":[]} \ No newline at end of file +{"uid":"3785819940a9985f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732428196392,"stop":1732428196392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732428196394,"stop":1732428196394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Swap Values"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"tag","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_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"3785819940a9985f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf437ca3dc1624b1.json b/allure-report/data/test-cases/378b8959bf0b41a9.json similarity index 81% rename from allure-report/data/test-cases/cf437ca3dc1624b1.json rename to allure-report/data/test-cases/378b8959bf0b41a9.json index a20d3e1ccb2..7d08958b6ba 100644 --- a/allure-report/data/test-cases/cf437ca3dc1624b1.json +++ b/allure-report/data/test-cases/378b8959bf0b41a9.json @@ -1 +1 @@ -{"uid":"cf437ca3dc1624b1","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9819ce1f0ac184a6","name":"stdout","source":"9819ce1f0ac184a6.txt","type":"text/plain","size":392}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"cf437ca3dc1624b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"378b8959bf0b41a9","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ee8e3a23a26b4600","name":"stdout","source":"ee8e3a23a26b4600.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"378b8959bf0b41a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4433323b946a1c32.json b/allure-report/data/test-cases/37af89538f752875.json similarity index 74% rename from allure-report/data/test-cases/4433323b946a1c32.json rename to allure-report/data/test-cases/37af89538f752875.json index 19cb59cd217..2bafe307117 100644 --- a/allure-report/data/test-cases/4433323b946a1c32.json +++ b/allure-report/data/test-cases/37af89538f752875.json @@ -1 +1 @@ -{"uid":"4433323b946a1c32","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4988f81545fa9dcf","name":"stdout","source":"4988f81545fa9dcf.txt","type":"text/plain","size":120}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4433323b946a1c32.json","parameterValues":[]} \ No newline at end of file +{"uid":"37af89538f752875","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a66e2ef0dd5ae597","name":"stdout","source":"a66e2ef0dd5ae597.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"37af89538f752875.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37bcd45d30c593a7.json b/allure-report/data/test-cases/37bcd45d30c593a7.json new file mode 100644 index 00000000000..6f264be9642 --- /dev/null +++ b/allure-report/data/test-cases/37bcd45d30c593a7.json @@ -0,0 +1 @@ +{"uid":"37bcd45d30c593a7","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732764219317,"stop":1732764219317,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d86eb3695c9130c6","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0}},{"uid":"67e470215248af57","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"4719969d944ed48a","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"37bcd45d30c593a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37c27a38809b08b4.json b/allure-report/data/test-cases/37c27a38809b08b4.json new file mode 100644 index 00000000000..877392b12e6 --- /dev/null +++ b/allure-report/data/test-cases/37c27a38809b08b4.json @@ -0,0 +1 @@ +{"uid":"37c27a38809b08b4","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":"

Codewars badge:

Test Description:

The function should generate city map with coordinates.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"574cb5d6827dca2a","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1}},{"uid":"f17cc6d65b0932fd","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"472edec34fd4cc19","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"37c27a38809b08b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38365b0f6f350ca5.json b/allure-report/data/test-cases/38365b0f6f350ca5.json deleted file mode 100644 index 399ae11c850..00000000000 --- a/allure-report/data/test-cases/38365b0f6f350ca5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"38365b0f6f350ca5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ff678a4c7734b0","name":"stdout","source":"1ff678a4c7734b0.txt","type":"text/plain","size":554}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"38365b0f6f350ca5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea156c7340f7150f.json b/allure-report/data/test-cases/383972b39eec664a.json similarity index 67% rename from allure-report/data/test-cases/ea156c7340f7150f.json rename to allure-report/data/test-cases/383972b39eec664a.json index 9eaa13e8f4e..6d947e30636 100644 --- a/allure-report/data/test-cases/ea156c7340f7150f.json +++ b/allure-report/data/test-cases/383972b39eec664a.json @@ -1 +1 @@ -{"uid":"ea156c7340f7150f","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8324986f2adab578","name":"stdout","source":"8324986f2adab578.txt","type":"text/plain","size":75}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ea156c7340f7150f.json","parameterValues":[]} \ No newline at end of file +{"uid":"383972b39eec664a","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"13227bd500cb42e3","name":"stdout","source":"13227bd500cb42e3.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"383972b39eec664a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3846518071a02e50.json b/allure-report/data/test-cases/3846518071a02e50.json new file mode 100644 index 00000000000..2200d2eba59 --- /dev/null +++ b/allure-report/data/test-cases/3846518071a02e50.json @@ -0,0 +1 @@ +{"uid":"3846518071a02e50","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1732764221226,"stop":1732764221226,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732764221228,"stop":1732764221228,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Boolean"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BOOLEANS"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"L1: Set Alarm"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f631ad3e8bb02244","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0}},{"uid":"68ad711bfb950e6e","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"ea733e6b4760e89e","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"3846518071a02e50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c072892b1c739356.json b/allure-report/data/test-cases/3846d19bb4975491.json similarity index 72% rename from allure-report/data/test-cases/c072892b1c739356.json rename to allure-report/data/test-cases/3846d19bb4975491.json index 545143eaa32..1550f019259 100644 --- a/allure-report/data/test-cases/c072892b1c739356.json +++ b/allure-report/data/test-cases/3846d19bb4975491.json @@ -1 +1 @@ -{"uid":"c072892b1c739356","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c072892b1c739356.json","parameterValues":[]} \ No newline at end of file +{"uid":"3846d19bb4975491","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"3846d19bb4975491.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/388d9dc9fa1f1c3a.json b/allure-report/data/test-cases/388d9dc9fa1f1c3a.json new file mode 100644 index 00000000000..888a56b3965 --- /dev/null +++ b/allure-report/data/test-cases/388d9dc9fa1f1c3a.json @@ -0,0 +1 @@ +{"uid":"388d9dc9fa1f1c3a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732764221086,"stop":1732764221087,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732764221088,"stop":1732764221088,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep Hydrated!"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5bf0909978db7e30","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0}},{"uid":"df9a9f68276bbb84","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"53fa8d477eb42fd3","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"388d9dc9fa1f1c3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2ea4d6d64dc027a.json b/allure-report/data/test-cases/38d84fb9239b5f2e.json similarity index 55% rename from allure-report/data/test-cases/b2ea4d6d64dc027a.json rename to allure-report/data/test-cases/38d84fb9239b5f2e.json index 840c7cc7e54..f0f8f6aa357 100644 --- a/allure-report/data/test-cases/b2ea4d6d64dc027a.json +++ b/allure-report/data/test-cases/38d84fb9239b5f2e.json @@ -1 +1 @@ -{"uid":"b2ea4d6d64dc027a","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":1732428195466,"stop":1732428195466,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732428195465,"stop":1732428195465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732428195467,"stop":1732428195467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"883f1439af050615","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"a258a6f00a3ffda1","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6ab6caccad49b468","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"b2ea4d6d64dc027a.json","parameterValues":[]} \ No newline at end of file +{"uid":"38d84fb9239b5f2e","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":1732428195466,"stop":1732428195466,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732428195465,"stop":1732428195465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732428195467,"stop":1732428195467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"38d84fb9239b5f2e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/877a76cbb202d7b3.json b/allure-report/data/test-cases/393b88e5ac625a50.json similarity index 55% rename from allure-report/data/test-cases/877a76cbb202d7b3.json rename to allure-report/data/test-cases/393b88e5ac625a50.json index 4d2be7920c8..d1379dd7854 100644 --- a/allure-report/data/test-cases/877a76cbb202d7b3.json +++ b/allure-report/data/test-cases/393b88e5ac625a50.json @@ -1 +1 @@ -{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732428196222,"stop":1732428196222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732428196225,"stop":1732428196225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Loops"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c0f4e1faa852c595","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"bf2c284d4d5bb98c","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b6301a55868859d","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"877a76cbb202d7b3.json","parameterValues":[]} \ No newline at end of file +{"uid":"393b88e5ac625a50","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732428196222,"stop":1732428196222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732428196225,"stop":1732428196225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Loops"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"393b88e5ac625a50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/863d9e582b6f3de4.json b/allure-report/data/test-cases/395a8f7cfcd6a2c9.json similarity index 72% rename from allure-report/data/test-cases/863d9e582b6f3de4.json rename to allure-report/data/test-cases/395a8f7cfcd6a2c9.json index 0350945206d..9ccd2d2d087 100644 --- a/allure-report/data/test-cases/863d9e582b6f3de4.json +++ b/allure-report/data/test-cases/395a8f7cfcd6a2c9.json @@ -1 +1 @@ -{"uid":"863d9e582b6f3de4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"537ecc9a719af32f","name":"stdout","source":"537ecc9a719af32f.txt","type":"text/plain","size":225}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"863d9e582b6f3de4.json","parameterValues":[]} \ No newline at end of file +{"uid":"395a8f7cfcd6a2c9","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"96d9a9c4b2d76831","name":"stdout","source":"96d9a9c4b2d76831.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"395a8f7cfcd6a2c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6fbd93f1e3abe9a5.json b/allure-report/data/test-cases/3a617c2d20fe6a0a.json similarity index 75% rename from allure-report/data/test-cases/6fbd93f1e3abe9a5.json rename to allure-report/data/test-cases/3a617c2d20fe6a0a.json index 0e31b0f3103..41d314a2d81 100644 --- a/allure-report/data/test-cases/6fbd93f1e3abe9a5.json +++ b/allure-report/data/test-cases/3a617c2d20fe6a0a.json @@ -1 +1 @@ -{"uid":"6fbd93f1e3abe9a5","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f428986b0baf88be","name":"stdout","source":"f428986b0baf88be.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6fbd93f1e3abe9a5.json","parameterValues":[]} \ No newline at end of file +{"uid":"3a617c2d20fe6a0a","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"524aa4f029baa8f0","name":"stdout","source":"524aa4f029baa8f0.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3a617c2d20fe6a0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a59d6609523c5a8.json b/allure-report/data/test-cases/3b252f71e94d60c3.json similarity index 73% rename from allure-report/data/test-cases/6a59d6609523c5a8.json rename to allure-report/data/test-cases/3b252f71e94d60c3.json index 1b7b26e51df..3ec9282b177 100644 --- a/allure-report/data/test-cases/6a59d6609523c5a8.json +++ b/allure-report/data/test-cases/3b252f71e94d60c3.json @@ -1 +1 @@ -{"uid":"6a59d6609523c5a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"4a05a037b7d71615","name":"stdout","source":"4a05a037b7d71615.txt","type":"text/plain","size":146}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"6a59d6609523c5a8.json","parameterValues":[]} \ No newline at end of file +{"uid":"3b252f71e94d60c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d497d06498897878","name":"stdout","source":"d497d06498897878.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"3b252f71e94d60c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6f0b2af516b0f755.json b/allure-report/data/test-cases/3b2be2c8b8f3d0bb.json similarity index 77% rename from allure-report/data/test-cases/6f0b2af516b0f755.json rename to allure-report/data/test-cases/3b2be2c8b8f3d0bb.json index 9c474450b8d..6a52f4ac431 100644 --- a/allure-report/data/test-cases/6f0b2af516b0f755.json +++ b/allure-report/data/test-cases/3b2be2c8b8f3d0bb.json @@ -1 +1 @@ -{"uid":"6f0b2af516b0f755","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b94b97d784c6cf01","name":"stdout","source":"b94b97d784c6cf01.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"6f0b2af516b0f755.json","parameterValues":[]} \ No newline at end of file +{"uid":"3b2be2c8b8f3d0bb","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47ad300a7de26866","name":"stdout","source":"47ad300a7de26866.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3b2be2c8b8f3d0bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b580876a88f5382.json b/allure-report/data/test-cases/3b453b26a6476828.json similarity index 67% rename from allure-report/data/test-cases/3b580876a88f5382.json rename to allure-report/data/test-cases/3b453b26a6476828.json index 39ea682937b..2315558b8f5 100644 --- a/allure-report/data/test-cases/3b580876a88f5382.json +++ b/allure-report/data/test-cases/3b453b26a6476828.json @@ -1 +1 @@ -{"uid":"3b580876a88f5382","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e3a1df6b2bd53059","name":"stdout","source":"e3a1df6b2bd53059.txt","type":"text/plain","size":27}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b580876a88f5382.json","parameterValues":[]} \ No newline at end of file +{"uid":"3b453b26a6476828","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"df41cf6b46c44c9e","name":"stdout","source":"df41cf6b46c44c9e.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b453b26a6476828.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b9e344534b3c5db.json b/allure-report/data/test-cases/3b9e344534b3c5db.json new file mode 100644 index 00000000000..1307f577e3e --- /dev/null +++ b/allure-report/data/test-cases/3b9e344534b3c5db.json @@ -0,0 +1 @@ +{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732764218673,"stop":1732764218673,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d36e2f5707d2a6d3","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2}},{"uid":"9ee094a1f359821e","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"584f8bdd5c7f3c16","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3b9e344534b3c5db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c2fc5bac7417dd0.json b/allure-report/data/test-cases/3bb063d5045f38b5.json similarity index 68% rename from allure-report/data/test-cases/9c2fc5bac7417dd0.json rename to allure-report/data/test-cases/3bb063d5045f38b5.json index 1291c78d9f5..c7638b5b85c 100644 --- a/allure-report/data/test-cases/9c2fc5bac7417dd0.json +++ b/allure-report/data/test-cases/3bb063d5045f38b5.json @@ -1 +1 @@ -{"uid":"9c2fc5bac7417dd0","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0b96f0ad42d1de6","name":"stdout","source":"d0b96f0ad42d1de6.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"9c2fc5bac7417dd0.json","parameterValues":[]} \ No newline at end of file +{"uid":"3bb063d5045f38b5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"66609ce44d720b41","name":"stdout","source":"66609ce44d720b41.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3bb063d5045f38b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ac6d40036941792.json b/allure-report/data/test-cases/3c275e4650ef1fcb.json similarity index 71% rename from allure-report/data/test-cases/9ac6d40036941792.json rename to allure-report/data/test-cases/3c275e4650ef1fcb.json index 38510786d0a..48f372862ea 100644 --- a/allure-report/data/test-cases/9ac6d40036941792.json +++ b/allure-report/data/test-cases/3c275e4650ef1fcb.json @@ -1 +1 @@ -{"uid":"9ac6d40036941792","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"addbfb5be788ff64","name":"stdout","source":"addbfb5be788ff64.txt","type":"text/plain","size":72}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"9ac6d40036941792.json","parameterValues":[]} \ No newline at end of file +{"uid":"3c275e4650ef1fcb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"26e6b6f5238c5b93","name":"stdout","source":"26e6b6f5238c5b93.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"3c275e4650ef1fcb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c7a781e3674db5e.json b/allure-report/data/test-cases/3c7a781e3674db5e.json new file mode 100644 index 00000000000..489542ea5ba --- /dev/null +++ b/allure-report/data/test-cases/3c7a781e3674db5e.json @@ -0,0 +1 @@ +{"uid":"3c7a781e3674db5e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732764219151,"stop":1732764219151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732764219151,"stop":1732764219151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732764219153,"stop":1732764219153,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6aa550180790876d","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0}},{"uid":"6463a9e3be0b4026","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"4ab2fd070154adeb","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3c7a781e3674db5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a258a6f00a3ffda1.json b/allure-report/data/test-cases/3c99f2489842209e.json similarity index 70% rename from allure-report/data/test-cases/a258a6f00a3ffda1.json rename to allure-report/data/test-cases/3c99f2489842209e.json index 8fd6a029bc7..67a5e80fcb8 100644 --- a/allure-report/data/test-cases/a258a6f00a3ffda1.json +++ b/allure-report/data/test-cases/3c99f2489842209e.json @@ -1 +1 @@ -{"uid":"a258a6f00a3ffda1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a8a2d0c90cfef1e","name":"stdout","source":"8a8a2d0c90cfef1e.txt","type":"text/plain","size":86}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a258a6f00a3ffda1.json","parameterValues":[]} \ No newline at end of file +{"uid":"3c99f2489842209e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a45595e4822528c2","name":"stdout","source":"a45595e4822528c2.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3c99f2489842209e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3cb7f65d354963ea.json b/allure-report/data/test-cases/3cb7f65d354963ea.json new file mode 100644 index 00000000000..f00a5bd65d3 --- /dev/null +++ b/allure-report/data/test-cases/3cb7f65d354963ea.json @@ -0,0 +1 @@ +{"uid":"3cb7f65d354963ea","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732764221267,"stop":1732764221268,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"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_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51021ef4547a41f8","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0}},{"uid":"579e5f45553c02f2","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"43c9c9efb1c04251","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"3cb7f65d354963ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d05de3d43cf437d.json b/allure-report/data/test-cases/3d05de3d43cf437d.json new file mode 100644 index 00000000000..cec67571a88 --- /dev/null +++ b/allure-report/data/test-cases/3d05de3d43cf437d.json @@ -0,0 +1 @@ +{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

Advanced Warrior class assertions

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10f08e5166368fc8","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0}},{"uid":"70c180d1e9f40ddc","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"4941703c69aa6dd8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"3d05de3d43cf437d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/256a10c9792b808f.json b/allure-report/data/test-cases/3d09efb523dadc81.json similarity index 51% rename from allure-report/data/test-cases/256a10c9792b808f.json rename to allure-report/data/test-cases/3d09efb523dadc81.json index f889295b23f..6b7d11c1d48 100644 --- a/allure-report/data/test-cases/256a10c9792b808f.json +++ b/allure-report/data/test-cases/3d09efb523dadc81.json @@ -1 +1 @@ -{"uid":"256a10c9792b808f","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":1732428194628,"stop":1732428194628,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732428194630,"stop":1732428194630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"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":"HASHES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25a09c2c9e3c88b1","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"d4af7c6dd9a36bc3","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"616180d049b16d1d","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"256a10c9792b808f.json","parameterValues":[]} \ No newline at end of file +{"uid":"3d09efb523dadc81","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":1732428194628,"stop":1732428194628,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732428194630,"stop":1732428194630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"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":"HASHES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"3d09efb523dadc81.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d40466198fa34e6.json b/allure-report/data/test-cases/3d40466198fa34e6.json new file mode 100644 index 00000000000..cc457d7caf0 --- /dev/null +++ b/allure-report/data/test-cases/3d40466198fa34e6.json @@ -0,0 +1 @@ +{"uid":"3d40466198fa34e6","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"696e651c40149097","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0}},{"uid":"7fb0d954404a7411","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"efdfaccb93c4c6b4","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3d40466198fa34e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d4ef3b1faaf3c9d.json b/allure-report/data/test-cases/3d4ef3b1faaf3c9d.json new file mode 100644 index 00000000000..4dbb70b07d8 --- /dev/null +++ b/allure-report/data/test-cases/3d4ef3b1faaf3c9d.json @@ -0,0 +1 @@ +{"uid":"3d4ef3b1faaf3c9d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"be09c92a6fe0ac60","name":"stdout","source":"be09c92a6fe0ac60.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3d4ef3b1faaf3c9d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d4f8cb2de087cf.json b/allure-report/data/test-cases/3d4f8cb2de087cf.json deleted file mode 100644 index 187578d715c..00000000000 --- a/allure-report/data/test-cases/3d4f8cb2de087cf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3d4f8cb2de087cf","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77adc248069b48d7","name":"stdout","source":"77adc248069b48d7.txt","type":"text/plain","size":410}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"3d4f8cb2de087cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3de1512f067d459d.json b/allure-report/data/test-cases/3de1512f067d459d.json new file mode 100644 index 00000000000..cfad75712fa --- /dev/null +++ b/allure-report/data/test-cases/3de1512f067d459d.json @@ -0,0 +1 @@ +{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732764219197,"stop":1732764219197,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e5d70f307aec9205","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0}},{"uid":"a9ecee1b4fc0ab11","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"c12e168b06d36fc7","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS"]},"source":"3de1512f067d459d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3de5bbe9e7cab5b6.json b/allure-report/data/test-cases/3de5bbe9e7cab5b6.json new file mode 100644 index 00000000000..0acdcc538a0 --- /dev/null +++ b/allure-report/data/test-cases/3de5bbe9e7cab5b6.json @@ -0,0 +1 @@ +{"uid":"3de5bbe9e7cab5b6","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fe07573cd07e1ed8","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1}},{"uid":"b8bd7a062c96fe90","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"bcdd15975118f527","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"3de5bbe9e7cab5b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e564e38813f1539.json b/allure-report/data/test-cases/3e564e38813f1539.json new file mode 100644 index 00000000000..1b895657b94 --- /dev/null +++ b/allure-report/data/test-cases/3e564e38813f1539.json @@ -0,0 +1 @@ +{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on negative grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"46ad98eaed470ea7","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0}},{"uid":"d34aca89a8362e7c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"ee3233c4ab89c7ec","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":2,"unknown":0,"total":4},"items":[{"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":"3e564e38813f1539.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0d455d6bf21528b.json b/allure-report/data/test-cases/3e88e2d0381e105a.json similarity index 72% rename from allure-report/data/test-cases/a0d455d6bf21528b.json rename to allure-report/data/test-cases/3e88e2d0381e105a.json index ebf9801dd25..32741e8bba0 100644 --- a/allure-report/data/test-cases/a0d455d6bf21528b.json +++ b/allure-report/data/test-cases/3e88e2d0381e105a.json @@ -1 +1 @@ -{"uid":"a0d455d6bf21528b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ffe9d790c546ddb7","name":"stdout","source":"ffe9d790c546ddb7.txt","type":"text/plain","size":230}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a0d455d6bf21528b.json","parameterValues":[]} \ No newline at end of file +{"uid":"3e88e2d0381e105a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a93887f366c469bf","name":"stdout","source":"a93887f366c469bf.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3e88e2d0381e105a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ead41117d0ad5b6.json b/allure-report/data/test-cases/3ead41117d0ad5b6.json new file mode 100644 index 00000000000..c74e5f87d88 --- /dev/null +++ b/allure-report/data/test-cases/3ead41117d0ad5b6.json @@ -0,0 +1 @@ +{"uid":"3ead41117d0ad5b6","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":"

Codewars badge:

Test Description:

Given a year, the function should return the century it is in.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"864737f712b002ec","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0}},{"uid":"3fe8a02ede1e6532","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"65bb39f46c25941f","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3ead41117d0ad5b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f3bfc03f90689c3.json b/allure-report/data/test-cases/3f3bfc03f90689c3.json new file mode 100644 index 00000000000..17c719082c7 --- /dev/null +++ b/allure-report/data/test-cases/3f3bfc03f90689c3.json @@ -0,0 +1 @@ +{"uid":"3f3bfc03f90689c3","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d4f2ea957f6fd3d1","name":"stdout","source":"d4f2ea957f6fd3d1.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3f3bfc03f90689c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1532fae746d0bb3a.json b/allure-report/data/test-cases/3f678007c09ea2b5.json similarity index 54% rename from allure-report/data/test-cases/1532fae746d0bb3a.json rename to allure-report/data/test-cases/3f678007c09ea2b5.json index 0a104a4165d..d4213cd75e7 100644 --- a/allure-report/data/test-cases/1532fae746d0bb3a.json +++ b/allure-report/data/test-cases/3f678007c09ea2b5.json @@ -1 +1 @@ -{"uid":"1532fae746d0bb3a","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":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194667,"stop":1732428194667,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f02852e3aa10b6d","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"693d19da33d622de","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1532fae746d0bb3a.json","parameterValues":[]} \ No newline at end of file +{"uid":"3f678007c09ea2b5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194667,"stop":1732428194667,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3f678007c09ea2b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fe8a02ede1e6532.json b/allure-report/data/test-cases/3fe8a02ede1e6532.json new file mode 100644 index 00000000000..b13ce6aa628 --- /dev/null +++ b/allure-report/data/test-cases/3fe8a02ede1e6532.json @@ -0,0 +1 @@ +{"uid":"3fe8a02ede1e6532","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"763b805ca97b9cb4","name":"stdout","source":"763b805ca97b9cb4.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3fe8a02ede1e6532.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ff87d981594c6f7.json b/allure-report/data/test-cases/3ff87d981594c6f7.json new file mode 100644 index 00000000000..853a1ca8f99 --- /dev/null +++ b/allure-report/data/test-cases/3ff87d981594c6f7.json @@ -0,0 +1 @@ +{"uid":"3ff87d981594c6f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732764220596,"stop":1732764220596,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220596,"stop":1732764220596,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732764220598,"stop":1732764220598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Password validator"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9054a710a823b80a","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0}},{"uid":"2f46a2e41d4cb55","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"cf349408f505ed67","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3ff87d981594c6f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/405b625cf95f9fbd.json b/allure-report/data/test-cases/405b625cf95f9fbd.json new file mode 100644 index 00000000000..7d703382c2e --- /dev/null +++ b/allure-report/data/test-cases/405b625cf95f9fbd.json @@ -0,0 +1 @@ +{"uid":"405b625cf95f9fbd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732764220462,"stop":1732764220462,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a75aa53086c60820","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0}},{"uid":"9dc0ca62f1db510f","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"f40d2270a86983a1","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"405b625cf95f9fbd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8c44a676a12b5c6.json b/allure-report/data/test-cases/406377324fdf0256.json similarity index 73% rename from allure-report/data/test-cases/c8c44a676a12b5c6.json rename to allure-report/data/test-cases/406377324fdf0256.json index ca8e957439d..e7fd55d23ee 100644 --- a/allure-report/data/test-cases/c8c44a676a12b5c6.json +++ b/allure-report/data/test-cases/406377324fdf0256.json @@ -1 +1 @@ -{"uid":"c8c44a676a12b5c6","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e13819432a0a8bbc","name":"stdout","source":"e13819432a0a8bbc.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"c8c44a676a12b5c6.json","parameterValues":[]} \ No newline at end of file +{"uid":"406377324fdf0256","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f2a9e45ebf48d755","name":"stdout","source":"f2a9e45ebf48d755.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"406377324fdf0256.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40819c186d07d3de.json b/allure-report/data/test-cases/40819c186d07d3de.json deleted file mode 100644 index d17b36bb451..00000000000 --- a/allure-report/data/test-cases/40819c186d07d3de.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"40819c186d07d3de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bb1a14f7acaf229","name":"stdout","source":"bb1a14f7acaf229.txt","type":"text/plain","size":302}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"40819c186d07d3de.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2980fd5af6447b30.json b/allure-report/data/test-cases/40a0fe54277654cc.json similarity index 72% rename from allure-report/data/test-cases/2980fd5af6447b30.json rename to allure-report/data/test-cases/40a0fe54277654cc.json index 746d049f3c8..1e15ec0e4c3 100644 --- a/allure-report/data/test-cases/2980fd5af6447b30.json +++ b/allure-report/data/test-cases/40a0fe54277654cc.json @@ -1 +1 @@ -{"uid":"2980fd5af6447b30","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"660305aec4aa6e06","name":"stdout","source":"660305aec4aa6e06.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"2980fd5af6447b30.json","parameterValues":[]} \ No newline at end of file +{"uid":"40a0fe54277654cc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5f030da14b8e67d2","name":"stdout","source":"5f030da14b8e67d2.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"40a0fe54277654cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40c938f8f83f34f7.json b/allure-report/data/test-cases/40c938f8f83f34f7.json deleted file mode 100644 index a8ce806400d..00000000000 --- a/allure-report/data/test-cases/40c938f8f83f34f7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"40c938f8f83f34f7","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":1732428194567,"stop":1732428194567,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732428194566,"stop":1732428194566,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1732428194569,"stop":1732428194569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7d905be84b5c0b77","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"16a9ca9919e5cef5","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"40c938f8f83f34f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/413fd3063d3e7dc4.json b/allure-report/data/test-cases/413fd3063d3e7dc4.json deleted file mode 100644 index ed82539be85..00000000000 --- a/allure-report/data/test-cases/413fd3063d3e7dc4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"413fd3063d3e7dc4","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":1732428193933,"stop":1732428193934,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on positive grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"85df8de56a96ab7c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"af4da168bd187f62","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":1,"unknown":0,"total":3},"items":[{"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":"413fd3063d3e7dc4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41668c3c4e1a677a.json b/allure-report/data/test-cases/41668c3c4e1a677a.json new file mode 100644 index 00000000000..3fd7d85265a --- /dev/null +++ b/allure-report/data/test-cases/41668c3c4e1a677a.json @@ -0,0 +1 @@ +{"uid":"41668c3c4e1a677a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220212,"stop":1732764220212,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764220214,"stop":1732764220214,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ee16b6e353dfd7cd","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1}},{"uid":"3a617c2d20fe6a0a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"741a61f0f9cb4c37","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"41668c3c4e1a677a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/416bb0c0ac58f7b6.json b/allure-report/data/test-cases/416bb0c0ac58f7b6.json new file mode 100644 index 00000000000..886488539c3 --- /dev/null +++ b/allure-report/data/test-cases/416bb0c0ac58f7b6.json @@ -0,0 +1 @@ +{"uid":"416bb0c0ac58f7b6","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb7d4237e3a80dd7","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0}},{"uid":"1be5b98a41807de8","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"b7108f3053cbc60d","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"416bb0c0ac58f7b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2bfddef765c09569.json b/allure-report/data/test-cases/41a6baf598873d9b.json similarity index 57% rename from allure-report/data/test-cases/2bfddef765c09569.json rename to allure-report/data/test-cases/41a6baf598873d9b.json index 32eace7c761..d9e27cc99c5 100644 --- a/allure-report/data/test-cases/2bfddef765c09569.json +++ b/allure-report/data/test-cases/41a6baf598873d9b.json @@ -1 +1 @@ -{"uid":"2bfddef765c09569","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1732428194561,"stop":1732428194561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ea31191e1f5ab3b","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"ac81c5ec86387239","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2bfddef765c09569.json","parameterValues":[]} \ No newline at end of file +{"uid":"41a6baf598873d9b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"41a6baf598873d9b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b67813f1cae4659e.json b/allure-report/data/test-cases/42358797bb03e774.json similarity index 63% rename from allure-report/data/test-cases/b67813f1cae4659e.json rename to allure-report/data/test-cases/42358797bb03e774.json index 3160ff15517..5517d4c47fd 100644 --- a/allure-report/data/test-cases/b67813f1cae4659e.json +++ b/allure-report/data/test-cases/42358797bb03e774.json @@ -1 +1 @@ -{"uid":"b67813f1cae4659e","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c74e320818fb9682","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"5f2df3f2c9b86d77","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"cde5d1b46b10d7ac","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b67813f1cae4659e.json","parameterValues":[]} \ No newline at end of file +{"uid":"42358797bb03e774","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42358797bb03e774.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3cb4765f4f4fe8e7.json b/allure-report/data/test-cases/42452319aaa200ae.json similarity index 73% rename from allure-report/data/test-cases/3cb4765f4f4fe8e7.json rename to allure-report/data/test-cases/42452319aaa200ae.json index 853bbc5d9ba..4f8ba52cefa 100644 --- a/allure-report/data/test-cases/3cb4765f4f4fe8e7.json +++ b/allure-report/data/test-cases/42452319aaa200ae.json @@ -1 +1 @@ -{"uid":"3cb4765f4f4fe8e7","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"69b865faf74786aa","name":"stdout","source":"69b865faf74786aa.txt","type":"text/plain","size":22}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"3cb4765f4f4fe8e7.json","parameterValues":[]} \ No newline at end of file +{"uid":"42452319aaa200ae","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb983dadd4fd2138","name":"stdout","source":"fb983dadd4fd2138.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42452319aaa200ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4249127f6bff6f10.json b/allure-report/data/test-cases/4249127f6bff6f10.json new file mode 100644 index 00000000000..3dac48c7822 --- /dev/null +++ b/allure-report/data/test-cases/4249127f6bff6f10.json @@ -0,0 +1 @@ +{"uid":"4249127f6bff6f10","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e6c7d1c4189d9dd","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0}},{"uid":"42bd5b348187136c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"9f41894781b470ee","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"4249127f6bff6f10.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/428efcfcd43d2531.json b/allure-report/data/test-cases/428efcfcd43d2531.json deleted file mode 100644 index 61625af506b..00000000000 --- a/allure-report/data/test-cases/428efcfcd43d2531.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"428efcfcd43d2531","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7bc78567c01b81e","name":"stdout","source":"7bc78567c01b81e.txt","type":"text/plain","size":401}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"428efcfcd43d2531.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31050b40d7651adc.json b/allure-report/data/test-cases/42bd5b348187136c.json similarity index 68% rename from allure-report/data/test-cases/31050b40d7651adc.json rename to allure-report/data/test-cases/42bd5b348187136c.json index 4c0699ed4e2..6e1d91e5384 100644 --- a/allure-report/data/test-cases/31050b40d7651adc.json +++ b/allure-report/data/test-cases/42bd5b348187136c.json @@ -1 +1 @@ -{"uid":"31050b40d7651adc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"12f3e703f687ed41","name":"stdout","source":"12f3e703f687ed41.txt","type":"text/plain","size":1515}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"31050b40d7651adc.json","parameterValues":[]} \ No newline at end of file +{"uid":"42bd5b348187136c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"70a5653f29871a87","name":"stdout","source":"70a5653f29871a87.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42bd5b348187136c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6207ccc30173aa77.json b/allure-report/data/test-cases/437936b48694b75d.json similarity index 64% rename from allure-report/data/test-cases/6207ccc30173aa77.json rename to allure-report/data/test-cases/437936b48694b75d.json index bc15b602d44..ee945bd5e4e 100644 --- a/allure-report/data/test-cases/6207ccc30173aa77.json +++ b/allure-report/data/test-cases/437936b48694b75d.json @@ -1 +1 @@ -{"uid":"6207ccc30173aa77","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8b7ee3418e7b9e0","name":"stdout","source":"d8b7ee3418e7b9e0.txt","type":"text/plain","size":1093}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"6207ccc30173aa77.json","parameterValues":[]} \ No newline at end of file +{"uid":"437936b48694b75d","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"613c4bb712b376ab","name":"stdout","source":"613c4bb712b376ab.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"437936b48694b75d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43a8b37a1715c915.json b/allure-report/data/test-cases/43a8b37a1715c915.json new file mode 100644 index 00000000000..da38cbe4da7 --- /dev/null +++ b/allure-report/data/test-cases/43a8b37a1715c915.json @@ -0,0 +1 @@ +{"uid":"43a8b37a1715c915","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":"

Codewars badge:

Test Description:

The function should create a NxN spiral with a given size.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732764218582,"stop":1732764218582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"aea343086c8abd68","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1}},{"uid":"47cf0745ec1b0964","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"f207a08521ff3dd3","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"43a8b37a1715c915.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77e868a9cd944330.json b/allure-report/data/test-cases/43c9c9efb1c04251.json similarity index 81% rename from allure-report/data/test-cases/77e868a9cd944330.json rename to allure-report/data/test-cases/43c9c9efb1c04251.json index 6f5d5844d72..fddd3883689 100644 --- a/allure-report/data/test-cases/77e868a9cd944330.json +++ b/allure-report/data/test-cases/43c9c9efb1c04251.json @@ -1 +1 @@ -{"uid":"77e868a9cd944330","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8e484f9bfa00ca83","name":"stdout","source":"8e484f9bfa00ca83.txt","type":"text/plain","size":193}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"77e868a9cd944330.json","parameterValues":[]} \ No newline at end of file +{"uid":"43c9c9efb1c04251","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27ebdb1cdb347243","name":"stdout","source":"27ebdb1cdb347243.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"43c9c9efb1c04251.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7eae685c38fccbb.json b/allure-report/data/test-cases/4430fa612ad99844.json similarity index 68% rename from allure-report/data/test-cases/d7eae685c38fccbb.json rename to allure-report/data/test-cases/4430fa612ad99844.json index abb80b07446..9065d2dbe64 100644 --- a/allure-report/data/test-cases/d7eae685c38fccbb.json +++ b/allure-report/data/test-cases/4430fa612ad99844.json @@ -1 +1 @@ -{"uid":"d7eae685c38fccbb","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ccd74e070792411","name":"stdout","source":"6ccd74e070792411.txt","type":"text/plain","size":371}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"d7eae685c38fccbb.json","parameterValues":[]} \ No newline at end of file +{"uid":"4430fa612ad99844","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"491bdfb319cbef56","name":"stdout","source":"491bdfb319cbef56.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4430fa612ad99844.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4438dce845a8b680.json b/allure-report/data/test-cases/4438dce845a8b680.json new file mode 100644 index 00000000000..8ae581d8d19 --- /dev/null +++ b/allure-report/data/test-cases/4438dce845a8b680.json @@ -0,0 +1 @@ +{"uid":"4438dce845a8b680","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":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"67c96b92db3f1ee1","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0}},{"uid":"adbbb2c26291ccd5","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"582aa68275dac68e","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"4438dce845a8b680.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2dc119e05306bc09.json b/allure-report/data/test-cases/44516baeffa03c9d.json similarity index 76% rename from allure-report/data/test-cases/2dc119e05306bc09.json rename to allure-report/data/test-cases/44516baeffa03c9d.json index 7dc6a7b3477..ef9415afc69 100644 --- a/allure-report/data/test-cases/2dc119e05306bc09.json +++ b/allure-report/data/test-cases/44516baeffa03c9d.json @@ -1 +1 @@ -{"uid":"2dc119e05306bc09","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2dc119e05306bc09.json","parameterValues":[]} \ No newline at end of file +{"uid":"44516baeffa03c9d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"44516baeffa03c9d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44e584571b03be2.json b/allure-report/data/test-cases/44e584571b03be2.json new file mode 100644 index 00000000000..7007c32fac0 --- /dev/null +++ b/allure-report/data/test-cases/44e584571b03be2.json @@ -0,0 +1 @@ +{"uid":"44e584571b03be2","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"16068cef6801ede5","name":"stdout","source":"16068cef6801ede5.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"44e584571b03be2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/450fbb27e2067be4.json b/allure-report/data/test-cases/450fbb27e2067be4.json new file mode 100644 index 00000000000..3d313f39a58 --- /dev/null +++ b/allure-report/data/test-cases/450fbb27e2067be4.json @@ -0,0 +1 @@ +{"uid":"450fbb27e2067be4","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":1732764218624,"stop":1732764218624,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f21450476aa4c9a","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1}},{"uid":"65c772a236576a2d","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"4b28b33a131eefd9","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"450fbb27e2067be4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/45bc1447720343e5.json b/allure-report/data/test-cases/45bc1447720343e5.json new file mode 100644 index 00000000000..cbeb3833980 --- /dev/null +++ b/allure-report/data/test-cases/45bc1447720343e5.json @@ -0,0 +1 @@ +{"uid":"45bc1447720343e5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72a8521de031df4e","name":"stdout","source":"72a8521de031df4e.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"45bc1447720343e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bdb6e0764902ab4.json b/allure-report/data/test-cases/4617147ad7612076.json similarity index 74% rename from allure-report/data/test-cases/1bdb6e0764902ab4.json rename to allure-report/data/test-cases/4617147ad7612076.json index e23354733a3..312df6ccfaf 100644 --- a/allure-report/data/test-cases/1bdb6e0764902ab4.json +++ b/allure-report/data/test-cases/4617147ad7612076.json @@ -1 +1 @@ -{"uid":"1bdb6e0764902ab4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e321f5d691b52e57","name":"stdout","source":"e321f5d691b52e57.txt","type":"text/plain","size":348}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"1bdb6e0764902ab4.json","parameterValues":[]} \ No newline at end of file +{"uid":"4617147ad7612076","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3cf96ebaed3b737c","name":"stdout","source":"3cf96ebaed3b737c.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4617147ad7612076.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46ad98eaed470ea7.json b/allure-report/data/test-cases/46ad98eaed470ea7.json new file mode 100644 index 00000000000..522266d6bec --- /dev/null +++ b/allure-report/data/test-cases/46ad98eaed470ea7.json @@ -0,0 +1 @@ +{"uid":"46ad98eaed470ea7","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"46ad98eaed470ea7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bef76bb610cc3bd.json b/allure-report/data/test-cases/46de5298b06a2e8f.json similarity index 71% rename from allure-report/data/test-cases/1bef76bb610cc3bd.json rename to allure-report/data/test-cases/46de5298b06a2e8f.json index 266c7fd85ff..5e4b0c87cb6 100644 --- a/allure-report/data/test-cases/1bef76bb610cc3bd.json +++ b/allure-report/data/test-cases/46de5298b06a2e8f.json @@ -1 +1 @@ -{"uid":"1bef76bb610cc3bd","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5c031a187e70f58","name":"stdout","source":"f5c031a187e70f58.txt","type":"text/plain","size":72}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"1bef76bb610cc3bd.json","parameterValues":[]} \ No newline at end of file +{"uid":"46de5298b06a2e8f","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d31f2c0a44e75654","name":"stdout","source":"d31f2c0a44e75654.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"46de5298b06a2e8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46eea1e10beb3240.json b/allure-report/data/test-cases/46eea1e10beb3240.json new file mode 100644 index 00000000000..7510d39aad0 --- /dev/null +++ b/allure-report/data/test-cases/46eea1e10beb3240.json @@ -0,0 +1 @@ +{"uid":"46eea1e10beb3240","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":1732764220443,"stop":1732764220443,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5703befafee18856","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1}},{"uid":"c5bfa9ec903b7b32","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"2ba00773a1bfae2e","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"46eea1e10beb3240.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4710cc2182eb85cb.json b/allure-report/data/test-cases/4710cc2182eb85cb.json new file mode 100644 index 00000000000..4a271d409ed --- /dev/null +++ b/allure-report/data/test-cases/4710cc2182eb85cb.json @@ -0,0 +1 @@ +{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"71f8f5b376b254cf","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0}},{"uid":"406377324fdf0256","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"335c39c3e0f7aa15","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4710cc2182eb85cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e17b710b1ca6cef6.json b/allure-report/data/test-cases/4719969d944ed48a.json similarity index 66% rename from allure-report/data/test-cases/e17b710b1ca6cef6.json rename to allure-report/data/test-cases/4719969d944ed48a.json index 278cdd5bda6..e9c98a9f57f 100644 --- a/allure-report/data/test-cases/e17b710b1ca6cef6.json +++ b/allure-report/data/test-cases/4719969d944ed48a.json @@ -1 +1 @@ -{"uid":"e17b710b1ca6cef6","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fc0a9047ac128608","name":"stdout","source":"fc0a9047ac128608.txt","type":"text/plain","size":992}],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"e17b710b1ca6cef6.json","parameterValues":[]} \ No newline at end of file +{"uid":"4719969d944ed48a","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"baac53f2bcc51cfd","name":"stdout","source":"baac53f2bcc51cfd.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"4719969d944ed48a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a530698ca5ed066c.json b/allure-report/data/test-cases/472edec34fd4cc19.json similarity index 72% rename from allure-report/data/test-cases/a530698ca5ed066c.json rename to allure-report/data/test-cases/472edec34fd4cc19.json index 9987e8c4d4e..27d6d9c67e6 100644 --- a/allure-report/data/test-cases/a530698ca5ed066c.json +++ b/allure-report/data/test-cases/472edec34fd4cc19.json @@ -1 +1 @@ -{"uid":"a530698ca5ed066c","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1905a023fe62d7a5","name":"stdout","source":"1905a023fe62d7a5.txt","type":"text/plain","size":326}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"a530698ca5ed066c.json","parameterValues":[]} \ No newline at end of file +{"uid":"472edec34fd4cc19","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"312dff4578efa314","name":"stdout","source":"312dff4578efa314.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"472edec34fd4cc19.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4736c243443acbf6.json b/allure-report/data/test-cases/4736c243443acbf6.json new file mode 100644 index 00000000000..0e7220cd1a9 --- /dev/null +++ b/allure-report/data/test-cases/4736c243443acbf6.json @@ -0,0 +1 @@ +{"uid":"4736c243443acbf6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf8fa237e5fc3101","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0}},{"uid":"9aaaa009f2bba8b1","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"6444bc59e77319f9","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4736c243443acbf6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43e7aaf3ed9f3ed0.json b/allure-report/data/test-cases/479b452abb7b813c.json similarity index 63% rename from allure-report/data/test-cases/43e7aaf3ed9f3ed0.json rename to allure-report/data/test-cases/479b452abb7b813c.json index c8e788a26d0..24223007b0f 100644 --- a/allure-report/data/test-cases/43e7aaf3ed9f3ed0.json +++ b/allure-report/data/test-cases/479b452abb7b813c.json @@ -1 +1 @@ -{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732428194544,"stop":1732428194544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"702c9f7aebde64af","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"1c59e45321407518","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"31b67858aaa81503","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"43e7aaf3ed9f3ed0.json","parameterValues":[]} \ No newline at end of file +{"uid":"479b452abb7b813c","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732428194544,"stop":1732428194544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Novice"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"479b452abb7b813c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73a56012085cbb67.json b/allure-report/data/test-cases/47cf0745ec1b0964.json similarity index 64% rename from allure-report/data/test-cases/73a56012085cbb67.json rename to allure-report/data/test-cases/47cf0745ec1b0964.json index ff5e175accf..e0cd0b4669f 100644 --- a/allure-report/data/test-cases/73a56012085cbb67.json +++ b/allure-report/data/test-cases/47cf0745ec1b0964.json @@ -1 +1 @@ -{"uid":"73a56012085cbb67","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff15e181fd0e6388","name":"stdout","source":"ff15e181fd0e6388.txt","type":"text/plain","size":1865}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"73a56012085cbb67.json","parameterValues":[]} \ No newline at end of file +{"uid":"47cf0745ec1b0964","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9970c74c966a73af","name":"stdout","source":"9970c74c966a73af.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"47cf0745ec1b0964.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c7e13d0f61cf99a.json b/allure-report/data/test-cases/47f8dbee3cb403d3.json similarity index 71% rename from allure-report/data/test-cases/4c7e13d0f61cf99a.json rename to allure-report/data/test-cases/47f8dbee3cb403d3.json index 84e0dfe873b..0671d0641f5 100644 --- a/allure-report/data/test-cases/4c7e13d0f61cf99a.json +++ b/allure-report/data/test-cases/47f8dbee3cb403d3.json @@ -1 +1 @@ -{"uid":"4c7e13d0f61cf99a","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"df1294dda064bff1","name":"stdout","source":"df1294dda064bff1.txt","type":"text/plain","size":908}],"parameters":[],"hasContent":true,"stepsCount":14,"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":[],"hasContent":false,"stepsCount":0,"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":"4c7e13d0f61cf99a.json","parameterValues":[]} \ No newline at end of file +{"uid":"47f8dbee3cb403d3","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b38075c83e7baebb","name":"stdout","source":"b38075c83e7baebb.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"47f8dbee3cb403d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e57068c00956ea02.json b/allure-report/data/test-cases/482801cdd802c850.json similarity index 70% rename from allure-report/data/test-cases/e57068c00956ea02.json rename to allure-report/data/test-cases/482801cdd802c850.json index 7afdc94f03e..0e80cdf7be8 100644 --- a/allure-report/data/test-cases/e57068c00956ea02.json +++ b/allure-report/data/test-cases/482801cdd802c850.json @@ -1 +1 @@ -{"uid":"e57068c00956ea02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3fdf05bb544c0162","name":"stdout","source":"3fdf05bb544c0162.txt","type":"text/plain","size":939}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"e57068c00956ea02.json","parameterValues":[]} \ No newline at end of file +{"uid":"482801cdd802c850","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a774371a2badce6","name":"stdout","source":"5a774371a2badce6.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"482801cdd802c850.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48e03b38164b77c2.json b/allure-report/data/test-cases/48e03b38164b77c2.json new file mode 100644 index 00000000000..599901a75a0 --- /dev/null +++ b/allure-report/data/test-cases/48e03b38164b77c2.json @@ -0,0 +1 @@ +{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"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":"

Codewars badge:

Test Description:

The function should return whether the board's current state is solved.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732764219205,"stop":1732764219205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5bc730ff95f1c205","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0}},{"uid":"2da97da2ac2c9bbd","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"1c33446eccccc45a","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"48e03b38164b77c2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48fa5f91e3478c29.json b/allure-report/data/test-cases/48fa5f91e3478c29.json new file mode 100644 index 00000000000..74dbf170727 --- /dev/null +++ b/allure-report/data/test-cases/48fa5f91e3478c29.json @@ -0,0 +1 @@ +{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732764220151,"stop":1732764220151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"SECURITY"},{"name":"story","value":"Encrypt this!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ab01f4fc722fa2f","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0}},{"uid":"1751fe3c0a6687c3","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"229dd074fbcb6ca1","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"48fa5f91e3478c29.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba7aa507beaa1547.json b/allure-report/data/test-cases/49044c1c42d54a81.json similarity index 64% rename from allure-report/data/test-cases/ba7aa507beaa1547.json rename to allure-report/data/test-cases/49044c1c42d54a81.json index 20dc47ff7b6..13f2d067478 100644 --- a/allure-report/data/test-cases/ba7aa507beaa1547.json +++ b/allure-report/data/test-cases/49044c1c42d54a81.json @@ -1 +1 @@ -{"uid":"ba7aa507beaa1547","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"26557f5777ce8a7b","name":"stdout","source":"26557f5777ce8a7b.txt","type":"text/plain","size":353}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"ba7aa507beaa1547.json","parameterValues":[]} \ No newline at end of file +{"uid":"49044c1c42d54a81","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3163cc1ff017e55","name":"stdout","source":"b3163cc1ff017e55.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"49044c1c42d54a81.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/286a2c6d22a3ea0b.json b/allure-report/data/test-cases/4941703c69aa6dd8.json similarity index 52% rename from allure-report/data/test-cases/286a2c6d22a3ea0b.json rename to allure-report/data/test-cases/4941703c69aa6dd8.json index e6d14080153..30052588514 100644 --- a/allure-report/data/test-cases/286a2c6d22a3ea0b.json +++ b/allure-report/data/test-cases/4941703c69aa6dd8.json @@ -1 +1 @@ -{"uid":"286a2c6d22a3ea0b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c52989139561013a","name":"stdout","source":"c52989139561013a.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":12,"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":[],"hasContent":false,"stepsCount":0,"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":"286a2c6d22a3ea0b.json","parameterValues":[]} \ No newline at end of file +{"uid":"4941703c69aa6dd8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d2b03d7ca85feb9","name":"stdout","source":"5d2b03d7ca85feb9.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4941703c69aa6dd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3395496d8bde803.json b/allure-report/data/test-cases/494bc5055e76bf71.json similarity index 63% rename from allure-report/data/test-cases/a3395496d8bde803.json rename to allure-report/data/test-cases/494bc5055e76bf71.json index ac5f6af9837..e2a18d1f45a 100644 --- a/allure-report/data/test-cases/a3395496d8bde803.json +++ b/allure-report/data/test-cases/494bc5055e76bf71.json @@ -1 +1 @@ -{"uid":"a3395496d8bde803","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194005,"stop":1732428194005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194006,"stop":1732428194006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194007,"stop":1732428194007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194009,"stop":1732428194009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f63a88604b1d062f","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"89c602359c6f109b","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f80099cf6c294d2b","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"a3395496d8bde803.json","parameterValues":[]} \ No newline at end of file +{"uid":"494bc5055e76bf71","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"494bc5055e76bf71.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc1bd3cedb1bfef0.json b/allure-report/data/test-cases/497e27a7f74365e8.json similarity index 73% rename from allure-report/data/test-cases/cc1bd3cedb1bfef0.json rename to allure-report/data/test-cases/497e27a7f74365e8.json index 9feba626e70..d06cb04226a 100644 --- a/allure-report/data/test-cases/cc1bd3cedb1bfef0.json +++ b/allure-report/data/test-cases/497e27a7f74365e8.json @@ -1 +1 @@ -{"uid":"cc1bd3cedb1bfef0","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"10b8961e386c4fec","name":"stdout","source":"10b8961e386c4fec.txt","type":"text/plain","size":22}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"cc1bd3cedb1bfef0.json","parameterValues":[]} \ No newline at end of file +{"uid":"497e27a7f74365e8","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e255c73086be3d07","name":"stdout","source":"e255c73086be3d07.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"497e27a7f74365e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49ad6a9c0404421b.json b/allure-report/data/test-cases/49ad6a9c0404421b.json new file mode 100644 index 00000000000..eef75408f6e --- /dev/null +++ b/allure-report/data/test-cases/49ad6a9c0404421b.json @@ -0,0 +1 @@ +{"uid":"49ad6a9c0404421b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed44c13e0e5a3954","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0}},{"uid":"9b5105f2c1baa9ed","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"8bc93f78736d3a0e","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"49ad6a9c0404421b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a35a10fb92b5fdb.json b/allure-report/data/test-cases/4a35a10fb92b5fdb.json deleted file mode 100644 index a68ef6b638f..00000000000 --- a/allure-report/data/test-cases/4a35a10fb92b5fdb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4a35a10fb92b5fdb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d918ffd5978feb","name":"stdout","source":"5d918ffd5978feb.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4a35a10fb92b5fdb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a386a153d4cde6.json b/allure-report/data/test-cases/4a386a153d4cde6.json deleted file mode 100644 index 3ad7c3f3fe0..00000000000 --- a/allure-report/data/test-cases/4a386a153d4cde6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732428195456,"stop":1732428195456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e97ebddff1ce0b6f","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"8c7db5518444ac71","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"19910c11538825d6","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"4a386a153d4cde6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25fd6f6c5cfe2b58.json b/allure-report/data/test-cases/4a6083b6c2f5cc4b.json similarity index 60% rename from allure-report/data/test-cases/25fd6f6c5cfe2b58.json rename to allure-report/data/test-cases/4a6083b6c2f5cc4b.json index 6970ef43fb4..34f9a0722da 100644 --- a/allure-report/data/test-cases/25fd6f6c5cfe2b58.json +++ b/allure-report/data/test-cases/4a6083b6c2f5cc4b.json @@ -1 +1 @@ -{"uid":"25fd6f6c5cfe2b58","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732428195606,"stop":1732428195606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1732428195610,"stop":1732428195610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f1172fa5620cc18","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"924a52587e7b2c82","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"25fd6f6c5cfe2b58.json","parameterValues":[]} \ No newline at end of file +{"uid":"4a6083b6c2f5cc4b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4a6083b6c2f5cc4b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4aa405db56695158.json b/allure-report/data/test-cases/4aa405db56695158.json deleted file mode 100644 index 0c8b095f8fb..00000000000 --- a/allure-report/data/test-cases/4aa405db56695158.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4aa405db56695158","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ce1da867cdb9cd9","name":"stdout","source":"8ce1da867cdb9cd9.txt","type":"text/plain","size":302}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4aa405db56695158.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ab01f4fc722fa2f.json b/allure-report/data/test-cases/4ab01f4fc722fa2f.json new file mode 100644 index 00000000000..d52f0fb0720 --- /dev/null +++ b/allure-report/data/test-cases/4ab01f4fc722fa2f.json @@ -0,0 +1 @@ +{"uid":"4ab01f4fc722fa2f","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732428195456,"stop":1732428195456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"4ab01f4fc722fa2f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ab2fd070154adeb.json b/allure-report/data/test-cases/4ab2fd070154adeb.json new file mode 100644 index 00000000000..91ad16888a1 --- /dev/null +++ b/allure-report/data/test-cases/4ab2fd070154adeb.json @@ -0,0 +1 @@ +{"uid":"4ab2fd070154adeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"145b065c02fb875","name":"stdout","source":"145b065c02fb875.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"4ab2fd070154adeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac8683bc2703e398.json b/allure-report/data/test-cases/4acb1c573ef8b7bb.json similarity index 57% rename from allure-report/data/test-cases/ac8683bc2703e398.json rename to allure-report/data/test-cases/4acb1c573ef8b7bb.json index f67aeba0744..594dd9a5c98 100644 --- a/allure-report/data/test-cases/ac8683bc2703e398.json +++ b/allure-report/data/test-cases/4acb1c573ef8b7bb.json @@ -1 +1 @@ -{"uid":"ac8683bc2703e398","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5998f9acb6d6dab8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2ce701a458e1cd31","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2acb560e089cb7c8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"ac8683bc2703e398.json","parameterValues":[]} \ No newline at end of file +{"uid":"4acb1c573ef8b7bb","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"4acb1c573ef8b7bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa08a95162404297.json b/allure-report/data/test-cases/4b22647a9cdd2bef.json similarity index 64% rename from allure-report/data/test-cases/aa08a95162404297.json rename to allure-report/data/test-cases/4b22647a9cdd2bef.json index dc668450d51..aa422c2d892 100644 --- a/allure-report/data/test-cases/aa08a95162404297.json +++ b/allure-report/data/test-cases/4b22647a9cdd2bef.json @@ -1 +1 @@ -{"uid":"aa08a95162404297","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":1732428194048,"stop":1732428194108,"duration":60},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1732428194117,"stop":1732428194117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e5150fbd4a33237","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"49fb68289fb078f8","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"aa08a95162404297.json","parameterValues":[]} \ No newline at end of file +{"uid":"4b22647a9cdd2bef","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":1732428194048,"stop":1732428194108,"duration":60},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4b22647a9cdd2bef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b28b33a131eefd9.json b/allure-report/data/test-cases/4b28b33a131eefd9.json new file mode 100644 index 00000000000..ea2633e0a82 --- /dev/null +++ b/allure-report/data/test-cases/4b28b33a131eefd9.json @@ -0,0 +1 @@ +{"uid":"4b28b33a131eefd9","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"64228c9b0b57911a","name":"stdout","source":"64228c9b0b57911a.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4b28b33a131eefd9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b2984e4fa36f94.json b/allure-report/data/test-cases/4b2984e4fa36f94.json new file mode 100644 index 00000000000..6e5883e8653 --- /dev/null +++ b/allure-report/data/test-cases/4b2984e4fa36f94.json @@ -0,0 +1 @@ +{"uid":"4b2984e4fa36f94","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":"

Codewars badge:

Test Description:

Testing position property based on positive grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"c8da32e94b736fef","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1}},{"uid":"a35155a27bb8937d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"e9cabde1f2c64760","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":2,"unknown":0,"total":4},"items":[{"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":"4b2984e4fa36f94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b8d012f19a4e1e6.json b/allure-report/data/test-cases/4b8d012f19a4e1e6.json deleted file mode 100644 index 6525c429461..00000000000 --- a/allure-report/data/test-cases/4b8d012f19a4e1e6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4b8d012f19a4e1e6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f66e1341a4df20a3","name":"stdout","source":"f66e1341a4df20a3.txt","type":"text/plain","size":254}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"4b8d012f19a4e1e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4bb422e9ca9901c8.json b/allure-report/data/test-cases/4bb422e9ca9901c8.json deleted file mode 100644 index e548562848e..00000000000 --- a/allure-report/data/test-cases/4bb422e9ca9901c8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4bb422e9ca9901c8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4bb422e9ca9901c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b890a6fea083097f.json b/allure-report/data/test-cases/4c31a5ec99c6ca69.json similarity index 64% rename from allure-report/data/test-cases/b890a6fea083097f.json rename to allure-report/data/test-cases/4c31a5ec99c6ca69.json index 089f817fd84..c4ee433ef6d 100644 --- a/allure-report/data/test-cases/b890a6fea083097f.json +++ b/allure-report/data/test-cases/4c31a5ec99c6ca69.json @@ -1 +1 @@ -{"uid":"b890a6fea083097f","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7750817bf2ce3d3","name":"stdout","source":"e7750817bf2ce3d3.txt","type":"text/plain","size":1093}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b890a6fea083097f.json","parameterValues":[]} \ No newline at end of file +{"uid":"4c31a5ec99c6ca69","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fceb9ab1ca4c439c","name":"stdout","source":"fceb9ab1ca4c439c.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4c31a5ec99c6ca69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c5cc35d3de0d6f4.json b/allure-report/data/test-cases/4c5cc35d3de0d6f4.json new file mode 100644 index 00000000000..568216d8bed --- /dev/null +++ b/allure-report/data/test-cases/4c5cc35d3de0d6f4.json @@ -0,0 +1 @@ +{"uid":"4c5cc35d3de0d6f4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"749bcfd3f56dec1a","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1}},{"uid":"68e1fa91eff84fb2","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"b8f5ce56991bbe59","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"4c5cc35d3de0d6f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67a957cc2815c6ee.json b/allure-report/data/test-cases/4ca3cfa2d2c9d074.json similarity index 66% rename from allure-report/data/test-cases/67a957cc2815c6ee.json rename to allure-report/data/test-cases/4ca3cfa2d2c9d074.json index 510ca5ba652..d0ccf385b38 100644 --- a/allure-report/data/test-cases/67a957cc2815c6ee.json +++ b/allure-report/data/test-cases/4ca3cfa2d2c9d074.json @@ -1 +1 @@ -{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732428194283,"stop":1732428194283,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732428194285,"stop":1732428194285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Human Readable Time"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e40b6e0fafdfb7a4","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"33bc4a62afa9ed1a","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"cb5c8ea3b9796931","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"67a957cc2815c6ee.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ca3cfa2d2c9d074","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732428194283,"stop":1732428194283,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732428194285,"stop":1732428194285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Human Readable Time"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"4ca3cfa2d2c9d074.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f11813f80ada0713.json b/allure-report/data/test-cases/4d0958f9149b5791.json similarity index 92% rename from allure-report/data/test-cases/f11813f80ada0713.json rename to allure-report/data/test-cases/4d0958f9149b5791.json index 488b1750f95..86d943f40aa 100644 --- a/allure-report/data/test-cases/f11813f80ada0713.json +++ b/allure-report/data/test-cases/4d0958f9149b5791.json @@ -1 +1 @@ -{"uid":"f11813f80ada0713","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"f11813f80ada0713.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d0958f9149b5791","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"4d0958f9149b5791.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70963d87150b1b7f.json b/allure-report/data/test-cases/4d2d9b386eb6ebf2.json similarity index 65% rename from allure-report/data/test-cases/70963d87150b1b7f.json rename to allure-report/data/test-cases/4d2d9b386eb6ebf2.json index 085e2177f0f..879bd9f8447 100644 --- a/allure-report/data/test-cases/70963d87150b1b7f.json +++ b/allure-report/data/test-cases/4d2d9b386eb6ebf2.json @@ -1 +1 @@ -{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195659,"stop":1732428195659,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195661,"stop":1732428195661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af31da4a2f7e0b3c","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"5187a55d5b7bcbbd","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"59863a86bad45fb3","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"70963d87150b1b7f.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d2d9b386eb6ebf2","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195659,"stop":1732428195659,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195661,"stop":1732428195661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"4d2d9b386eb6ebf2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d4729a99109106e.json b/allure-report/data/test-cases/4d4729a99109106e.json new file mode 100644 index 00000000000..d1d45da4906 --- /dev/null +++ b/allure-report/data/test-cases/4d4729a99109106e.json @@ -0,0 +1 @@ +{"uid":"4d4729a99109106e","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732764219268,"stop":1732764219268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23151e1dbdaacb09","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0}},{"uid":"c61d34eb10bf204","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"7ec3425d5267a222","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4d4729a99109106e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d57a8ddade5816.json b/allure-report/data/test-cases/4d57a8ddade5816.json new file mode 100644 index 00000000000..26a94854ca6 --- /dev/null +++ b/allure-report/data/test-cases/4d57a8ddade5816.json @@ -0,0 +1 @@ +{"uid":"4d57a8ddade5816","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"804c421dc94f15f8","name":"stdout","source":"804c421dc94f15f8.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"4d57a8ddade5816.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d8c29fe45d13f2d.json b/allure-report/data/test-cases/4d8c29fe45d13f2d.json new file mode 100644 index 00000000000..10e3e9a69e1 --- /dev/null +++ b/allure-report/data/test-cases/4d8c29fe45d13f2d.json @@ -0,0 +1 @@ +{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1732764220346,"stop":1732764220346,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732764220350,"stop":1732764220350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Data Structures"},{"name":"story","value":"String transformer"},{"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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"34ca51906297ee6f","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0}},{"uid":"152d6167de0fb37e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"6226ef3ddb316aa7","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"4d8c29fe45d13f2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e99ca5757342b866.json b/allure-report/data/test-cases/4df5cc35809df545.json similarity index 57% rename from allure-report/data/test-cases/e99ca5757342b866.json rename to allure-report/data/test-cases/4df5cc35809df545.json index 0d95ae629e6..754f4237c40 100644 --- a/allure-report/data/test-cases/e99ca5757342b866.json +++ b/allure-report/data/test-cases/4df5cc35809df545.json @@ -1 +1 @@ -{"uid":"e99ca5757342b866","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732428194463,"stop":1732428194463,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732428194464,"stop":1732428194464,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e57068c00956ea02","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"90c86a448294d535","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b9d7d0d5afb8734c","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"e99ca5757342b866.json","parameterValues":[]} \ No newline at end of file +{"uid":"4df5cc35809df545","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732428194463,"stop":1732428194463,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732428194464,"stop":1732428194464,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"4df5cc35809df545.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df9c941adb35f26.json b/allure-report/data/test-cases/4df9c941adb35f26.json new file mode 100644 index 00000000000..23f9d1d962b --- /dev/null +++ b/allure-report/data/test-cases/4df9c941adb35f26.json @@ -0,0 +1 @@ +{"uid":"4df9c941adb35f26","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7ac45d8c1df7c43f","name":"stdout","source":"7ac45d8c1df7c43f.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"4df9c941adb35f26.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d66079b030735db8.json b/allure-report/data/test-cases/4dfeb434e28153fe.json similarity index 72% rename from allure-report/data/test-cases/d66079b030735db8.json rename to allure-report/data/test-cases/4dfeb434e28153fe.json index 54f4de17e64..01d6016d93b 100644 --- a/allure-report/data/test-cases/d66079b030735db8.json +++ b/allure-report/data/test-cases/4dfeb434e28153fe.json @@ -1 +1 @@ -{"uid":"d66079b030735db8","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d66079b030735db8.json","parameterValues":[]} \ No newline at end of file +{"uid":"4dfeb434e28153fe","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4dfeb434e28153fe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56ad7c473898c46d.json b/allure-report/data/test-cases/4ea092b3f85ebfcb.json similarity index 74% rename from allure-report/data/test-cases/56ad7c473898c46d.json rename to allure-report/data/test-cases/4ea092b3f85ebfcb.json index b13f1c5a923..743d7346e35 100644 --- a/allure-report/data/test-cases/56ad7c473898c46d.json +++ b/allure-report/data/test-cases/4ea092b3f85ebfcb.json @@ -1 +1 @@ -{"uid":"56ad7c473898c46d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732428195847,"stop":1732428195847,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b1bc0b9a480db3e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"eeed6f5fdf5c1d70","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e738d6d09d0feb9e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"56ad7c473898c46d.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ea092b3f85ebfcb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732428195847,"stop":1732428195847,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Simple Fun #74: Growing Plant"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"4ea092b3f85ebfcb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d6e5f0961d8c06a.json b/allure-report/data/test-cases/4eaed4684cfaee8f.json similarity index 73% rename from allure-report/data/test-cases/3d6e5f0961d8c06a.json rename to allure-report/data/test-cases/4eaed4684cfaee8f.json index 520792833c0..36a7c770fe3 100644 --- a/allure-report/data/test-cases/3d6e5f0961d8c06a.json +++ b/allure-report/data/test-cases/4eaed4684cfaee8f.json @@ -1 +1 @@ -{"uid":"3d6e5f0961d8c06a","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"464f7036130e9df9","name":"stdout","source":"464f7036130e9df9.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3d6e5f0961d8c06a.json","parameterValues":[]} \ No newline at end of file +{"uid":"4eaed4684cfaee8f","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4163d90850028d14","name":"stdout","source":"4163d90850028d14.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4eaed4684cfaee8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4eb91d777aea105a.json b/allure-report/data/test-cases/4eb91d777aea105a.json new file mode 100644 index 00000000000..456a258d95d --- /dev/null +++ b/allure-report/data/test-cases/4eb91d777aea105a.json @@ -0,0 +1 @@ +{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732764218860,"stop":1732764218860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aa8525de66192fb3","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0}},{"uid":"a07fccce3e37ee4a","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"f7f7ddd6c717f082","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4eb91d777aea105a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc1f8d6367d3e66e.json b/allure-report/data/test-cases/4f20da98ae3e1985.json similarity index 75% rename from allure-report/data/test-cases/dc1f8d6367d3e66e.json rename to allure-report/data/test-cases/4f20da98ae3e1985.json index ffbdcbd5df7..f477ba8bbbf 100644 --- a/allure-report/data/test-cases/dc1f8d6367d3e66e.json +++ b/allure-report/data/test-cases/4f20da98ae3e1985.json @@ -1 +1 @@ -{"uid":"dc1f8d6367d3e66e","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b32e9e6b9d5730c","name":"stdout","source":"8b32e9e6b9d5730c.txt","type":"text/plain","size":46002}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"dc1f8d6367d3e66e.json","parameterValues":[]} \ No newline at end of file +{"uid":"4f20da98ae3e1985","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d03a9a8c81cbe39f","name":"stdout","source":"d03a9a8c81cbe39f.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4f20da98ae3e1985.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9326ca5c3b3bcaf3.json b/allure-report/data/test-cases/4f2bbc07480f42a4.json similarity index 76% rename from allure-report/data/test-cases/9326ca5c3b3bcaf3.json rename to allure-report/data/test-cases/4f2bbc07480f42a4.json index e5aa2b29198..373efda6715 100644 --- a/allure-report/data/test-cases/9326ca5c3b3bcaf3.json +++ b/allure-report/data/test-cases/4f2bbc07480f42a4.json @@ -1 +1 @@ -{"uid":"9326ca5c3b3bcaf3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d9853791dbf86dfe","name":"stdout","source":"d9853791dbf86dfe.txt","type":"text/plain","size":216}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9326ca5c3b3bcaf3.json","parameterValues":[]} \ No newline at end of file +{"uid":"4f2bbc07480f42a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38545087bdeef541","name":"stdout","source":"38545087bdeef541.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f2bbc07480f42a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4bd80ae04896a86.json b/allure-report/data/test-cases/4f999b555dd62215.json similarity index 72% rename from allure-report/data/test-cases/d4bd80ae04896a86.json rename to allure-report/data/test-cases/4f999b555dd62215.json index 02afb145591..3f8aaa5ce4f 100644 --- a/allure-report/data/test-cases/d4bd80ae04896a86.json +++ b/allure-report/data/test-cases/4f999b555dd62215.json @@ -1 +1 @@ -{"uid":"d4bd80ae04896a86","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d4bd80ae04896a86.json","parameterValues":[]} \ No newline at end of file +{"uid":"4f999b555dd62215","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f999b555dd62215.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8f3fc2a4deaebd0d.json b/allure-report/data/test-cases/4fc00e9c47abe8d0.json similarity index 68% rename from allure-report/data/test-cases/8f3fc2a4deaebd0d.json rename to allure-report/data/test-cases/4fc00e9c47abe8d0.json index 826204e272d..df00b8fc643 100644 --- a/allure-report/data/test-cases/8f3fc2a4deaebd0d.json +++ b/allure-report/data/test-cases/4fc00e9c47abe8d0.json @@ -1 +1 @@ -{"uid":"8f3fc2a4deaebd0d","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"8f3fc2a4deaebd0d.json","parameterValues":[]} \ No newline at end of file +{"uid":"4fc00e9c47abe8d0","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4fc00e9c47abe8d0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5961f436380e11d2.json b/allure-report/data/test-cases/500f182a6eedd000.json similarity index 62% rename from allure-report/data/test-cases/5961f436380e11d2.json rename to allure-report/data/test-cases/500f182a6eedd000.json index 2628c73b9cf..eb59b08adf7 100644 --- a/allure-report/data/test-cases/5961f436380e11d2.json +++ b/allure-report/data/test-cases/500f182a6eedd000.json @@ -1 +1 @@ -{"uid":"5961f436380e11d2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f509afa4d498e7c1","name":"stdout","source":"f509afa4d498e7c1.txt","type":"text/plain","size":1904}],"parameters":[],"hasContent":true,"stepsCount":21,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"5961f436380e11d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"500f182a6eedd000","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fbbce307fc80ae94","name":"stdout","source":"fbbce307fc80ae94.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"500f182a6eedd000.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/533bf937be1aa466.json b/allure-report/data/test-cases/50b7ff1fe714521a.json similarity index 63% rename from allure-report/data/test-cases/533bf937be1aa466.json rename to allure-report/data/test-cases/50b7ff1fe714521a.json index 8a8b4976261..36a53cdb8b8 100644 --- a/allure-report/data/test-cases/533bf937be1aa466.json +++ b/allure-report/data/test-cases/50b7ff1fe714521a.json @@ -1 +1 @@ -{"uid":"533bf937be1aa466","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732428194276,"stop":1732428194276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732428194278,"stop":1732428194278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"76dad62f743b3603","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"4f0296b5891c7763","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"57efbea0ccf3907a","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"533bf937be1aa466.json","parameterValues":[]} \ No newline at end of file +{"uid":"50b7ff1fe714521a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732428194276,"stop":1732428194276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732428194278,"stop":1732428194278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"50b7ff1fe714521a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4045abc0bf075d90.json b/allure-report/data/test-cases/51021ef4547a41f8.json similarity index 68% rename from allure-report/data/test-cases/4045abc0bf075d90.json rename to allure-report/data/test-cases/51021ef4547a41f8.json index 3b6069a6981..e00cfa45d76 100644 --- a/allure-report/data/test-cases/4045abc0bf075d90.json +++ b/allure-report/data/test-cases/51021ef4547a41f8.json @@ -1 +1 @@ -{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732428196409,"stop":1732428196409,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732428196411,"stop":1732428196411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51e0b16785f0d461","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"77e868a9cd944330","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"54942c51ed88331c","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"4045abc0bf075d90.json","parameterValues":[]} \ No newline at end of file +{"uid":"51021ef4547a41f8","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732428196409,"stop":1732428196409,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732428196411,"stop":1732428196411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"51021ef4547a41f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60180807c3815756.json b/allure-report/data/test-cases/510e078ddda4bd3c.json similarity index 58% rename from allure-report/data/test-cases/60180807c3815756.json rename to allure-report/data/test-cases/510e078ddda4bd3c.json index 1de5e077558..3b62d2024c4 100644 --- a/allure-report/data/test-cases/60180807c3815756.json +++ b/allure-report/data/test-cases/510e078ddda4bd3c.json @@ -1 +1 @@ -{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"53ac096f64d86d36","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"3f2abb7dc9376332","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a10d36c92cf89a63","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"60180807c3815756.json","parameterValues":[]} \ No newline at end of file +{"uid":"510e078ddda4bd3c","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"510e078ddda4bd3c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5194ad39db439d08.json b/allure-report/data/test-cases/5194ad39db439d08.json new file mode 100644 index 00000000000..8409104dd02 --- /dev/null +++ b/allure-report/data/test-cases/5194ad39db439d08.json @@ -0,0 +1 @@ +{"uid":"5194ad39db439d08","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732764218552,"stop":1732764218553,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732764218555,"stop":1732764218555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a204aa873a93d86","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0}},{"uid":"197e00510d3eb166","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"abed1b9a0913387d","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"5194ad39db439d08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1da47ab927a8de42.json b/allure-report/data/test-cases/522a0d282fded9dd.json similarity index 62% rename from allure-report/data/test-cases/1da47ab927a8de42.json rename to allure-report/data/test-cases/522a0d282fded9dd.json index 8f5b6deecc4..20a4ad56241 100644 --- a/allure-report/data/test-cases/1da47ab927a8de42.json +++ b/allure-report/data/test-cases/522a0d282fded9dd.json @@ -1 +1 @@ -{"uid":"1da47ab927a8de42","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"64217426bd0c7f09","name":"stdout","source":"64217426bd0c7f09.txt","type":"text/plain","size":299}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1da47ab927a8de42.json","parameterValues":[]} \ No newline at end of file +{"uid":"522a0d282fded9dd","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3f0fa9f25e69b0db","name":"stdout","source":"3f0fa9f25e69b0db.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"522a0d282fded9dd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52402d5056a00e1d.json b/allure-report/data/test-cases/52402d5056a00e1d.json new file mode 100644 index 00000000000..163af843fc9 --- /dev/null +++ b/allure-report/data/test-cases/52402d5056a00e1d.json @@ -0,0 +1 @@ +{"uid":"52402d5056a00e1d","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732764221213,"stop":1732764221213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2fb895d93acc0bab","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0}},{"uid":"cefd3a9afeec351e","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"c7b8f329dd40406f","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"52402d5056a00e1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/532d8f53f92733e9.json b/allure-report/data/test-cases/532d8f53f92733e9.json new file mode 100644 index 00000000000..5a9931a0567 --- /dev/null +++ b/allure-report/data/test-cases/532d8f53f92733e9.json @@ -0,0 +1 @@ +{"uid":"532d8f53f92733e9","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"532d8f53f92733e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c944fe792fcd179.json b/allure-report/data/test-cases/5364b62b05552f1e.json similarity index 94% rename from allure-report/data/test-cases/3c944fe792fcd179.json rename to allure-report/data/test-cases/5364b62b05552f1e.json index f968a4a711a..f1af8ba3c38 100644 --- a/allure-report/data/test-cases/3c944fe792fcd179.json +++ b/allure-report/data/test-cases/5364b62b05552f1e.json @@ -1 +1 @@ -{"uid":"3c944fe792fcd179","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":"3c944fe792fcd179.json","parameterValues":[]} \ No newline at end of file +{"uid":"5364b62b05552f1e","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":"5364b62b05552f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9348c64cc78f5d13.json b/allure-report/data/test-cases/5392fbee850dfcf4.json similarity index 72% rename from allure-report/data/test-cases/9348c64cc78f5d13.json rename to allure-report/data/test-cases/5392fbee850dfcf4.json index 5465d764c58..1a7dad70c0d 100644 --- a/allure-report/data/test-cases/9348c64cc78f5d13.json +++ b/allure-report/data/test-cases/5392fbee850dfcf4.json @@ -1 +1 @@ -{"uid":"9348c64cc78f5d13","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9b1bb88dc50af4ea","name":"stdout","source":"9b1bb88dc50af4ea.txt","type":"text/plain","size":428}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"9348c64cc78f5d13.json","parameterValues":[]} \ No newline at end of file +{"uid":"5392fbee850dfcf4","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bcefb385384ff8bd","name":"stdout","source":"bcefb385384ff8bd.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5392fbee850dfcf4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53eb34bc4e02fa07.json b/allure-report/data/test-cases/53eb34bc4e02fa07.json new file mode 100644 index 00000000000..a03f4df9029 --- /dev/null +++ b/allure-report/data/test-cases/53eb34bc4e02fa07.json @@ -0,0 +1 @@ +{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732764219386,"stop":1732764219386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"711b3df283530a5b","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717}},{"uid":"8d85f39401914c16","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"abf4f2031d384e78","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"53eb34bc4e02fa07.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e6f93dfe778ff9a.json b/allure-report/data/test-cases/53fa8d477eb42fd3.json similarity index 69% rename from allure-report/data/test-cases/9e6f93dfe778ff9a.json rename to allure-report/data/test-cases/53fa8d477eb42fd3.json index 0e340495bd1..a99cd958d79 100644 --- a/allure-report/data/test-cases/9e6f93dfe778ff9a.json +++ b/allure-report/data/test-cases/53fa8d477eb42fd3.json @@ -1 +1 @@ -{"uid":"9e6f93dfe778ff9a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"246dacd86be04ffa","name":"stdout","source":"246dacd86be04ffa.txt","type":"text/plain","size":233}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9e6f93dfe778ff9a.json","parameterValues":[]} \ No newline at end of file +{"uid":"53fa8d477eb42fd3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"797fb7eadd505b53","name":"stdout","source":"797fb7eadd505b53.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"53fa8d477eb42fd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa3ebaa27581f198.json b/allure-report/data/test-cases/54122a7c8f1149b2.json similarity index 54% rename from allure-report/data/test-cases/aa3ebaa27581f198.json rename to allure-report/data/test-cases/54122a7c8f1149b2.json index 1986ca57797..22ef7fcb8c9 100644 --- a/allure-report/data/test-cases/aa3ebaa27581f198.json +++ b/allure-report/data/test-cases/54122a7c8f1149b2.json @@ -1 +1 @@ -{"uid":"aa3ebaa27581f198","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732428196320,"stop":1732428196320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732428196323,"stop":1732428196323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"MakeUpperCase"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ebad30d100ba0d2f","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"5c78d3bc5a71109a","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ae7d3fce45bf33fb","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"aa3ebaa27581f198.json","parameterValues":[]} \ No newline at end of file +{"uid":"54122a7c8f1149b2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732428196320,"stop":1732428196320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732428196323,"stop":1732428196323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"MakeUpperCase"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"54122a7c8f1149b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19b258c1195772c5.json b/allure-report/data/test-cases/545394bf3fbbd64b.json similarity index 73% rename from allure-report/data/test-cases/19b258c1195772c5.json rename to allure-report/data/test-cases/545394bf3fbbd64b.json index 9011765fdd1..179e976d0a6 100644 --- a/allure-report/data/test-cases/19b258c1195772c5.json +++ b/allure-report/data/test-cases/545394bf3fbbd64b.json @@ -1 +1 @@ -{"uid":"19b258c1195772c5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"c2916b6d9a3730c2","name":"stdout","source":"c2916b6d9a3730c2.txt","type":"text/plain","size":48}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"19b258c1195772c5.json","parameterValues":[]} \ No newline at end of file +{"uid":"545394bf3fbbd64b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"72987b318aa88c6e","name":"stdout","source":"72987b318aa88c6e.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"545394bf3fbbd64b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5471ece0090e3d4.json b/allure-report/data/test-cases/5471ece0090e3d4.json new file mode 100644 index 00000000000..100c92a56b8 --- /dev/null +++ b/allure-report/data/test-cases/5471ece0090e3d4.json @@ -0,0 +1 @@ +{"uid":"5471ece0090e3d4","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a6b1894a1d267067","name":"stdout","source":"a6b1894a1d267067.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5471ece0090e3d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54e4671ce8499dcf.json b/allure-report/data/test-cases/54e4671ce8499dcf.json deleted file mode 100644 index 455ee254306..00000000000 --- a/allure-report/data/test-cases/54e4671ce8499dcf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"54e4671ce8499dcf","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6f4b7e883a26cafe","name":"stdout","source":"6f4b7e883a26cafe.txt","type":"text/plain","size":878}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"54e4671ce8499dcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54fbe05c675f404a.json b/allure-report/data/test-cases/54fbe05c675f404a.json new file mode 100644 index 00000000000..56c91c6b996 --- /dev/null +++ b/allure-report/data/test-cases/54fbe05c675f404a.json @@ -0,0 +1 @@ +{"uid":"54fbe05c675f404a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85613c3b6c6421c4","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0}},{"uid":"ff24b513a2221397","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"1938d829429abf54","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"54fbe05c675f404a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/552742d77daecee9.json b/allure-report/data/test-cases/552742d77daecee9.json deleted file mode 100644 index 596a4982bc5..00000000000 --- a/allure-report/data/test-cases/552742d77daecee9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"552742d77daecee9","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"efae8b9f43d09441","name":"stdout","source":"efae8b9f43d09441.txt","type":"text/plain","size":640}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":"552742d77daecee9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ddd928ac3a4fb635.json b/allure-report/data/test-cases/552b72a0721ea486.json similarity index 74% rename from allure-report/data/test-cases/ddd928ac3a4fb635.json rename to allure-report/data/test-cases/552b72a0721ea486.json index b88c1a5f05b..5c82b4cef7f 100644 --- a/allure-report/data/test-cases/ddd928ac3a4fb635.json +++ b/allure-report/data/test-cases/552b72a0721ea486.json @@ -1 +1 @@ -{"uid":"ddd928ac3a4fb635","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"ddd928ac3a4fb635.json","parameterValues":[]} \ No newline at end of file +{"uid":"552b72a0721ea486","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"552b72a0721ea486.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b395c1683e127a4.json b/allure-report/data/test-cases/555a795f08de5e6c.json similarity index 58% rename from allure-report/data/test-cases/3b395c1683e127a4.json rename to allure-report/data/test-cases/555a795f08de5e6c.json index 6cd2fbfff54..f81cc08775a 100644 --- a/allure-report/data/test-cases/3b395c1683e127a4.json +++ b/allure-report/data/test-cases/555a795f08de5e6c.json @@ -1 +1 @@ -{"uid":"3b395c1683e127a4","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":1732428195740,"stop":1732428195740,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"409a2a4f316497c6","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"a8ef326c3cb7b77c","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"449aa1de0e8221e9","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"3b395c1683e127a4.json","parameterValues":[]} \ No newline at end of file +{"uid":"555a795f08de5e6c","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":1732428195740,"stop":1732428195740,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"555a795f08de5e6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fda510dc29832db.json b/allure-report/data/test-cases/55a0094c41d10012.json similarity index 70% rename from allure-report/data/test-cases/5fda510dc29832db.json rename to allure-report/data/test-cases/55a0094c41d10012.json index fdcd50e14ff..b50a6ee27b5 100644 --- a/allure-report/data/test-cases/5fda510dc29832db.json +++ b/allure-report/data/test-cases/55a0094c41d10012.json @@ -1 +1 @@ -{"uid":"5fda510dc29832db","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff867546b68da848","name":"stdout","source":"ff867546b68da848.txt","type":"text/plain","size":97}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5fda510dc29832db.json","parameterValues":[]} \ No newline at end of file +{"uid":"55a0094c41d10012","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3642f149df538341","name":"stdout","source":"3642f149df538341.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"55a0094c41d10012.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b89778e0f9a0b66.json b/allure-report/data/test-cases/563a12b2ae66d10b.json similarity index 57% rename from allure-report/data/test-cases/3b89778e0f9a0b66.json rename to allure-report/data/test-cases/563a12b2ae66d10b.json index 84551939a58..1f3d024ad13 100644 --- a/allure-report/data/test-cases/3b89778e0f9a0b66.json +++ b/allure-report/data/test-cases/563a12b2ae66d10b.json @@ -1 +1 @@ -{"uid":"3b89778e0f9a0b66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195833,"stop":1732428195833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fda510dc29832db","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"bf6ae18a8ec3d384","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"eb3e9f6b3780b454","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"3b89778e0f9a0b66.json","parameterValues":[]} \ No newline at end of file +{"uid":"563a12b2ae66d10b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195833,"stop":1732428195833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"563a12b2ae66d10b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5654bb5658921dcd.json b/allure-report/data/test-cases/5654bb5658921dcd.json new file mode 100644 index 00000000000..5666c0c0159 --- /dev/null +++ b/allure-report/data/test-cases/5654bb5658921dcd.json @@ -0,0 +1 @@ +{"uid":"5654bb5658921dcd","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732764218944,"stop":1732764218944,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732764218943,"stop":1732764218943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732764218946,"stop":1732764218946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATES/TIME"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Human Readable Time"},{"name":"feature","value":"Math"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ca3cfa2d2c9d074","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0}},{"uid":"75040d42480a95e8","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"e63c100babc1267d","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"5654bb5658921dcd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56d019840f444cec.json b/allure-report/data/test-cases/56d019840f444cec.json new file mode 100644 index 00000000000..6b6a6cdf9e7 --- /dev/null +++ b/allure-report/data/test-cases/56d019840f444cec.json @@ -0,0 +1 @@ +{"uid":"56d019840f444cec","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1732764220536,"stop":1732764220536,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732764220538,"stop":1732764220538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ea092b3f85ebfcb","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0}},{"uid":"f71bd4516df37f52","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"91d86d4a26e41755","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"56d019840f444cec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b80aa0a92a1ed02.json b/allure-report/data/test-cases/56e6898f814c9a2c.json similarity index 77% rename from allure-report/data/test-cases/8b80aa0a92a1ed02.json rename to allure-report/data/test-cases/56e6898f814c9a2c.json index 67d49ea7ecb..3a0f8503875 100644 --- a/allure-report/data/test-cases/8b80aa0a92a1ed02.json +++ b/allure-report/data/test-cases/56e6898f814c9a2c.json @@ -1 +1 @@ -{"uid":"8b80aa0a92a1ed02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ab4c5be84836fafb","name":"stdout","source":"ab4c5be84836fafb.txt","type":"text/plain","size":90}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8b80aa0a92a1ed02.json","parameterValues":[]} \ No newline at end of file +{"uid":"56e6898f814c9a2c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cd297c98bb2f9177","name":"stdout","source":"cd297c98bb2f9177.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"56e6898f814c9a2c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2baefc3521a1da2a.json b/allure-report/data/test-cases/5703befafee18856.json similarity index 51% rename from allure-report/data/test-cases/2baefc3521a1da2a.json rename to allure-report/data/test-cases/5703befafee18856.json index bb2bca1a8a5..769d1e2c12c 100644 --- a/allure-report/data/test-cases/2baefc3521a1da2a.json +++ b/allure-report/data/test-cases/5703befafee18856.json @@ -1 +1 @@ -{"uid":"2baefc3521a1da2a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84d177b8ff2c367d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"9dc85df7fba3a78e","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"76548c4669002681","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"2baefc3521a1da2a.json","parameterValues":[]} \ No newline at end of file +{"uid":"5703befafee18856","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5703befafee18856.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b76b55d8c8f82d1.json b/allure-report/data/test-cases/574cb5d6827dca2a.json similarity index 61% rename from allure-report/data/test-cases/2b76b55d8c8f82d1.json rename to allure-report/data/test-cases/574cb5d6827dca2a.json index 23c0e6bb4e5..256ad0312ad 100644 --- a/allure-report/data/test-cases/2b76b55d8c8f82d1.json +++ b/allure-report/data/test-cases/574cb5d6827dca2a.json @@ -1 +1 @@ -{"uid":"2b76b55d8c8f82d1","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":1732428194237,"stop":1732428194238,"duration":1},"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":"

Codewars badge:

Test Description:

The function should generate city map with coordinates.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b153d545c48d264","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"a530698ca5ed066c","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2b76b55d8c8f82d1.json","parameterValues":[]} \ No newline at end of file +{"uid":"574cb5d6827dca2a","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":1732428194237,"stop":1732428194238,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"574cb5d6827dca2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/577d9e765fb39849.json b/allure-report/data/test-cases/577d9e765fb39849.json new file mode 100644 index 00000000000..40fa41e144e --- /dev/null +++ b/allure-report/data/test-cases/577d9e765fb39849.json @@ -0,0 +1 @@ +{"uid":"577d9e765fb39849","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"63ceea7fe946ff07","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193914,"stop":1732428193914,"duration":0}},{"uid":"f10852a0a46489bf","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"96ce14353b4f3e49","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"577d9e765fb39849.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51e0b16785f0d461.json b/allure-report/data/test-cases/579e5f45553c02f2.json similarity index 81% rename from allure-report/data/test-cases/51e0b16785f0d461.json rename to allure-report/data/test-cases/579e5f45553c02f2.json index 9ba55e16d29..87a6f6e223d 100644 --- a/allure-report/data/test-cases/51e0b16785f0d461.json +++ b/allure-report/data/test-cases/579e5f45553c02f2.json @@ -1 +1 @@ -{"uid":"51e0b16785f0d461","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"22f6f0c737bac26b","name":"stdout","source":"22f6f0c737bac26b.txt","type":"text/plain","size":193}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"51e0b16785f0d461.json","parameterValues":[]} \ No newline at end of file +{"uid":"579e5f45553c02f2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abff3e6ddecc6408","name":"stdout","source":"abff3e6ddecc6408.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"579e5f45553c02f2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80598dcd2309aaf9.json b/allure-report/data/test-cases/5815fdb3e38780e6.json similarity index 76% rename from allure-report/data/test-cases/80598dcd2309aaf9.json rename to allure-report/data/test-cases/5815fdb3e38780e6.json index c00a6bd0f44..8b8a2ae7b8e 100644 --- a/allure-report/data/test-cases/80598dcd2309aaf9.json +++ b/allure-report/data/test-cases/5815fdb3e38780e6.json @@ -1 +1 @@ -{"uid":"80598dcd2309aaf9","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b82715c67d99ec0e","name":"stdout","source":"b82715c67d99ec0e.txt","type":"text/plain","size":1178}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"80598dcd2309aaf9.json","parameterValues":[]} \ No newline at end of file +{"uid":"5815fdb3e38780e6","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea9613cb4c662f2e","name":"stdout","source":"ea9613cb4c662f2e.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5815fdb3e38780e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/45f16c4708137d2d.json b/allure-report/data/test-cases/582aa68275dac68e.json similarity index 65% rename from allure-report/data/test-cases/45f16c4708137d2d.json rename to allure-report/data/test-cases/582aa68275dac68e.json index 023601727a6..ed57e507953 100644 --- a/allure-report/data/test-cases/45f16c4708137d2d.json +++ b/allure-report/data/test-cases/582aa68275dac68e.json @@ -1 +1 @@ -{"uid":"45f16c4708137d2d","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ec9f0fb81f46c5f","name":"stdout","source":"6ec9f0fb81f46c5f.txt","type":"text/plain","size":378}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"45f16c4708137d2d.json","parameterValues":[]} \ No newline at end of file +{"uid":"582aa68275dac68e","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57a50be8b38a35c0","name":"stdout","source":"57a50be8b38a35c0.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"582aa68275dac68e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/302b8c55161cc361.json b/allure-report/data/test-cases/583a0190aa99ad42.json similarity index 66% rename from allure-report/data/test-cases/302b8c55161cc361.json rename to allure-report/data/test-cases/583a0190aa99ad42.json index 58843d0f2e4..b20149bdd5d 100644 --- a/allure-report/data/test-cases/302b8c55161cc361.json +++ b/allure-report/data/test-cases/583a0190aa99ad42.json @@ -1 +1 @@ -{"uid":"302b8c55161cc361","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e2e513778c4c6c4f","name":"stdout","source":"e2e513778c4c6c4f.txt","type":"text/plain","size":213}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"302b8c55161cc361.json","parameterValues":[]} \ No newline at end of file +{"uid":"583a0190aa99ad42","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a85d028b53b2fa36","name":"stdout","source":"a85d028b53b2fa36.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"583a0190aa99ad42.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68ae9688c7c99a04.json b/allure-report/data/test-cases/584f8bdd5c7f3c16.json similarity index 65% rename from allure-report/data/test-cases/68ae9688c7c99a04.json rename to allure-report/data/test-cases/584f8bdd5c7f3c16.json index d2c88d9c39d..7a60f1cb6c6 100644 --- a/allure-report/data/test-cases/68ae9688c7c99a04.json +++ b/allure-report/data/test-cases/584f8bdd5c7f3c16.json @@ -1 +1 @@ -{"uid":"68ae9688c7c99a04","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4c19c67f026536b3","name":"stdout","source":"4c19c67f026536b3.txt","type":"text/plain","size":882}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"68ae9688c7c99a04.json","parameterValues":[]} \ No newline at end of file +{"uid":"584f8bdd5c7f3c16","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2e61a28436ed8397","name":"stdout","source":"2e61a28436ed8397.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"584f8bdd5c7f3c16.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bce82edab468d2f2.json b/allure-report/data/test-cases/58a164b572fc5a50.json similarity index 63% rename from allure-report/data/test-cases/bce82edab468d2f2.json rename to allure-report/data/test-cases/58a164b572fc5a50.json index c8b29ec7301..bda7024a4b1 100644 --- a/allure-report/data/test-cases/bce82edab468d2f2.json +++ b/allure-report/data/test-cases/58a164b572fc5a50.json @@ -1 +1 @@ -{"uid":"bce82edab468d2f2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"282ef4a825ddd5b7","name":"stdout","source":"282ef4a825ddd5b7.txt","type":"text/plain","size":530}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"bce82edab468d2f2.json","parameterValues":[]} \ No newline at end of file +{"uid":"58a164b572fc5a50","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"998c70b07f1415e5","name":"stdout","source":"998c70b07f1415e5.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"58a164b572fc5a50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bf2db2d5f0c7414.json b/allure-report/data/test-cases/58bbccd3c8af3c06.json similarity index 52% rename from allure-report/data/test-cases/1bf2db2d5f0c7414.json rename to allure-report/data/test-cases/58bbccd3c8af3c06.json index 9c52f5d2a1e..a3e0a12ba24 100644 --- a/allure-report/data/test-cases/1bf2db2d5f0c7414.json +++ b/allure-report/data/test-cases/58bbccd3c8af3c06.json @@ -1 +1 @@ -{"uid":"1bf2db2d5f0c7414","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cc9e92a1032075c9","name":"stdout","source":"cc9e92a1032075c9.txt","type":"text/plain","size":1195}],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1bf2db2d5f0c7414.json","parameterValues":[]} \ No newline at end of file +{"uid":"58bbccd3c8af3c06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9b3917a8b59d5897","name":"stdout","source":"9b3917a8b59d5897.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"58bbccd3c8af3c06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5908d364b75f844e.json b/allure-report/data/test-cases/5908d364b75f844e.json new file mode 100644 index 00000000000..8383684bf2c --- /dev/null +++ b/allure-report/data/test-cases/5908d364b75f844e.json @@ -0,0 +1 @@ +{"uid":"5908d364b75f844e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase","time":{"start":1732764220382,"stop":1732764220382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220384,"stop":1732764220384,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase::0","time":{"start":1732764220386,"stop":1732764220386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Valid Braces"},{"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.valid_braces.test_valid_braces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5277c8a221e209d3f6000b56","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5908d364b75f844e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/591cfdbc90cf4c5e.json b/allure-report/data/test-cases/591cfdbc90cf4c5e.json new file mode 100644 index 00000000000..255c487264c --- /dev/null +++ b/allure-report/data/test-cases/591cfdbc90cf4c5e.json @@ -0,0 +1 @@ +{"uid":"591cfdbc90cf4c5e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"946a2bd47c8adfbc","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0}},{"uid":"c78900977fa836","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"a618a1e47f6e349d","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"591cfdbc90cf4c5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5956e80e98375be.json b/allure-report/data/test-cases/5956e80e98375be.json new file mode 100644 index 00000000000..1da5e08a424 --- /dev/null +++ b/allure-report/data/test-cases/5956e80e98375be.json @@ -0,0 +1 @@ +{"uid":"5956e80e98375be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"250e2e008fa1f7b7","name":"stdout","source":"250e2e008fa1f7b7.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5956e80e98375be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7812824440b717e.json b/allure-report/data/test-cases/59a630e9120dbf2c.json similarity index 67% rename from allure-report/data/test-cases/b7812824440b717e.json rename to allure-report/data/test-cases/59a630e9120dbf2c.json index b7860921b81..a2c401c9605 100644 --- a/allure-report/data/test-cases/b7812824440b717e.json +++ b/allure-report/data/test-cases/59a630e9120dbf2c.json @@ -1 +1 @@ -{"uid":"b7812824440b717e","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b7812824440b717e.json","parameterValues":[]} \ No newline at end of file +{"uid":"59a630e9120dbf2c","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59a630e9120dbf2c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59e860fc2782867c.json b/allure-report/data/test-cases/59e860fc2782867c.json new file mode 100644 index 00000000000..40bd2ce8479 --- /dev/null +++ b/allure-report/data/test-cases/59e860fc2782867c.json @@ -0,0 +1 @@ +{"uid":"59e860fc2782867c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732764220157,"stop":1732764220157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"38d84fb9239b5f2e","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0}},{"uid":"82d71f1a1b9a4c08","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"3c99f2489842209e","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"59e860fc2782867c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f2abb7dc9376332.json b/allure-report/data/test-cases/5a4c9eb3dcb32bf5.json similarity index 75% rename from allure-report/data/test-cases/3f2abb7dc9376332.json rename to allure-report/data/test-cases/5a4c9eb3dcb32bf5.json index 08d181b20ed..d97899955a1 100644 --- a/allure-report/data/test-cases/3f2abb7dc9376332.json +++ b/allure-report/data/test-cases/5a4c9eb3dcb32bf5.json @@ -1 +1 @@ -{"uid":"3f2abb7dc9376332","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"215c30a7cf2d2e11","name":"stdout","source":"215c30a7cf2d2e11.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f2abb7dc9376332.json","parameterValues":[]} \ No newline at end of file +{"uid":"5a4c9eb3dcb32bf5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d3d4f5edff7b23a8","name":"stdout","source":"d3d4f5edff7b23a8.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"5a4c9eb3dcb32bf5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a88d917682070e.json b/allure-report/data/test-cases/5a88d917682070e.json new file mode 100644 index 00000000000..f03c580bbe8 --- /dev/null +++ b/allure-report/data/test-cases/5a88d917682070e.json @@ -0,0 +1 @@ +{"uid":"5a88d917682070e","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732428195517,"stop":1732428195517,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732428195520,"stop":1732428195520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"5a88d917682070e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/deff2de3f9ed88f5.json b/allure-report/data/test-cases/5aa7474450de295f.json similarity index 92% rename from allure-report/data/test-cases/deff2de3f9ed88f5.json rename to allure-report/data/test-cases/5aa7474450de295f.json index 50afc5f699d..01b9621cb89 100644 --- a/allure-report/data/test-cases/deff2de3f9ed88f5.json +++ b/allure-report/data/test-cases/5aa7474450de295f.json @@ -1 +1 @@ -{"uid":"deff2de3f9ed88f5","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":"deff2de3f9ed88f5.json","parameterValues":[]} \ No newline at end of file +{"uid":"5aa7474450de295f","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":"5aa7474450de295f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c5c32029e742eac.json b/allure-report/data/test-cases/5abe74757b94997a.json similarity index 58% rename from allure-report/data/test-cases/9c5c32029e742eac.json rename to allure-report/data/test-cases/5abe74757b94997a.json index 89534607581..b2a040aaa0d 100644 --- a/allure-report/data/test-cases/9c5c32029e742eac.json +++ b/allure-report/data/test-cases/5abe74757b94997a.json @@ -1 +1 @@ -{"uid":"9c5c32029e742eac","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":1732428194603,"stop":1732428194603,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"844543e89f44e3d5","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"7c9ea3ba0070bf05","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fc2c5a5df6e26162","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"9c5c32029e742eac.json","parameterValues":[]} \ No newline at end of file +{"uid":"5abe74757b94997a","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":1732428194603,"stop":1732428194603,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"5abe74757b94997a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ad5cb812fbd5d4a.json b/allure-report/data/test-cases/5ad5cb812fbd5d4a.json new file mode 100644 index 00000000000..d5420c66d0a --- /dev/null +++ b/allure-report/data/test-cases/5ad5cb812fbd5d4a.json @@ -0,0 +1 @@ +{"uid":"5ad5cb812fbd5d4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732764218925,"stop":1732764218925,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732764218927,"stop":1732764218927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ALGORITHMS"},{"name":"tag","value":"SEARCH"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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_5.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e41edf94f198f2c7","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0}},{"uid":"378b8959bf0b41a9","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"31a691fa5a56c905","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"5ad5cb812fbd5d4a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dd5714486b51753.json b/allure-report/data/test-cases/5b904804aa9a6e53.json similarity index 56% rename from allure-report/data/test-cases/9dd5714486b51753.json rename to allure-report/data/test-cases/5b904804aa9a6e53.json index 1545a865052..d1f66c2b1b9 100644 --- a/allure-report/data/test-cases/9dd5714486b51753.json +++ b/allure-report/data/test-cases/5b904804aa9a6e53.json @@ -1 +1 @@ -{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732428193958,"stop":1732428193958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1732428193961,"stop":1732428193961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97ad1cd914697b30","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"54e4671ce8499dcf","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9dd5714486b51753.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b904804aa9a6e53","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5b904804aa9a6e53.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e3ab906ce5621b5.json b/allure-report/data/test-cases/5bc730ff95f1c205.json similarity index 59% rename from allure-report/data/test-cases/6e3ab906ce5621b5.json rename to allure-report/data/test-cases/5bc730ff95f1c205.json index d81114718c0..23e4e086742 100644 --- a/allure-report/data/test-cases/6e3ab906ce5621b5.json +++ b/allure-report/data/test-cases/5bc730ff95f1c205.json @@ -1 +1 @@ -{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732428194528,"stop":1732428194528,"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":"

Codewars badge:

Test Description:

The function should return whether the board's current state is solved.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1732428194529,"stop":1732428194529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7362d176d35d3813","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"9abe86e868e9efe6","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"6e3ab906ce5621b5.json","parameterValues":[]} \ No newline at end of file +{"uid":"5bc730ff95f1c205","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732428194528,"stop":1732428194528,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5bc730ff95f1c205.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a2ae93193e5280a.json b/allure-report/data/test-cases/5bf0909978db7e30.json similarity index 55% rename from allure-report/data/test-cases/5a2ae93193e5280a.json rename to allure-report/data/test-cases/5bf0909978db7e30.json index 0f97a9f49e4..6d9fa17f585 100644 --- a/allure-report/data/test-cases/5a2ae93193e5280a.json +++ b/allure-report/data/test-cases/5bf0909978db7e30.json @@ -1 +1 @@ -{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732428196281,"stop":1732428196281,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Keep Hydrated!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5819c4c1535edeb","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"9e6f93dfe778ff9a","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"71d876f4d19ecd67","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5a2ae93193e5280a.json","parameterValues":[]} \ No newline at end of file +{"uid":"5bf0909978db7e30","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732428196281,"stop":1732428196281,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Keep Hydrated!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5bf0909978db7e30.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bf735ebb9d90923.json b/allure-report/data/test-cases/5bf735ebb9d90923.json new file mode 100644 index 00000000000..2f18338abde --- /dev/null +++ b/allure-report/data/test-cases/5bf735ebb9d90923.json @@ -0,0 +1 @@ +{"uid":"5bf735ebb9d90923","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Share prices"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"name":"tag","value":"FORMATTING"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"879748b1d447d0a9","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1}},{"uid":"1212df96f6b2dc34","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"a4637a157e542cb8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"5bf735ebb9d90923.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3370192ce6dd676.json b/allure-report/data/test-cases/5c0380ec075dfe06.json similarity index 55% rename from allure-report/data/test-cases/a3370192ce6dd676.json rename to allure-report/data/test-cases/5c0380ec075dfe06.json index 158bb275ec2..c98b1b722a5 100644 --- a/allure-report/data/test-cases/a3370192ce6dd676.json +++ b/allure-report/data/test-cases/5c0380ec075dfe06.json @@ -1 +1 @@ -{"uid":"a3370192ce6dd676","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b67b48d7bd01382a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"62507dec220dfd02","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"337891d8027fbc46","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"a3370192ce6dd676.json","parameterValues":[]} \ No newline at end of file +{"uid":"5c0380ec075dfe06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"5c0380ec075dfe06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74b0969e7db4effb.json b/allure-report/data/test-cases/5c0c21f2226a901c.json similarity index 69% rename from allure-report/data/test-cases/74b0969e7db4effb.json rename to allure-report/data/test-cases/5c0c21f2226a901c.json index 854cf69431d..dd74a094b79 100644 --- a/allure-report/data/test-cases/74b0969e7db4effb.json +++ b/allure-report/data/test-cases/5c0c21f2226a901c.json @@ -1 +1 @@ -{"uid":"74b0969e7db4effb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732428195701,"stop":1732428195701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Vasya - Clerk"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8173581ebbb7cc32","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"5b88f232b1f58c27","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"dee0416f79d22a0d","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"74b0969e7db4effb.json","parameterValues":[]} \ No newline at end of file +{"uid":"5c0c21f2226a901c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732428195701,"stop":1732428195701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Vasya - Clerk"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"5c0c21f2226a901c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73db1f36a5925004.json b/allure-report/data/test-cases/5c657b72ebb12427.json similarity index 68% rename from allure-report/data/test-cases/73db1f36a5925004.json rename to allure-report/data/test-cases/5c657b72ebb12427.json index 69ea899156c..0549e5a3885 100644 --- a/allure-report/data/test-cases/73db1f36a5925004.json +++ b/allure-report/data/test-cases/5c657b72ebb12427.json @@ -1 +1 @@ -{"uid":"73db1f36a5925004","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8a1d25baaaa2cac0","name":"stdout","source":"8a1d25baaaa2cac0.txt","type":"text/plain","size":611}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"73db1f36a5925004.json","parameterValues":[]} \ No newline at end of file +{"uid":"5c657b72ebb12427","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8bb1795fd7e9c165","name":"stdout","source":"8bb1795fd7e9c165.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5c657b72ebb12427.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ca78efd90ffa643.json b/allure-report/data/test-cases/5cbf19148d05755c.json similarity index 58% rename from allure-report/data/test-cases/6ca78efd90ffa643.json rename to allure-report/data/test-cases/5cbf19148d05755c.json index 2941398742f..d4400e246d0 100644 --- a/allure-report/data/test-cases/6ca78efd90ffa643.json +++ b/allure-report/data/test-cases/5cbf19148d05755c.json @@ -1 +1 @@ -{"uid":"6ca78efd90ffa643","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'country' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'person' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'place' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass 'ok' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732428196346,"stop":1732428196346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove First and Last Character"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6399c372aa4005f1","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"f8d7fd46b923bc4f","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f50d911c93ffbcb0","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"6ca78efd90ffa643.json","parameterValues":[]} \ No newline at end of file +{"uid":"5cbf19148d05755c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732428196346,"stop":1732428196346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove First and Last Character"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"5cbf19148d05755c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e2354482de170d3.json b/allure-report/data/test-cases/5e2354482de170d3.json new file mode 100644 index 00000000000..8c672e8e866 --- /dev/null +++ b/allure-report/data/test-cases/5e2354482de170d3.json @@ -0,0 +1 @@ +{"uid":"5e2354482de170d3","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"eac7f340d73193c2","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0}},{"uid":"8dcdfa9166c48fb8","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"ab7f75990cdffa76","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"5e2354482de170d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e4416fd32f6992f.json b/allure-report/data/test-cases/5e4416fd32f6992f.json new file mode 100644 index 00000000000..cbb9574a430 --- /dev/null +++ b/allure-report/data/test-cases/5e4416fd32f6992f.json @@ -0,0 +1 @@ +{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732764218599,"stop":1732764218599,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b904804aa9a6e53","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0}},{"uid":"c91f2e2d1c4e5a72","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"2483ff464fe4ea07","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"5e4416fd32f6992f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47cc31f6ebf12c13.json b/allure-report/data/test-cases/5e8bbbba63c3bb75.json similarity index 58% rename from allure-report/data/test-cases/47cc31f6ebf12c13.json rename to allure-report/data/test-cases/5e8bbbba63c3bb75.json index f35334246f0..97918d8092f 100644 --- a/allure-report/data/test-cases/47cc31f6ebf12c13.json +++ b/allure-report/data/test-cases/5e8bbbba63c3bb75.json @@ -1 +1 @@ -{"uid":"47cc31f6ebf12c13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c0d55ad9fdfb0f8a","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"33a7277db5231ef9","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a60fe7d0456e1873","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"47cc31f6ebf12c13.json","parameterValues":[]} \ No newline at end of file +{"uid":"5e8bbbba63c3bb75","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"5e8bbbba63c3bb75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f97df940bb3f46a.json b/allure-report/data/test-cases/5f97df940bb3f46a.json new file mode 100644 index 00000000000..a587642bb09 --- /dev/null +++ b/allure-report/data/test-cases/5f97df940bb3f46a.json @@ -0,0 +1 @@ +{"uid":"5f97df940bb3f46a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220695,"stop":1732764220695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764220697,"stop":1732764220697,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"b98e581eac70f265","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0}},{"uid":"afc07e402ebe38d8","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"8fd9fc1a4b426539","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"5f97df940bb3f46a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ff3f93ff1ffe8b3.json b/allure-report/data/test-cases/5ff3f93ff1ffe8b3.json new file mode 100644 index 00000000000..3adf6e96125 --- /dev/null +++ b/allure-report/data/test-cases/5ff3f93ff1ffe8b3.json @@ -0,0 +1 @@ +{"uid":"5ff3f93ff1ffe8b3","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":1732764220321,"stop":1732764220321,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220323,"stop":1732764220323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"70008c90c6552144","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0}},{"uid":"142b0c4f3754d996","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"76614b580d9bd7f8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5ff3f93ff1ffe8b3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6030df3a53146090.json b/allure-report/data/test-cases/6030df3a53146090.json deleted file mode 100644 index dee69bacc95..00000000000 --- a/allure-report/data/test-cases/6030df3a53146090.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6030df3a53146090","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca0d330469f49836","name":"stdout","source":"ca0d330469f49836.txt","type":"text/plain","size":640}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6030df3a53146090.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6035f0fe38b5a062.json b/allure-report/data/test-cases/6035f0fe38b5a062.json new file mode 100644 index 00000000000..c7f82ca4183 --- /dev/null +++ b/allure-report/data/test-cases/6035f0fe38b5a062.json @@ -0,0 +1 @@ +{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

Basic test: level, experience, rank

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f520dc2a3cdded7a","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1}},{"uid":"3bb063d5045f38b5","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"ba3e30be8784f086","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"6035f0fe38b5a062.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60d4140245a65d5.json b/allure-report/data/test-cases/60d4140245a65d5.json new file mode 100644 index 00000000000..dcd997305d0 --- /dev/null +++ b/allure-report/data/test-cases/60d4140245a65d5.json @@ -0,0 +1 @@ +{"uid":"60d4140245a65d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732764220167,"stop":1732764220167,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220167,"stop":1732764220167,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7ae1e1fc4481de3","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0}},{"uid":"5471ece0090e3d4","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"eb60d649770273d6","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"60d4140245a65d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60f7c96f923539a5.json b/allure-report/data/test-cases/60f7c96f923539a5.json new file mode 100644 index 00000000000..fae50058787 --- /dev/null +++ b/allure-report/data/test-cases/60f7c96f923539a5.json @@ -0,0 +1 @@ +{"uid":"60f7c96f923539a5","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732764219159,"stop":1732764219159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732764219160,"stop":1732764219160,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"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_5.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb6e602a844f0715","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1}},{"uid":"caf985b2a75ee6b7","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"e0e01cfda157cf01","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"60f7c96f923539a5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9cbf1053b771d679.json b/allure-report/data/test-cases/610300a29faa4ee4.json similarity index 76% rename from allure-report/data/test-cases/9cbf1053b771d679.json rename to allure-report/data/test-cases/610300a29faa4ee4.json index 71bac4eda3d..456be74e7df 100644 --- a/allure-report/data/test-cases/9cbf1053b771d679.json +++ b/allure-report/data/test-cases/610300a29faa4ee4.json @@ -1 +1 @@ -{"uid":"9cbf1053b771d679","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f8b59f79bb13d8ea","name":"stdout","source":"f8b59f79bb13d8ea.txt","type":"text/plain","size":276}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9cbf1053b771d679.json","parameterValues":[]} \ No newline at end of file +{"uid":"610300a29faa4ee4","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8c55c5917aa6e797","name":"stdout","source":"8c55c5917aa6e797.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"610300a29faa4ee4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56ae9013352b7649.json b/allure-report/data/test-cases/616388e3d3f3ad4c.json similarity index 65% rename from allure-report/data/test-cases/56ae9013352b7649.json rename to allure-report/data/test-cases/616388e3d3f3ad4c.json index 0271c056eb4..2aaecb65378 100644 --- a/allure-report/data/test-cases/56ae9013352b7649.json +++ b/allure-report/data/test-cases/616388e3d3f3ad4c.json @@ -1 +1 @@ -{"uid":"56ae9013352b7649","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dd695e9095070885","name":"stdout","source":"dd695e9095070885.txt","type":"text/plain","size":3898}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"56ae9013352b7649.json","parameterValues":[]} \ No newline at end of file +{"uid":"616388e3d3f3ad4c","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d8a2a5280a09e0f4","name":"stdout","source":"d8a2a5280a09e0f4.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"616388e3d3f3ad4c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7da87d8449dbfb8b.json b/allure-report/data/test-cases/61de742601660eab.json similarity index 65% rename from allure-report/data/test-cases/7da87d8449dbfb8b.json rename to allure-report/data/test-cases/61de742601660eab.json index 3013b3daa23..b9b9a43ef7b 100644 --- a/allure-report/data/test-cases/7da87d8449dbfb8b.json +++ b/allure-report/data/test-cases/61de742601660eab.json @@ -1 +1 @@ -{"uid":"7da87d8449dbfb8b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d8f05623e6466063","name":"stdout","source":"d8f05623e6466063.txt","type":"text/plain","size":932}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"7da87d8449dbfb8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"61de742601660eab","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a9137c6294090d64","name":"stdout","source":"a9137c6294090d64.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"61de742601660eab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61e07c6ddcc506b1.json b/allure-report/data/test-cases/61e07c6ddcc506b1.json new file mode 100644 index 00000000000..ba89a2a9121 --- /dev/null +++ b/allure-report/data/test-cases/61e07c6ddcc506b1.json @@ -0,0 +1 @@ +{"uid":"61e07c6ddcc506b1","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":1732764218771,"stop":1732764218772,"duration":1},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732764218769,"stop":1732764218769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84ea3c3b3250393e","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1}},{"uid":"99a774ce5ee6bba3","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"8c4c3ac3b9ddced3","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"61e07c6ddcc506b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37f24af32c057862.json b/allure-report/data/test-cases/61f84f81177cf38b.json similarity index 92% rename from allure-report/data/test-cases/37f24af32c057862.json rename to allure-report/data/test-cases/61f84f81177cf38b.json index 79c37159f34..8d6b8743dda 100644 --- a/allure-report/data/test-cases/37f24af32c057862.json +++ b/allure-report/data/test-cases/61f84f81177cf38b.json @@ -1 +1 @@ -{"uid":"37f24af32c057862","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":"37f24af32c057862.json","parameterValues":[]} \ No newline at end of file +{"uid":"61f84f81177cf38b","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":"61f84f81177cf38b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b36380d1077ce20b.json b/allure-report/data/test-cases/6209b3d491320ab9.json similarity index 56% rename from allure-report/data/test-cases/b36380d1077ce20b.json rename to allure-report/data/test-cases/6209b3d491320ab9.json index 8edb958730e..e77432081d1 100644 --- a/allure-report/data/test-cases/b36380d1077ce20b.json +++ b/allure-report/data/test-cases/6209b3d491320ab9.json @@ -1 +1 @@ -{"uid":"b36380d1077ce20b","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":1732428195921,"stop":1732428195921,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4e32d03efab2941f","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"bdddf7ddac3322c3","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1f991ba5bad9e7e9","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b36380d1077ce20b.json","parameterValues":[]} \ No newline at end of file +{"uid":"6209b3d491320ab9","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":1732428195921,"stop":1732428195921,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"6209b3d491320ab9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f8b999462605375.json b/allure-report/data/test-cases/6226ef3ddb316aa7.json similarity index 74% rename from allure-report/data/test-cases/9f8b999462605375.json rename to allure-report/data/test-cases/6226ef3ddb316aa7.json index 68b26d75f4a..b21d4328b82 100644 --- a/allure-report/data/test-cases/9f8b999462605375.json +++ b/allure-report/data/test-cases/6226ef3ddb316aa7.json @@ -1 +1 @@ -{"uid":"9f8b999462605375","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"169bdc8e4de5949e","name":"stdout","source":"169bdc8e4de5949e.txt","type":"text/plain","size":1649}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9f8b999462605375.json","parameterValues":[]} \ No newline at end of file +{"uid":"6226ef3ddb316aa7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47825a7b608174fa","name":"stdout","source":"47825a7b608174fa.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6226ef3ddb316aa7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3216b951d3fac8b.json b/allure-report/data/test-cases/624b364c1e1f6bc7.json similarity index 94% rename from allure-report/data/test-cases/a3216b951d3fac8b.json rename to allure-report/data/test-cases/624b364c1e1f6bc7.json index 2e104875721..e90031649b0 100644 --- a/allure-report/data/test-cases/a3216b951d3fac8b.json +++ b/allure-report/data/test-cases/624b364c1e1f6bc7.json @@ -1 +1 @@ -{"uid":"a3216b951d3fac8b","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":"a3216b951d3fac8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"624b364c1e1f6bc7","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":"624b364c1e1f6bc7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8ed1f5e4a826f53.json b/allure-report/data/test-cases/625a87864855843c.json similarity index 65% rename from allure-report/data/test-cases/e8ed1f5e4a826f53.json rename to allure-report/data/test-cases/625a87864855843c.json index c59f8bbdd95..bd8c081c7a9 100644 --- a/allure-report/data/test-cases/e8ed1f5e4a826f53.json +++ b/allure-report/data/test-cases/625a87864855843c.json @@ -1 +1 @@ -{"uid":"e8ed1f5e4a826f53","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d0030f8b38971a56","name":"stdout","source":"d0030f8b38971a56.txt","type":"text/plain","size":131}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e8ed1f5e4a826f53.json","parameterValues":[]} \ No newline at end of file +{"uid":"625a87864855843c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e245b3b58a92040","name":"stdout","source":"9e245b3b58a92040.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"625a87864855843c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62a6bbd8d87be20e.json b/allure-report/data/test-cases/62a6bbd8d87be20e.json new file mode 100644 index 00000000000..56a6c775f9d --- /dev/null +++ b/allure-report/data/test-cases/62a6bbd8d87be20e.json @@ -0,0 +1 @@ +{"uid":"62a6bbd8d87be20e","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1216cba41972f97c","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0}},{"uid":"1a8f12ae9a258bd1","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"24b32ad032525022","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"62a6bbd8d87be20e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62ef482e2cb3493b.json b/allure-report/data/test-cases/62ef482e2cb3493b.json deleted file mode 100644 index e1a62398e77..00000000000 --- a/allure-report/data/test-cases/62ef482e2cb3493b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"62ef482e2cb3493b","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":"

Codewars badge:

Test Description:

Positive test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"3cb4765f4f4fe8e7","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"cc1bd3cedb1bfef0","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"62ef482e2cb3493b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/631ed8ca3aead56c.json b/allure-report/data/test-cases/631ed8ca3aead56c.json new file mode 100644 index 00000000000..5ac59c1136a --- /dev/null +++ b/allure-report/data/test-cases/631ed8ca3aead56c.json @@ -0,0 +1 @@ +{"uid":"631ed8ca3aead56c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732764220715,"stop":1732764220715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732764220715,"stop":1732764220718,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732764220721,"stop":1732764220721,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"epic","value":"7 kyu"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"15315242cf60389c","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0}},{"uid":"7f0995b9351caed2","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"58bbccd3c8af3c06","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"631ed8ca3aead56c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12ac45051c49f01a.json b/allure-report/data/test-cases/632eacb89b6e193e.json similarity index 68% rename from allure-report/data/test-cases/12ac45051c49f01a.json rename to allure-report/data/test-cases/632eacb89b6e193e.json index 15d547d0033..b649b7b1926 100644 --- a/allure-report/data/test-cases/12ac45051c49f01a.json +++ b/allure-report/data/test-cases/632eacb89b6e193e.json @@ -1 +1 @@ -{"uid":"12ac45051c49f01a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ad44f1f08939323f","name":"stdout","source":"ad44f1f08939323f.txt","type":"text/plain","size":371}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"12ac45051c49f01a.json","parameterValues":[]} \ No newline at end of file +{"uid":"632eacb89b6e193e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"96a11dda30514e67","name":"stdout","source":"96a11dda30514e67.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"632eacb89b6e193e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f520e29faf9fa03.json b/allure-report/data/test-cases/634b88b34b81a74c.json similarity index 92% rename from allure-report/data/test-cases/2f520e29faf9fa03.json rename to allure-report/data/test-cases/634b88b34b81a74c.json index 6f2faf92c07..5289e5596cf 100644 --- a/allure-report/data/test-cases/2f520e29faf9fa03.json +++ b/allure-report/data/test-cases/634b88b34b81a74c.json @@ -1 +1 @@ -{"uid":"2f520e29faf9fa03","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":"2f520e29faf9fa03.json","parameterValues":[]} \ No newline at end of file +{"uid":"634b88b34b81a74c","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":"634b88b34b81a74c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63a8ebd07b8fa1c4.json b/allure-report/data/test-cases/63a8ebd07b8fa1c4.json new file mode 100644 index 00000000000..573091683bf --- /dev/null +++ b/allure-report/data/test-cases/63a8ebd07b8fa1c4.json @@ -0,0 +1 @@ +{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220340,"stop":1732764220340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4d2d9b386eb6ebf2","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0}},{"uid":"c739525d6df646b0","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"95e7a9865f127b46","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"63a8ebd07b8fa1c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63b822db5bae14d4.json b/allure-report/data/test-cases/63b822db5bae14d4.json new file mode 100644 index 00000000000..d27fe33ebf7 --- /dev/null +++ b/allure-report/data/test-cases/63b822db5bae14d4.json @@ -0,0 +1 @@ +{"uid":"63b822db5bae14d4","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":1732764221193,"stop":1732764221193,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732764221197,"stop":1732764221197,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Remove String Spaces"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97a2a77f06d4866c","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0}},{"uid":"49044c1c42d54a81","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"1b6eab50f2f722f5","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"63b822db5bae14d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/996ab105867adbc9.json b/allure-report/data/test-cases/63ceea7fe946ff07.json similarity index 57% rename from allure-report/data/test-cases/996ab105867adbc9.json rename to allure-report/data/test-cases/63ceea7fe946ff07.json index 05d4a1a091b..f479d37849c 100644 --- a/allure-report/data/test-cases/996ab105867adbc9.json +++ b/allure-report/data/test-cases/63ceea7fe946ff07.json @@ -1 +1 @@ -{"uid":"996ab105867adbc9","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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"445f2e59cb6a4191","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"8efea6185ce9f545","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"996ab105867adbc9.json","parameterValues":[]} \ No newline at end of file +{"uid":"63ceea7fe946ff07","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":"63ceea7fe946ff07.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63ea9545d8dcd43f.json b/allure-report/data/test-cases/63ea9545d8dcd43f.json new file mode 100644 index 00000000000..7c5e48cab91 --- /dev/null +++ b/allure-report/data/test-cases/63ea9545d8dcd43f.json @@ -0,0 +1 @@ +{"uid":"63ea9545d8dcd43f","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":1732764221337,"stop":1732764221337,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"20301c2d6922300e","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0}},{"uid":"3b252f71e94d60c3","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"b9bf67d4df9c3970","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"63ea9545d8dcd43f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9267ea7150c527ef.json b/allure-report/data/test-cases/64001087ec7aaf2b.json similarity index 63% rename from allure-report/data/test-cases/9267ea7150c527ef.json rename to allure-report/data/test-cases/64001087ec7aaf2b.json index fbd8edba102..a943c2ea425 100644 --- a/allure-report/data/test-cases/9267ea7150c527ef.json +++ b/allure-report/data/test-cases/64001087ec7aaf2b.json @@ -1 +1 @@ -{"uid":"9267ea7150c527ef","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732428195509,"stop":1732428195510,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1732428195512,"stop":1732428195512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"602b6b1c829f1e7f","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"9ee9ff331756b11e","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9267ea7150c527ef.json","parameterValues":[]} \ No newline at end of file +{"uid":"64001087ec7aaf2b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"64001087ec7aaf2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/641b1ee7248b1557.json b/allure-report/data/test-cases/641b1ee7248b1557.json new file mode 100644 index 00000000000..4b3f13daa06 --- /dev/null +++ b/allure-report/data/test-cases/641b1ee7248b1557.json @@ -0,0 +1 @@ +{"uid":"641b1ee7248b1557","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a329da92784fccae","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1}},{"uid":"ee182a5a1f4b39dc","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"a53e477b227bdf44","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"641b1ee7248b1557.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b080152571ac4adf.json b/allure-report/data/test-cases/641fd537e33a59ae.json similarity index 75% rename from allure-report/data/test-cases/b080152571ac4adf.json rename to allure-report/data/test-cases/641fd537e33a59ae.json index d45d46ff9eb..a3b5435c3da 100644 --- a/allure-report/data/test-cases/b080152571ac4adf.json +++ b/allure-report/data/test-cases/641fd537e33a59ae.json @@ -1 +1 @@ -{"uid":"b080152571ac4adf","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d85ac6726b459082","name":"stdout","source":"d85ac6726b459082.txt","type":"text/plain","size":562}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"b080152571ac4adf.json","parameterValues":[]} \ No newline at end of file +{"uid":"641fd537e33a59ae","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9f9ce9c609c0bc6d","name":"stdout","source":"9f9ce9c609c0bc6d.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"641fd537e33a59ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6421e8610575915.json b/allure-report/data/test-cases/6421e8610575915.json deleted file mode 100644 index de7b4b30cb7..00000000000 --- a/allure-report/data/test-cases/6421e8610575915.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6421e8610575915","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e44deaae3b3d699a","name":"stdout","source":"e44deaae3b3d699a.txt","type":"text/plain","size":556}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6421e8610575915.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6444bc59e77319f9.json b/allure-report/data/test-cases/6444bc59e77319f9.json new file mode 100644 index 00000000000..c99072b9adb --- /dev/null +++ b/allure-report/data/test-cases/6444bc59e77319f9.json @@ -0,0 +1 @@ +{"uid":"6444bc59e77319f9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b668f07fa0a63017","name":"stdout","source":"b668f07fa0a63017.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6444bc59e77319f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6463a9e3be0b4026.json b/allure-report/data/test-cases/6463a9e3be0b4026.json new file mode 100644 index 00000000000..feac2dd31c9 --- /dev/null +++ b/allure-report/data/test-cases/6463a9e3be0b4026.json @@ -0,0 +1 @@ +{"uid":"6463a9e3be0b4026","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d38be6ef6dfa6828","name":"stdout","source":"d38be6ef6dfa6828.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6463a9e3be0b4026.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64abc8899e8e691d.json b/allure-report/data/test-cases/64abc8899e8e691d.json new file mode 100644 index 00000000000..52338e582cb --- /dev/null +++ b/allure-report/data/test-cases/64abc8899e8e691d.json @@ -0,0 +1 @@ +{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732764219297,"stop":1732764219297,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf7dba429c84fe69","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0}},{"uid":"73622414b649e45a","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"5392fbee850dfcf4","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"64abc8899e8e691d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64d00badde981bd3.json b/allure-report/data/test-cases/64d00badde981bd3.json deleted file mode 100644 index 99e1ef213c3..00000000000 --- a/allure-report/data/test-cases/64d00badde981bd3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"64d00badde981bd3","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7e4c2d208b9b87","name":"stdout","source":"e7e4c2d208b9b87.txt","type":"text/plain","size":554}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"64d00badde981bd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64ddebaa5d6679fc.json b/allure-report/data/test-cases/64ddebaa5d6679fc.json new file mode 100644 index 00000000000..fd729c29233 --- /dev/null +++ b/allure-report/data/test-cases/64ddebaa5d6679fc.json @@ -0,0 +1 @@ +{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"64001087ec7aaf2b","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0}},{"uid":"a98592d8e6c7fba2","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"296f86e34803d6c1","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"64ddebaa5d6679fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f63a88604b1d062f.json b/allure-report/data/test-cases/6558b0da7e100d83.json similarity index 72% rename from allure-report/data/test-cases/f63a88604b1d062f.json rename to allure-report/data/test-cases/6558b0da7e100d83.json index 53e83c067f0..b6814989550 100644 --- a/allure-report/data/test-cases/f63a88604b1d062f.json +++ b/allure-report/data/test-cases/6558b0da7e100d83.json @@ -1 +1 @@ -{"uid":"f63a88604b1d062f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8dfc11179dd2dd46","name":"stdout","source":"8dfc11179dd2dd46.txt","type":"text/plain","size":601}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"f63a88604b1d062f.json","parameterValues":[]} \ No newline at end of file +{"uid":"6558b0da7e100d83","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d8719a36b49cd420","name":"stdout","source":"d8719a36b49cd420.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6558b0da7e100d83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55e4a84277d15d0d.json b/allure-report/data/test-cases/6566372edd2dc54c.json similarity index 94% rename from allure-report/data/test-cases/55e4a84277d15d0d.json rename to allure-report/data/test-cases/6566372edd2dc54c.json index e8e0118a880..d7e317b55b6 100644 --- a/allure-report/data/test-cases/55e4a84277d15d0d.json +++ b/allure-report/data/test-cases/6566372edd2dc54c.json @@ -1 +1 @@ -{"uid":"55e4a84277d15d0d","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":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":"55e4a84277d15d0d.json","parameterValues":[]} \ No newline at end of file +{"uid":"6566372edd2dc54c","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":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":"6566372edd2dc54c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/656eaa4febf44ace.json b/allure-report/data/test-cases/656eaa4febf44ace.json deleted file mode 100644 index b5b04141102..00000000000 --- a/allure-report/data/test-cases/656eaa4febf44ace.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"656eaa4febf44ace","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cd8ecc1f6b5a44","name":"stdout","source":"cd8ecc1f6b5a44.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"656eaa4febf44ace.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c898f599f64280c3.json b/allure-report/data/test-cases/65b2cf00b86ce444.json similarity index 70% rename from allure-report/data/test-cases/c898f599f64280c3.json rename to allure-report/data/test-cases/65b2cf00b86ce444.json index f6cd601b993..a852709b6b2 100644 --- a/allure-report/data/test-cases/c898f599f64280c3.json +++ b/allure-report/data/test-cases/65b2cf00b86ce444.json @@ -1 +1 @@ -{"uid":"c898f599f64280c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d4ab56b3974e742a","name":"stdout","source":"d4ab56b3974e742a.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"c898f599f64280c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"65b2cf00b86ce444","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50b40a6b644cd21e","name":"stdout","source":"50b40a6b644cd21e.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"65b2cf00b86ce444.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d58adc2ec0d31961.json b/allure-report/data/test-cases/65bb39f46c25941f.json similarity index 64% rename from allure-report/data/test-cases/d58adc2ec0d31961.json rename to allure-report/data/test-cases/65bb39f46c25941f.json index 57b629b2ed5..266311e9d2d 100644 --- a/allure-report/data/test-cases/d58adc2ec0d31961.json +++ b/allure-report/data/test-cases/65bb39f46c25941f.json @@ -1 +1 @@ -{"uid":"d58adc2ec0d31961","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"22b576ff182f36ef","name":"stdout","source":"22b576ff182f36ef.txt","type":"text/plain","size":410}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"d58adc2ec0d31961.json","parameterValues":[]} \ No newline at end of file +{"uid":"65bb39f46c25941f","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6c8cae3bc3627567","name":"stdout","source":"6c8cae3bc3627567.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65bb39f46c25941f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0700b9c803f7cf9.json b/allure-report/data/test-cases/65c772a236576a2d.json similarity index 61% rename from allure-report/data/test-cases/f0700b9c803f7cf9.json rename to allure-report/data/test-cases/65c772a236576a2d.json index 8ace67831c4..85608a71d3b 100644 --- a/allure-report/data/test-cases/f0700b9c803f7cf9.json +++ b/allure-report/data/test-cases/65c772a236576a2d.json @@ -1 +1 @@ -{"uid":"f0700b9c803f7cf9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5343662cb85dce05","name":"stdout","source":"5343662cb85dce05.txt","type":"text/plain","size":3097}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"f0700b9c803f7cf9.json","parameterValues":[]} \ No newline at end of file +{"uid":"65c772a236576a2d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4832c8bd9f79614","name":"stdout","source":"f4832c8bd9f79614.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65c772a236576a2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65d5a47944859245.json b/allure-report/data/test-cases/65d5a47944859245.json deleted file mode 100644 index c2313ca5d5a..00000000000 --- a/allure-report/data/test-cases/65d5a47944859245.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"65d5a47944859245","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6d73a4f3af439d6","name":"stdout","source":"6d73a4f3af439d6.txt","type":"text/plain","size":202}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"65d5a47944859245.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65e9477143af3f55.json b/allure-report/data/test-cases/65e9477143af3f55.json new file mode 100644 index 00000000000..9a6927cb43f --- /dev/null +++ b/allure-report/data/test-cases/65e9477143af3f55.json @@ -0,0 +1 @@ +{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"f3b1ea272cafb8c8","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0}},{"uid":"22f939e586318511","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"40a0fe54277654cc","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"65e9477143af3f55.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65f6b4f1195a0e9d.json b/allure-report/data/test-cases/65f6b4f1195a0e9d.json new file mode 100644 index 00000000000..95eb1f0158a --- /dev/null +++ b/allure-report/data/test-cases/65f6b4f1195a0e9d.json @@ -0,0 +1 @@ +{"uid":"65f6b4f1195a0e9d","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bcfe223ecfa6a3c6","name":"stdout","source":"bcfe223ecfa6a3c6.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65f6b4f1195a0e9d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/66020f911b054e74.json b/allure-report/data/test-cases/66020f911b054e74.json new file mode 100644 index 00000000000..04654db99e6 --- /dev/null +++ b/allure-report/data/test-cases/66020f911b054e74.json @@ -0,0 +1 @@ +{"uid":"66020f911b054e74","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4acb1c573ef8b7bb","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0}},{"uid":"fe13696efb68455a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2399abc94e3173da","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"66020f911b054e74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/660684096c18d05d.json b/allure-report/data/test-cases/660684096c18d05d.json deleted file mode 100644 index 75dd627ba97..00000000000 --- a/allure-report/data/test-cases/660684096c18d05d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"660684096c18d05d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2dbf09b568ff5668","name":"stdout","source":"2dbf09b568ff5668.txt","type":"text/plain","size":130}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"660684096c18d05d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6641c9ab33f4ea66.json b/allure-report/data/test-cases/6641c9ab33f4ea66.json new file mode 100644 index 00000000000..b1b6f000d3a --- /dev/null +++ b/allure-report/data/test-cases/6641c9ab33f4ea66.json @@ -0,0 +1 @@ +{"uid":"6641c9ab33f4ea66","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":1732764221104,"stop":1732764221104,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a0332cc6a682faac","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0}},{"uid":"f507fecee61d3d94","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"f801b2352cd357fc","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"6641c9ab33f4ea66.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ea1e8d078b774a7.json b/allure-report/data/test-cases/664f2a2d41bf2bd8.json similarity index 55% rename from allure-report/data/test-cases/5ea1e8d078b774a7.json rename to allure-report/data/test-cases/664f2a2d41bf2bd8.json index 233ead5efcc..edecd8ed1ea 100644 --- a/allure-report/data/test-cases/5ea1e8d078b774a7.json +++ b/allure-report/data/test-cases/664f2a2d41bf2bd8.json @@ -1 +1 @@ -{"uid":"5ea1e8d078b774a7","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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3326f8b00659b17c","name":"stdout","source":"3326f8b00659b17c.txt","type":"text/plain","size":791}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5ea1e8d078b774a7.json","parameterValues":[]} \ No newline at end of file +{"uid":"664f2a2d41bf2bd8","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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f6883e774d20c18","name":"stdout","source":"1f6883e774d20c18.txt","type":"text/plain","size":791}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":4,"unknown":0,"total":4},"items":[{"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":"664f2a2d41bf2bd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b673d7ca3af16ae5.json b/allure-report/data/test-cases/6650fdbb71631571.json similarity index 59% rename from allure-report/data/test-cases/b673d7ca3af16ae5.json rename to allure-report/data/test-cases/6650fdbb71631571.json index 512073ccfb8..e20a84079ad 100644 --- a/allure-report/data/test-cases/b673d7ca3af16ae5.json +++ b/allure-report/data/test-cases/6650fdbb71631571.json @@ -1 +1 @@ -{"uid":"b673d7ca3af16ae5","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":1732428196017,"stop":1732428196017,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"59e6c1fe5b50c363","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"9451201a4cae53ad","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9393151991be7f33","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"b673d7ca3af16ae5.json","parameterValues":[]} \ No newline at end of file +{"uid":"6650fdbb71631571","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":1732428196017,"stop":1732428196017,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"6650fdbb71631571.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6660f839d8534ee2.json b/allure-report/data/test-cases/6660f839d8534ee2.json deleted file mode 100644 index 5aeb9e8981b..00000000000 --- a/allure-report/data/test-cases/6660f839d8534ee2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6660f839d8534ee2","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":1732428195998,"stop":1732428195998,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732428196003,"stop":1732428196003,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of powers of 2"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"26764a4bab46b2bf","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"1bf2db2d5f0c7414","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"4ecd1e835300dbcf","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6660f839d8534ee2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67a0bf67db9047ee.json b/allure-report/data/test-cases/67a0bf67db9047ee.json new file mode 100644 index 00000000000..1e3701c1b57 --- /dev/null +++ b/allure-report/data/test-cases/67a0bf67db9047ee.json @@ -0,0 +1 @@ +{"uid":"67a0bf67db9047ee","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5360156ef396b6e","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0}},{"uid":"cedf72c8fbbfdfc5","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"a22d4b8f003df599","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"67a0bf67db9047ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9328098007f6ade.json b/allure-report/data/test-cases/67c96b92db3f1ee1.json similarity index 51% rename from allure-report/data/test-cases/d9328098007f6ade.json rename to allure-report/data/test-cases/67c96b92db3f1ee1.json index de7d8fe15f7..8fff1b8c1e5 100644 --- a/allure-report/data/test-cases/d9328098007f6ade.json +++ b/allure-report/data/test-cases/67c96b92db3f1ee1.json @@ -1 +1 @@ -{"uid":"d9328098007f6ade","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":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an un-existing item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a2cc2be21cb9d7cd","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"45f16c4708137d2d","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d9328098007f6ade.json","parameterValues":[]} \ No newline at end of file +{"uid":"67c96b92db3f1ee1","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"67c96b92db3f1ee1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67e470215248af57.json b/allure-report/data/test-cases/67e470215248af57.json new file mode 100644 index 00000000000..95cd51da433 --- /dev/null +++ b/allure-report/data/test-cases/67e470215248af57.json @@ -0,0 +1 @@ +{"uid":"67e470215248af57","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8026ef3ff023cc9a","name":"stdout","source":"8026ef3ff023cc9a.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"67e470215248af57.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32b8a7a180fb722f.json b/allure-report/data/test-cases/681eea057133a7e0.json similarity index 61% rename from allure-report/data/test-cases/32b8a7a180fb722f.json rename to allure-report/data/test-cases/681eea057133a7e0.json index b45c5626125..cd0384d01cc 100644 --- a/allure-report/data/test-cases/32b8a7a180fb722f.json +++ b/allure-report/data/test-cases/681eea057133a7e0.json @@ -1 +1 @@ -{"uid":"32b8a7a180fb722f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"697ce25e72082ee1","name":"stdout","source":"697ce25e72082ee1.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"32b8a7a180fb722f.json","parameterValues":[]} \ No newline at end of file +{"uid":"681eea057133a7e0","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"18e75387bd3b0160","name":"stdout","source":"18e75387bd3b0160.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"681eea057133a7e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53ac096f64d86d36.json b/allure-report/data/test-cases/68235061ff0b1d1d.json similarity index 75% rename from allure-report/data/test-cases/53ac096f64d86d36.json rename to allure-report/data/test-cases/68235061ff0b1d1d.json index 0fc7948da7e..44d39ca1074 100644 --- a/allure-report/data/test-cases/53ac096f64d86d36.json +++ b/allure-report/data/test-cases/68235061ff0b1d1d.json @@ -1 +1 @@ -{"uid":"53ac096f64d86d36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"7dd6b645422c34b6","name":"stdout","source":"7dd6b645422c34b6.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"53ac096f64d86d36.json","parameterValues":[]} \ No newline at end of file +{"uid":"68235061ff0b1d1d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"406f6d7cefafc12f","name":"stdout","source":"406f6d7cefafc12f.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"68235061ff0b1d1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4942ac4be65ef1b0.json b/allure-report/data/test-cases/682ca0c47ecc45d4.json similarity index 62% rename from allure-report/data/test-cases/4942ac4be65ef1b0.json rename to allure-report/data/test-cases/682ca0c47ecc45d4.json index e2e848b7755..3326d77b97b 100644 --- a/allure-report/data/test-cases/4942ac4be65ef1b0.json +++ b/allure-report/data/test-cases/682ca0c47ecc45d4.json @@ -1 +1 @@ -{"uid":"4942ac4be65ef1b0","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732428193998,"stop":1732428193998,"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', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f12b5c3f29ddd74a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"ef2d26c76c436892","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"4942ac4be65ef1b0.json","parameterValues":[]} \ No newline at end of file +{"uid":"682ca0c47ecc45d4","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732428193998,"stop":1732428193998,"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', 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":"682ca0c47ecc45d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f97aaf8957be0a89.json b/allure-report/data/test-cases/68489cf8ea35171c.json similarity index 66% rename from allure-report/data/test-cases/f97aaf8957be0a89.json rename to allure-report/data/test-cases/68489cf8ea35171c.json index a068bc7fe67..697eeb2cdc1 100644 --- a/allure-report/data/test-cases/f97aaf8957be0a89.json +++ b/allure-report/data/test-cases/68489cf8ea35171c.json @@ -1 +1 @@ -{"uid":"f97aaf8957be0a89","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"36e52eee6ec1696f","name":"stdout","source":"36e52eee6ec1696f.txt","type":"text/plain","size":232}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"f97aaf8957be0a89.json","parameterValues":[]} \ No newline at end of file +{"uid":"68489cf8ea35171c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e367429b8224516","name":"stdout","source":"9e367429b8224516.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"68489cf8ea35171c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/689b611d3c9a3124.json b/allure-report/data/test-cases/689b611d3c9a3124.json new file mode 100644 index 00000000000..8ef3cd6ae57 --- /dev/null +++ b/allure-report/data/test-cases/689b611d3c9a3124.json @@ -0,0 +1 @@ +{"uid":"689b611d3c9a3124","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732764221134,"stop":1732764221134,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e71092ad871851c8","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1}},{"uid":"2dcba5fbac259354","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"94e103957a6e541c","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"689b611d3c9a3124.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c42292a9c36c46f3.json b/allure-report/data/test-cases/68a2b9760a533e02.json similarity index 56% rename from allure-report/data/test-cases/c42292a9c36c46f3.json rename to allure-report/data/test-cases/68a2b9760a533e02.json index 699fb7feda7..0d4730d87db 100644 --- a/allure-report/data/test-cases/c42292a9c36c46f3.json +++ b/allure-report/data/test-cases/68a2b9760a533e02.json @@ -1 +1 @@ -{"uid":"c42292a9c36c46f3","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732428194190,"stop":1732428194190,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f11813f80ada0713","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"3aa67525242f5614","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"c42292a9c36c46f3.json","parameterValues":[]} \ No newline at end of file +{"uid":"68a2b9760a533e02","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732428194190,"stop":1732428194190,"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":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":"68a2b9760a533e02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/933ecb6fe52a564f.json b/allure-report/data/test-cases/68ad711bfb950e6e.json similarity index 78% rename from allure-report/data/test-cases/933ecb6fe52a564f.json rename to allure-report/data/test-cases/68ad711bfb950e6e.json index 5048664f86e..74d8dceef66 100644 --- a/allure-report/data/test-cases/933ecb6fe52a564f.json +++ b/allure-report/data/test-cases/68ad711bfb950e6e.json @@ -1 +1 @@ -{"uid":"933ecb6fe52a564f","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"773f7227b3021ebf","name":"stdout","source":"773f7227b3021ebf.txt","type":"text/plain","size":231}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"933ecb6fe52a564f.json","parameterValues":[]} \ No newline at end of file +{"uid":"68ad711bfb950e6e","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f91cde579304f854","name":"stdout","source":"f91cde579304f854.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"68ad711bfb950e6e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e1e999ab6569b87.json b/allure-report/data/test-cases/68e1fa91eff84fb2.json similarity index 68% rename from allure-report/data/test-cases/8e1e999ab6569b87.json rename to allure-report/data/test-cases/68e1fa91eff84fb2.json index 0fdb764365d..f79c0003657 100644 --- a/allure-report/data/test-cases/8e1e999ab6569b87.json +++ b/allure-report/data/test-cases/68e1fa91eff84fb2.json @@ -1 +1 @@ -{"uid":"8e1e999ab6569b87","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dea157c47f361971","name":"stdout","source":"dea157c47f361971.txt","type":"text/plain","size":111}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"8e1e999ab6569b87.json","parameterValues":[]} \ No newline at end of file +{"uid":"68e1fa91eff84fb2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c41bf0bbb023a57f","name":"stdout","source":"c41bf0bbb023a57f.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"68e1fa91eff84fb2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/21f553aee2e150e3.json b/allure-report/data/test-cases/6902a5b0a224435c.json similarity index 67% rename from allure-report/data/test-cases/21f553aee2e150e3.json rename to allure-report/data/test-cases/6902a5b0a224435c.json index 2fc241e8919..8c4c00ea551 100644 --- a/allure-report/data/test-cases/21f553aee2e150e3.json +++ b/allure-report/data/test-cases/6902a5b0a224435c.json @@ -1 +1 @@ -{"uid":"21f553aee2e150e3","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b5b702f79cbcea35","name":"stdout","source":"b5b702f79cbcea35.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"21f553aee2e150e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"6902a5b0a224435c","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3228eb12f2ec789a","name":"stdout","source":"3228eb12f2ec789a.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"6902a5b0a224435c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/691701add6daaf89.json b/allure-report/data/test-cases/691701add6daaf89.json deleted file mode 100644 index 016e0516ed3..00000000000 --- a/allure-report/data/test-cases/691701add6daaf89.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"691701add6daaf89","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"974d8c9279e15557","name":"stdout","source":"974d8c9279e15557.txt","type":"text/plain","size":401}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":"691701add6daaf89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fda81d5edcbfeda5.json b/allure-report/data/test-cases/696e651c40149097.json similarity index 57% rename from allure-report/data/test-cases/fda81d5edcbfeda5.json rename to allure-report/data/test-cases/696e651c40149097.json index 790ecced21f..58529d44326 100644 --- a/allure-report/data/test-cases/fda81d5edcbfeda5.json +++ b/allure-report/data/test-cases/696e651c40149097.json @@ -1 +1 @@ -{"uid":"fda81d5edcbfeda5","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1732428196158,"stop":1732428196158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f14a6ccebe34b08","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"920950efadf9f044","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fda81d5edcbfeda5.json","parameterValues":[]} \ No newline at end of file +{"uid":"696e651c40149097","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"696e651c40149097.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a3f85e29591c654.json b/allure-report/data/test-cases/6a3f85e29591c654.json new file mode 100644 index 00000000000..1f801a116c3 --- /dev/null +++ b/allure-report/data/test-cases/6a3f85e29591c654.json @@ -0,0 +1 @@ +{"uid":"6a3f85e29591c654","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":"

Codewars badge:

Test Description:

Assert that 'domain_name' function returns domain name from given URL string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"950acbfbefb81796","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0}},{"uid":"e0d2f09c0da8121","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"13c4343c88a790e8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"6a3f85e29591c654.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a636a909012a6f0.json b/allure-report/data/test-cases/6a636a909012a6f0.json new file mode 100644 index 00000000000..dde92d83dc4 --- /dev/null +++ b/allure-report/data/test-cases/6a636a909012a6f0.json @@ -0,0 +1 @@ +{"uid":"6a636a909012a6f0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732764221258,"stop":1732764221258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dfae17616fb702cf","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0}},{"uid":"f20c6ac583494462","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"625a87864855843c","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"6a636a909012a6f0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a8f943df9cf325c.json b/allure-report/data/test-cases/6a8f943df9cf325c.json new file mode 100644 index 00000000000..558f7d9508c --- /dev/null +++ b/allure-report/data/test-cases/6a8f943df9cf325c.json @@ -0,0 +1 @@ +{"uid":"6a8f943df9cf325c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f965c0bd2baa205","name":"stdout","source":"f965c0bd2baa205.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6a8f943df9cf325c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b98fb3b88f75199.json b/allure-report/data/test-cases/6aa550180790876d.json similarity index 59% rename from allure-report/data/test-cases/2b98fb3b88f75199.json rename to allure-report/data/test-cases/6aa550180790876d.json index 901854975b5..6960cb3f444 100644 --- a/allure-report/data/test-cases/2b98fb3b88f75199.json +++ b/allure-report/data/test-cases/6aa550180790876d.json @@ -1 +1 @@ -{"uid":"2b98fb3b88f75199","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732428194482,"stop":1732428194482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Number of trailing zeros of N!"},{"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":"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3baf14f5477154","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"dcee0c4d2268b964","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"369d691aa58bf89d","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"2b98fb3b88f75199.json","parameterValues":[]} \ No newline at end of file +{"uid":"6aa550180790876d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732428194482,"stop":1732428194482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Number of trailing zeros of N!"},{"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":"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6aa550180790876d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70eff3ae24ccc67a.json b/allure-report/data/test-cases/6aba04a431b7fd70.json similarity index 61% rename from allure-report/data/test-cases/70eff3ae24ccc67a.json rename to allure-report/data/test-cases/6aba04a431b7fd70.json index 309d6df99dd..54d8b9a2661 100644 --- a/allure-report/data/test-cases/70eff3ae24ccc67a.json +++ b/allure-report/data/test-cases/6aba04a431b7fd70.json @@ -1 +1 @@ -{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732428194439,"stop":1732428194439,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55e4a84277d15d0d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"a8b77a6618ff7e4c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"70eff3ae24ccc67a.json","parameterValues":[]} \ No newline at end of file +{"uid":"6aba04a431b7fd70","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732428194439,"stop":1732428194439,"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":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":"6aba04a431b7fd70.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f649ed8d3c87f7f8.json b/allure-report/data/test-cases/6aeb83ca0df8b3d8.json similarity index 72% rename from allure-report/data/test-cases/f649ed8d3c87f7f8.json rename to allure-report/data/test-cases/6aeb83ca0df8b3d8.json index 996b6393fa3..5d37f1577b7 100644 --- a/allure-report/data/test-cases/f649ed8d3c87f7f8.json +++ b/allure-report/data/test-cases/6aeb83ca0df8b3d8.json @@ -1 +1 @@ -{"uid":"f649ed8d3c87f7f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f649ed8d3c87f7f8.json","parameterValues":[]} \ No newline at end of file +{"uid":"6aeb83ca0df8b3d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6aeb83ca0df8b3d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0f4e1faa852c595.json b/allure-report/data/test-cases/6b42b881fa048473.json similarity index 71% rename from allure-report/data/test-cases/c0f4e1faa852c595.json rename to allure-report/data/test-cases/6b42b881fa048473.json index dba48f13b46..b8f9f6adc88 100644 --- a/allure-report/data/test-cases/c0f4e1faa852c595.json +++ b/allure-report/data/test-cases/6b42b881fa048473.json @@ -1 +1 @@ -{"uid":"c0f4e1faa852c595","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f0a043619d2b0689","name":"stdout","source":"f0a043619d2b0689.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"c0f4e1faa852c595.json","parameterValues":[]} \ No newline at end of file +{"uid":"6b42b881fa048473","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"102e6d56faf7b4e2","name":"stdout","source":"102e6d56faf7b4e2.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"6b42b881fa048473.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6bab07231bfb8a25.json b/allure-report/data/test-cases/6bab07231bfb8a25.json new file mode 100644 index 00000000000..302e2cb131e --- /dev/null +++ b/allure-report/data/test-cases/6bab07231bfb8a25.json @@ -0,0 +1 @@ +{"uid":"6bab07231bfb8a25","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732764220401,"stop":1732764220401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2e0eb113649e95e6","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0}},{"uid":"4617147ad7612076","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"168ffd09c766442f","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"6bab07231bfb8a25.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/21f08ae936e1de27.json b/allure-report/data/test-cases/6bf2acd0a0db42e5.json similarity index 59% rename from allure-report/data/test-cases/21f08ae936e1de27.json rename to allure-report/data/test-cases/6bf2acd0a0db42e5.json index afaab650531..fd0da988e1b 100644 --- a/allure-report/data/test-cases/21f08ae936e1de27.json +++ b/allure-report/data/test-cases/6bf2acd0a0db42e5.json @@ -1 +1 @@ -{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732428195838,"stop":1732428195839,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195838,"stop":1732428195838,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9557455e27a468ef","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"d9dd09ce35083af7","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b1c2f2381b1441f6","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"21f08ae936e1de27.json","parameterValues":[]} \ No newline at end of file +{"uid":"6bf2acd0a0db42e5","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732428195838,"stop":1732428195839,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195838,"stop":1732428195838,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"6bf2acd0a0db42e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6309fbba516976ae.json b/allure-report/data/test-cases/6c457590f118b700.json similarity index 69% rename from allure-report/data/test-cases/6309fbba516976ae.json rename to allure-report/data/test-cases/6c457590f118b700.json index 89bce92bc71..f1c44455ed1 100644 --- a/allure-report/data/test-cases/6309fbba516976ae.json +++ b/allure-report/data/test-cases/6c457590f118b700.json @@ -1 +1 @@ -{"uid":"6309fbba516976ae","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"724f9727a6725fde","name":"stdout","source":"724f9727a6725fde.txt","type":"text/plain","size":53}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6309fbba516976ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"6c457590f118b700","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85d8941907447826","name":"stdout","source":"85d8941907447826.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6c457590f118b700.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c0b01ada3a3f14e.json b/allure-report/data/test-cases/6c94325f55b8b56c.json similarity index 56% rename from allure-report/data/test-cases/5c0b01ada3a3f14e.json rename to allure-report/data/test-cases/6c94325f55b8b56c.json index 4f7187543c4..ad6c6705e4f 100644 --- a/allure-report/data/test-cases/5c0b01ada3a3f14e.json +++ b/allure-report/data/test-cases/6c94325f55b8b56c.json @@ -1 +1 @@ -{"uid":"5c0b01ada3a3f14e","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":1732428196430,"stop":1732428196430,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ac6d40036941792","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"1bef76bb610cc3bd","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d5a389260d41a743","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"5c0b01ada3a3f14e.json","parameterValues":[]} \ No newline at end of file +{"uid":"6c94325f55b8b56c","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":1732428196430,"stop":1732428196430,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"6c94325f55b8b56c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b01c60cc4e07480b.json b/allure-report/data/test-cases/6d2f9028315647c1.json similarity index 72% rename from allure-report/data/test-cases/b01c60cc4e07480b.json rename to allure-report/data/test-cases/6d2f9028315647c1.json index f0ecdee494b..33a0f4dfa85 100644 --- a/allure-report/data/test-cases/b01c60cc4e07480b.json +++ b/allure-report/data/test-cases/6d2f9028315647c1.json @@ -1 +1 @@ -{"uid":"b01c60cc4e07480b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"b01c60cc4e07480b.json","parameterValues":[]} \ No newline at end of file +{"uid":"6d2f9028315647c1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6d2f9028315647c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d7f7d9659ba7dd5.json b/allure-report/data/test-cases/6d7f7d9659ba7dd5.json deleted file mode 100644 index 51da587bd98..00000000000 --- a/allure-report/data/test-cases/6d7f7d9659ba7dd5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6d7f7d9659ba7dd5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6d7f7d9659ba7dd5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91c9b008755c7351.json b/allure-report/data/test-cases/6d9aec252d158762.json similarity index 70% rename from allure-report/data/test-cases/91c9b008755c7351.json rename to allure-report/data/test-cases/6d9aec252d158762.json index 093a9481fe8..c7f5acc97c7 100644 --- a/allure-report/data/test-cases/91c9b008755c7351.json +++ b/allure-report/data/test-cases/6d9aec252d158762.json @@ -1 +1 @@ -{"uid":"91c9b008755c7351","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732428194039,"stop":1732428194039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1732428194042,"stop":1732428194042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5319ceacad5a43bc","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"f7656bca6b03073b","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"91c9b008755c7351.json","parameterValues":[]} \ No newline at end of file +{"uid":"6d9aec252d158762","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6d9aec252d158762.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6de398181d9095ee.json b/allure-report/data/test-cases/6de398181d9095ee.json new file mode 100644 index 00000000000..10a34ba9432 --- /dev/null +++ b/allure-report/data/test-cases/6de398181d9095ee.json @@ -0,0 +1 @@ +{"uid":"6de398181d9095ee","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d705772211817a","name":"stdout","source":"5d705772211817a.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6de398181d9095ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6dfafb882d7cc41f.json b/allure-report/data/test-cases/6dfafb882d7cc41f.json new file mode 100644 index 00000000000..5781455fdd0 --- /dev/null +++ b/allure-report/data/test-cases/6dfafb882d7cc41f.json @@ -0,0 +1 @@ +{"uid":"6dfafb882d7cc41f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cfac23a989211fca","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0}},{"uid":"2180a5f5e79006a1","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"56e6898f814c9a2c","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"6dfafb882d7cc41f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73f30fbb9798a5d5.json b/allure-report/data/test-cases/6e173d8e5ff615be.json similarity index 56% rename from allure-report/data/test-cases/73f30fbb9798a5d5.json rename to allure-report/data/test-cases/6e173d8e5ff615be.json index 4415b957292..8c0cc96950b 100644 --- a/allure-report/data/test-cases/73f30fbb9798a5d5.json +++ b/allure-report/data/test-cases/6e173d8e5ff615be.json @@ -1 +1 @@ -{"uid":"73f30fbb9798a5d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732428196208,"stop":1732428196208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"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.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"660684096c18d05d","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"b3c5df850665402e","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d1a80d9f422182d","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"73f30fbb9798a5d5.json","parameterValues":[]} \ No newline at end of file +{"uid":"6e173d8e5ff615be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732428196208,"stop":1732428196208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"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.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6e173d8e5ff615be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e3ce129a9f8f588.json b/allure-report/data/test-cases/6e3ce129a9f8f588.json deleted file mode 100644 index bc6fcc72643..00000000000 --- a/allure-report/data/test-cases/6e3ce129a9f8f588.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6e3ce129a9f8f588","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"23dd45ddb469c4aa","name":"stdout","source":"23dd45ddb469c4aa.txt","type":"text/plain","size":37}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6e3ce129a9f8f588.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4258a66cc0cec29.json b/allure-report/data/test-cases/6e4923e8771eebeb.json similarity index 77% rename from allure-report/data/test-cases/d4258a66cc0cec29.json rename to allure-report/data/test-cases/6e4923e8771eebeb.json index 784521313a2..114898b5110 100644 --- a/allure-report/data/test-cases/d4258a66cc0cec29.json +++ b/allure-report/data/test-cases/6e4923e8771eebeb.json @@ -1 +1 @@ -{"uid":"d4258a66cc0cec29","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f7ee012a96ef9b6","name":"stdout","source":"1f7ee012a96ef9b6.txt","type":"text/plain","size":793}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"d4258a66cc0cec29.json","parameterValues":[]} \ No newline at end of file +{"uid":"6e4923e8771eebeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb0a5c86d6124176","name":"stdout","source":"fb0a5c86d6124176.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"6e4923e8771eebeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e91e404eb8e624.json b/allure-report/data/test-cases/6e91e404eb8e624.json new file mode 100644 index 00000000000..b6973a1c21e --- /dev/null +++ b/allure-report/data/test-cases/6e91e404eb8e624.json @@ -0,0 +1 @@ +{"uid":"6e91e404eb8e624","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6e91e404eb8e624.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ef44675aea47099.json b/allure-report/data/test-cases/6ef44675aea47099.json new file mode 100644 index 00000000000..eec38045961 --- /dev/null +++ b/allure-report/data/test-cases/6ef44675aea47099.json @@ -0,0 +1 @@ +{"uid":"6ef44675aea47099","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732764219113,"stop":1732764219113,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6aba04a431b7fd70","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194439,"stop":1732428194439,"duration":0}},{"uid":"6566372edd2dc54c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"c264906d7bf954d5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"6ef44675aea47099.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e46c970e553e301.json b/allure-report/data/test-cases/6f37cee94115c50c.json similarity index 64% rename from allure-report/data/test-cases/2e46c970e553e301.json rename to allure-report/data/test-cases/6f37cee94115c50c.json index 4c9a033a140..755e43d221e 100644 --- a/allure-report/data/test-cases/2e46c970e553e301.json +++ b/allure-report/data/test-cases/6f37cee94115c50c.json @@ -1 +1 @@ -{"uid":"2e46c970e553e301","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":1732428195651,"stop":1732428195651,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195652,"stop":1732428195652,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition II"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"64c2df72a296b62e","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"e4f24bca4471f754","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9e5b993187ac8b27","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"2e46c970e553e301.json","parameterValues":[]} \ No newline at end of file +{"uid":"6f37cee94115c50c","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":1732428195651,"stop":1732428195651,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195652,"stop":1732428195652,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition II"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"6f37cee94115c50c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6feb6674f3a0e85e.json b/allure-report/data/test-cases/6f9dcb0c09ae9f13.json similarity index 71% rename from allure-report/data/test-cases/6feb6674f3a0e85e.json rename to allure-report/data/test-cases/6f9dcb0c09ae9f13.json index 362f7a51a61..4c867719053 100644 --- a/allure-report/data/test-cases/6feb6674f3a0e85e.json +++ b/allure-report/data/test-cases/6f9dcb0c09ae9f13.json @@ -1 +1 @@ -{"uid":"6feb6674f3a0e85e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62418f4fe99b4a3a","name":"stdout","source":"62418f4fe99b4a3a.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6feb6674f3a0e85e.json","parameterValues":[]} \ No newline at end of file +{"uid":"6f9dcb0c09ae9f13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d7d20a8fa5049ef","name":"stdout","source":"4d7d20a8fa5049ef.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6f9dcb0c09ae9f13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ae9a46b9a1e7c40.json b/allure-report/data/test-cases/70008c90c6552144.json similarity index 62% rename from allure-report/data/test-cases/3ae9a46b9a1e7c40.json rename to allure-report/data/test-cases/70008c90c6552144.json index 32153eb0187..0c3d008fb5a 100644 --- a/allure-report/data/test-cases/3ae9a46b9a1e7c40.json +++ b/allure-report/data/test-cases/70008c90c6552144.json @@ -1 +1 @@ -{"uid":"3ae9a46b9a1e7c40","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":1732428195641,"stop":1732428195641,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195643,"stop":1732428195643,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3c17e0f5363e3016","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"d42759854937ade9","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"98200e3d5ae32ca","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3ae9a46b9a1e7c40.json","parameterValues":[]} \ No newline at end of file +{"uid":"70008c90c6552144","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":1732428195641,"stop":1732428195641,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195643,"stop":1732428195643,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"70008c90c6552144.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/702c9f7aebde64af.json b/allure-report/data/test-cases/702c9f7aebde64af.json deleted file mode 100644 index a91ae1a5e46..00000000000 --- a/allure-report/data/test-cases/702c9f7aebde64af.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"702c9f7aebde64af","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bfd7eb06540fa1b6","name":"stdout","source":"bfd7eb06540fa1b6.txt","type":"text/plain","size":170}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"702c9f7aebde64af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7131237025069abe.json b/allure-report/data/test-cases/706d67120123862f.json similarity index 92% rename from allure-report/data/test-cases/7131237025069abe.json rename to allure-report/data/test-cases/706d67120123862f.json index a4d4c0118d1..fe44e27ac39 100644 --- a/allure-report/data/test-cases/7131237025069abe.json +++ b/allure-report/data/test-cases/706d67120123862f.json @@ -1 +1 @@ -{"uid":"7131237025069abe","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":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":"7131237025069abe.json","parameterValues":[]} \ No newline at end of file +{"uid":"706d67120123862f","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":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":"706d67120123862f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdddf7ddac3322c3.json b/allure-report/data/test-cases/707862d33841a8ff.json similarity index 68% rename from allure-report/data/test-cases/bdddf7ddac3322c3.json rename to allure-report/data/test-cases/707862d33841a8ff.json index 2bd6cd8094c..b13873fa146 100644 --- a/allure-report/data/test-cases/bdddf7ddac3322c3.json +++ b/allure-report/data/test-cases/707862d33841a8ff.json @@ -1 +1 @@ -{"uid":"bdddf7ddac3322c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bdddf7ddac3322c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"707862d33841a8ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"707862d33841a8ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1938e37bf1525466.json b/allure-report/data/test-cases/70c180d1e9f40ddc.json similarity index 52% rename from allure-report/data/test-cases/1938e37bf1525466.json rename to allure-report/data/test-cases/70c180d1e9f40ddc.json index 50eaaf2c106..0b8bd1d5c62 100644 --- a/allure-report/data/test-cases/1938e37bf1525466.json +++ b/allure-report/data/test-cases/70c180d1e9f40ddc.json @@ -1 +1 @@ -{"uid":"1938e37bf1525466","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e123d763e6ea7e5","name":"stdout","source":"1e123d763e6ea7e5.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":12,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"1938e37bf1525466.json","parameterValues":[]} \ No newline at end of file +{"uid":"70c180d1e9f40ddc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b36d71052a1b866","name":"stdout","source":"4b36d71052a1b866.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"70c180d1e9f40ddc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/649728966aa92b06.json b/allure-report/data/test-cases/710a5d14f0382e2f.json similarity index 60% rename from allure-report/data/test-cases/649728966aa92b06.json rename to allure-report/data/test-cases/710a5d14f0382e2f.json index 78d1eb82c6b..e7c533aa60b 100644 --- a/allure-report/data/test-cases/649728966aa92b06.json +++ b/allure-report/data/test-cases/710a5d14f0382e2f.json @@ -1 +1 @@ -{"uid":"649728966aa92b06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732428195889,"stop":1732428195889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732428195891,"stop":1732428195891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Maximum Multiple"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b613507776a0871","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"64cdb3b918aa694e","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b96004f0b179053d","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"649728966aa92b06.json","parameterValues":[]} \ No newline at end of file +{"uid":"710a5d14f0382e2f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732428195889,"stop":1732428195889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732428195891,"stop":1732428195891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Maximum Multiple"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"710a5d14f0382e2f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56da494ae1701253.json b/allure-report/data/test-cases/711b3df283530a5b.json similarity index 54% rename from allure-report/data/test-cases/56da494ae1701253.json rename to allure-report/data/test-cases/711b3df283530a5b.json index 05312c6caa1..fcee08e062c 100644 --- a/allure-report/data/test-cases/56da494ae1701253.json +++ b/allure-report/data/test-cases/711b3df283530a5b.json @@ -1 +1 @@ -{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732428194708,"stop":1732428194708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1732428195438,"stop":1732428195438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b1f2cc8e1be032d","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"6113acbf67a69117","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"56da494ae1701253.json","parameterValues":[]} \ No newline at end of file +{"uid":"711b3df283530a5b","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"711b3df283530a5b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90184d6eca761182.json b/allure-report/data/test-cases/71a05925458c8736.json similarity index 71% rename from allure-report/data/test-cases/90184d6eca761182.json rename to allure-report/data/test-cases/71a05925458c8736.json index ef71cfeda3d..7ac627e17a9 100644 --- a/allure-report/data/test-cases/90184d6eca761182.json +++ b/allure-report/data/test-cases/71a05925458c8736.json @@ -1 +1 @@ -{"uid":"90184d6eca761182","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a73f85a8fac351b8","name":"stdout","source":"a73f85a8fac351b8.txt","type":"text/plain","size":59}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"90184d6eca761182.json","parameterValues":[]} \ No newline at end of file +{"uid":"71a05925458c8736","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e707854c25108dd3","name":"stdout","source":"e707854c25108dd3.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"71a05925458c8736.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5cd4eeb8a4b79d6b.json b/allure-report/data/test-cases/71a87e59b6648413.json similarity index 64% rename from allure-report/data/test-cases/5cd4eeb8a4b79d6b.json rename to allure-report/data/test-cases/71a87e59b6648413.json index c86e92e065d..521df9d6d4a 100644 --- a/allure-report/data/test-cases/5cd4eeb8a4b79d6b.json +++ b/allure-report/data/test-cases/71a87e59b6648413.json @@ -1 +1 @@ -{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"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":"

Codewars badge:

Test Description:

The function should remove all agents that are outside of the city boundaries.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8dcfddf689f44d1d","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"b080152571ac4adf","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5cd4eeb8a4b79d6b.json","parameterValues":[]} \ No newline at end of file +{"uid":"71a87e59b6648413","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"71a87e59b6648413.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/167f34fe4187417a.json b/allure-report/data/test-cases/71dc0d8169aaad6f.json similarity index 52% rename from allure-report/data/test-cases/167f34fe4187417a.json rename to allure-report/data/test-cases/71dc0d8169aaad6f.json index 128657f34ad..53733da285b 100644 --- a/allure-report/data/test-cases/167f34fe4187417a.json +++ b/allure-report/data/test-cases/71dc0d8169aaad6f.json @@ -1 +1 @@ -{"uid":"167f34fe4187417a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e3dd9c2915855555","name":"stdout","source":"e3dd9c2915855555.txt","type":"text/plain","size":120}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"167f34fe4187417a.json","parameterValues":[]} \ No newline at end of file +{"uid":"71dc0d8169aaad6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78bed3c0bc3ed4a","name":"stdout","source":"78bed3c0bc3ed4a.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"71dc0d8169aaad6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54bb63fb3736b8ae.json b/allure-report/data/test-cases/71f8f5b376b254cf.json similarity index 60% rename from allure-report/data/test-cases/54bb63fb3736b8ae.json rename to allure-report/data/test-cases/71f8f5b376b254cf.json index 5731850b6ea..942f2ca6873 100644 --- a/allure-report/data/test-cases/54bb63fb3736b8ae.json +++ b/allure-report/data/test-cases/71f8f5b376b254cf.json @@ -1 +1 @@ -{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"c8c44a676a12b5c6","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"e427c3eece0f34c3","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"54bb63fb3736b8ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"71f8f5b376b254cf","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"71f8f5b376b254cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/720b65d3a7d8ec34.json b/allure-report/data/test-cases/720b65d3a7d8ec34.json new file mode 100644 index 00000000000..e231a11ad19 --- /dev/null +++ b/allure-report/data/test-cases/720b65d3a7d8ec34.json @@ -0,0 +1 @@ +{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732764218877,"stop":1732764218877,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732764218878,"stop":1732764218878,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c948f5411c74f4a1","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0}},{"uid":"8bf0e4ddc17f51c8","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"f253bf40e74f545d","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"720b65d3a7d8ec34.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/72c86ca38c98258.json b/allure-report/data/test-cases/72c86ca38c98258.json new file mode 100644 index 00000000000..ecd6cbb505c --- /dev/null +++ b/allure-report/data/test-cases/72c86ca38c98258.json @@ -0,0 +1 @@ +{"uid":"72c86ca38c98258","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3fb645b301593c3","name":"stdout","source":"3fb645b301593c3.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"72c86ca38c98258.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9585be0acd74f7c1.json b/allure-report/data/test-cases/7312d30334dcfc0d.json similarity index 76% rename from allure-report/data/test-cases/9585be0acd74f7c1.json rename to allure-report/data/test-cases/7312d30334dcfc0d.json index 1c05cd75777..c277479c3bd 100644 --- a/allure-report/data/test-cases/9585be0acd74f7c1.json +++ b/allure-report/data/test-cases/7312d30334dcfc0d.json @@ -1 +1 @@ -{"uid":"9585be0acd74f7c1","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"de83cab412c71bc2","name":"stdout","source":"de83cab412c71bc2.txt","type":"text/plain","size":276}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9585be0acd74f7c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"7312d30334dcfc0d","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50fb258de88c9004","name":"stdout","source":"50fb258de88c9004.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7312d30334dcfc0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/732b9dd805d734b8.json b/allure-report/data/test-cases/732b9dd805d734b8.json new file mode 100644 index 00000000000..5d52506685b --- /dev/null +++ b/allure-report/data/test-cases/732b9dd805d734b8.json @@ -0,0 +1 @@ +{"uid":"732b9dd805d734b8","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732764220449,"stop":1732764220449,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5d01c4fe30779a0","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1}},{"uid":"e5a7c04cf0e6c2f9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"732b9dd805d734b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7331de8e7202ad57.json b/allure-report/data/test-cases/7331de8e7202ad57.json new file mode 100644 index 00000000000..6fbbdbb0ba7 --- /dev/null +++ b/allure-report/data/test-cases/7331de8e7202ad57.json @@ -0,0 +1 @@ +{"uid":"7331de8e7202ad57","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732764218697,"stop":1732764218697,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4b22647a9cdd2bef","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60}},{"uid":"ce75fbdf4ccd46b8","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"30ac3ffad3316fea","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"7331de8e7202ad57.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e186c7a758de768a.json b/allure-report/data/test-cases/73622414b649e45a.json similarity index 72% rename from allure-report/data/test-cases/e186c7a758de768a.json rename to allure-report/data/test-cases/73622414b649e45a.json index 23fd5a42a6b..b116c58d56e 100644 --- a/allure-report/data/test-cases/e186c7a758de768a.json +++ b/allure-report/data/test-cases/73622414b649e45a.json @@ -1 +1 @@ -{"uid":"e186c7a758de768a","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"73d36ba66285cf8e","name":"stdout","source":"73d36ba66285cf8e.txt","type":"text/plain","size":428}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e186c7a758de768a.json","parameterValues":[]} \ No newline at end of file +{"uid":"73622414b649e45a","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bc75ae4e4dd30a2d","name":"stdout","source":"bc75ae4e4dd30a2d.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"73622414b649e45a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7369f3dde824b045.json b/allure-report/data/test-cases/7369f3dde824b045.json new file mode 100644 index 00000000000..dc98b1f762f --- /dev/null +++ b/allure-report/data/test-cases/7369f3dde824b045.json @@ -0,0 +1 @@ +{"uid":"7369f3dde824b045","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57e00ad1037160b6","name":"stdout","source":"57e00ad1037160b6.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"7369f3dde824b045.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f12b5c3f29ddd74a.json b/allure-report/data/test-cases/740e72b931a3ed2d.json similarity index 94% rename from allure-report/data/test-cases/f12b5c3f29ddd74a.json rename to allure-report/data/test-cases/740e72b931a3ed2d.json index 2b7ee99d028..1bd42c33455 100644 --- a/allure-report/data/test-cases/f12b5c3f29ddd74a.json +++ b/allure-report/data/test-cases/740e72b931a3ed2d.json @@ -1 +1 @@ -{"uid":"f12b5c3f29ddd74a","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":"f12b5c3f29ddd74a.json","parameterValues":[]} \ No newline at end of file +{"uid":"740e72b931a3ed2d","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":"740e72b931a3ed2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1cf942af51db20a3.json b/allure-report/data/test-cases/741a61f0f9cb4c37.json similarity index 75% rename from allure-report/data/test-cases/1cf942af51db20a3.json rename to allure-report/data/test-cases/741a61f0f9cb4c37.json index 5fed3e42d85..096a239b7ef 100644 --- a/allure-report/data/test-cases/1cf942af51db20a3.json +++ b/allure-report/data/test-cases/741a61f0f9cb4c37.json @@ -1 +1 @@ -{"uid":"1cf942af51db20a3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ab72754d2ac3d657","name":"stdout","source":"ab72754d2ac3d657.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"1cf942af51db20a3.json","parameterValues":[]} \ No newline at end of file +{"uid":"741a61f0f9cb4c37","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"250afdca61317e51","name":"stdout","source":"250afdca61317e51.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"741a61f0f9cb4c37.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89c602359c6f109b.json b/allure-report/data/test-cases/747c525d425e0efa.json similarity index 72% rename from allure-report/data/test-cases/89c602359c6f109b.json rename to allure-report/data/test-cases/747c525d425e0efa.json index 8212df3194e..cc0f1209582 100644 --- a/allure-report/data/test-cases/89c602359c6f109b.json +++ b/allure-report/data/test-cases/747c525d425e0efa.json @@ -1 +1 @@ -{"uid":"89c602359c6f109b","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f24a53f1fea24b32","name":"stdout","source":"f24a53f1fea24b32.txt","type":"text/plain","size":601}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"89c602359c6f109b.json","parameterValues":[]} \ No newline at end of file +{"uid":"747c525d425e0efa","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2857c06d429f0757","name":"stdout","source":"2857c06d429f0757.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"747c525d425e0efa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d04b40a520c97bdd.json b/allure-report/data/test-cases/749bcfd3f56dec1a.json similarity index 56% rename from allure-report/data/test-cases/d04b40a520c97bdd.json rename to allure-report/data/test-cases/749bcfd3f56dec1a.json index a96cdc4ebd9..1007c47a518 100644 --- a/allure-report/data/test-cases/d04b40a520c97bdd.json +++ b/allure-report/data/test-cases/749bcfd3f56dec1a.json @@ -1 +1 @@ -{"uid":"d04b40a520c97bdd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732428196436,"stop":1732428196436,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e1e999ab6569b87","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"3ee1470ea7ce07a6","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"92297f3cbdd8ad78","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"d04b40a520c97bdd.json","parameterValues":[]} \ No newline at end of file +{"uid":"749bcfd3f56dec1a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732428196436,"stop":1732428196436,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"749bcfd3f56dec1a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74f816020df3559.json b/allure-report/data/test-cases/74f816020df3559.json new file mode 100644 index 00000000000..17d850f4a9e --- /dev/null +++ b/allure-report/data/test-cases/74f816020df3559.json @@ -0,0 +1 @@ +{"uid":"74f816020df3559","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":1732428195926,"stop":1732428195926,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"74f816020df3559.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e40b6e0fafdfb7a4.json b/allure-report/data/test-cases/75040d42480a95e8.json similarity index 78% rename from allure-report/data/test-cases/e40b6e0fafdfb7a4.json rename to allure-report/data/test-cases/75040d42480a95e8.json index ed23663b25c..8ac90ab9027 100644 --- a/allure-report/data/test-cases/e40b6e0fafdfb7a4.json +++ b/allure-report/data/test-cases/75040d42480a95e8.json @@ -1 +1 @@ -{"uid":"e40b6e0fafdfb7a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e448201e6af0cd65","name":"stdout","source":"e448201e6af0cd65.txt","type":"text/plain","size":210}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"e40b6e0fafdfb7a4.json","parameterValues":[]} \ No newline at end of file +{"uid":"75040d42480a95e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1889e3b457f9320a","name":"stdout","source":"1889e3b457f9320a.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"75040d42480a95e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/751027d0ac0cc021.json b/allure-report/data/test-cases/751027d0ac0cc021.json deleted file mode 100644 index 12f9cc12237..00000000000 --- a/allure-report/data/test-cases/751027d0ac0cc021.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"751027d0ac0cc021","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":"

Codewars badge:

Test Description:

Advanced Warrior class assertions

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":12,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1938e37bf1525466","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"286a2c6d22a3ea0b","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"751027d0ac0cc021.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74c746ac3dc42135.json b/allure-report/data/test-cases/756610bb1a8856d4.json similarity index 66% rename from allure-report/data/test-cases/74c746ac3dc42135.json rename to allure-report/data/test-cases/756610bb1a8856d4.json index 60b22b72335..6be73e432c7 100644 --- a/allure-report/data/test-cases/74c746ac3dc42135.json +++ b/allure-report/data/test-cases/756610bb1a8856d4.json @@ -1 +1 @@ -{"uid":"74c746ac3dc42135","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c452ee18f96c325a","name":"stdout","source":"c452ee18f96c325a.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"74c746ac3dc42135.json","parameterValues":[]} \ No newline at end of file +{"uid":"756610bb1a8856d4","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9905895b50875943","name":"stdout","source":"9905895b50875943.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"756610bb1a8856d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c6c8c712bf1892f.json b/allure-report/data/test-cases/7567c87108e55931.json similarity index 55% rename from allure-report/data/test-cases/2c6c8c712bf1892f.json rename to allure-report/data/test-cases/7567c87108e55931.json index fb4408f2c99..de097564ac9 100644 --- a/allure-report/data/test-cases/2c6c8c712bf1892f.json +++ b/allure-report/data/test-cases/7567c87108e55931.json @@ -1 +1 @@ -{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string aba and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string moOse and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1732428195862,"stop":1732428195862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"428efcfcd43d2531","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"691701add6daaf89","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2c6c8c712bf1892f.json","parameterValues":[]} \ No newline at end of file +{"uid":"7567c87108e55931","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7567c87108e55931.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/345a3bae73357330.json b/allure-report/data/test-cases/75a0786e7098fd84.json similarity index 52% rename from allure-report/data/test-cases/345a3bae73357330.json rename to allure-report/data/test-cases/75a0786e7098fd84.json index 05e90f5b516..850570585dd 100644 --- a/allure-report/data/test-cases/345a3bae73357330.json +++ b/allure-report/data/test-cases/75a0786e7098fd84.json @@ -1 +1 @@ -{"uid":"345a3bae73357330","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":1732428196265,"stop":1732428196265,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1506cf302ecd21f1","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"38b436d46d6537ee","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c35da98b55fb5e6b","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"345a3bae73357330.json","parameterValues":[]} \ No newline at end of file +{"uid":"75a0786e7098fd84","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":1732428196265,"stop":1732428196265,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"75a0786e7098fd84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7612354cc3c699d.json b/allure-report/data/test-cases/7612354cc3c699d.json new file mode 100644 index 00000000000..aa9f5a519a5 --- /dev/null +++ b/allure-report/data/test-cases/7612354cc3c699d.json @@ -0,0 +1 @@ +{"uid":"7612354cc3c699d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60553188e91eeef0","name":"stdout","source":"60553188e91eeef0.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7612354cc3c699d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/764219a087e938f.json b/allure-report/data/test-cases/764219a087e938f.json new file mode 100644 index 00000000000..9bac35973dd --- /dev/null +++ b/allure-report/data/test-cases/764219a087e938f.json @@ -0,0 +1 @@ +{"uid":"764219a087e938f","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"764219a087e938f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b88f232b1f58c27.json b/allure-report/data/test-cases/765c2af6ca77e4e9.json similarity index 76% rename from allure-report/data/test-cases/5b88f232b1f58c27.json rename to allure-report/data/test-cases/765c2af6ca77e4e9.json index fd9a4aa39b9..a619044c3bb 100644 --- a/allure-report/data/test-cases/5b88f232b1f58c27.json +++ b/allure-report/data/test-cases/765c2af6ca77e4e9.json @@ -1 +1 @@ -{"uid":"5b88f232b1f58c27","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"56be0299a0ca1906","name":"stdout","source":"56be0299a0ca1906.txt","type":"text/plain","size":604}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b88f232b1f58c27.json","parameterValues":[]} \ No newline at end of file +{"uid":"765c2af6ca77e4e9","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b1cd53c85d21b130","name":"stdout","source":"b1cd53c85d21b130.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"765c2af6ca77e4e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d42759854937ade9.json b/allure-report/data/test-cases/76614b580d9bd7f8.json similarity index 76% rename from allure-report/data/test-cases/d42759854937ade9.json rename to allure-report/data/test-cases/76614b580d9bd7f8.json index 1ac93b4c860..752094c52a0 100644 --- a/allure-report/data/test-cases/d42759854937ade9.json +++ b/allure-report/data/test-cases/76614b580d9bd7f8.json @@ -1 +1 @@ -{"uid":"d42759854937ade9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bf8644536e05f3d6","name":"stdout","source":"bf8644536e05f3d6.txt","type":"text/plain","size":12051}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d42759854937ade9.json","parameterValues":[]} \ No newline at end of file +{"uid":"76614b580d9bd7f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a2e64e7212768ad","name":"stdout","source":"2a2e64e7212768ad.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"76614b580d9bd7f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7656bca6b03073b.json b/allure-report/data/test-cases/7677af29e8a1671e.json similarity index 78% rename from allure-report/data/test-cases/f7656bca6b03073b.json rename to allure-report/data/test-cases/7677af29e8a1671e.json index 4fd4d24167d..2d974617b33 100644 --- a/allure-report/data/test-cases/f7656bca6b03073b.json +++ b/allure-report/data/test-cases/7677af29e8a1671e.json @@ -1 +1 @@ -{"uid":"f7656bca6b03073b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d58a8a8ac8fa12e","name":"stdout","source":"2d58a8a8ac8fa12e.txt","type":"text/plain","size":949}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"f7656bca6b03073b.json","parameterValues":[]} \ No newline at end of file +{"uid":"7677af29e8a1671e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3e106a35f51e50cd","name":"stdout","source":"3e106a35f51e50cd.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7677af29e8a1671e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b5d1a28c2e7859f.json b/allure-report/data/test-cases/767acc864b347295.json similarity index 94% rename from allure-report/data/test-cases/2b5d1a28c2e7859f.json rename to allure-report/data/test-cases/767acc864b347295.json index f7479b18fb2..b3e8c346c0c 100644 --- a/allure-report/data/test-cases/2b5d1a28c2e7859f.json +++ b/allure-report/data/test-cases/767acc864b347295.json @@ -1 +1 @@ -{"uid":"2b5d1a28c2e7859f","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":"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":"2b5d1a28c2e7859f.json","parameterValues":[]} \ No newline at end of file +{"uid":"767acc864b347295","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":"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":"767acc864b347295.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c3a8d947ad77b59.json b/allure-report/data/test-cases/76b07a3b0b784bd3.json similarity index 54% rename from allure-report/data/test-cases/3c3a8d947ad77b59.json rename to allure-report/data/test-cases/76b07a3b0b784bd3.json index 1e13bb84dbe..09b8b55c1b6 100644 --- a/allure-report/data/test-cases/3c3a8d947ad77b59.json +++ b/allure-report/data/test-cases/76b07a3b0b784bd3.json @@ -1 +1 @@ -{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732428196069,"stop":1732428196069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fbd7acf611333772","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"b01c60cc4e07480b","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"14d00f76e0b4f9e4","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"3c3a8d947ad77b59.json","parameterValues":[]} \ No newline at end of file +{"uid":"76b07a3b0b784bd3","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732428196069,"stop":1732428196069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"76b07a3b0b784bd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/772c9d6fdd465a8a.json b/allure-report/data/test-cases/772c9d6fdd465a8a.json deleted file mode 100644 index 391f8b172f9..00000000000 --- a/allure-report/data/test-cases/772c9d6fdd465a8a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"772c9d6fdd465a8a","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"92cddf6ef1a2b768","name":"stdout","source":"92cddf6ef1a2b768.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"772c9d6fdd465a8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/777ba0c823c5a82a.json b/allure-report/data/test-cases/777ba0c823c5a82a.json new file mode 100644 index 00000000000..aa4fe53424e --- /dev/null +++ b/allure-report/data/test-cases/777ba0c823c5a82a.json @@ -0,0 +1 @@ +{"uid":"777ba0c823c5a82a","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732428194170,"stop":1732428194170,"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', 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":"777ba0c823c5a82a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d820d165ec4b4b72.json b/allure-report/data/test-cases/77a9a3d99a741f47.json similarity index 55% rename from allure-report/data/test-cases/d820d165ec4b4b72.json rename to allure-report/data/test-cases/77a9a3d99a741f47.json index d80b31ab503..9142bbb2e1a 100644 --- a/allure-report/data/test-cases/d820d165ec4b4b72.json +++ b/allure-report/data/test-cases/77a9a3d99a741f47.json @@ -1 +1 @@ -{"uid":"d820d165ec4b4b72","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Test Potion class that mix between 2 RGB colors.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732428195589,"stop":1732428195589,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1732428195591,"stop":1732428195591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"47068bee5b06a234","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"95a29a9545c416cd","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"d820d165ec4b4b72.json","parameterValues":[]} \ No newline at end of file +{"uid":"77a9a3d99a741f47","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"77a9a3d99a741f47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77ce7ba6af0b177a.json b/allure-report/data/test-cases/77ce7ba6af0b177a.json new file mode 100644 index 00000000000..7117bfa23fb --- /dev/null +++ b/allure-report/data/test-cases/77ce7ba6af0b177a.json @@ -0,0 +1 @@ +{"uid":"77ce7ba6af0b177a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732764221279,"stop":1732764221279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97e1e8aa5714e13a","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1}},{"uid":"756610bb1a8856d4","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"20569c47774cf3c7","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"77ce7ba6af0b177a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/783d8a205b731823.json b/allure-report/data/test-cases/783d8a205b731823.json new file mode 100644 index 00000000000..e42139b7eff --- /dev/null +++ b/allure-report/data/test-cases/783d8a205b731823.json @@ -0,0 +1 @@ +{"uid":"783d8a205b731823","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":1732764220176,"stop":1732764220176,"duration":0},"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5c0380ec075dfe06","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0}},{"uid":"7f05453c14dc1c4a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"a2f70229e4c52322","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"783d8a205b731823.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78450b76b8629fe6.json b/allure-report/data/test-cases/78450b76b8629fe6.json new file mode 100644 index 00000000000..f478b9d710d --- /dev/null +++ b/allure-report/data/test-cases/78450b76b8629fe6.json @@ -0,0 +1 @@ +{"uid":"78450b76b8629fe6","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15093916dbf3d716","name":"stdout","source":"15093916dbf3d716.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"78450b76b8629fe6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47068bee5b06a234.json b/allure-report/data/test-cases/79e5a850abe86297.json similarity index 71% rename from allure-report/data/test-cases/47068bee5b06a234.json rename to allure-report/data/test-cases/79e5a850abe86297.json index e8f3ee7457f..d314a07257b 100644 --- a/allure-report/data/test-cases/47068bee5b06a234.json +++ b/allure-report/data/test-cases/79e5a850abe86297.json @@ -1 +1 @@ -{"uid":"47068bee5b06a234","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"47068bee5b06a234.json","parameterValues":[]} \ No newline at end of file +{"uid":"79e5a850abe86297","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"79e5a850abe86297.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/332b728d7cfdedcf.json b/allure-report/data/test-cases/7b584cbfaa9e2f14.json similarity index 60% rename from allure-report/data/test-cases/332b728d7cfdedcf.json rename to allure-report/data/test-cases/7b584cbfaa9e2f14.json index f38026afdeb..9527094736a 100644 --- a/allure-report/data/test-cases/332b728d7cfdedcf.json +++ b/allure-report/data/test-cases/7b584cbfaa9e2f14.json @@ -1 +1 @@ -{"uid":"332b728d7cfdedcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d43641784540be20","name":"stdout","source":"d43641784540be20.txt","type":"text/plain","size":129}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"332b728d7cfdedcf.json","parameterValues":[]} \ No newline at end of file +{"uid":"7b584cbfaa9e2f14","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8fe17348ea95e36a","name":"stdout","source":"8fe17348ea95e36a.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7b584cbfaa9e2f14.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7be232a1c65ba711.json b/allure-report/data/test-cases/7be232a1c65ba711.json deleted file mode 100644 index 1bc50b34cb8..00000000000 --- a/allure-report/data/test-cases/7be232a1c65ba711.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7be232a1c65ba711","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"63652035df5cd6e2","name":"stdout","source":"63652035df5cd6e2.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7be232a1c65ba711.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7c6af0e0a129f035.json b/allure-report/data/test-cases/7c6af0e0a129f035.json new file mode 100644 index 00000000000..7c79ab551ab --- /dev/null +++ b/allure-report/data/test-cases/7c6af0e0a129f035.json @@ -0,0 +1 @@ +{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ece4d55c6bd3b35","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2}},{"uid":"bdcd06f2ac6e82c9","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"3b2be2c8b8f3d0bb","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"7c6af0e0a129f035.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/518cb319be0d6f5c.json b/allure-report/data/test-cases/7d3b7c7449825e20.json similarity index 61% rename from allure-report/data/test-cases/518cb319be0d6f5c.json rename to allure-report/data/test-cases/7d3b7c7449825e20.json index d94d565e5e1..ae5b49a969e 100644 --- a/allure-report/data/test-cases/518cb319be0d6f5c.json +++ b/allure-report/data/test-cases/7d3b7c7449825e20.json @@ -1 +1 @@ -{"uid":"518cb319be0d6f5c","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"839cae885131e395","name":"stdout","source":"839cae885131e395.txt","type":"text/plain","size":424}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"518cb319be0d6f5c.json","parameterValues":[]} \ No newline at end of file +{"uid":"7d3b7c7449825e20","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ed45fb968677e918","name":"stdout","source":"ed45fb968677e918.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7d3b7c7449825e20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7de68906bfa0f18.json b/allure-report/data/test-cases/7de68906bfa0f18.json new file mode 100644 index 00000000000..57eb13414ea --- /dev/null +++ b/allure-report/data/test-cases/7de68906bfa0f18.json @@ -0,0 +1 @@ +{"uid":"7de68906bfa0f18","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29aa0c598c1f2d04","name":"stdout","source":"29aa0c598c1f2d04.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7de68906bfa0f18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e066328cfed2428.json b/allure-report/data/test-cases/7e066328cfed2428.json new file mode 100644 index 00000000000..3f4050aa3c4 --- /dev/null +++ b/allure-report/data/test-cases/7e066328cfed2428.json @@ -0,0 +1 @@ +{"uid":"7e066328cfed2428","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":1732764220670,"stop":1732764220670,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d7a8665bbc3ca3a","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0}},{"uid":"fb64f9c33c11676a","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"c3faad8d02b815fd","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"7e066328cfed2428.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4849e99633e4676.json b/allure-report/data/test-cases/7e0fbf3b4505484b.json similarity index 62% rename from allure-report/data/test-cases/a4849e99633e4676.json rename to allure-report/data/test-cases/7e0fbf3b4505484b.json index 447309d2c27..3adcb8325eb 100644 --- a/allure-report/data/test-cases/a4849e99633e4676.json +++ b/allure-report/data/test-cases/7e0fbf3b4505484b.json @@ -1 +1 @@ -{"uid":"a4849e99633e4676","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1732428196232,"stop":1732428196232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a0d455d6bf21528b","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"c6f52d0b9e8ac3c5","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"a4849e99633e4676.json","parameterValues":[]} \ No newline at end of file +{"uid":"7e0fbf3b4505484b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7e0fbf3b4505484b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e357cecc68f801.json b/allure-report/data/test-cases/7e357cecc68f801.json deleted file mode 100644 index 1713cebdab0..00000000000 --- a/allure-report/data/test-cases/7e357cecc68f801.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7e357cecc68f801","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ac039f3bc7f748f","name":"stdout","source":"8ac039f3bc7f748f.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"7e357cecc68f801.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d936198953d58b58.json b/allure-report/data/test-cases/7e36f3895c7e5ba3.json similarity index 76% rename from allure-report/data/test-cases/d936198953d58b58.json rename to allure-report/data/test-cases/7e36f3895c7e5ba3.json index 37d38949974..7d925ba2495 100644 --- a/allure-report/data/test-cases/d936198953d58b58.json +++ b/allure-report/data/test-cases/7e36f3895c7e5ba3.json @@ -1 +1 @@ -{"uid":"d936198953d58b58","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"d936198953d58b58.json","parameterValues":[]} \ No newline at end of file +{"uid":"7e36f3895c7e5ba3","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7e36f3895c7e5ba3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e997a5018ff0710.json b/allure-report/data/test-cases/7e997a5018ff0710.json deleted file mode 100644 index d63d84c602d..00000000000 --- a/allure-report/data/test-cases/7e997a5018ff0710.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732428195517,"stop":1732428195517,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732428195520,"stop":1732428195520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ad8dd1da3b7d646d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"8c6df3dc2deaaefa","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d57f06aa2f911f40","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"7e997a5018ff0710.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ec3425d5267a222.json b/allure-report/data/test-cases/7ec3425d5267a222.json new file mode 100644 index 00000000000..fa53aca47f0 --- /dev/null +++ b/allure-report/data/test-cases/7ec3425d5267a222.json @@ -0,0 +1 @@ +{"uid":"7ec3425d5267a222","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e949b4a7c16c61","name":"stdout","source":"5e949b4a7c16c61.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7ec3425d5267a222.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/684d4d6fbb32213a.json b/allure-report/data/test-cases/7ed5e03fb846420f.json similarity index 64% rename from allure-report/data/test-cases/684d4d6fbb32213a.json rename to allure-report/data/test-cases/7ed5e03fb846420f.json index 583015da5e4..f05003e0332 100644 --- a/allure-report/data/test-cases/684d4d6fbb32213a.json +++ b/allure-report/data/test-cases/7ed5e03fb846420f.json @@ -1 +1 @@ -{"uid":"684d4d6fbb32213a","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62d969149cac19e2","name":"stdout","source":"62d969149cac19e2.txt","type":"text/plain","size":167}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"684d4d6fbb32213a.json","parameterValues":[]} \ No newline at end of file +{"uid":"7ed5e03fb846420f","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30e865fe73fa5b27","name":"stdout","source":"30e865fe73fa5b27.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7ed5e03fb846420f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98c161ccba9924bd.json b/allure-report/data/test-cases/7eedfccbd9267527.json similarity index 54% rename from allure-report/data/test-cases/98c161ccba9924bd.json rename to allure-report/data/test-cases/7eedfccbd9267527.json index 522f3b85237..ace99f4eb1a 100644 --- a/allure-report/data/test-cases/98c161ccba9924bd.json +++ b/allure-report/data/test-cases/7eedfccbd9267527.json @@ -1 +1 @@ -{"uid":"98c161ccba9924bd","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":1732428196385,"stop":1732428196385,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732428196386,"stop":1732428196386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GEOMETRY"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"ALGEBRA"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e1e8d12e75298b","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"f97aaf8957be0a89","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9525e56c1666fc0f","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"98c161ccba9924bd.json","parameterValues":[]} \ No newline at end of file +{"uid":"7eedfccbd9267527","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":1732428196385,"stop":1732428196385,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732428196386,"stop":1732428196386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GEOMETRY"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"ALGEBRA"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"7eedfccbd9267527.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b67b48d7bd01382a.json b/allure-report/data/test-cases/7f05453c14dc1c4a.json similarity index 69% rename from allure-report/data/test-cases/b67b48d7bd01382a.json rename to allure-report/data/test-cases/7f05453c14dc1c4a.json index d917a2be1f2..1d19610e091 100644 --- a/allure-report/data/test-cases/b67b48d7bd01382a.json +++ b/allure-report/data/test-cases/7f05453c14dc1c4a.json @@ -1 +1 @@ -{"uid":"b67b48d7bd01382a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9ef0f4c8246dad00","name":"stdout","source":"9ef0f4c8246dad00.txt","type":"text/plain","size":76}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b67b48d7bd01382a.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f05453c14dc1c4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b56e36dfb1d3c6b9","name":"stdout","source":"b56e36dfb1d3c6b9.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7f05453c14dc1c4a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26764a4bab46b2bf.json b/allure-report/data/test-cases/7f0995b9351caed2.json similarity index 52% rename from allure-report/data/test-cases/26764a4bab46b2bf.json rename to allure-report/data/test-cases/7f0995b9351caed2.json index 652bd5dabce..8e8946c7c07 100644 --- a/allure-report/data/test-cases/26764a4bab46b2bf.json +++ b/allure-report/data/test-cases/7f0995b9351caed2.json @@ -1 +1 @@ -{"uid":"26764a4bab46b2bf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7393a784e166457","name":"stdout","source":"e7393a784e166457.txt","type":"text/plain","size":1195}],"parameters":[],"hasContent":true,"stepsCount":16,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"26764a4bab46b2bf.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f0995b9351caed2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a3b3cc61f9d4e36a","name":"stdout","source":"a3b3cc61f9d4e36a.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7f0995b9351caed2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65cad3353d8c115b.json b/allure-report/data/test-cases/7f4f6ae800da8214.json similarity index 78% rename from allure-report/data/test-cases/65cad3353d8c115b.json rename to allure-report/data/test-cases/7f4f6ae800da8214.json index c4ce205ef56..5e832a7cb74 100644 --- a/allure-report/data/test-cases/65cad3353d8c115b.json +++ b/allure-report/data/test-cases/7f4f6ae800da8214.json @@ -1 +1 @@ -{"uid":"65cad3353d8c115b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f50d22d7c09cd383","name":"stdout","source":"f50d22d7c09cd383.txt","type":"text/plain","size":307}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"65cad3353d8c115b.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f4f6ae800da8214","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b010be274d24546e","name":"stdout","source":"b010be274d24546e.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"7f4f6ae800da8214.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f14a6ccebe34b08.json b/allure-report/data/test-cases/7fb0d954404a7411.json similarity index 67% rename from allure-report/data/test-cases/1f14a6ccebe34b08.json rename to allure-report/data/test-cases/7fb0d954404a7411.json index 997b31b9cd0..93922044138 100644 --- a/allure-report/data/test-cases/1f14a6ccebe34b08.json +++ b/allure-report/data/test-cases/7fb0d954404a7411.json @@ -1 +1 @@ -{"uid":"1f14a6ccebe34b08","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f27833c43953c1b1","name":"stdout","source":"f27833c43953c1b1.txt","type":"text/plain","size":253}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1f14a6ccebe34b08.json","parameterValues":[]} \ No newline at end of file +{"uid":"7fb0d954404a7411","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"657871840dfd173c","name":"stdout","source":"657871840dfd173c.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7fb0d954404a7411.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/801881710b06074.json b/allure-report/data/test-cases/801881710b06074.json new file mode 100644 index 00000000000..656a2ddf503 --- /dev/null +++ b/allure-report/data/test-cases/801881710b06074.json @@ -0,0 +1 @@ +{"uid":"801881710b06074","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"420f806ee93872a1","name":"stdout","source":"420f806ee93872a1.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"801881710b06074.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80a5eacfa2431348.json b/allure-report/data/test-cases/80a5eacfa2431348.json new file mode 100644 index 00000000000..ba5d455facc --- /dev/null +++ b/allure-report/data/test-cases/80a5eacfa2431348.json @@ -0,0 +1 @@ +{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should raise exception for invalid n (n < 0) values.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13c5e35ef3c791a0","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1}},{"uid":"44516baeffa03c9d","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"7e36f3895c7e5ba3","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"80a5eacfa2431348.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3c5df850665402e.json b/allure-report/data/test-cases/80ba443311cb72ff.json similarity index 67% rename from allure-report/data/test-cases/b3c5df850665402e.json rename to allure-report/data/test-cases/80ba443311cb72ff.json index 95f84332dc3..c133dc354c5 100644 --- a/allure-report/data/test-cases/b3c5df850665402e.json +++ b/allure-report/data/test-cases/80ba443311cb72ff.json @@ -1 +1 @@ -{"uid":"b3c5df850665402e","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6aaa7a7ffc396f31","name":"stdout","source":"6aaa7a7ffc396f31.txt","type":"text/plain","size":130}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b3c5df850665402e.json","parameterValues":[]} \ No newline at end of file +{"uid":"80ba443311cb72ff","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e084f22fa99f8e9d","name":"stdout","source":"e084f22fa99f8e9d.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"80ba443311cb72ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be8f9e1d393606ac.json b/allure-report/data/test-cases/80d57c86b12a37c4.json similarity index 52% rename from allure-report/data/test-cases/be8f9e1d393606ac.json rename to allure-report/data/test-cases/80d57c86b12a37c4.json index 8a34f704155..e001e7caf01 100644 --- a/allure-report/data/test-cases/be8f9e1d393606ac.json +++ b/allure-report/data/test-cases/80d57c86b12a37c4.json @@ -1 +1 @@ -{"uid":"be8f9e1d393606ac","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":1732428196270,"stop":1732428196270,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4dc4de0a74fe7f66","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"4b58bd62b05a8814","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"64a44b1c9018ad85","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"be8f9e1d393606ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"80d57c86b12a37c4","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":1732428196270,"stop":1732428196270,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"80d57c86b12a37c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80f314b70b306bd4.json b/allure-report/data/test-cases/80f314b70b306bd4.json new file mode 100644 index 00000000000..e45ca134a09 --- /dev/null +++ b/allure-report/data/test-cases/80f314b70b306bd4.json @@ -0,0 +1 @@ +{"uid":"80f314b70b306bd4","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"description":"\n Testing using empty test data\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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"880859ea02196db7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194194,"stop":1732428194194,"duration":0}},{"uid":"706d67120123862f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"61f84f81177cf38b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"80f314b70b306bd4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/813aa9dc885c2882.json b/allure-report/data/test-cases/813aa9dc885c2882.json deleted file mode 100644 index 518b2f33c0f..00000000000 --- a/allure-report/data/test-cases/813aa9dc885c2882.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"813aa9dc885c2882","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"813aa9dc885c2882.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f407878af91b1de.json b/allure-report/data/test-cases/814ad2f745782ad7.json similarity index 71% rename from allure-report/data/test-cases/2f407878af91b1de.json rename to allure-report/data/test-cases/814ad2f745782ad7.json index 9ec0e1b2511..9248a60f5b2 100644 --- a/allure-report/data/test-cases/2f407878af91b1de.json +++ b/allure-report/data/test-cases/814ad2f745782ad7.json @@ -1 +1 @@ -{"uid":"2f407878af91b1de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"2f407878af91b1de.json","parameterValues":[]} \ No newline at end of file +{"uid":"814ad2f745782ad7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"814ad2f745782ad7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4304a318e243c50.json b/allure-report/data/test-cases/817c95f8ac92a91e.json similarity index 69% rename from allure-report/data/test-cases/c4304a318e243c50.json rename to allure-report/data/test-cases/817c95f8ac92a91e.json index f5bd6c58bea..c48f46fd75c 100644 --- a/allure-report/data/test-cases/c4304a318e243c50.json +++ b/allure-report/data/test-cases/817c95f8ac92a91e.json @@ -1 +1 @@ -{"uid":"c4304a318e243c50","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1b71217f4d0fe3a2","name":"stdout","source":"1b71217f4d0fe3a2.txt","type":"text/plain","size":41}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c4304a318e243c50.json","parameterValues":[]} \ No newline at end of file +{"uid":"817c95f8ac92a91e","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47cbc31b80f9d83c","name":"stdout","source":"47cbc31b80f9d83c.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"817c95f8ac92a91e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1974f16b30f7476.json b/allure-report/data/test-cases/821065d4dc841edb.json similarity index 68% rename from allure-report/data/test-cases/d1974f16b30f7476.json rename to allure-report/data/test-cases/821065d4dc841edb.json index 427c1d5ad01..a4c4ba19f16 100644 --- a/allure-report/data/test-cases/d1974f16b30f7476.json +++ b/allure-report/data/test-cases/821065d4dc841edb.json @@ -1 +1 @@ -{"uid":"d1974f16b30f7476","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fac594686b0a84bd","name":"stdout","source":"fac594686b0a84bd.txt","type":"text/plain","size":96}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d1974f16b30f7476.json","parameterValues":[]} \ No newline at end of file +{"uid":"821065d4dc841edb","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ca809417038f1f70","name":"stdout","source":"ca809417038f1f70.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"821065d4dc841edb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/571176bf000b455b.json b/allure-report/data/test-cases/8271119e6077f333.json similarity index 56% rename from allure-report/data/test-cases/571176bf000b455b.json rename to allure-report/data/test-cases/8271119e6077f333.json index 2bd37daa87f..187b91632f5 100644 --- a/allure-report/data/test-cases/571176bf000b455b.json +++ b/allure-report/data/test-cases/8271119e6077f333.json @@ -1 +1 @@ -{"uid":"571176bf000b455b","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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2f520e29faf9fa03","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"4073719ea3c0e8fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"571176bf000b455b.json","parameterValues":[]} \ No newline at end of file +{"uid":"8271119e6077f333","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":"8271119e6077f333.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82a681e3f0c8f54d.json b/allure-report/data/test-cases/82a681e3f0c8f54d.json deleted file mode 100644 index 33a5f4f91ef..00000000000 --- a/allure-report/data/test-cases/82a681e3f0c8f54d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"82a681e3f0c8f54d","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a3af1182be2fa344","name":"stdout","source":"a3af1182be2fa344.txt","type":"text/plain","size":2621}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"82a681e3f0c8f54d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82a8f1ffa445d40.json b/allure-report/data/test-cases/82a8f1ffa445d40.json deleted file mode 100644 index ef3f80534cb..00000000000 --- a/allure-report/data/test-cases/82a8f1ffa445d40.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"82a8f1ffa445d40","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ae7d7256cc9cd87f","name":"stdout","source":"ae7d7256cc9cd87f.txt","type":"text/plain","size":637}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"82a8f1ffa445d40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/883f1439af050615.json b/allure-report/data/test-cases/82d71f1a1b9a4c08.json similarity index 70% rename from allure-report/data/test-cases/883f1439af050615.json rename to allure-report/data/test-cases/82d71f1a1b9a4c08.json index f03addd048c..b0c21d28828 100644 --- a/allure-report/data/test-cases/883f1439af050615.json +++ b/allure-report/data/test-cases/82d71f1a1b9a4c08.json @@ -1 +1 @@ -{"uid":"883f1439af050615","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6534e5921b3f960d","name":"stdout","source":"6534e5921b3f960d.txt","type":"text/plain","size":86}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"883f1439af050615.json","parameterValues":[]} \ No newline at end of file +{"uid":"82d71f1a1b9a4c08","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85c42dfa3ebb2236","name":"stdout","source":"85c42dfa3ebb2236.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"82d71f1a1b9a4c08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82f0a19d19bd8125.json b/allure-report/data/test-cases/82f0a19d19bd8125.json new file mode 100644 index 00000000000..6df55252139 --- /dev/null +++ b/allure-report/data/test-cases/82f0a19d19bd8125.json @@ -0,0 +1 @@ +{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732764220486,"stop":1732764220486,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732764220487,"stop":1732764220487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"303f99106d04e0c7","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0}},{"uid":"bd413f89b47699c","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"4f2bbc07480f42a4","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"82f0a19d19bd8125.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/832c94aac84bf09.json b/allure-report/data/test-cases/832c94aac84bf09.json new file mode 100644 index 00000000000..fb0de593e25 --- /dev/null +++ b/allure-report/data/test-cases/832c94aac84bf09.json @@ -0,0 +1 @@ +{"uid":"832c94aac84bf09","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732428196110,"stop":1732428196110,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732428196109,"stop":1732428196109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732428196111,"stop":1732428196111,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Check the exam"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"832c94aac84bf09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/837e4ce24ac45efb.json b/allure-report/data/test-cases/837e4ce24ac45efb.json deleted file mode 100644 index 51735f22ae5..00000000000 --- a/allure-report/data/test-cases/837e4ce24ac45efb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"837e4ce24ac45efb","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cda2f56ac699fd36","name":"stdout","source":"cda2f56ac699fd36.txt","type":"text/plain","size":2817}],"parameters":[],"hasContent":true,"stepsCount":30,"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":[],"hasContent":false,"stepsCount":0,"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":"837e4ce24ac45efb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8388a8495a8b75af.json b/allure-report/data/test-cases/8388a8495a8b75af.json new file mode 100644 index 00000000000..4aa442d3df9 --- /dev/null +++ b/allure-report/data/test-cases/8388a8495a8b75af.json @@ -0,0 +1 @@ +{"uid":"8388a8495a8b75af","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":1732764220641,"stop":1732764220642,"duration":1},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90c1df398d2f201a","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2}},{"uid":"6e91e404eb8e624","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"dee6c3b3d0dc73e4","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"8388a8495a8b75af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4961a0c52d810ec1.json b/allure-report/data/test-cases/83b34d0610fd83c6.json similarity index 79% rename from allure-report/data/test-cases/4961a0c52d810ec1.json rename to allure-report/data/test-cases/83b34d0610fd83c6.json index b7c6d3cb366..9a28221f6f2 100644 --- a/allure-report/data/test-cases/4961a0c52d810ec1.json +++ b/allure-report/data/test-cases/83b34d0610fd83c6.json @@ -1 +1 @@ -{"uid":"4961a0c52d810ec1","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"4961a0c52d810ec1.json","parameterValues":[]} \ No newline at end of file +{"uid":"83b34d0610fd83c6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"83b34d0610fd83c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83c423646ff2d9ba.json b/allure-report/data/test-cases/83c423646ff2d9ba.json deleted file mode 100644 index ab87df1afad..00000000000 --- a/allure-report/data/test-cases/83c423646ff2d9ba.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"83c423646ff2d9ba","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"73e237e2a607b73d","name":"stdout","source":"73e237e2a607b73d.txt","type":"text/plain","size":356}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"83c423646ff2d9ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f59e61b023eebd26.json b/allure-report/data/test-cases/842b955d145895ca.json similarity index 72% rename from allure-report/data/test-cases/f59e61b023eebd26.json rename to allure-report/data/test-cases/842b955d145895ca.json index f1cc43181a0..1225cff922b 100644 --- a/allure-report/data/test-cases/f59e61b023eebd26.json +++ b/allure-report/data/test-cases/842b955d145895ca.json @@ -1 +1 @@ -{"uid":"f59e61b023eebd26","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5f888d9c16f6ee3a","name":"stdout","source":"5f888d9c16f6ee3a.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f59e61b023eebd26.json","parameterValues":[]} \ No newline at end of file +{"uid":"842b955d145895ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e1d630f27c230cc","name":"stdout","source":"4e1d630f27c230cc.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"842b955d145895ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea40d4fff96687ff.json b/allure-report/data/test-cases/843678da53c540e6.json similarity index 58% rename from allure-report/data/test-cases/ea40d4fff96687ff.json rename to allure-report/data/test-cases/843678da53c540e6.json index f2f01e818d3..ff21862d94a 100644 --- a/allure-report/data/test-cases/ea40d4fff96687ff.json +++ b/allure-report/data/test-cases/843678da53c540e6.json @@ -1 +1 @@ -{"uid":"ea40d4fff96687ff","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":1732428196037,"stop":1732428196037,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732428196036,"stop":1732428196036,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732428196039,"stop":1732428196039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf7acd85eab5cf37","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"b7812824440b717e","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"92083f552ecb72c4","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ea40d4fff96687ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"843678da53c540e6","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":1732428196037,"stop":1732428196037,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732428196036,"stop":1732428196036,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732428196039,"stop":1732428196039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"843678da53c540e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84d177b8ff2c367d.json b/allure-report/data/test-cases/84d177b8ff2c367d.json deleted file mode 100644 index 115ac6ff77a..00000000000 --- a/allure-report/data/test-cases/84d177b8ff2c367d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"84d177b8ff2c367d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d1bf3e067845857a","name":"stdout","source":"d1bf3e067845857a.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"84d177b8ff2c367d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f9422c1f71252b6.json b/allure-report/data/test-cases/84ea3c3b3250393e.json similarity index 66% rename from allure-report/data/test-cases/9f9422c1f71252b6.json rename to allure-report/data/test-cases/84ea3c3b3250393e.json index f06db0312e7..f30dd792307 100644 --- a/allure-report/data/test-cases/9f9422c1f71252b6.json +++ b/allure-report/data/test-cases/84ea3c3b3250393e.json @@ -1 +1 @@ -{"uid":"9f9422c1f71252b6","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":1732428194124,"stop":1732428194125,"duration":1},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732428194123,"stop":1732428194123,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"39376204dc517df6","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"ed566371d87065db","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9f9422c1f71252b6.json","parameterValues":[]} \ No newline at end of file +{"uid":"84ea3c3b3250393e","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":1732428194124,"stop":1732428194125,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"84ea3c3b3250393e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12f0442ef33f054e.json b/allure-report/data/test-cases/85613c3b6c6421c4.json similarity index 55% rename from allure-report/data/test-cases/12f0442ef33f054e.json rename to allure-report/data/test-cases/85613c3b6c6421c4.json index 0f9f7bd2dd9..66c49ce5da2 100644 --- a/allure-report/data/test-cases/12f0442ef33f054e.json +++ b/allure-report/data/test-cases/85613c3b6c6421c4.json @@ -1 +1 @@ -{"uid":"12f0442ef33f054e","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":1732428195473,"stop":1732428195473,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8d5ed16bbc896a22","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"e911f85aab34c4e6","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e9aaea22e808b4eb","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"12f0442ef33f054e.json","parameterValues":[]} \ No newline at end of file +{"uid":"85613c3b6c6421c4","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":1732428195473,"stop":1732428195473,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"85613c3b6c6421c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8605c2bc186d7f9a.json b/allure-report/data/test-cases/8605c2bc186d7f9a.json new file mode 100644 index 00000000000..905e390cb39 --- /dev/null +++ b/allure-report/data/test-cases/8605c2bc186d7f9a.json @@ -0,0 +1 @@ +{"uid":"8605c2bc186d7f9a","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":1732764220171,"stop":1732764220172,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a29d5673ddcf7e8e","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1}},{"uid":"895071e6126c1fbc","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"383972b39eec664a","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"8605c2bc186d7f9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33fff97900a7d8bc.json b/allure-report/data/test-cases/86173a2048ae1d24.json similarity index 71% rename from allure-report/data/test-cases/33fff97900a7d8bc.json rename to allure-report/data/test-cases/86173a2048ae1d24.json index c02695af556..5e30f29cef1 100644 --- a/allure-report/data/test-cases/33fff97900a7d8bc.json +++ b/allure-report/data/test-cases/86173a2048ae1d24.json @@ -1 +1 @@ -{"uid":"33fff97900a7d8bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5d5a8c5ce62738a7","name":"stdout","source":"5d5a8c5ce62738a7.txt","type":"text/plain","size":676}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"33fff97900a7d8bc.json","parameterValues":[]} \ No newline at end of file +{"uid":"86173a2048ae1d24","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fba7e6f7e7538915","name":"stdout","source":"fba7e6f7e7538915.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"86173a2048ae1d24.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be628f1c5b8245e1.json b/allure-report/data/test-cases/861fc17326f7d16a.json similarity index 71% rename from allure-report/data/test-cases/be628f1c5b8245e1.json rename to allure-report/data/test-cases/861fc17326f7d16a.json index f5110870b61..cc4d487957d 100644 --- a/allure-report/data/test-cases/be628f1c5b8245e1.json +++ b/allure-report/data/test-cases/861fc17326f7d16a.json @@ -1 +1 @@ -{"uid":"be628f1c5b8245e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"76d9ba77a7bb2817","name":"stdout","source":"76d9ba77a7bb2817.txt","type":"text/plain","size":189}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"be628f1c5b8245e1.json","parameterValues":[]} \ No newline at end of file +{"uid":"861fc17326f7d16a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5473bc31f56d9a8c","name":"stdout","source":"5473bc31f56d9a8c.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"861fc17326f7d16a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5ea93b10613ec53.json b/allure-report/data/test-cases/86447fe348b226fe.json similarity index 66% rename from allure-report/data/test-cases/c5ea93b10613ec53.json rename to allure-report/data/test-cases/86447fe348b226fe.json index 81be1eb0c2c..bb32eeafe4e 100644 --- a/allure-report/data/test-cases/c5ea93b10613ec53.json +++ b/allure-report/data/test-cases/86447fe348b226fe.json @@ -1 +1 @@ -{"uid":"c5ea93b10613ec53","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4143349f87c576ac","name":"stdout","source":"4143349f87c576ac.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"c5ea93b10613ec53.json","parameterValues":[]} \ No newline at end of file +{"uid":"86447fe348b226fe","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a21b9ca1dd2e7b86","name":"stdout","source":"a21b9ca1dd2e7b86.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"86447fe348b226fe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7e963fd1c95dafe.json b/allure-report/data/test-cases/864737f712b002ec.json similarity index 56% rename from allure-report/data/test-cases/c7e963fd1c95dafe.json rename to allure-report/data/test-cases/864737f712b002ec.json index 8d7b5957f67..9f457309c14 100644 --- a/allure-report/data/test-cases/c7e963fd1c95dafe.json +++ b/allure-report/data/test-cases/864737f712b002ec.json @@ -1 +1 @@ -{"uid":"c7e963fd1c95dafe","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":"

Codewars badge:

Test Description:

Given a year, the function should return the century it is in.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732428196100,"stop":1732428196101,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1732428196102,"stop":1732428196102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d4f8cb2de087cf","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"d58adc2ec0d31961","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"c7e963fd1c95dafe.json","parameterValues":[]} \ No newline at end of file +{"uid":"864737f712b002ec","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"864737f712b002ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8672ab2817945b36.json b/allure-report/data/test-cases/8672ab2817945b36.json new file mode 100644 index 00000000000..75ec87efca4 --- /dev/null +++ b/allure-report/data/test-cases/8672ab2817945b36.json @@ -0,0 +1 @@ +{"uid":"8672ab2817945b36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732764220864,"stop":1732764220864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"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.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1ddf203d8a3c498d","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0}},{"uid":"2d49ce73ea45d7a1","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"a20726936132e0f6","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8672ab2817945b36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93ceeb95a47fabbf.json b/allure-report/data/test-cases/867b171e961cc6e3.json similarity index 57% rename from allure-report/data/test-cases/93ceeb95a47fabbf.json rename to allure-report/data/test-cases/867b171e961cc6e3.json index b9b20c34a40..c06c2670049 100644 --- a/allure-report/data/test-cases/93ceeb95a47fabbf.json +++ b/allure-report/data/test-cases/867b171e961cc6e3.json @@ -1 +1 @@ -{"uid":"93ceeb95a47fabbf","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":1732428196029,"stop":1732428196030,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732428196029,"stop":1732428196029,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3b580876a88f5382","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"4ad4524b2ee92967","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"39c69409f76377e7","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"93ceeb95a47fabbf.json","parameterValues":[]} \ No newline at end of file +{"uid":"867b171e961cc6e3","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":1732428196029,"stop":1732428196030,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732428196029,"stop":1732428196029,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"867b171e961cc6e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/86bf8b663d5828a.json b/allure-report/data/test-cases/86bf8b663d5828a.json new file mode 100644 index 00000000000..f22d5037424 --- /dev/null +++ b/allure-report/data/test-cases/86bf8b663d5828a.json @@ -0,0 +1 @@ +{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732764220494,"stop":1732764220494,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4e0153f9704bfbb","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0}},{"uid":"c38b32e4e940b443","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"bfb03abe3203ecf1","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"86bf8b663d5828a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96df3e350e2ba16f.json b/allure-report/data/test-cases/875881a97b3fc375.json similarity index 67% rename from allure-report/data/test-cases/96df3e350e2ba16f.json rename to allure-report/data/test-cases/875881a97b3fc375.json index 6a0e9edb43c..79573cdb989 100644 --- a/allure-report/data/test-cases/96df3e350e2ba16f.json +++ b/allure-report/data/test-cases/875881a97b3fc375.json @@ -1 +1 @@ -{"uid":"96df3e350e2ba16f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d3f2d22c5115b6e","name":"stdout","source":"2d3f2d22c5115b6e.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"96df3e350e2ba16f.json","parameterValues":[]} \ No newline at end of file +{"uid":"875881a97b3fc375","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d177fc91cdd3978","name":"stdout","source":"6d177fc91cdd3978.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"875881a97b3fc375.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2655a1e6934b1850.json b/allure-report/data/test-cases/875e90b046ec092c.json similarity index 51% rename from allure-report/data/test-cases/2655a1e6934b1850.json rename to allure-report/data/test-cases/875e90b046ec092c.json index ad1adb517d9..ce71be85327 100644 --- a/allure-report/data/test-cases/2655a1e6934b1850.json +++ b/allure-report/data/test-cases/875e90b046ec092c.json @@ -1 +1 @@ -{"uid":"2655a1e6934b1850","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":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c43e0c7813423da","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"c5ea93b10613ec53","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2655a1e6934b1850.json","parameterValues":[]} \ No newline at end of file +{"uid":"875e90b046ec092c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"875e90b046ec092c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48ff8cbb530a1868.json b/allure-report/data/test-cases/8782c11be4532248.json similarity index 73% rename from allure-report/data/test-cases/48ff8cbb530a1868.json rename to allure-report/data/test-cases/8782c11be4532248.json index 3c7f7e67dfe..b850ce7c954 100644 --- a/allure-report/data/test-cases/48ff8cbb530a1868.json +++ b/allure-report/data/test-cases/8782c11be4532248.json @@ -1 +1 @@ -{"uid":"48ff8cbb530a1868","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"54a6fca37064555a","name":"stdout","source":"54a6fca37064555a.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48ff8cbb530a1868.json","parameterValues":[]} \ No newline at end of file +{"uid":"8782c11be4532248","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e4c3264e25c98281","name":"stdout","source":"e4c3264e25c98281.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8782c11be4532248.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4750955362b24610.json b/allure-report/data/test-cases/879748b1d447d0a9.json similarity index 54% rename from allure-report/data/test-cases/4750955362b24610.json rename to allure-report/data/test-cases/879748b1d447d0a9.json index c583eb5dcf8..40400b85aad 100644 --- a/allure-report/data/test-cases/4750955362b24610.json +++ b/allure-report/data/test-cases/879748b1d447d0a9.json @@ -1 +1 @@ -{"uid":"4750955362b24610","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732428195946,"stop":1732428195946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732428195947,"stop":1732428195947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Share prices"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cd9da9d797a3c2ab","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"33a4a469899e9868","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"884c8d1f852cc3dc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"4750955362b24610.json","parameterValues":[]} \ No newline at end of file +{"uid":"879748b1d447d0a9","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732428195946,"stop":1732428195946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732428195947,"stop":1732428195947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Share prices"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"879748b1d447d0a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8804093a9c3b17d.json b/allure-report/data/test-cases/8804093a9c3b17d.json deleted file mode 100644 index e5dbc702226..00000000000 --- a/allure-report/data/test-cases/8804093a9c3b17d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

Verify cipher function. This \"decode\" is used to decode a string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732428193949,"stop":1732428193949,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1732428193951,"stop":1732428193951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bce82edab468d2f2","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"27b26e7a6523571a","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8804093a9c3b17d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5a113fbe50e74ce.json b/allure-report/data/test-cases/880859ea02196db7.json similarity index 56% rename from allure-report/data/test-cases/b5a113fbe50e74ce.json rename to allure-report/data/test-cases/880859ea02196db7.json index 030444d5fbf..63f4f77f5ac 100644 --- a/allure-report/data/test-cases/b5a113fbe50e74ce.json +++ b/allure-report/data/test-cases/880859ea02196db7.json @@ -1 +1 @@ -{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"description":"\n Testing using empty test data\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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7131237025069abe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"37f24af32c057862","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b5a113fbe50e74ce.json","parameterValues":[]} \ No newline at end of file +{"uid":"880859ea02196db7","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"description":"\n Testing using empty test data\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":"880859ea02196db7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cda9164d86dd0b79.json b/allure-report/data/test-cases/8817b6c726fc2884.json similarity index 64% rename from allure-report/data/test-cases/cda9164d86dd0b79.json rename to allure-report/data/test-cases/8817b6c726fc2884.json index 64c97754ef6..4c1216a717a 100644 --- a/allure-report/data/test-cases/cda9164d86dd0b79.json +++ b/allure-report/data/test-cases/8817b6c726fc2884.json @@ -1 +1 @@ -{"uid":"cda9164d86dd0b79","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"75f6639f39c4b7d0","name":"stdout","source":"75f6639f39c4b7d0.txt","type":"text/plain","size":453}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cda9164d86dd0b79.json","parameterValues":[]} \ No newline at end of file +{"uid":"8817b6c726fc2884","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eecd5302084b69b0","name":"stdout","source":"eecd5302084b69b0.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8817b6c726fc2884.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e69093187fd70d56.json b/allure-report/data/test-cases/88503943247ae8d5.json similarity index 56% rename from allure-report/data/test-cases/e69093187fd70d56.json rename to allure-report/data/test-cases/88503943247ae8d5.json index 4c1738a91d9..af66b883e56 100644 --- a/allure-report/data/test-cases/e69093187fd70d56.json +++ b/allure-report/data/test-cases/88503943247ae8d5.json @@ -1 +1 @@ -{"uid":"e69093187fd70d56","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f4fd5b9fa6dd3840","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"2f407878af91b1de","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"673ecd99dac0c86e","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"e69093187fd70d56.json","parameterValues":[]} \ No newline at end of file +{"uid":"88503943247ae8d5","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"88503943247ae8d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99b8e6f5f8a43508.json b/allure-report/data/test-cases/88851466a8ab5f44.json similarity index 62% rename from allure-report/data/test-cases/99b8e6f5f8a43508.json rename to allure-report/data/test-cases/88851466a8ab5f44.json index 99f51597b36..891a59416fb 100644 --- a/allure-report/data/test-cases/99b8e6f5f8a43508.json +++ b/allure-report/data/test-cases/88851466a8ab5f44.json @@ -1 +1 @@ -{"uid":"99b8e6f5f8a43508","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ca8a9ae1b56b4086","name":"stdout","source":"ca8a9ae1b56b4086.txt","type":"text/plain","size":299}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"99b8e6f5f8a43508.json","parameterValues":[]} \ No newline at end of file +{"uid":"88851466a8ab5f44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aa1c2e562160f609","name":"stdout","source":"aa1c2e562160f609.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"88851466a8ab5f44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f02852e3aa10b6d.json b/allure-report/data/test-cases/88ed1c9da2d9b53b.json similarity index 65% rename from allure-report/data/test-cases/9f02852e3aa10b6d.json rename to allure-report/data/test-cases/88ed1c9da2d9b53b.json index 31eab43797e..22b433a214a 100644 --- a/allure-report/data/test-cases/9f02852e3aa10b6d.json +++ b/allure-report/data/test-cases/88ed1c9da2d9b53b.json @@ -1 +1 @@ -{"uid":"9f02852e3aa10b6d","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f23fd2a44d74bcb","name":"stdout","source":"3f23fd2a44d74bcb.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"9f02852e3aa10b6d.json","parameterValues":[]} \ No newline at end of file +{"uid":"88ed1c9da2d9b53b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e573d2ead28469f","name":"stdout","source":"9e573d2ead28469f.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"88ed1c9da2d9b53b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25a09c2c9e3c88b1.json b/allure-report/data/test-cases/893f14f04872e4c5.json similarity index 63% rename from allure-report/data/test-cases/25a09c2c9e3c88b1.json rename to allure-report/data/test-cases/893f14f04872e4c5.json index b67e6e1af00..80b8d41f4d9 100644 --- a/allure-report/data/test-cases/25a09c2c9e3c88b1.json +++ b/allure-report/data/test-cases/893f14f04872e4c5.json @@ -1 +1 @@ -{"uid":"25a09c2c9e3c88b1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"666caf8f2715f1b6","name":"stdout","source":"666caf8f2715f1b6.txt","type":"text/plain","size":476}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"25a09c2c9e3c88b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"893f14f04872e4c5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d53bb0f8a7466de9","name":"stdout","source":"d53bb0f8a7466de9.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"893f14f04872e4c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9af06a5366a3631.json b/allure-report/data/test-cases/895071e6126c1fbc.json similarity index 67% rename from allure-report/data/test-cases/d9af06a5366a3631.json rename to allure-report/data/test-cases/895071e6126c1fbc.json index 639cdd1e920..2132e8a8ccc 100644 --- a/allure-report/data/test-cases/d9af06a5366a3631.json +++ b/allure-report/data/test-cases/895071e6126c1fbc.json @@ -1 +1 @@ -{"uid":"d9af06a5366a3631","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"70a5ec7cc829789f","name":"stdout","source":"70a5ec7cc829789f.txt","type":"text/plain","size":75}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9af06a5366a3631.json","parameterValues":[]} \ No newline at end of file +{"uid":"895071e6126c1fbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8693f25c4ee9e10","name":"stdout","source":"f8693f25c4ee9e10.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"895071e6126c1fbc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89c0be4978ed22ba.json b/allure-report/data/test-cases/89c0be4978ed22ba.json new file mode 100644 index 00000000000..1f914bc8822 --- /dev/null +++ b/allure-report/data/test-cases/89c0be4978ed22ba.json @@ -0,0 +1 @@ +{"uid":"89c0be4978ed22ba","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":1732764220182,"stop":1732764220183,"duration":1},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220183,"stop":1732764220183,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fd4ef8d041ff123e","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0}},{"uid":"817c95f8ac92a91e","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"95924b9d92f1ced5","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"89c0be4978ed22ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89d5ee585c13bf38.json b/allure-report/data/test-cases/89d5ee585c13bf38.json new file mode 100644 index 00000000000..b31455e25e6 --- /dev/null +++ b/allure-report/data/test-cases/89d5ee585c13bf38.json @@ -0,0 +1 @@ +{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220499,"stop":1732764220499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2ee59d9a8c304f3b","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0}},{"uid":"df5176bbed48ed91","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"eb4d3d652c38eb3f","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"89d5ee585c13bf38.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a89827c471bc909.json b/allure-report/data/test-cases/8a89827c471bc909.json new file mode 100644 index 00000000000..8a31ffe2f3a --- /dev/null +++ b/allure-report/data/test-cases/8a89827c471bc909.json @@ -0,0 +1 @@ +{"uid":"8a89827c471bc909","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732764220409,"stop":1732764220409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732764220411,"stop":1732764220411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed0b0c9c45304a0b","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0}},{"uid":"610300a29faa4ee4","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"7312d30334dcfc0d","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"8a89827c471bc909.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f841b42c8d697c74.json b/allure-report/data/test-cases/8bbe3b647eb4bfeb.json similarity index 70% rename from allure-report/data/test-cases/f841b42c8d697c74.json rename to allure-report/data/test-cases/8bbe3b647eb4bfeb.json index 64a2ce1f8ee..2ecfde14582 100644 --- a/allure-report/data/test-cases/f841b42c8d697c74.json +++ b/allure-report/data/test-cases/8bbe3b647eb4bfeb.json @@ -1 +1 @@ -{"uid":"f841b42c8d697c74","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"697db26b4ade1966","name":"stdout","source":"697db26b4ade1966.txt","type":"text/plain","size":202}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f841b42c8d697c74.json","parameterValues":[]} \ No newline at end of file +{"uid":"8bbe3b647eb4bfeb","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"da21be7860f58cf6","name":"stdout","source":"da21be7860f58cf6.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8bbe3b647eb4bfeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8bc712dc2d3a7199.json b/allure-report/data/test-cases/8bc712dc2d3a7199.json new file mode 100644 index 00000000000..ca4ed70f22b --- /dev/null +++ b/allure-report/data/test-cases/8bc712dc2d3a7199.json @@ -0,0 +1 @@ +{"uid":"8bc712dc2d3a7199","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"14cdd8696beec9a","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0}},{"uid":"11195fbf11e8bfc3","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"7b584cbfaa9e2f14","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"8bc712dc2d3a7199.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30218f5e2dbf6894.json b/allure-report/data/test-cases/8bc93f78736d3a0e.json similarity index 69% rename from allure-report/data/test-cases/30218f5e2dbf6894.json rename to allure-report/data/test-cases/8bc93f78736d3a0e.json index ec285a649f8..62b0e444868 100644 --- a/allure-report/data/test-cases/30218f5e2dbf6894.json +++ b/allure-report/data/test-cases/8bc93f78736d3a0e.json @@ -1 +1 @@ -{"uid":"30218f5e2dbf6894","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7cd06e1d94c0b146","name":"stdout","source":"7cd06e1d94c0b146.txt","type":"text/plain","size":281}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30218f5e2dbf6894.json","parameterValues":[]} \ No newline at end of file +{"uid":"8bc93f78736d3a0e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f4fbc6ed8dc7bd7","name":"stdout","source":"2f4fbc6ed8dc7bd7.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8bc93f78736d3a0e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b58bd62b05a8814.json b/allure-report/data/test-cases/8bd454f111efcd3e.json similarity index 62% rename from allure-report/data/test-cases/4b58bd62b05a8814.json rename to allure-report/data/test-cases/8bd454f111efcd3e.json index dba18468e99..600fe6877da 100644 --- a/allure-report/data/test-cases/4b58bd62b05a8814.json +++ b/allure-report/data/test-cases/8bd454f111efcd3e.json @@ -1 +1 @@ -{"uid":"4b58bd62b05a8814","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a5fe4c42944f89c8","name":"stdout","source":"a5fe4c42944f89c8.txt","type":"text/plain","size":316}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4b58bd62b05a8814.json","parameterValues":[]} \ No newline at end of file +{"uid":"8bd454f111efcd3e","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"21b3833bd58160c1","name":"stdout","source":"21b3833bd58160c1.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8bd454f111efcd3e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8beabd2469a668.json b/allure-report/data/test-cases/8beabd2469a668.json deleted file mode 100644 index c2de621e63c..00000000000 --- a/allure-report/data/test-cases/8beabd2469a668.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8beabd2469a668","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ef3c2609186193","name":"stdout","source":"8ef3c2609186193.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"8beabd2469a668.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fd800b8d3602698.json b/allure-report/data/test-cases/8bf0e4ddc17f51c8.json similarity index 74% rename from allure-report/data/test-cases/3fd800b8d3602698.json rename to allure-report/data/test-cases/8bf0e4ddc17f51c8.json index 1e368ea2f44..136ec9c9064 100644 --- a/allure-report/data/test-cases/3fd800b8d3602698.json +++ b/allure-report/data/test-cases/8bf0e4ddc17f51c8.json @@ -1 +1 @@ -{"uid":"3fd800b8d3602698","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5a2b8e600c203d1","name":"stdout","source":"f5a2b8e600c203d1.txt","type":"text/plain","size":354}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"3fd800b8d3602698.json","parameterValues":[]} \ No newline at end of file +{"uid":"8bf0e4ddc17f51c8","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"780df00dc666cbbd","name":"stdout","source":"780df00dc666cbbd.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"8bf0e4ddc17f51c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed566371d87065db.json b/allure-report/data/test-cases/8c4c3ac3b9ddced3.json similarity index 73% rename from allure-report/data/test-cases/ed566371d87065db.json rename to allure-report/data/test-cases/8c4c3ac3b9ddced3.json index 0d4f9c2904b..d83ded6cd26 100644 --- a/allure-report/data/test-cases/ed566371d87065db.json +++ b/allure-report/data/test-cases/8c4c3ac3b9ddced3.json @@ -1 +1 @@ -{"uid":"ed566371d87065db","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c520dd2a3bb6ed30","name":"stdout","source":"c520dd2a3bb6ed30.txt","type":"text/plain","size":639}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"ed566371d87065db.json","parameterValues":[]} \ No newline at end of file +{"uid":"8c4c3ac3b9ddced3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"662510f84e87d061","name":"stdout","source":"662510f84e87d061.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8c4c3ac3b9ddced3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d85f39401914c16.json b/allure-report/data/test-cases/8d85f39401914c16.json new file mode 100644 index 00000000000..2a6c186aa82 --- /dev/null +++ b/allure-report/data/test-cases/8d85f39401914c16.json @@ -0,0 +1 @@ +{"uid":"8d85f39401914c16","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1599295a3f41ee0","name":"stdout","source":"d1599295a3f41ee0.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8d85f39401914c16.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/827104e07f2ca2d0.json b/allure-report/data/test-cases/8dcdfa9166c48fb8.json similarity index 71% rename from allure-report/data/test-cases/827104e07f2ca2d0.json rename to allure-report/data/test-cases/8dcdfa9166c48fb8.json index 46925444f77..35528fee1f9 100644 --- a/allure-report/data/test-cases/827104e07f2ca2d0.json +++ b/allure-report/data/test-cases/8dcdfa9166c48fb8.json @@ -1 +1 @@ -{"uid":"827104e07f2ca2d0","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"25583e198df733bf","name":"stdout","source":"25583e198df733bf.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"827104e07f2ca2d0.json","parameterValues":[]} \ No newline at end of file +{"uid":"8dcdfa9166c48fb8","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20e82e5aa37702bc","name":"stdout","source":"20e82e5aa37702bc.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8dcdfa9166c48fb8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dfef1ba8856d412.json b/allure-report/data/test-cases/8dfef1ba8856d412.json new file mode 100644 index 00000000000..66e7384ff8e --- /dev/null +++ b/allure-report/data/test-cases/8dfef1ba8856d412.json @@ -0,0 +1 @@ +{"uid":"8dfef1ba8856d412","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"42358797bb03e774","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1}},{"uid":"30e62f45ee93d21d","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"b3ade822e686b250","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8dfef1ba8856d412.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e1e8d12e75298b.json b/allure-report/data/test-cases/8e1e8d12e75298b.json deleted file mode 100644 index 52b2ad594ca..00000000000 --- a/allure-report/data/test-cases/8e1e8d12e75298b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8e1e8d12e75298b","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"47ba37195574156f","name":"stdout","source":"47ba37195574156f.txt","type":"text/plain","size":232}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"8e1e8d12e75298b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e4b6f6bd251566.json b/allure-report/data/test-cases/8e4b6f6bd251566.json new file mode 100644 index 00000000000..a1e1e59ff00 --- /dev/null +++ b/allure-report/data/test-cases/8e4b6f6bd251566.json @@ -0,0 +1 @@ +{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732764219215,"stop":1732764219215,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732764219216,"stop":1732764219216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"story","value":"Valid Parentheses"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"99e68c3ce0169a01","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0}},{"uid":"b28ff46b20790be2","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"ea636867f014d21","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"8e4b6f6bd251566.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e87cfc15c8260a3.json b/allure-report/data/test-cases/8e87cfc15c8260a3.json new file mode 100644 index 00000000000..4c73fbb1290 --- /dev/null +++ b/allure-report/data/test-cases/8e87cfc15c8260a3.json @@ -0,0 +1 @@ +{"uid":"8e87cfc15c8260a3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220529,"stop":1732764220529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6bf2acd0a0db42e5","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1}},{"uid":"21dca02637c8027f","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"1dd416b71393e4f8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"8e87cfc15c8260a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e9b4227c17ce17f.json b/allure-report/data/test-cases/8e9b4227c17ce17f.json new file mode 100644 index 00000000000..9b12100f1c3 --- /dev/null +++ b/allure-report/data/test-cases/8e9b4227c17ce17f.json @@ -0,0 +1 @@ +{"uid":"8e9b4227c17ce17f","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8271119e6077f333","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194198,"stop":1732428194198,"duration":0}},{"uid":"634b88b34b81a74c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"ac390c8ac17d8363","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"8e9b4227c17ce17f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ea6e5a2b5515469.json b/allure-report/data/test-cases/8ea6e5a2b5515469.json deleted file mode 100644 index 8cd6caa097c..00000000000 --- a/allure-report/data/test-cases/8ea6e5a2b5515469.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8ea6e5a2b5515469","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732428195937,"stop":1732428195938,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195939,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"813aa9dc885c2882","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"4df34ce2718b817c","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c799982c38b97fcc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"8ea6e5a2b5515469.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ed1a17310170d88.json b/allure-report/data/test-cases/8ed1a17310170d88.json new file mode 100644 index 00000000000..1dc0317c5f7 --- /dev/null +++ b/allure-report/data/test-cases/8ed1a17310170d88.json @@ -0,0 +1 @@ +{"uid":"8ed1a17310170d88","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732764220664,"stop":1732764220664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3d5b9d863751a3f","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0}},{"uid":"c793ab5339736af5","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"ac35e86bb753fb8c","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"8ed1a17310170d88.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5795c1991578aaeb.json b/allure-report/data/test-cases/8edcba07a1a3ea56.json similarity index 77% rename from allure-report/data/test-cases/5795c1991578aaeb.json rename to allure-report/data/test-cases/8edcba07a1a3ea56.json index 1a1fdc6aae7..d6c373496cc 100644 --- a/allure-report/data/test-cases/5795c1991578aaeb.json +++ b/allure-report/data/test-cases/8edcba07a1a3ea56.json @@ -1 +1 @@ -{"uid":"5795c1991578aaeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dcb18087db2eef7c","name":"stdout","source":"dcb18087db2eef7c.txt","type":"text/plain","size":793}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"5795c1991578aaeb.json","parameterValues":[]} \ No newline at end of file +{"uid":"8edcba07a1a3ea56","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ad735a94d30c45bf","name":"stdout","source":"ad735a94d30c45bf.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"8edcba07a1a3ea56.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8173581ebbb7cc32.json b/allure-report/data/test-cases/8f6f88ab23c0d630.json similarity index 76% rename from allure-report/data/test-cases/8173581ebbb7cc32.json rename to allure-report/data/test-cases/8f6f88ab23c0d630.json index 77d5029aa36..80cd78615c4 100644 --- a/allure-report/data/test-cases/8173581ebbb7cc32.json +++ b/allure-report/data/test-cases/8f6f88ab23c0d630.json @@ -1 +1 @@ -{"uid":"8173581ebbb7cc32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5e1e694e393088b4","name":"stdout","source":"5e1e694e393088b4.txt","type":"text/plain","size":604}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8173581ebbb7cc32.json","parameterValues":[]} \ No newline at end of file +{"uid":"8f6f88ab23c0d630","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"baaad4c171b47b9e","name":"stdout","source":"baaad4c171b47b9e.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8f6f88ab23c0d630.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59120ba12cafb7e8.json b/allure-report/data/test-cases/8fd9fc1a4b426539.json similarity index 72% rename from allure-report/data/test-cases/59120ba12cafb7e8.json rename to allure-report/data/test-cases/8fd9fc1a4b426539.json index 12c7ce5421f..b0c7511c050 100644 --- a/allure-report/data/test-cases/59120ba12cafb7e8.json +++ b/allure-report/data/test-cases/8fd9fc1a4b426539.json @@ -1 +1 @@ -{"uid":"59120ba12cafb7e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f209dfd0dcd30d55","name":"stdout","source":"f209dfd0dcd30d55.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"59120ba12cafb7e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"8fd9fc1a4b426539","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d437f4331d47546","name":"stdout","source":"6d437f4331d47546.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"8fd9fc1a4b426539.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/900a2cbb7155295.json b/allure-report/data/test-cases/900a2cbb7155295.json deleted file mode 100644 index be966123178..00000000000 --- a/allure-report/data/test-cases/900a2cbb7155295.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"900a2cbb7155295","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732428195769,"stop":1732428195769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"656eaa4febf44ace","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"965a3663c8644328","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fdff4b964fae0427","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"900a2cbb7155295.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ce6881896e2614d.json b/allure-report/data/test-cases/9054a710a823b80a.json similarity index 63% rename from allure-report/data/test-cases/5ce6881896e2614d.json rename to allure-report/data/test-cases/9054a710a823b80a.json index e83e72e1320..28b7c1ceb4d 100644 --- a/allure-report/data/test-cases/5ce6881896e2614d.json +++ b/allure-report/data/test-cases/9054a710a823b80a.json @@ -1 +1 @@ -{"uid":"5ce6881896e2614d","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732428195898,"stop":1732428195898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b325ede7f1ceeec3","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"ec3117c5f0ca458","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9519f48ec729ba4c","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5ce6881896e2614d.json","parameterValues":[]} \ No newline at end of file +{"uid":"9054a710a823b80a","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732428195898,"stop":1732428195898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9054a710a823b80a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90a10a824ed5b372.json b/allure-report/data/test-cases/90a10a824ed5b372.json deleted file mode 100644 index d81dbb65848..00000000000 --- a/allure-report/data/test-cases/90a10a824ed5b372.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"90a10a824ed5b372","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"90a10a824ed5b372.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90c1df398d2f201a.json b/allure-report/data/test-cases/90c1df398d2f201a.json new file mode 100644 index 00000000000..0f9336bf85d --- /dev/null +++ b/allure-report/data/test-cases/90c1df398d2f201a.json @@ -0,0 +1 @@ +{"uid":"90c1df398d2f201a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732428195937,"stop":1732428195938,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195939,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"90c1df398d2f201a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90d2f619b6b55a93.json b/allure-report/data/test-cases/90d2f619b6b55a93.json deleted file mode 100644 index d189ba7ad6d..00000000000 --- a/allure-report/data/test-cases/90d2f619b6b55a93.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"90d2f619b6b55a93","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"518d45d1073ca74","name":"stdout","source":"518d45d1073ca74.txt","type":"text/plain","size":263}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"90d2f619b6b55a93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9164bf2c06bf8752.json b/allure-report/data/test-cases/9164bf2c06bf8752.json new file mode 100644 index 00000000000..a26f2fd9601 --- /dev/null +++ b/allure-report/data/test-cases/9164bf2c06bf8752.json @@ -0,0 +1 @@ +{"uid":"9164bf2c06bf8752","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732764218915,"stop":1732764218915,"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\").\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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"998a460e800cbb2b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194259,"stop":1732428194259,"duration":0}},{"uid":"767acc864b347295","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"5364b62b05552f1e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"9164bf2c06bf8752.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91aab0544068789.json b/allure-report/data/test-cases/91aab0544068789.json new file mode 100644 index 00000000000..86e0c9373fe --- /dev/null +++ b/allure-report/data/test-cases/91aab0544068789.json @@ -0,0 +1 @@ +{"uid":"91aab0544068789","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ec0aa2198d4850df","name":"stdout","source":"ec0aa2198d4850df.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"91aab0544068789.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27d124696efa8c6c.json b/allure-report/data/test-cases/91cb28173d925ce2.json similarity index 56% rename from allure-report/data/test-cases/27d124696efa8c6c.json rename to allure-report/data/test-cases/91cb28173d925ce2.json index a418574431d..2677fed641a 100644 --- a/allure-report/data/test-cases/27d124696efa8c6c.json +++ b/allure-report/data/test-cases/91cb28173d925ce2.json @@ -1 +1 @@ -{"uid":"27d124696efa8c6c","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":1732428196144,"stop":1732428196144,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51c4ad89c4a768de","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"d58da60cf24b7660","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e0d5281d75a0b4df","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"27d124696efa8c6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"91cb28173d925ce2","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":1732428196144,"stop":1732428196144,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"91cb28173d925ce2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eeed6f5fdf5c1d70.json b/allure-report/data/test-cases/91d86d4a26e41755.json similarity index 85% rename from allure-report/data/test-cases/eeed6f5fdf5c1d70.json rename to allure-report/data/test-cases/91d86d4a26e41755.json index a71dc481268..065016b79ca 100644 --- a/allure-report/data/test-cases/eeed6f5fdf5c1d70.json +++ b/allure-report/data/test-cases/91d86d4a26e41755.json @@ -1 +1 @@ -{"uid":"eeed6f5fdf5c1d70","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef8a05f468c4eca0","name":"stdout","source":"ef8a05f468c4eca0.txt","type":"text/plain","size":227}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eeed6f5fdf5c1d70.json","parameterValues":[]} \ No newline at end of file +{"uid":"91d86d4a26e41755","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5967a008f3d7b308","name":"stdout","source":"5967a008f3d7b308.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"91d86d4a26e41755.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1d39787f3312e8b.json b/allure-report/data/test-cases/921715088233c4e7.json similarity index 74% rename from allure-report/data/test-cases/f1d39787f3312e8b.json rename to allure-report/data/test-cases/921715088233c4e7.json index 94bef9f5efb..b3516b6c6c3 100644 --- a/allure-report/data/test-cases/f1d39787f3312e8b.json +++ b/allure-report/data/test-cases/921715088233c4e7.json @@ -1 +1 @@ -{"uid":"f1d39787f3312e8b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"f1d39787f3312e8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"921715088233c4e7","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"921715088233c4e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9246dbe4ecdc42ce.json b/allure-report/data/test-cases/9246dbe4ecdc42ce.json new file mode 100644 index 00000000000..aa8a0cd5f76 --- /dev/null +++ b/allure-report/data/test-cases/9246dbe4ecdc42ce.json @@ -0,0 +1 @@ +{"uid":"9246dbe4ecdc42ce","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":1732764220516,"stop":1732764220516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220515,"stop":1732764220515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732764220517,"stop":1732764220517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Formatting decimal places #1"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Formatting"},{"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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d56667f6ac1424a3","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0}},{"uid":"4eaed4684cfaee8f","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"8782c11be4532248","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9246dbe4ecdc42ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4dc4de0a74fe7f66.json b/allure-report/data/test-cases/935b6bf420709ca7.json similarity index 62% rename from allure-report/data/test-cases/4dc4de0a74fe7f66.json rename to allure-report/data/test-cases/935b6bf420709ca7.json index 432eef84661..f2946804981 100644 --- a/allure-report/data/test-cases/4dc4de0a74fe7f66.json +++ b/allure-report/data/test-cases/935b6bf420709ca7.json @@ -1 +1 @@ -{"uid":"4dc4de0a74fe7f66","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9c17474dc274435d","name":"stdout","source":"9c17474dc274435d.txt","type":"text/plain","size":316}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4dc4de0a74fe7f66.json","parameterValues":[]} \ No newline at end of file +{"uid":"935b6bf420709ca7","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"379cf75cca245ee2","name":"stdout","source":"379cf75cca245ee2.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"935b6bf420709ca7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7718694e0e976912.json b/allure-report/data/test-cases/938f6f7ebecca4c3.json similarity index 70% rename from allure-report/data/test-cases/7718694e0e976912.json rename to allure-report/data/test-cases/938f6f7ebecca4c3.json index fc5a7074d96..febc0ffbad4 100644 --- a/allure-report/data/test-cases/7718694e0e976912.json +++ b/allure-report/data/test-cases/938f6f7ebecca4c3.json @@ -1 +1 @@ -{"uid":"7718694e0e976912","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4db95168982ce3dd","name":"stdout","source":"4db95168982ce3dd.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7718694e0e976912.json","parameterValues":[]} \ No newline at end of file +{"uid":"938f6f7ebecca4c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5f8aca645c6a63be","name":"stdout","source":"5f8aca645c6a63be.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"938f6f7ebecca4c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93b00a3d2e7b92c1.json b/allure-report/data/test-cases/93b00a3d2e7b92c1.json new file mode 100644 index 00000000000..698a67c80b7 --- /dev/null +++ b/allure-report/data/test-cases/93b00a3d2e7b92c1.json @@ -0,0 +1 @@ +{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732764218824,"stop":1732764218824,"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', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"777ba0c823c5a82a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194170,"stop":1732428194170,"duration":0}},{"uid":"f9778b72019f6060","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"624b364c1e1f6bc7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"93b00a3d2e7b92c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1506cf302ecd21f1.json b/allure-report/data/test-cases/93cbb9687a6c19d2.json similarity index 61% rename from allure-report/data/test-cases/1506cf302ecd21f1.json rename to allure-report/data/test-cases/93cbb9687a6c19d2.json index 22b344e7f9b..054c282dc20 100644 --- a/allure-report/data/test-cases/1506cf302ecd21f1.json +++ b/allure-report/data/test-cases/93cbb9687a6c19d2.json @@ -1 +1 @@ -{"uid":"1506cf302ecd21f1","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"76446d802fca4221","name":"stdout","source":"76446d802fca4221.txt","type":"text/plain","size":480}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1506cf302ecd21f1.json","parameterValues":[]} \ No newline at end of file +{"uid":"93cbb9687a6c19d2","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a90a8741dd8ba1f","name":"stdout","source":"6a90a8741dd8ba1f.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"93cbb9687a6c19d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e4f24bca4471f754.json b/allure-report/data/test-cases/941c0037b0b98fcf.json similarity index 73% rename from allure-report/data/test-cases/e4f24bca4471f754.json rename to allure-report/data/test-cases/941c0037b0b98fcf.json index 9df8ffd5415..b60a8a74773 100644 --- a/allure-report/data/test-cases/e4f24bca4471f754.json +++ b/allure-report/data/test-cases/941c0037b0b98fcf.json @@ -1 +1 @@ -{"uid":"e4f24bca4471f754","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"37e73f373251accf","name":"stdout","source":"37e73f373251accf.txt","type":"text/plain","size":1500}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e4f24bca4471f754.json","parameterValues":[]} \ No newline at end of file +{"uid":"941c0037b0b98fcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f7cb1151a0bdf19c","name":"stdout","source":"f7cb1151a0bdf19c.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"941c0037b0b98fcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a77a517a493b3eb2.json b/allure-report/data/test-cases/946a2bd47c8adfbc.json similarity index 54% rename from allure-report/data/test-cases/a77a517a493b3eb2.json rename to allure-report/data/test-cases/946a2bd47c8adfbc.json index 03b68b1238a..521e4f5e578 100644 --- a/allure-report/data/test-cases/a77a517a493b3eb2.json +++ b/allure-report/data/test-cases/946a2bd47c8adfbc.json @@ -1 +1 @@ -{"uid":"a77a517a493b3eb2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"32703c37c2f9cfbd","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"82a8f1ffa445d40","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52187b3daff300ae","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a77a517a493b3eb2.json","parameterValues":[]} \ No newline at end of file +{"uid":"946a2bd47c8adfbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"946a2bd47c8adfbc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be34e44ef544dd56.json b/allure-report/data/test-cases/94e103957a6e541c.json similarity index 65% rename from allure-report/data/test-cases/be34e44ef544dd56.json rename to allure-report/data/test-cases/94e103957a6e541c.json index e7045095dd8..ba38b89b580 100644 --- a/allure-report/data/test-cases/be34e44ef544dd56.json +++ b/allure-report/data/test-cases/94e103957a6e541c.json @@ -1 +1 @@ -{"uid":"be34e44ef544dd56","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"26c18e7ac55b0476","name":"stdout","source":"26c18e7ac55b0476.txt","type":"text/plain","size":985}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"be34e44ef544dd56.json","parameterValues":[]} \ No newline at end of file +{"uid":"94e103957a6e541c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bbc90d26ad4a4f8d","name":"stdout","source":"bbc90d26ad4a4f8d.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"94e103957a6e541c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b89947e3a3ec46d.json b/allure-report/data/test-cases/950acbfbefb81796.json similarity index 57% rename from allure-report/data/test-cases/2b89947e3a3ec46d.json rename to allure-report/data/test-cases/950acbfbefb81796.json index a180555d5b1..d1bad8547e9 100644 --- a/allure-report/data/test-cases/2b89947e3a3ec46d.json +++ b/allure-report/data/test-cases/950acbfbefb81796.json @@ -1 +1 @@ -{"uid":"2b89947e3a3ec46d","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":1732428194216,"stop":1732428194216,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Assert that 'domain_name' function returns domain name from given URL string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732428194215,"stop":1732428194215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1732428194217,"stop":1732428194217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90d2f619b6b55a93","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"eaaef6c05ba4cb98","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2b89947e3a3ec46d.json","parameterValues":[]} \ No newline at end of file +{"uid":"950acbfbefb81796","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":1732428194216,"stop":1732428194216,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"950acbfbefb81796.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67f932ff555edbd0.json b/allure-report/data/test-cases/95924b9d92f1ced5.json similarity index 69% rename from allure-report/data/test-cases/67f932ff555edbd0.json rename to allure-report/data/test-cases/95924b9d92f1ced5.json index 03fb0450b9f..99f4d419ebf 100644 --- a/allure-report/data/test-cases/67f932ff555edbd0.json +++ b/allure-report/data/test-cases/95924b9d92f1ced5.json @@ -1 +1 @@ -{"uid":"67f932ff555edbd0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1fcc34d0c68ae769","name":"stdout","source":"1fcc34d0c68ae769.txt","type":"text/plain","size":41}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"67f932ff555edbd0.json","parameterValues":[]} \ No newline at end of file +{"uid":"95924b9d92f1ced5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ad9ab8a22025032","name":"stdout","source":"1ad9ab8a22025032.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95924b9d92f1ced5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/371c743cf6f64f1d.json b/allure-report/data/test-cases/95e685797940e119.json similarity index 65% rename from allure-report/data/test-cases/371c743cf6f64f1d.json rename to allure-report/data/test-cases/95e685797940e119.json index 1743d6e1f67..b54f3adb8b5 100644 --- a/allure-report/data/test-cases/371c743cf6f64f1d.json +++ b/allure-report/data/test-cases/95e685797940e119.json @@ -1 +1 @@ -{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d7f7d9659ba7dd5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"4961a0c52d810ec1","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"26cf86ca9eda4b5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"371c743cf6f64f1d.json","parameterValues":[]} \ No newline at end of file +{"uid":"95e685797940e119","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"95e685797940e119.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5187a55d5b7bcbbd.json b/allure-report/data/test-cases/95e7a9865f127b46.json similarity index 80% rename from allure-report/data/test-cases/5187a55d5b7bcbbd.json rename to allure-report/data/test-cases/95e7a9865f127b46.json index 56258d38662..9f7c999a548 100644 --- a/allure-report/data/test-cases/5187a55d5b7bcbbd.json +++ b/allure-report/data/test-cases/95e7a9865f127b46.json @@ -1 +1 @@ -{"uid":"5187a55d5b7bcbbd","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef954a973a3165a7","name":"stdout","source":"ef954a973a3165a7.txt","type":"text/plain","size":3892}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5187a55d5b7bcbbd.json","parameterValues":[]} \ No newline at end of file +{"uid":"95e7a9865f127b46","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"44f1e11e2ff687a2","name":"stdout","source":"44f1e11e2ff687a2.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"95e7a9865f127b46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b5bdabfec79d6cf.json b/allure-report/data/test-cases/962ca80dcc908350.json similarity index 67% rename from allure-report/data/test-cases/2b5bdabfec79d6cf.json rename to allure-report/data/test-cases/962ca80dcc908350.json index 2ff60b878f1..eaf83b6dc51 100644 --- a/allure-report/data/test-cases/2b5bdabfec79d6cf.json +++ b/allure-report/data/test-cases/962ca80dcc908350.json @@ -1 +1 @@ -{"uid":"2b5bdabfec79d6cf","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2862210bad838236","name":"stdout","source":"2862210bad838236.txt","type":"text/plain","size":544}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"2b5bdabfec79d6cf.json","parameterValues":[]} \ No newline at end of file +{"uid":"962ca80dcc908350","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7899fdb7c4350c2b","name":"stdout","source":"7899fdb7c4350c2b.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"962ca80dcc908350.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/965bac5a2c55f031.json b/allure-report/data/test-cases/965bac5a2c55f031.json new file mode 100644 index 00000000000..84a29492243 --- /dev/null +++ b/allure-report/data/test-cases/965bac5a2c55f031.json @@ -0,0 +1 @@ +{"uid":"965bac5a2c55f031","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732764220991,"stop":1732764220991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6e173d8e5ff615be","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1}},{"uid":"91aab0544068789","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"80ba443311cb72ff","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"965bac5a2c55f031.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cfaf892be75c5d35.json b/allure-report/data/test-cases/965e1d563752b7d3.json similarity index 52% rename from allure-report/data/test-cases/cfaf892be75c5d35.json rename to allure-report/data/test-cases/965e1d563752b7d3.json index efaa0ad1241..c413d60a953 100644 --- a/allure-report/data/test-cases/cfaf892be75c5d35.json +++ b/allure-report/data/test-cases/965e1d563752b7d3.json @@ -1 +1 @@ -{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732428194502,"stop":1732428194502,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732428194504,"stop":1732428194504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS PARSING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8e7bc3e134c68e92","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"b982073aac2c9d08","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"148a22b7e430194f","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"cfaf892be75c5d35.json","parameterValues":[]} \ No newline at end of file +{"uid":"965e1d563752b7d3","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732428194502,"stop":1732428194502,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732428194504,"stop":1732428194504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS PARSING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"965e1d563752b7d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac379271ec16d5ad.json b/allure-report/data/test-cases/9665a188a4944ac6.json similarity index 67% rename from allure-report/data/test-cases/ac379271ec16d5ad.json rename to allure-report/data/test-cases/9665a188a4944ac6.json index f74b3c602e0..e360f75e88a 100644 --- a/allure-report/data/test-cases/ac379271ec16d5ad.json +++ b/allure-report/data/test-cases/9665a188a4944ac6.json @@ -1 +1 @@ -{"uid":"ac379271ec16d5ad","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732428195684,"stop":1732428195684,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sums of Parts"},{"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":"tag","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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"ac379271ec16d5ad.json","parameterValues":[]} \ No newline at end of file +{"uid":"9665a188a4944ac6","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732428195684,"stop":1732428195684,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sums of Parts"},{"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":"tag","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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"9665a188a4944ac6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/967fef280aa6e796.json b/allure-report/data/test-cases/967fef280aa6e796.json deleted file mode 100644 index d94bf95fa2e..00000000000 --- a/allure-report/data/test-cases/967fef280aa6e796.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"967fef280aa6e796","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ee6aafaeecdbf","name":"stdout","source":"6ee6aafaeecdbf.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"967fef280aa6e796.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/973452fbe07efc18.json b/allure-report/data/test-cases/9689f8dcf21c7e63.json similarity index 58% rename from allure-report/data/test-cases/973452fbe07efc18.json rename to allure-report/data/test-cases/9689f8dcf21c7e63.json index fc088a81b30..3613a85b810 100644 --- a/allure-report/data/test-cases/973452fbe07efc18.json +++ b/allure-report/data/test-cases/9689f8dcf21c7e63.json @@ -1 +1 @@ -{"uid":"973452fbe07efc18","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":1732428196425,"stop":1732428196425,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a3b2f77071e9a780","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"c898f599f64280c3","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ede582dcc2b34bf3","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"973452fbe07efc18.json","parameterValues":[]} \ No newline at end of file +{"uid":"9689f8dcf21c7e63","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":1732428196425,"stop":1732428196425,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"9689f8dcf21c7e63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8efea6185ce9f545.json b/allure-report/data/test-cases/96ce14353b4f3e49.json similarity index 93% rename from allure-report/data/test-cases/8efea6185ce9f545.json rename to allure-report/data/test-cases/96ce14353b4f3e49.json index 5bf16d536e3..de48256c4ca 100644 --- a/allure-report/data/test-cases/8efea6185ce9f545.json +++ b/allure-report/data/test-cases/96ce14353b4f3e49.json @@ -1 +1 @@ -{"uid":"8efea6185ce9f545","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"8efea6185ce9f545.json","parameterValues":[]} \ No newline at end of file +{"uid":"96ce14353b4f3e49","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"96ce14353b4f3e49.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92a7ecb29f4704b1.json b/allure-report/data/test-cases/97a2a77f06d4866c.json similarity index 54% rename from allure-report/data/test-cases/92a7ecb29f4704b1.json rename to allure-report/data/test-cases/97a2a77f06d4866c.json index a6b647d51eb..4271e6520ba 100644 --- a/allure-report/data/test-cases/92a7ecb29f4704b1.json +++ b/allure-report/data/test-cases/97a2a77f06d4866c.json @@ -1 +1 @@ -{"uid":"92a7ecb29f4704b1","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":1732428196352,"stop":1732428196352,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732428196354,"stop":1732428196354,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Remove String Spaces"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ba7aa507beaa1547","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"36b60db7bef82294","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"130e4ffebf4e47af","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"92a7ecb29f4704b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"97a2a77f06d4866c","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":1732428196352,"stop":1732428196352,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732428196354,"stop":1732428196354,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Remove String Spaces"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"97a2a77f06d4866c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7a27da7101eb431.json b/allure-report/data/test-cases/97bb72caed16dfa0.json similarity index 70% rename from allure-report/data/test-cases/a7a27da7101eb431.json rename to allure-report/data/test-cases/97bb72caed16dfa0.json index 9770fe716cc..0707f70427d 100644 --- a/allure-report/data/test-cases/a7a27da7101eb431.json +++ b/allure-report/data/test-cases/97bb72caed16dfa0.json @@ -1 +1 @@ -{"uid":"a7a27da7101eb431","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"75eae5551f423f5f","name":"stdout","source":"75eae5551f423f5f.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"a7a27da7101eb431.json","parameterValues":[]} \ No newline at end of file +{"uid":"97bb72caed16dfa0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"81acaad5616d047a","name":"stdout","source":"81acaad5616d047a.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"97bb72caed16dfa0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a10876da94fb2b4f.json b/allure-report/data/test-cases/97e1e8aa5714e13a.json similarity index 53% rename from allure-report/data/test-cases/a10876da94fb2b4f.json rename to allure-report/data/test-cases/97e1e8aa5714e13a.json index 4ab83e44eac..48ec288b166 100644 --- a/allure-report/data/test-cases/a10876da94fb2b4f.json +++ b/allure-report/data/test-cases/97e1e8aa5714e13a.json @@ -1 +1 @@ -{"uid":"a10876da94fb2b4f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732428196416,"stop":1732428196417,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732428196419,"stop":1732428196419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"74c746ac3dc42135","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"a7008d20e58a9d6a","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6ea719d6e8a376fb","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"a10876da94fb2b4f.json","parameterValues":[]} \ No newline at end of file +{"uid":"97e1e8aa5714e13a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732428196416,"stop":1732428196417,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732428196419,"stop":1732428196419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"97e1e8aa5714e13a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9800852f4c3c1957.json b/allure-report/data/test-cases/9800852f4c3c1957.json deleted file mode 100644 index e77f66edb65..00000000000 --- a/allure-report/data/test-cases/9800852f4c3c1957.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9800852f4c3c1957","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732428196110,"stop":1732428196110,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732428196109,"stop":1732428196109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732428196111,"stop":1732428196111,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Check the exam"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65cad3353d8c115b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"cdb2fb8959394c65","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"da49bdf1737798b8","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"9800852f4c3c1957.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/980af150a499b4e9.json b/allure-report/data/test-cases/980af150a499b4e9.json new file mode 100644 index 00000000000..3c8ef8ab27d --- /dev/null +++ b/allure-report/data/test-cases/980af150a499b4e9.json @@ -0,0 +1 @@ +{"uid":"980af150a499b4e9","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2ed60d0ac53c788","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0}},{"uid":"583a0190aa99ad42","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"cb7d8edff0d47cc5","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"980af150a499b4e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85284c487c263073.json b/allure-report/data/test-cases/98366b42396826ce.json similarity index 67% rename from allure-report/data/test-cases/85284c487c263073.json rename to allure-report/data/test-cases/98366b42396826ce.json index 0427bb4631f..fbafda8af97 100644 --- a/allure-report/data/test-cases/85284c487c263073.json +++ b/allure-report/data/test-cases/98366b42396826ce.json @@ -1 +1 @@ -{"uid":"85284c487c263073","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"554fb31ae5f3473b","name":"stdout","source":"554fb31ae5f3473b.txt","type":"text/plain","size":544}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"85284c487c263073.json","parameterValues":[]} \ No newline at end of file +{"uid":"98366b42396826ce","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"157d07999fe8bb77","name":"stdout","source":"157d07999fe8bb77.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"98366b42396826ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98ca489a74667507.json b/allure-report/data/test-cases/98ca489a74667507.json new file mode 100644 index 00000000000..aa3e1be7883 --- /dev/null +++ b/allure-report/data/test-cases/98ca489a74667507.json @@ -0,0 +1 @@ +{"uid":"98ca489a74667507","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

Verify cipher function. This \"decode\" is used to decode a string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"532d8f53f92733e9","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2}},{"uid":"58a164b572fc5a50","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"25b0f3d782a2ed03","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"98ca489a74667507.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98e0aca6e090522b.json b/allure-report/data/test-cases/98e0aca6e090522b.json new file mode 100644 index 00000000000..a94575197c0 --- /dev/null +++ b/allure-report/data/test-cases/98e0aca6e090522b.json @@ -0,0 +1 @@ +{"uid":"98e0aca6e090522b","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"27e5ed0c95dfc112","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0}},{"uid":"fa27e6e3693a7b83","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"f6681b778f42e33c","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"98e0aca6e090522b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/58e0261647deccd2.json b/allure-report/data/test-cases/994a4ad6b5f0c1e0.json similarity index 75% rename from allure-report/data/test-cases/58e0261647deccd2.json rename to allure-report/data/test-cases/994a4ad6b5f0c1e0.json index d842fdd9a7b..0211e5bcab4 100644 --- a/allure-report/data/test-cases/58e0261647deccd2.json +++ b/allure-report/data/test-cases/994a4ad6b5f0c1e0.json @@ -1 +1 @@ -{"uid":"58e0261647deccd2","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c0c4047155365dbf","name":"stdout","source":"c0c4047155365dbf.txt","type":"text/plain","size":46002}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"58e0261647deccd2.json","parameterValues":[]} \ No newline at end of file +{"uid":"994a4ad6b5f0c1e0","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b1abe2714e07e88","name":"stdout","source":"4b1abe2714e07e88.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"994a4ad6b5f0c1e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c58cb7ae6e5a9993.json b/allure-report/data/test-cases/998a460e800cbb2b.json similarity index 60% rename from allure-report/data/test-cases/c58cb7ae6e5a9993.json rename to allure-report/data/test-cases/998a460e800cbb2b.json index 1c4850ea128..c6391682a19 100644 --- a/allure-report/data/test-cases/c58cb7ae6e5a9993.json +++ b/allure-report/data/test-cases/998a460e800cbb2b.json @@ -1 +1 @@ -{"uid":"c58cb7ae6e5a9993","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732428194259,"stop":1732428194259,"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\").\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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b5d1a28c2e7859f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"3c944fe792fcd179","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"c58cb7ae6e5a9993.json","parameterValues":[]} \ No newline at end of file +{"uid":"998a460e800cbb2b","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732428194259,"stop":1732428194259,"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\").\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":"998a460e800cbb2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39376204dc517df6.json b/allure-report/data/test-cases/99a774ce5ee6bba3.json similarity index 73% rename from allure-report/data/test-cases/39376204dc517df6.json rename to allure-report/data/test-cases/99a774ce5ee6bba3.json index 2c7b0370170..1228f95e1ce 100644 --- a/allure-report/data/test-cases/39376204dc517df6.json +++ b/allure-report/data/test-cases/99a774ce5ee6bba3.json @@ -1 +1 @@ -{"uid":"39376204dc517df6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8d52b389398fe1ce","name":"stdout","source":"8d52b389398fe1ce.txt","type":"text/plain","size":639}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"39376204dc517df6.json","parameterValues":[]} \ No newline at end of file +{"uid":"99a774ce5ee6bba3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72e5eb2953c41fef","name":"stdout","source":"72e5eb2953c41fef.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"99a774ce5ee6bba3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99bd3e79aeea5636.json b/allure-report/data/test-cases/99bd3e79aeea5636.json new file mode 100644 index 00000000000..e7c1a4e72fc --- /dev/null +++ b/allure-report/data/test-cases/99bd3e79aeea5636.json @@ -0,0 +1 @@ +{"uid":"99bd3e79aeea5636","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95e685797940e119","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1}},{"uid":"99e31d655e3161a","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"83b34d0610fd83c6","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"99bd3e79aeea5636.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99e31d655e3161a.json b/allure-report/data/test-cases/99e31d655e3161a.json new file mode 100644 index 00000000000..336f5a33fad --- /dev/null +++ b/allure-report/data/test-cases/99e31d655e3161a.json @@ -0,0 +1 @@ +{"uid":"99e31d655e3161a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"99e31d655e3161a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d373bcba925975c.json b/allure-report/data/test-cases/99e68c3ce0169a01.json similarity index 64% rename from allure-report/data/test-cases/5d373bcba925975c.json rename to allure-report/data/test-cases/99e68c3ce0169a01.json index 66696f89baf..a81470622e3 100644 --- a/allure-report/data/test-cases/5d373bcba925975c.json +++ b/allure-report/data/test-cases/99e68c3ce0169a01.json @@ -1 +1 @@ -{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732428194535,"stop":1732428194535,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732428194536,"stop":1732428194536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Valid Parentheses"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b169e974f5edace2","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"83c423646ff2d9ba","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b29b4bc1c1fe7917","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"5d373bcba925975c.json","parameterValues":[]} \ No newline at end of file +{"uid":"99e68c3ce0169a01","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732428194535,"stop":1732428194535,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732428194536,"stop":1732428194536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Valid Parentheses"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"99e68c3ce0169a01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4706ff9d2a2958c.json b/allure-report/data/test-cases/9a17297856f21a74.json similarity index 70% rename from allure-report/data/test-cases/b4706ff9d2a2958c.json rename to allure-report/data/test-cases/9a17297856f21a74.json index 68d5e72e90a..b8ec308442e 100644 --- a/allure-report/data/test-cases/b4706ff9d2a2958c.json +++ b/allure-report/data/test-cases/9a17297856f21a74.json @@ -1 +1 @@ -{"uid":"b4706ff9d2a2958c","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ef03709815f1ee7","name":"stdout","source":"8ef03709815f1ee7.txt","type":"text/plain","size":37}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b4706ff9d2a2958c.json","parameterValues":[]} \ No newline at end of file +{"uid":"9a17297856f21a74","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b202dd3c9afa278","name":"stdout","source":"3b202dd3c9afa278.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9a17297856f21a74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad8dd1da3b7d646d.json b/allure-report/data/test-cases/9a72e64592e0ae1b.json similarity index 70% rename from allure-report/data/test-cases/ad8dd1da3b7d646d.json rename to allure-report/data/test-cases/9a72e64592e0ae1b.json index a347d120324..cea68896611 100644 --- a/allure-report/data/test-cases/ad8dd1da3b7d646d.json +++ b/allure-report/data/test-cases/9a72e64592e0ae1b.json @@ -1 +1 @@ -{"uid":"ad8dd1da3b7d646d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ab72755d6763015","name":"stdout","source":"5ab72755d6763015.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ad8dd1da3b7d646d.json","parameterValues":[]} \ No newline at end of file +{"uid":"9a72e64592e0ae1b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"14f2aef00cdbb284","name":"stdout","source":"14f2aef00cdbb284.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9a72e64592e0ae1b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a9def5039f12f67.json b/allure-report/data/test-cases/9a9def5039f12f67.json new file mode 100644 index 00000000000..6b088710cdf --- /dev/null +++ b/allure-report/data/test-cases/9a9def5039f12f67.json @@ -0,0 +1 @@ +{"uid":"9a9def5039f12f67","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1732764220392,"stop":1732764220392,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732764220394,"stop":1732764220394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Vasya - Clerk"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5c0c21f2226a901c","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0}},{"uid":"8f6f88ab23c0d630","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"765c2af6ca77e4e9","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"9a9def5039f12f67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f9099a5358c90330.json b/allure-report/data/test-cases/9aaaa009f2bba8b1.json similarity index 73% rename from allure-report/data/test-cases/f9099a5358c90330.json rename to allure-report/data/test-cases/9aaaa009f2bba8b1.json index 21d5fabc7b7..4110b6ea67b 100644 --- a/allure-report/data/test-cases/f9099a5358c90330.json +++ b/allure-report/data/test-cases/9aaaa009f2bba8b1.json @@ -1 +1 @@ -{"uid":"f9099a5358c90330","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a3957b3e858fa9c0","name":"stdout","source":"a3957b3e858fa9c0.txt","type":"text/plain","size":46}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f9099a5358c90330.json","parameterValues":[]} \ No newline at end of file +{"uid":"9aaaa009f2bba8b1","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b9b51ca36b85ae94","name":"stdout","source":"b9b51ca36b85ae94.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"9aaaa009f2bba8b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b0ec4eb2cd2dde7.json b/allure-report/data/test-cases/9b0ec4eb2cd2dde7.json new file mode 100644 index 00000000000..8349dccd2b2 --- /dev/null +++ b/allure-report/data/test-cases/9b0ec4eb2cd2dde7.json @@ -0,0 +1 @@ +{"uid":"9b0ec4eb2cd2dde7","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":"

Codewars badge:

Test Description:

Negative test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"f585eec372fcc899","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0}},{"uid":"65f6b4f1195a0e9d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"e2a8e239adf783da","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"9b0ec4eb2cd2dde7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7b13f1197b1367b6.json b/allure-report/data/test-cases/9b5105f2c1baa9ed.json similarity index 69% rename from allure-report/data/test-cases/7b13f1197b1367b6.json rename to allure-report/data/test-cases/9b5105f2c1baa9ed.json index 0ac6dbc7515..72fe105264d 100644 --- a/allure-report/data/test-cases/7b13f1197b1367b6.json +++ b/allure-report/data/test-cases/9b5105f2c1baa9ed.json @@ -1 +1 @@ -{"uid":"7b13f1197b1367b6","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4fea0728042fecef","name":"stdout","source":"4fea0728042fecef.txt","type":"text/plain","size":281}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7b13f1197b1367b6.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b5105f2c1baa9ed","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"636126aa0fb68ef3","name":"stdout","source":"636126aa0fb68ef3.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9b5105f2c1baa9ed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b613507776a0871.json b/allure-report/data/test-cases/9b613507776a0871.json deleted file mode 100644 index b17056256d6..00000000000 --- a/allure-report/data/test-cases/9b613507776a0871.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9b613507776a0871","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ba31ccf0eed329a1","name":"stdout","source":"ba31ccf0eed329a1.txt","type":"text/plain","size":539}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"9b613507776a0871.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c39905963998c1b.json b/allure-report/data/test-cases/9c39905963998c1b.json new file mode 100644 index 00000000000..8faa979966b --- /dev/null +++ b/allure-report/data/test-cases/9c39905963998c1b.json @@ -0,0 +1 @@ +{"uid":"9c39905963998c1b","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":1732764220432,"stop":1732764220432,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"555a795f08de5e6c","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0}},{"uid":"de0a077377bec456","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"c730b39a7cf9843","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9c39905963998c1b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d2b852ea94aa88a.json b/allure-report/data/test-cases/9d2b852ea94aa88a.json new file mode 100644 index 00000000000..e3290422576 --- /dev/null +++ b/allure-report/data/test-cases/9d2b852ea94aa88a.json @@ -0,0 +1 @@ +{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732764218691,"stop":1732764218691,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d9aec252d158762","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1}},{"uid":"2ac4d21875a44bdb","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"7677af29e8a1671e","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"9d2b852ea94aa88a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d50fe36fd5059ab.json b/allure-report/data/test-cases/9d50fe36fd5059ab.json new file mode 100644 index 00000000000..f566120fb42 --- /dev/null +++ b/allure-report/data/test-cases/9d50fe36fd5059ab.json @@ -0,0 +1 @@ +{"uid":"9d50fe36fd5059ab","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8ecb0410a6ed3d7","name":"stdout","source":"8ecb0410a6ed3d7.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9d50fe36fd5059ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dc0ca62f1db510f.json b/allure-report/data/test-cases/9dc0ca62f1db510f.json new file mode 100644 index 00000000000..939bbce6a9f --- /dev/null +++ b/allure-report/data/test-cases/9dc0ca62f1db510f.json @@ -0,0 +1 @@ +{"uid":"9dc0ca62f1db510f","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a40280d8ceb16cd","name":"stdout","source":"6a40280d8ceb16cd.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9dc0ca62f1db510f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e017ac7fdaf6bf5.json b/allure-report/data/test-cases/9e017ac7fdaf6bf5.json new file mode 100644 index 00000000000..16d8dd460a8 --- /dev/null +++ b/allure-report/data/test-cases/9e017ac7fdaf6bf5.json @@ -0,0 +1 @@ +{"uid":"9e017ac7fdaf6bf5","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732764219168,"stop":1732764219168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sports League Table Ranking"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d02b155522c6119","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d7d1e3c0f9370311","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9e017ac7fdaf6bf5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f0296b5891c7763.json b/allure-report/data/test-cases/9e3c99258a0c64df.json similarity index 72% rename from allure-report/data/test-cases/4f0296b5891c7763.json rename to allure-report/data/test-cases/9e3c99258a0c64df.json index 363b071722f..37aae3e06cf 100644 --- a/allure-report/data/test-cases/4f0296b5891c7763.json +++ b/allure-report/data/test-cases/9e3c99258a0c64df.json @@ -1 +1 @@ -{"uid":"4f0296b5891c7763","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c38727f5bb9d52ae","name":"stdout","source":"c38727f5bb9d52ae.txt","type":"text/plain","size":352}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"4f0296b5891c7763.json","parameterValues":[]} \ No newline at end of file +{"uid":"9e3c99258a0c64df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"485b7a7482b5d8a7","name":"stdout","source":"485b7a7482b5d8a7.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"9e3c99258a0c64df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e71e34228180c1c.json b/allure-report/data/test-cases/9e71e34228180c1c.json new file mode 100644 index 00000000000..5076d0f268f --- /dev/null +++ b/allure-report/data/test-cases/9e71e34228180c1c.json @@ -0,0 +1 @@ +{"uid":"9e71e34228180c1c","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":1732764220822,"stop":1732764220823,"duration":1},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732764220823,"stop":1732764220823,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b9d60ed71764b7f4","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0}},{"uid":"35f4051adfa3517","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"6aeb83ca0df8b3d8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"9e71e34228180c1c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1b53b199c1c867e.json b/allure-report/data/test-cases/9eac58d1342209e0.json similarity index 93% rename from allure-report/data/test-cases/a1b53b199c1c867e.json rename to allure-report/data/test-cases/9eac58d1342209e0.json index 29fd597118d..11df2f8d498 100644 --- a/allure-report/data/test-cases/a1b53b199c1c867e.json +++ b/allure-report/data/test-cases/9eac58d1342209e0.json @@ -1 +1 @@ -{"uid":"a1b53b199c1c867e","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":"a1b53b199c1c867e.json","parameterValues":[]} \ No newline at end of file +{"uid":"9eac58d1342209e0","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":"9eac58d1342209e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2705032891531e8.json b/allure-report/data/test-cases/9ece4d55c6bd3b35.json similarity index 65% rename from allure-report/data/test-cases/b2705032891531e8.json rename to allure-report/data/test-cases/9ece4d55c6bd3b35.json index 6ab9972060d..49dd68e6cec 100644 --- a/allure-report/data/test-cases/b2705032891531e8.json +++ b/allure-report/data/test-cases/9ece4d55c6bd3b35.json @@ -1 +1 @@ -{"uid":"b2705032891531e8","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732428196453,"stop":1732428196453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1732428196456,"stop":1732428196456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f040925d9e513197","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"6f0b2af516b0f755","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"b2705032891531e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"9ece4d55c6bd3b35","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9ece4d55c6bd3b35.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5f3069d223f82c6.json b/allure-report/data/test-cases/9ee094a1f359821e.json similarity index 65% rename from allure-report/data/test-cases/c5f3069d223f82c6.json rename to allure-report/data/test-cases/9ee094a1f359821e.json index 4ef8a2af8dd..afb77b80612 100644 --- a/allure-report/data/test-cases/c5f3069d223f82c6.json +++ b/allure-report/data/test-cases/9ee094a1f359821e.json @@ -1 +1 @@ -{"uid":"c5f3069d223f82c6","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6dccc5ff56326cce","name":"stdout","source":"6dccc5ff56326cce.txt","type":"text/plain","size":882}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"c5f3069d223f82c6.json","parameterValues":[]} \ No newline at end of file +{"uid":"9ee094a1f359821e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6de140d5a479d77f","name":"stdout","source":"6de140d5a479d77f.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9ee094a1f359821e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4af7c6dd9a36bc3.json b/allure-report/data/test-cases/9ef5212b94420bba.json similarity index 63% rename from allure-report/data/test-cases/d4af7c6dd9a36bc3.json rename to allure-report/data/test-cases/9ef5212b94420bba.json index a1407146519..4275232a9df 100644 --- a/allure-report/data/test-cases/d4af7c6dd9a36bc3.json +++ b/allure-report/data/test-cases/9ef5212b94420bba.json @@ -1 +1 @@ -{"uid":"d4af7c6dd9a36bc3","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"760266e95eacb400","name":"stdout","source":"760266e95eacb400.txt","type":"text/plain","size":476}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"d4af7c6dd9a36bc3.json","parameterValues":[]} \ No newline at end of file +{"uid":"9ef5212b94420bba","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"59ffb265a3e6098c","name":"stdout","source":"59ffb265a3e6098c.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"9ef5212b94420bba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bc039aea1f276c5c.json b/allure-report/data/test-cases/9f41894781b470ee.json similarity index 68% rename from allure-report/data/test-cases/bc039aea1f276c5c.json rename to allure-report/data/test-cases/9f41894781b470ee.json index 4cd5845f34c..22a07b03be2 100644 --- a/allure-report/data/test-cases/bc039aea1f276c5c.json +++ b/allure-report/data/test-cases/9f41894781b470ee.json @@ -1 +1 @@ -{"uid":"bc039aea1f276c5c","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e1db63f604b55e53","name":"stdout","source":"e1db63f604b55e53.txt","type":"text/plain","size":1515}],"parameters":[],"hasContent":true,"stepsCount":13,"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":[],"hasContent":false,"stepsCount":0,"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":"bc039aea1f276c5c.json","parameterValues":[]} \ No newline at end of file +{"uid":"9f41894781b470ee","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f135592d4f270e5c","name":"stdout","source":"f135592d4f270e5c.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9f41894781b470ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d97402e929388a59.json b/allure-report/data/test-cases/9f8d638b621270bd.json similarity index 66% rename from allure-report/data/test-cases/d97402e929388a59.json rename to allure-report/data/test-cases/9f8d638b621270bd.json index 75d12d26db1..633b1cff8dd 100644 --- a/allure-report/data/test-cases/d97402e929388a59.json +++ b/allure-report/data/test-cases/9f8d638b621270bd.json @@ -1 +1 @@ -{"uid":"d97402e929388a59","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3df0050d216178a3","name":"stdout","source":"3df0050d216178a3.txt","type":"text/plain","size":104}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"d97402e929388a59.json","parameterValues":[]} \ No newline at end of file +{"uid":"9f8d638b621270bd","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ebde2b3c5f7bae47","name":"stdout","source":"ebde2b3c5f7bae47.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9f8d638b621270bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a401d5b28fee66a.json b/allure-report/data/test-cases/9fea94ac2fbcf5b2.json similarity index 74% rename from allure-report/data/test-cases/9a401d5b28fee66a.json rename to allure-report/data/test-cases/9fea94ac2fbcf5b2.json index a0776b70fdd..1c1f20bd10c 100644 --- a/allure-report/data/test-cases/9a401d5b28fee66a.json +++ b/allure-report/data/test-cases/9fea94ac2fbcf5b2.json @@ -1 +1 @@ -{"uid":"9a401d5b28fee66a","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d2ebd6c7bb69da29","name":"stdout","source":"d2ebd6c7bb69da29.txt","type":"text/plain","size":772}],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9a401d5b28fee66a.json","parameterValues":[]} \ No newline at end of file +{"uid":"9fea94ac2fbcf5b2","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38035331d2572599","name":"stdout","source":"38035331d2572599.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9fea94ac2fbcf5b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acf49fc01f491be4.json b/allure-report/data/test-cases/a0013817978e9f1b.json similarity index 68% rename from allure-report/data/test-cases/acf49fc01f491be4.json rename to allure-report/data/test-cases/a0013817978e9f1b.json index 5551ddd64b9..9453c4f1210 100644 --- a/allure-report/data/test-cases/acf49fc01f491be4.json +++ b/allure-report/data/test-cases/a0013817978e9f1b.json @@ -1 +1 @@ -{"uid":"acf49fc01f491be4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c258bec5b6c8eafe","name":"stdout","source":"c258bec5b6c8eafe.txt","type":"text/plain","size":611}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"acf49fc01f491be4.json","parameterValues":[]} \ No newline at end of file +{"uid":"a0013817978e9f1b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"94063c17619b52a4","name":"stdout","source":"94063c17619b52a4.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a0013817978e9f1b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d121ae5a75cc69b9.json b/allure-report/data/test-cases/a0332cc6a682faac.json similarity index 66% rename from allure-report/data/test-cases/d121ae5a75cc69b9.json rename to allure-report/data/test-cases/a0332cc6a682faac.json index 3b2bbae67fe..d35e3c87b9d 100644 --- a/allure-report/data/test-cases/d121ae5a75cc69b9.json +++ b/allure-report/data/test-cases/a0332cc6a682faac.json @@ -1 +1 @@ -{"uid":"d121ae5a75cc69b9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65a370055ee8e2b9","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"8e17b24d548befe2","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"139c28ca38674b14","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"d121ae5a75cc69b9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a0332cc6a682faac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a0332cc6a682faac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15dbab6d625f40d3.json b/allure-report/data/test-cases/a07fccce3e37ee4a.json similarity index 79% rename from allure-report/data/test-cases/15dbab6d625f40d3.json rename to allure-report/data/test-cases/a07fccce3e37ee4a.json index 040c403ea3f..2701dbee135 100644 --- a/allure-report/data/test-cases/15dbab6d625f40d3.json +++ b/allure-report/data/test-cases/a07fccce3e37ee4a.json @@ -1 +1 @@ -{"uid":"15dbab6d625f40d3","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"880a2c92c8612a83","name":"stdout","source":"880a2c92c8612a83.txt","type":"text/plain","size":204}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"15dbab6d625f40d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"a07fccce3e37ee4a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5cd6ffe4ff4d743f","name":"stdout","source":"5cd6ffe4ff4d743f.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a07fccce3e37ee4a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6f52d0b9e8ac3c5.json b/allure-report/data/test-cases/a12dc2585f9de41f.json similarity index 72% rename from allure-report/data/test-cases/c6f52d0b9e8ac3c5.json rename to allure-report/data/test-cases/a12dc2585f9de41f.json index c292f81dd96..e1f2ee41e70 100644 --- a/allure-report/data/test-cases/c6f52d0b9e8ac3c5.json +++ b/allure-report/data/test-cases/a12dc2585f9de41f.json @@ -1 +1 @@ -{"uid":"c6f52d0b9e8ac3c5","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dd90e5bd6518035b","name":"stdout","source":"dd90e5bd6518035b.txt","type":"text/plain","size":230}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"c6f52d0b9e8ac3c5.json","parameterValues":[]} \ No newline at end of file +{"uid":"a12dc2585f9de41f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"312062c4d3ad84ef","name":"stdout","source":"312062c4d3ad84ef.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a12dc2585f9de41f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a13c451f0f676900.json b/allure-report/data/test-cases/a13c451f0f676900.json new file mode 100644 index 00000000000..6005a567ec9 --- /dev/null +++ b/allure-report/data/test-cases/a13c451f0f676900.json @@ -0,0 +1 @@ +{"uid":"a13c451f0f676900","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":1732764220628,"stop":1732764220637,"duration":9},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732764220628,"stop":1732764220636,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"be4d78eb60a06aeb","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3}},{"uid":"a7d954f4aff6f601","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"4dfeb434e28153fe","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"a13c451f0f676900.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1980ae57d2c7b3.json b/allure-report/data/test-cases/a1980ae57d2c7b3.json new file mode 100644 index 00000000000..2ea6004e418 --- /dev/null +++ b/allure-report/data/test-cases/a1980ae57d2c7b3.json @@ -0,0 +1 @@ +{"uid":"a1980ae57d2c7b3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"175a566935f714fc","name":"stdout","source":"175a566935f714fc.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"a1980ae57d2c7b3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1a7aeb13172d1f0.json b/allure-report/data/test-cases/a1a7aeb13172d1f0.json deleted file mode 100644 index 94e3b4695db..00000000000 --- a/allure-report/data/test-cases/a1a7aeb13172d1f0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732428196095,"stop":1732428196095,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d38d4627913b0040","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"1ca9562da84c64b4","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8451096f3488e82","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"tags":["FUNDAMENTALS"]},"source":"a1a7aeb13172d1f0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d10f71bfad2e1ef.json b/allure-report/data/test-cases/a20726936132e0f6.json similarity index 72% rename from allure-report/data/test-cases/9d10f71bfad2e1ef.json rename to allure-report/data/test-cases/a20726936132e0f6.json index 5f932b5000d..93cff11791f 100644 --- a/allure-report/data/test-cases/9d10f71bfad2e1ef.json +++ b/allure-report/data/test-cases/a20726936132e0f6.json @@ -1 +1 @@ -{"uid":"9d10f71bfad2e1ef","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d89f3d58b0c226e8","name":"stdout","source":"d89f3d58b0c226e8.txt","type":"text/plain","size":288}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"9d10f71bfad2e1ef.json","parameterValues":[]} \ No newline at end of file +{"uid":"a20726936132e0f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f146e27128e108d6","name":"stdout","source":"f146e27128e108d6.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"a20726936132e0f6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f00b7b6604c5e7e4.json b/allure-report/data/test-cases/a22d4b8f003df599.json similarity index 71% rename from allure-report/data/test-cases/f00b7b6604c5e7e4.json rename to allure-report/data/test-cases/a22d4b8f003df599.json index b3c66294f24..a2015f0d2c5 100644 --- a/allure-report/data/test-cases/f00b7b6604c5e7e4.json +++ b/allure-report/data/test-cases/a22d4b8f003df599.json @@ -1 +1 @@ -{"uid":"f00b7b6604c5e7e4","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"30a819977a6f7bba","name":"stdout","source":"30a819977a6f7bba.txt","type":"text/plain","size":1380}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"f00b7b6604c5e7e4.json","parameterValues":[]} \ No newline at end of file +{"uid":"a22d4b8f003df599","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd8004b465c9b5f8","name":"stdout","source":"dd8004b465c9b5f8.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a22d4b8f003df599.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c6df3dc2deaaefa.json b/allure-report/data/test-cases/a25791815212e793.json similarity index 70% rename from allure-report/data/test-cases/8c6df3dc2deaaefa.json rename to allure-report/data/test-cases/a25791815212e793.json index 1994bcc0393..47eb3a8d519 100644 --- a/allure-report/data/test-cases/8c6df3dc2deaaefa.json +++ b/allure-report/data/test-cases/a25791815212e793.json @@ -1 +1 @@ -{"uid":"8c6df3dc2deaaefa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"253cdd605d9ea305","name":"stdout","source":"253cdd605d9ea305.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8c6df3dc2deaaefa.json","parameterValues":[]} \ No newline at end of file +{"uid":"a25791815212e793","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"835e4619c5013fd1","name":"stdout","source":"835e4619c5013fd1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a25791815212e793.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5177f712a8be6da.json b/allure-report/data/test-cases/a29d5673ddcf7e8e.json similarity index 55% rename from allure-report/data/test-cases/f5177f712a8be6da.json rename to allure-report/data/test-cases/a29d5673ddcf7e8e.json index 168bad7722d..5e2dcdec52c 100644 --- a/allure-report/data/test-cases/f5177f712a8be6da.json +++ b/allure-report/data/test-cases/a29d5673ddcf7e8e.json @@ -1 +1 @@ -{"uid":"f5177f712a8be6da","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":1732428195484,"stop":1732428195485,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9af06a5366a3631","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"ea156c7340f7150f","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d8d5d2ee94f4b051","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"f5177f712a8be6da.json","parameterValues":[]} \ No newline at end of file +{"uid":"a29d5673ddcf7e8e","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":1732428195484,"stop":1732428195485,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"a29d5673ddcf7e8e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62507dec220dfd02.json b/allure-report/data/test-cases/a2f70229e4c52322.json similarity index 69% rename from allure-report/data/test-cases/62507dec220dfd02.json rename to allure-report/data/test-cases/a2f70229e4c52322.json index d0e620d5952..41cf60c31a8 100644 --- a/allure-report/data/test-cases/62507dec220dfd02.json +++ b/allure-report/data/test-cases/a2f70229e4c52322.json @@ -1 +1 @@ -{"uid":"62507dec220dfd02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce20c6dd4e02cb56","name":"stdout","source":"ce20c6dd4e02cb56.txt","type":"text/plain","size":76}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"62507dec220dfd02.json","parameterValues":[]} \ No newline at end of file +{"uid":"a2f70229e4c52322","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"74cdc928e034d6b3","name":"stdout","source":"74cdc928e034d6b3.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a2f70229e4c52322.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a30a3ac9558d7a9c.json b/allure-report/data/test-cases/a30a3ac9558d7a9c.json new file mode 100644 index 00000000000..ee6d45e1daa --- /dev/null +++ b/allure-report/data/test-cases/a30a3ac9558d7a9c.json @@ -0,0 +1 @@ +{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732764220206,"stop":1732764220206,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220207,"stop":1732764220207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732764220208,"stop":1732764220208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5a88d917682070e","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0}},{"uid":"9a72e64592e0ae1b","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"a25791815212e793","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"a30a3ac9558d7a9c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5eca272b3b393557.json b/allure-report/data/test-cases/a329da92784fccae.json similarity index 61% rename from allure-report/data/test-cases/5eca272b3b393557.json rename to allure-report/data/test-cases/a329da92784fccae.json index 49cbd08bc0c..25df1274176 100644 --- a/allure-report/data/test-cases/5eca272b3b393557.json +++ b/allure-report/data/test-cases/a329da92784fccae.json @@ -1 +1 @@ -{"uid":"5eca272b3b393557","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732428193991,"stop":1732428193991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1732428193994,"stop":1732428193994,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9c645ee48c4616c","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"a7d4500da5fb8933","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b01fd4e8d095b60f","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"5eca272b3b393557.json","parameterValues":[]} \ No newline at end of file +{"uid":"a329da92784fccae","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a329da92784fccae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85df8de56a96ab7c.json b/allure-report/data/test-cases/a35155a27bb8937d.json similarity index 93% rename from allure-report/data/test-cases/85df8de56a96ab7c.json rename to allure-report/data/test-cases/a35155a27bb8937d.json index 888fbddf831..28961e88f41 100644 --- a/allure-report/data/test-cases/85df8de56a96ab7c.json +++ b/allure-report/data/test-cases/a35155a27bb8937d.json @@ -1 +1 @@ -{"uid":"85df8de56a96ab7c","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":1724735127188,"stop":1724735127188,"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":"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":"85df8de56a96ab7c.json","parameterValues":[]} \ No newline at end of file +{"uid":"a35155a27bb8937d","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":1724735127188,"stop":1724735127188,"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":"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":"a35155a27bb8937d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3b2f77071e9a780.json b/allure-report/data/test-cases/a355bc32a0d73da0.json similarity index 70% rename from allure-report/data/test-cases/a3b2f77071e9a780.json rename to allure-report/data/test-cases/a355bc32a0d73da0.json index 9e0b98fbf71..622346b2b45 100644 --- a/allure-report/data/test-cases/a3b2f77071e9a780.json +++ b/allure-report/data/test-cases/a355bc32a0d73da0.json @@ -1 +1 @@ -{"uid":"a3b2f77071e9a780","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d83a50edd6b56e2a","name":"stdout","source":"d83a50edd6b56e2a.txt","type":"text/plain","size":54}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"a3b2f77071e9a780.json","parameterValues":[]} \ No newline at end of file +{"uid":"a355bc32a0d73da0","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f87f52236c75608","name":"stdout","source":"2f87f52236c75608.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"a355bc32a0d73da0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c77f51e83226296c.json b/allure-report/data/test-cases/a39b53ea962a31f1.json similarity index 57% rename from allure-report/data/test-cases/c77f51e83226296c.json rename to allure-report/data/test-cases/a39b53ea962a31f1.json index 073c7f2abbe..04bdb722b83 100644 --- a/allure-report/data/test-cases/c77f51e83226296c.json +++ b/allure-report/data/test-cases/a39b53ea962a31f1.json @@ -1 +1 @@ -{"uid":"c77f51e83226296c","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732428193889,"stop":1732428193889,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":21,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1732428193894,"stop":1732428193894,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5961f436380e11d2","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"57e5e5f4d9d91cf6","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"c77f51e83226296c.json","parameterValues":[]} \ No newline at end of file +{"uid":"a39b53ea962a31f1","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732428193889,"stop":1732428193889,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a39b53ea962a31f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5af3f258cf327b2a.json b/allure-report/data/test-cases/a3ca7d068d3e7d87.json similarity index 56% rename from allure-report/data/test-cases/5af3f258cf327b2a.json rename to allure-report/data/test-cases/a3ca7d068d3e7d87.json index 5dfdc8fcd42..c7adb43a423 100644 --- a/allure-report/data/test-cases/5af3f258cf327b2a.json +++ b/allure-report/data/test-cases/a3ca7d068d3e7d87.json @@ -1 +1 @@ -{"uid":"5af3f258cf327b2a","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes Dog and Dog have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes 5 and 5 have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes good and good have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes 50lb and 50lb have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes brown and brown have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1732428195883,"stop":1732428195883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d12fb82b623fefb9","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"c6923016c0d7805e","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5af3f258cf327b2a.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3ca7d068d3e7d87","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a3ca7d068d3e7d87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3cba1eb012d0834.json b/allure-report/data/test-cases/a3cba1eb012d0834.json new file mode 100644 index 00000000000..a8598fc4735 --- /dev/null +++ b/allure-report/data/test-cases/a3cba1eb012d0834.json @@ -0,0 +1 @@ +{"uid":"a3cba1eb012d0834","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":1732764220770,"stop":1732764220770,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732764220773,"stop":1732764220773,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"suite","value":"Data Structures"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"edb0e461adb94f5b","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0}},{"uid":"b4bcf3d5a4367d8","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"2c7af88777002151","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"a3cba1eb012d0834.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13ca3a7cd8b0e3af.json b/allure-report/data/test-cases/a456e8af4c590649.json similarity index 70% rename from allure-report/data/test-cases/13ca3a7cd8b0e3af.json rename to allure-report/data/test-cases/a456e8af4c590649.json index c373a6443e1..6781c20f172 100644 --- a/allure-report/data/test-cases/13ca3a7cd8b0e3af.json +++ b/allure-report/data/test-cases/a456e8af4c590649.json @@ -1 +1 @@ -{"uid":"13ca3a7cd8b0e3af","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a4c00d99760de4b","name":"stdout","source":"3a4c00d99760de4b.txt","type":"text/plain","size":908}],"parameters":[],"hasContent":true,"stepsCount":14,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"13ca3a7cd8b0e3af.json","parameterValues":[]} \ No newline at end of file +{"uid":"a456e8af4c590649","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f5e7c985bb14104f","name":"stdout","source":"f5e7c985bb14104f.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a456e8af4c590649.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33a4a469899e9868.json b/allure-report/data/test-cases/a4637a157e542cb8.json similarity index 65% rename from allure-report/data/test-cases/33a4a469899e9868.json rename to allure-report/data/test-cases/a4637a157e542cb8.json index 79f7b0c0fa6..9526abb730e 100644 --- a/allure-report/data/test-cases/33a4a469899e9868.json +++ b/allure-report/data/test-cases/a4637a157e542cb8.json @@ -1 +1 @@ -{"uid":"33a4a469899e9868","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"17ccb2223275d18f","name":"stdout","source":"17ccb2223275d18f.txt","type":"text/plain","size":298}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"33a4a469899e9868.json","parameterValues":[]} \ No newline at end of file +{"uid":"a4637a157e542cb8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38a8ba45b2ebefd2","name":"stdout","source":"38a8ba45b2ebefd2.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a4637a157e542cb8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7d4500da5fb8933.json b/allure-report/data/test-cases/a53e477b227bdf44.json similarity index 52% rename from allure-report/data/test-cases/a7d4500da5fb8933.json rename to allure-report/data/test-cases/a53e477b227bdf44.json index 49ea2d2d281..b89c3826727 100644 --- a/allure-report/data/test-cases/a7d4500da5fb8933.json +++ b/allure-report/data/test-cases/a53e477b227bdf44.json @@ -1 +1 @@ -{"uid":"a7d4500da5fb8933","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e0673a9df06bdbef","name":"stdout","source":"e0673a9df06bdbef.txt","type":"text/plain","size":565}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":"a7d4500da5fb8933.json","parameterValues":[]} \ No newline at end of file +{"uid":"a53e477b227bdf44","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d473fba435502d8","name":"stdout","source":"d473fba435502d8.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a53e477b227bdf44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c78d3bc5a71109a.json b/allure-report/data/test-cases/a5467cc7a05b3546.json similarity index 71% rename from allure-report/data/test-cases/5c78d3bc5a71109a.json rename to allure-report/data/test-cases/a5467cc7a05b3546.json index f8784a5315c..9d35859571b 100644 --- a/allure-report/data/test-cases/5c78d3bc5a71109a.json +++ b/allure-report/data/test-cases/a5467cc7a05b3546.json @@ -1 +1 @@ -{"uid":"5c78d3bc5a71109a","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4bafaae940d73b69","name":"stdout","source":"4bafaae940d73b69.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"5c78d3bc5a71109a.json","parameterValues":[]} \ No newline at end of file +{"uid":"a5467cc7a05b3546","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55f2f3a355e5f2ed","name":"stdout","source":"55f2f3a355e5f2ed.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a5467cc7a05b3546.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1a24ca70fa28a4b.json b/allure-report/data/test-cases/a586415c7c751146.json similarity index 73% rename from allure-report/data/test-cases/f1a24ca70fa28a4b.json rename to allure-report/data/test-cases/a586415c7c751146.json index 1cd6066a1ec..d8cc8baaa05 100644 --- a/allure-report/data/test-cases/f1a24ca70fa28a4b.json +++ b/allure-report/data/test-cases/a586415c7c751146.json @@ -1 +1 @@ -{"uid":"f1a24ca70fa28a4b","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1629f3862628691e","name":"stdout","source":"1629f3862628691e.txt","type":"text/plain","size":411}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"f1a24ca70fa28a4b.json","parameterValues":[]} \ No newline at end of file +{"uid":"a586415c7c751146","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"f1567e8d01d8dfde","name":"stdout","source":"f1567e8d01d8dfde.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"a586415c7c751146.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5b469ea69ba375b.json b/allure-report/data/test-cases/a5b469ea69ba375b.json new file mode 100644 index 00000000000..40374f0387e --- /dev/null +++ b/allure-report/data/test-cases/a5b469ea69ba375b.json @@ -0,0 +1 @@ +{"uid":"a5b469ea69ba375b","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"26a447cb7c15cb4e","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0}},{"uid":"de09867d078b6af4","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"11ff02c2df19530d","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"a5b469ea69ba375b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7a63127b0ec26d9.json b/allure-report/data/test-cases/a5bb3631db18a9d9.json similarity index 72% rename from allure-report/data/test-cases/c7a63127b0ec26d9.json rename to allure-report/data/test-cases/a5bb3631db18a9d9.json index 1c2dcb22531..9e06f5046f0 100644 --- a/allure-report/data/test-cases/c7a63127b0ec26d9.json +++ b/allure-report/data/test-cases/a5bb3631db18a9d9.json @@ -1 +1 @@ -{"uid":"c7a63127b0ec26d9","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c7a63127b0ec26d9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a5bb3631db18a9d9","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"a5bb3631db18a9d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a618a1e47f6e349d.json b/allure-report/data/test-cases/a618a1e47f6e349d.json new file mode 100644 index 00000000000..5928dc97e9b --- /dev/null +++ b/allure-report/data/test-cases/a618a1e47f6e349d.json @@ -0,0 +1 @@ +{"uid":"a618a1e47f6e349d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"458fa73ae78d8720","name":"stdout","source":"458fa73ae78d8720.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a618a1e47f6e349d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a61ba5af03a1f296.json b/allure-report/data/test-cases/a61ba5af03a1f296.json new file mode 100644 index 00000000000..831985ca6a3 --- /dev/null +++ b/allure-report/data/test-cases/a61ba5af03a1f296.json @@ -0,0 +1 @@ +{"uid":"a61ba5af03a1f296","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732764220965,"stop":1732764220965,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Formatting decimal places #0"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Formatting"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc6ce7cf48700667","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1}},{"uid":"c20970878e009fc6","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"842b955d145895ca","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a61ba5af03a1f296.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6592dc6717fe514.json b/allure-report/data/test-cases/a6592dc6717fe514.json new file mode 100644 index 00000000000..6a2d186b0d8 --- /dev/null +++ b/allure-report/data/test-cases/a6592dc6717fe514.json @@ -0,0 +1 @@ +{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732764220780,"stop":1732764220780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"V A P O R C O D E"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a672dac8835c46c1","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0}},{"uid":"7d3b7c7449825e20","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"d50213dc9ab240ff","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"a6592dc6717fe514.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffa13a74003ae703.json b/allure-report/data/test-cases/a672dac8835c46c1.json similarity index 52% rename from allure-report/data/test-cases/ffa13a74003ae703.json rename to allure-report/data/test-cases/a672dac8835c46c1.json index 568caedab99..e67567bab7c 100644 --- a/allure-report/data/test-cases/ffa13a74003ae703.json +++ b/allure-report/data/test-cases/a672dac8835c46c1.json @@ -1 +1 @@ -{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732428196053,"stop":1732428196053,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"V A P O R C O D E"},{"name":"tag","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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"518cb319be0d6f5c","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"81c03b59fa01f666","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"5a22d7a269c3ca06","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"ffa13a74003ae703.json","parameterValues":[]} \ No newline at end of file +{"uid":"a672dac8835c46c1","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732428196053,"stop":1732428196053,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"V A P O R C O D E"},{"name":"tag","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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a672dac8835c46c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/239a317b6e090fd8.json b/allure-report/data/test-cases/a6a59cc8a0131a02.json similarity index 54% rename from allure-report/data/test-cases/239a317b6e090fd8.json rename to allure-report/data/test-cases/a6a59cc8a0131a02.json index 6b7496c2da1..079b68bb347 100644 --- a/allure-report/data/test-cases/239a317b6e090fd8.json +++ b/allure-report/data/test-cases/a6a59cc8a0131a02.json @@ -1 +1 @@ -{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194678,"stop":1732428194678,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5519a1e9b61f2ca3","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"4b8d012f19a4e1e6","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"239a317b6e090fd8.json","parameterValues":[]} \ No newline at end of file +{"uid":"a6a59cc8a0131a02","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194678,"stop":1732428194678,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a6a59cc8a0131a02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6d26dfb90ab4062.json b/allure-report/data/test-cases/a6d26dfb90ab4062.json new file mode 100644 index 00000000000..2e07582c45d --- /dev/null +++ b/allure-report/data/test-cases/a6d26dfb90ab4062.json @@ -0,0 +1 @@ +{"uid":"a6d26dfb90ab4062","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732764218536,"stop":1732764218536,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732764218535,"stop":1732764218535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a39b53ea962a31f1","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0}},{"uid":"500f182a6eedd000","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"bae98e899f1ebab4","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"a6d26dfb90ab4062.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e7bc3e134c68e92.json b/allure-report/data/test-cases/a6f428498c7694b0.json similarity index 61% rename from allure-report/data/test-cases/8e7bc3e134c68e92.json rename to allure-report/data/test-cases/a6f428498c7694b0.json index 9a0b976a332..23c61116a7b 100644 --- a/allure-report/data/test-cases/8e7bc3e134c68e92.json +++ b/allure-report/data/test-cases/a6f428498c7694b0.json @@ -1 +1 @@ -{"uid":"8e7bc3e134c68e92","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9b753e8aa39a2b6c","name":"stdout","source":"9b753e8aa39a2b6c.txt","type":"text/plain","size":531}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"8e7bc3e134c68e92.json","parameterValues":[]} \ No newline at end of file +{"uid":"a6f428498c7694b0","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4f546882d08a1ac","name":"stdout","source":"f4f546882d08a1ac.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"a6f428498c7694b0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/951576068e42ee36.json b/allure-report/data/test-cases/a7599be0f5459a3d.json similarity index 78% rename from allure-report/data/test-cases/951576068e42ee36.json rename to allure-report/data/test-cases/a7599be0f5459a3d.json index e80c52260c2..c6f740737a8 100644 --- a/allure-report/data/test-cases/951576068e42ee36.json +++ b/allure-report/data/test-cases/a7599be0f5459a3d.json @@ -1 +1 @@ -{"uid":"951576068e42ee36","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"34515415abccae34","name":"stdout","source":"34515415abccae34.txt","type":"text/plain","size":717}],"parameters":[],"hasContent":true,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":"951576068e42ee36.json","parameterValues":[]} \ No newline at end of file +{"uid":"a7599be0f5459a3d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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":"85813043366b6b90","name":"stdout","source":"85813043366b6b90.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a7599be0f5459a3d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a75aa53086c60820.json b/allure-report/data/test-cases/a75aa53086c60820.json new file mode 100644 index 00000000000..d95416e83cc --- /dev/null +++ b/allure-report/data/test-cases/a75aa53086c60820.json @@ -0,0 +1 @@ +{"uid":"a75aa53086c60820","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732428195769,"stop":1732428195769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a75aa53086c60820.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a76c277b6c0b5940.json b/allure-report/data/test-cases/a76c277b6c0b5940.json deleted file mode 100644 index 7e9dffea919..00000000000 --- a/allure-report/data/test-cases/a76c277b6c0b5940.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on negative grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"3c0afff932465669","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"30b1174850b5a822","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":1,"unknown":0,"total":3},"items":[{"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":"a76c277b6c0b5940.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a78b9243c26a61bf.json b/allure-report/data/test-cases/a78b9243c26a61bf.json new file mode 100644 index 00000000000..9a605713960 --- /dev/null +++ b/allure-report/data/test-cases/a78b9243c26a61bf.json @@ -0,0 +1 @@ +{"uid":"a78b9243c26a61bf","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":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"875e90b046ec092c","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0}},{"uid":"f25197354d7a779d","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"86447fe348b226fe","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"a78b9243c26a61bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7d954f4aff6f601.json b/allure-report/data/test-cases/a7d954f4aff6f601.json new file mode 100644 index 00000000000..f7406d1a053 --- /dev/null +++ b/allure-report/data/test-cases/a7d954f4aff6f601.json @@ -0,0 +1 @@ +{"uid":"a7d954f4aff6f601","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a7d954f4aff6f601.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3aa67525242f5614.json b/allure-report/data/test-cases/a83b85c2e341a76c.json similarity index 92% rename from allure-report/data/test-cases/3aa67525242f5614.json rename to allure-report/data/test-cases/a83b85c2e341a76c.json index a4b9ac7be8f..f4430bfab9d 100644 --- a/allure-report/data/test-cases/3aa67525242f5614.json +++ b/allure-report/data/test-cases/a83b85c2e341a76c.json @@ -1 +1 @@ -{"uid":"3aa67525242f5614","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"3aa67525242f5614.json","parameterValues":[]} \ No newline at end of file +{"uid":"a83b85c2e341a76c","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"a83b85c2e341a76c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8da01589d3299948.json b/allure-report/data/test-cases/a8e7ed0b9e8a05d4.json similarity index 60% rename from allure-report/data/test-cases/8da01589d3299948.json rename to allure-report/data/test-cases/a8e7ed0b9e8a05d4.json index ef8c5c2df48..e5a35f59153 100644 --- a/allure-report/data/test-cases/8da01589d3299948.json +++ b/allure-report/data/test-cases/a8e7ed0b9e8a05d4.json @@ -1 +1 @@ -{"uid":"8da01589d3299948","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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12ac45051c49f01a","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"d7eae685c38fccbb","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8da01589d3299948.json","parameterValues":[]} \ No newline at end of file +{"uid":"a8e7ed0b9e8a05d4","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8e7ed0b9e8a05d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7eea171ede7ee13.json b/allure-report/data/test-cases/a8ee14a37e5c3cb6.json similarity index 68% rename from allure-report/data/test-cases/c7eea171ede7ee13.json rename to allure-report/data/test-cases/a8ee14a37e5c3cb6.json index 0d268cbf43f..3788c87994d 100644 --- a/allure-report/data/test-cases/c7eea171ede7ee13.json +++ b/allure-report/data/test-cases/a8ee14a37e5c3cb6.json @@ -1 +1 @@ -{"uid":"c7eea171ede7ee13","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8b338c3953869594","name":"stdout","source":"8b338c3953869594.txt","type":"text/plain","size":242}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c7eea171ede7ee13.json","parameterValues":[]} \ No newline at end of file +{"uid":"a8ee14a37e5c3cb6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"491da570f7a6ee0b","name":"stdout","source":"491da570f7a6ee0b.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8ee14a37e5c3cb6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8ef326c3cb7b77c.json b/allure-report/data/test-cases/a8ef326c3cb7b77c.json deleted file mode 100644 index c560816e9f1..00000000000 --- a/allure-report/data/test-cases/a8ef326c3cb7b77c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a8ef326c3cb7b77c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bee515a36bc2165b","name":"stdout","source":"bee515a36bc2165b.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a8ef326c3cb7b77c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a908975bd67b2eca.json b/allure-report/data/test-cases/a908975bd67b2eca.json new file mode 100644 index 00000000000..ea11399ee4e --- /dev/null +++ b/allure-report/data/test-cases/a908975bd67b2eca.json @@ -0,0 +1 @@ +{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1732764218803,"stop":1732764218803,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0df4a2c5fe59a12","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0}},{"uid":"d4d3736adb97380b","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"6de398181d9095ee","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"a908975bd67b2eca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/602b6b1c829f1e7f.json b/allure-report/data/test-cases/a98592d8e6c7fba2.json similarity index 72% rename from allure-report/data/test-cases/602b6b1c829f1e7f.json rename to allure-report/data/test-cases/a98592d8e6c7fba2.json index db1a6dd753c..6c8ce495852 100644 --- a/allure-report/data/test-cases/602b6b1c829f1e7f.json +++ b/allure-report/data/test-cases/a98592d8e6c7fba2.json @@ -1 +1 @@ -{"uid":"602b6b1c829f1e7f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c002cae94869ae","name":"stdout","source":"8c002cae94869ae.txt","type":"text/plain","size":1127}],"parameters":[],"hasContent":true,"stepsCount":6,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"602b6b1c829f1e7f.json","parameterValues":[]} \ No newline at end of file +{"uid":"a98592d8e6c7fba2","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2731ba669f341d4","name":"stdout","source":"2731ba669f341d4.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a98592d8e6c7fba2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ec407d8e8742f0d.json b/allure-report/data/test-cases/a9ecee1b4fc0ab11.json similarity index 61% rename from allure-report/data/test-cases/3ec407d8e8742f0d.json rename to allure-report/data/test-cases/a9ecee1b4fc0ab11.json index 6b3dfe50ec6..836b83383a8 100644 --- a/allure-report/data/test-cases/3ec407d8e8742f0d.json +++ b/allure-report/data/test-cases/a9ecee1b4fc0ab11.json @@ -1 +1 @@ -{"uid":"3ec407d8e8742f0d","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"486146c7b14fd6fd","name":"stdout","source":"486146c7b14fd6fd.txt","type":"text/plain","size":1367}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"3ec407d8e8742f0d.json","parameterValues":[]} \ No newline at end of file +{"uid":"a9ecee1b4fc0ab11","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20671bf346c43317","name":"stdout","source":"20671bf346c43317.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"a9ecee1b4fc0ab11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d12fb82b623fefb9.json b/allure-report/data/test-cases/aa1a2a69b8a9bf68.json similarity index 59% rename from allure-report/data/test-cases/d12fb82b623fefb9.json rename to allure-report/data/test-cases/aa1a2a69b8a9bf68.json index 5c74fedfc3d..103d23fd8bb 100644 --- a/allure-report/data/test-cases/d12fb82b623fefb9.json +++ b/allure-report/data/test-cases/aa1a2a69b8a9bf68.json @@ -1 +1 @@ -{"uid":"d12fb82b623fefb9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e04892408ba7673f","name":"stdout","source":"e04892408ba7673f.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d12fb82b623fefb9.json","parameterValues":[]} \ No newline at end of file +{"uid":"aa1a2a69b8a9bf68","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfdd9038af68abcd","name":"stdout","source":"cfdd9038af68abcd.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aa1a2a69b8a9bf68.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa37770dd2142a16.json b/allure-report/data/test-cases/aa37770dd2142a16.json new file mode 100644 index 00000000000..c4f30800b05 --- /dev/null +++ b/allure-report/data/test-cases/aa37770dd2142a16.json @@ -0,0 +1 @@ +{"uid":"aa37770dd2142a16","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":1732764221293,"stop":1732764221294,"duration":1},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732764221293,"stop":1732764221293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6c94325f55b8b56c","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0}},{"uid":"3c275e4650ef1fcb","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"46de5298b06a2e8f","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"aa37770dd2142a16.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ea5418b10cdf416.json b/allure-report/data/test-cases/aa8525de66192fb3.json similarity index 69% rename from allure-report/data/test-cases/5ea5418b10cdf416.json rename to allure-report/data/test-cases/aa8525de66192fb3.json index 20df6bb3235..c8a62cf07b5 100644 --- a/allure-report/data/test-cases/5ea5418b10cdf416.json +++ b/allure-report/data/test-cases/aa8525de66192fb3.json @@ -1 +1 @@ -{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732428194205,"stop":1732428194205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1732428194209,"stop":1732428194209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"15dbab6d625f40d3","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"8cdb3386cf094e1f","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5ea5418b10cdf416.json","parameterValues":[]} \ No newline at end of file +{"uid":"aa8525de66192fb3","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aa8525de66192fb3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab3687d99fed99d0.json b/allure-report/data/test-cases/ab3687d99fed99d0.json new file mode 100644 index 00000000000..f202e24ea99 --- /dev/null +++ b/allure-report/data/test-cases/ab3687d99fed99d0.json @@ -0,0 +1 @@ +{"uid":"ab3687d99fed99d0","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a3ca7d068d3e7d87","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0}},{"uid":"aa1a2a69b8a9bf68","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"44e584571b03be2","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ab3687d99fed99d0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51c4ad89c4a768de.json b/allure-report/data/test-cases/ab62ce2428f0e01f.json similarity index 73% rename from allure-report/data/test-cases/51c4ad89c4a768de.json rename to allure-report/data/test-cases/ab62ce2428f0e01f.json index 2dee6bd2725..55c41ccf411 100644 --- a/allure-report/data/test-cases/51c4ad89c4a768de.json +++ b/allure-report/data/test-cases/ab62ce2428f0e01f.json @@ -1 +1 @@ -{"uid":"51c4ad89c4a768de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"b2176623a3e27602","name":"stdout","source":"b2176623a3e27602.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"51c4ad89c4a768de.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab62ce2428f0e01f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5947f9b7e86e5fe4","name":"stdout","source":"5947f9b7e86e5fe4.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ab62ce2428f0e01f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/614d8ec123787b56.json b/allure-report/data/test-cases/ab7f75990cdffa76.json similarity index 71% rename from allure-report/data/test-cases/614d8ec123787b56.json rename to allure-report/data/test-cases/ab7f75990cdffa76.json index bce348a4d96..3e0b3798e03 100644 --- a/allure-report/data/test-cases/614d8ec123787b56.json +++ b/allure-report/data/test-cases/ab7f75990cdffa76.json @@ -1 +1 @@ -{"uid":"614d8ec123787b56","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ef14b2090647c37e","name":"stdout","source":"ef14b2090647c37e.txt","type":"text/plain","size":434}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"614d8ec123787b56.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab7f75990cdffa76","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2e7b358c14deeef","name":"stdout","source":"c2e7b358c14deeef.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ab7f75990cdffa76.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfc6af42137d4620.json b/allure-report/data/test-cases/abed1b9a0913387d.json similarity index 63% rename from allure-report/data/test-cases/bfc6af42137d4620.json rename to allure-report/data/test-cases/abed1b9a0913387d.json index 26ca54d9042..57a325f46e0 100644 --- a/allure-report/data/test-cases/bfc6af42137d4620.json +++ b/allure-report/data/test-cases/abed1b9a0913387d.json @@ -1 +1 @@ -{"uid":"bfc6af42137d4620","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b0341cfdabd60782","name":"stdout","source":"b0341cfdabd60782.txt","type":"text/plain","size":896}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"bfc6af42137d4620.json","parameterValues":[]} \ No newline at end of file +{"uid":"abed1b9a0913387d","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"678cbfc79956849c","name":"stdout","source":"678cbfc79956849c.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"abed1b9a0913387d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6113acbf67a69117.json b/allure-report/data/test-cases/abf4f2031d384e78.json similarity index 63% rename from allure-report/data/test-cases/6113acbf67a69117.json rename to allure-report/data/test-cases/abf4f2031d384e78.json index 8d8465a1c49..70a4552db46 100644 --- a/allure-report/data/test-cases/6113acbf67a69117.json +++ b/allure-report/data/test-cases/abf4f2031d384e78.json @@ -1 +1 @@ -{"uid":"6113acbf67a69117","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6cd50ae6a92d4a65","name":"stdout","source":"6cd50ae6a92d4a65.txt","type":"text/plain","size":524}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":"6113acbf67a69117.json","parameterValues":[]} \ No newline at end of file +{"uid":"abf4f2031d384e78","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72a9f976cb96a98d","name":"stdout","source":"72a9f976cb96a98d.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"abf4f2031d384e78.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57d69ca6b172040d.json b/allure-report/data/test-cases/ac35e86bb753fb8c.json similarity index 73% rename from allure-report/data/test-cases/57d69ca6b172040d.json rename to allure-report/data/test-cases/ac35e86bb753fb8c.json index de4e130eb92..544ee8094ba 100644 --- a/allure-report/data/test-cases/57d69ca6b172040d.json +++ b/allure-report/data/test-cases/ac35e86bb753fb8c.json @@ -1 +1 @@ -{"uid":"57d69ca6b172040d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"31ba7c014fce4298","name":"stdout","source":"31ba7c014fce4298.txt","type":"text/plain","size":512}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"57d69ca6b172040d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac35e86bb753fb8c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"32bad6265b9c6d8f","name":"stdout","source":"32bad6265b9c6d8f.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac35e86bb753fb8c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4073719ea3c0e8fe.json b/allure-report/data/test-cases/ac390c8ac17d8363.json similarity index 91% rename from allure-report/data/test-cases/4073719ea3c0e8fe.json rename to allure-report/data/test-cases/ac390c8ac17d8363.json index 8efb7338af8..aa44dcbf35e 100644 --- a/allure-report/data/test-cases/4073719ea3c0e8fe.json +++ b/allure-report/data/test-cases/ac390c8ac17d8363.json @@ -1 +1 @@ -{"uid":"4073719ea3c0e8fe","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"4073719ea3c0e8fe.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac390c8ac17d8363","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"ac390c8ac17d8363.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebad30d100ba0d2f.json b/allure-report/data/test-cases/ac65ef6ef01656e6.json similarity index 71% rename from allure-report/data/test-cases/ebad30d100ba0d2f.json rename to allure-report/data/test-cases/ac65ef6ef01656e6.json index 8f5487b0d62..65b85482b81 100644 --- a/allure-report/data/test-cases/ebad30d100ba0d2f.json +++ b/allure-report/data/test-cases/ac65ef6ef01656e6.json @@ -1 +1 @@ -{"uid":"ebad30d100ba0d2f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e599d37b78101a20","name":"stdout","source":"e599d37b78101a20.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ebad30d100ba0d2f.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac65ef6ef01656e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"58062fc7761306e3","name":"stdout","source":"58062fc7761306e3.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ac65ef6ef01656e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac81c5ec86387239.json b/allure-report/data/test-cases/ac81c5ec86387239.json deleted file mode 100644 index 71b865d3667..00000000000 --- a/allure-report/data/test-cases/ac81c5ec86387239.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ac81c5ec86387239","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7d49bbac8d757852","name":"stdout","source":"7d49bbac8d757852.txt","type":"text/plain","size":502}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"ac81c5ec86387239.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83b7eb2988572ef6.json b/allure-report/data/test-cases/acf18a2788645a5a.json similarity index 72% rename from allure-report/data/test-cases/83b7eb2988572ef6.json rename to allure-report/data/test-cases/acf18a2788645a5a.json index 25bbb11fc51..367bc3003ec 100644 --- a/allure-report/data/test-cases/83b7eb2988572ef6.json +++ b/allure-report/data/test-cases/acf18a2788645a5a.json @@ -1 +1 @@ -{"uid":"83b7eb2988572ef6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"83b7eb2988572ef6.json","parameterValues":[]} \ No newline at end of file +{"uid":"acf18a2788645a5a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"acf18a2788645a5a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2cc2be21cb9d7cd.json b/allure-report/data/test-cases/adbbb2c26291ccd5.json similarity index 65% rename from allure-report/data/test-cases/a2cc2be21cb9d7cd.json rename to allure-report/data/test-cases/adbbb2c26291ccd5.json index bee4795d90e..403c5b28001 100644 --- a/allure-report/data/test-cases/a2cc2be21cb9d7cd.json +++ b/allure-report/data/test-cases/adbbb2c26291ccd5.json @@ -1 +1 @@ -{"uid":"a2cc2be21cb9d7cd","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2b6038e2de6e977a","name":"stdout","source":"2b6038e2de6e977a.txt","type":"text/plain","size":378}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"a2cc2be21cb9d7cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"adbbb2c26291ccd5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8984e5480e91547","name":"stdout","source":"b8984e5480e91547.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"adbbb2c26291ccd5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/addec93357f6e501.json b/allure-report/data/test-cases/addec93357f6e501.json new file mode 100644 index 00000000000..87c9359d084 --- /dev/null +++ b/allure-report/data/test-cases/addec93357f6e501.json @@ -0,0 +1 @@ +{"uid":"addec93357f6e501","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732764220604,"stop":1732764220604,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732764220606,"stop":1732764220606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Flow Control"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d756394430052ee","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0}},{"uid":"28847243d9b7f290","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"78450b76b8629fe6","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"addec93357f6e501.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5519a1e9b61f2ca3.json b/allure-report/data/test-cases/ae08758c48a63481.json similarity index 65% rename from allure-report/data/test-cases/5519a1e9b61f2ca3.json rename to allure-report/data/test-cases/ae08758c48a63481.json index 3a07e1badec..866fd960ac4 100644 --- a/allure-report/data/test-cases/5519a1e9b61f2ca3.json +++ b/allure-report/data/test-cases/ae08758c48a63481.json @@ -1 +1 @@ -{"uid":"5519a1e9b61f2ca3","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a66ea3c1c7d07513","name":"stdout","source":"a66ea3c1c7d07513.txt","type":"text/plain","size":254}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"5519a1e9b61f2ca3.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae08758c48a63481","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e01af9821f0d361c","name":"stdout","source":"e01af9821f0d361c.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ae08758c48a63481.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/566a56003ac2e703.json b/allure-report/data/test-cases/ae4ebdaea3850cc0.json similarity index 64% rename from allure-report/data/test-cases/566a56003ac2e703.json rename to allure-report/data/test-cases/ae4ebdaea3850cc0.json index 6a1d00e00f5..707f73e9600 100644 --- a/allure-report/data/test-cases/566a56003ac2e703.json +++ b/allure-report/data/test-cases/ae4ebdaea3850cc0.json @@ -1 +1 @@ -{"uid":"566a56003ac2e703","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b436923321373575","name":"stdout","source":"b436923321373575.txt","type":"text/plain","size":453}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"566a56003ac2e703.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae4ebdaea3850cc0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6ccbedecdc10bf7c","name":"stdout","source":"6ccbedecdc10bf7c.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ae4ebdaea3850cc0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4544ac5de6415953.json b/allure-report/data/test-cases/ae5dc2ec4f03f9e5.json similarity index 78% rename from allure-report/data/test-cases/4544ac5de6415953.json rename to allure-report/data/test-cases/ae5dc2ec4f03f9e5.json index f679bb9b861..d16a20e9f2c 100644 --- a/allure-report/data/test-cases/4544ac5de6415953.json +++ b/allure-report/data/test-cases/ae5dc2ec4f03f9e5.json @@ -1 +1 @@ -{"uid":"4544ac5de6415953","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":"a3e3342383736358","name":"stdout","source":"a3e3342383736358.txt","type":"text/plain","size":717}],"parameters":[],"hasContent":true,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"4544ac5de6415953.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae5dc2ec4f03f9e5","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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":"c5a486abc69fc1fc","name":"stdout","source":"c5a486abc69fc1fc.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ae5dc2ec4f03f9e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dde6031964dc28f.json b/allure-report/data/test-cases/aea343086c8abd68.json similarity index 54% rename from allure-report/data/test-cases/8dde6031964dc28f.json rename to allure-report/data/test-cases/aea343086c8abd68.json index 5e7d457253a..558b9c12f27 100644 --- a/allure-report/data/test-cases/8dde6031964dc28f.json +++ b/allure-report/data/test-cases/aea343086c8abd68.json @@ -1 +1 @@ -{"uid":"8dde6031964dc28f","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should create a NxN spiral with a given size.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732428193941,"stop":1732428193941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1732428193943,"stop":1732428193943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"73a56012085cbb67","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"815ff7102e2d18bc","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"8dde6031964dc28f.json","parameterValues":[]} \ No newline at end of file +{"uid":"aea343086c8abd68","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aea343086c8abd68.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aec2fb642901e92.json b/allure-report/data/test-cases/aec2fb642901e92.json new file mode 100644 index 00000000000..3c607c26a11 --- /dev/null +++ b/allure-report/data/test-cases/aec2fb642901e92.json @@ -0,0 +1 @@ +{"uid":"aec2fb642901e92","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aec2fb642901e92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6fab27b83e3ab13.json b/allure-report/data/test-cases/af99dc37dcb7799b.json similarity index 75% rename from allure-report/data/test-cases/f6fab27b83e3ab13.json rename to allure-report/data/test-cases/af99dc37dcb7799b.json index 7e3014ec55a..85aba7027ce 100644 --- a/allure-report/data/test-cases/f6fab27b83e3ab13.json +++ b/allure-report/data/test-cases/af99dc37dcb7799b.json @@ -1 +1 @@ -{"uid":"f6fab27b83e3ab13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fe536534de68582a","name":"stdout","source":"fe536534de68582a.txt","type":"text/plain","size":185}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f6fab27b83e3ab13.json","parameterValues":[]} \ No newline at end of file +{"uid":"af99dc37dcb7799b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6dd9ffa61a5d6299","name":"stdout","source":"6dd9ffa61a5d6299.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"af99dc37dcb7799b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/307a8cec4e791e32.json b/allure-report/data/test-cases/afc07e402ebe38d8.json similarity index 72% rename from allure-report/data/test-cases/307a8cec4e791e32.json rename to allure-report/data/test-cases/afc07e402ebe38d8.json index b7db9d7b3e9..39195966607 100644 --- a/allure-report/data/test-cases/307a8cec4e791e32.json +++ b/allure-report/data/test-cases/afc07e402ebe38d8.json @@ -1 +1 @@ -{"uid":"307a8cec4e791e32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce026a7ada5eb7bc","name":"stdout","source":"ce026a7ada5eb7bc.txt","type":"text/plain","size":181}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"307a8cec4e791e32.json","parameterValues":[]} \ No newline at end of file +{"uid":"afc07e402ebe38d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef0993259005a4f7","name":"stdout","source":"ef0993259005a4f7.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"afc07e402ebe38d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac136a3215f7ad6c.json b/allure-report/data/test-cases/afca78445b5fa23f.json similarity index 57% rename from allure-report/data/test-cases/ac136a3215f7ad6c.json rename to allure-report/data/test-cases/afca78445b5fa23f.json index 756b1a2d53e..2c3a460dd38 100644 --- a/allure-report/data/test-cases/ac136a3215f7ad6c.json +++ b/allure-report/data/test-cases/afca78445b5fa23f.json @@ -1 +1 @@ -{"uid":"ac136a3215f7ad6c","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":"

Codewars badge:

Test Description:

Testing Battle method

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1732428194134,"stop":1732428194134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ddd928ac3a4fb635","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"f1d39787f3312e8b","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"ac136a3215f7ad6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"afca78445b5fa23f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"afca78445b5fa23f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fd184f18d9496f9.json b/allure-report/data/test-cases/afe0c9a0972467a3.json similarity index 71% rename from allure-report/data/test-cases/5fd184f18d9496f9.json rename to allure-report/data/test-cases/afe0c9a0972467a3.json index 4878057489a..827e3fd6bb6 100644 --- a/allure-report/data/test-cases/5fd184f18d9496f9.json +++ b/allure-report/data/test-cases/afe0c9a0972467a3.json @@ -1 +1 @@ -{"uid":"5fd184f18d9496f9","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f33a24130d10b19","name":"stdout","source":"1f33a24130d10b19.txt","type":"text/plain","size":243}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"5fd184f18d9496f9.json","parameterValues":[]} \ No newline at end of file +{"uid":"afe0c9a0972467a3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a2484027e285a197","name":"stdout","source":"a2484027e285a197.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"afe0c9a0972467a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b02a54a0a8bd8284.json b/allure-report/data/test-cases/b02a54a0a8bd8284.json new file mode 100644 index 00000000000..e9064ba93fb --- /dev/null +++ b/allure-report/data/test-cases/b02a54a0a8bd8284.json @@ -0,0 +1 @@ +{"uid":"b02a54a0a8bd8284","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":1732764221093,"stop":1732764221093,"duration":0},"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bfd57b8cda6c028","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2}},{"uid":"6c457590f118b700","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"d9bbc705106eff98","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"b02a54a0a8bd8284.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/461527a27e50c04a.json b/allure-report/data/test-cases/b054542ab329d2ac.json similarity index 56% rename from allure-report/data/test-cases/461527a27e50c04a.json rename to allure-report/data/test-cases/b054542ab329d2ac.json index c4d40ba625a..7c8c5aa6b33 100644 --- a/allure-report/data/test-cases/461527a27e50c04a.json +++ b/allure-report/data/test-cases/b054542ab329d2ac.json @@ -1 +1 @@ -{"uid":"461527a27e50c04a","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732428194015,"stop":1732428194015,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1732428194017,"stop":1732428194017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ede6b0c38e1de853","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"35836d979e37575","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"461527a27e50c04a.json","parameterValues":[]} \ No newline at end of file +{"uid":"b054542ab329d2ac","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732428194015,"stop":1732428194015,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b054542ab329d2ac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35f08e300f5635d6.json b/allure-report/data/test-cases/b0a6327af7d064cf.json similarity index 56% rename from allure-report/data/test-cases/35f08e300f5635d6.json rename to allure-report/data/test-cases/b0a6327af7d064cf.json index 00ca86acc3d..3d35092a139 100644 --- a/allure-report/data/test-cases/35f08e300f5635d6.json +++ b/allure-report/data/test-cases/b0a6327af7d064cf.json @@ -1 +1 @@ -{"uid":"35f08e300f5635d6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19b258c1195772c5","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"3287e9af1a22ed8b","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"504baf7c4d256536","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"35f08e300f5635d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"b0a6327af7d064cf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b0a6327af7d064cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0cc123728fa2f2d.json b/allure-report/data/test-cases/b0cc123728fa2f2d.json new file mode 100644 index 00000000000..db4b0e330bf --- /dev/null +++ b/allure-report/data/test-cases/b0cc123728fa2f2d.json @@ -0,0 +1 @@ +{"uid":"b0cc123728fa2f2d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"22d82bbeb537c71a","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0}},{"uid":"2c38900f28571c1","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"34931ad2bd045d0c","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"b0cc123728fa2f2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0df4a2c5fe59a12.json b/allure-report/data/test-cases/b0df4a2c5fe59a12.json new file mode 100644 index 00000000000..8334358ca27 --- /dev/null +++ b/allure-report/data/test-cases/b0df4a2c5fe59a12.json @@ -0,0 +1 @@ +{"uid":"b0df4a2c5fe59a12","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b0df4a2c5fe59a12.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1056dd0bc1f2f4e.json b/allure-report/data/test-cases/b1056dd0bc1f2f4e.json new file mode 100644 index 00000000000..325f82265dd --- /dev/null +++ b/allure-report/data/test-cases/b1056dd0bc1f2f4e.json @@ -0,0 +1 @@ +{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cad7274be200bf39","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0}},{"uid":"b7107b1da849121a","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"681eea057133a7e0","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b1056dd0bc1f2f4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1cbd478c753b1e.json b/allure-report/data/test-cases/b1cbd478c753b1e.json deleted file mode 100644 index abcfc9ee83d..00000000000 --- a/allure-report/data/test-cases/b1cbd478c753b1e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b1cbd478c753b1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6a59d6609523c5a8","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"3cd6da35a1920265","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"bfe92f9ff640a644","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"b1cbd478c753b1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1f2cc8e1be032d.json b/allure-report/data/test-cases/b1f2cc8e1be032d.json deleted file mode 100644 index fbbb3eccf48..00000000000 --- a/allure-report/data/test-cases/b1f2cc8e1be032d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b1f2cc8e1be032d","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e11dfdc5beea1549","name":"stdout","source":"e11dfdc5beea1549.txt","type":"text/plain","size":524}],"parameters":[],"hasContent":true,"stepsCount":9,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"b1f2cc8e1be032d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b22afbc33030e55f.json b/allure-report/data/test-cases/b22afbc33030e55f.json new file mode 100644 index 00000000000..252da807cb9 --- /dev/null +++ b/allure-report/data/test-cases/b22afbc33030e55f.json @@ -0,0 +1 @@ +{"uid":"b22afbc33030e55f","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":1732764220226,"stop":1732764220226,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732764220225,"stop":1732764220225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b7657273f039658","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0}},{"uid":"ccb7c5007831ab45","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"3460c7a02debe899","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b22afbc33030e55f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b26a6745cd367097.json b/allure-report/data/test-cases/b26a6745cd367097.json new file mode 100644 index 00000000000..77dd57a1815 --- /dev/null +++ b/allure-report/data/test-cases/b26a6745cd367097.json @@ -0,0 +1 @@ +{"uid":"b26a6745cd367097","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bd28741372a5f921","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1}},{"uid":"af99dc37dcb7799b","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"e6ed73d965a64ee5","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b26a6745cd367097.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b169e974f5edace2.json b/allure-report/data/test-cases/b28ff46b20790be2.json similarity index 76% rename from allure-report/data/test-cases/b169e974f5edace2.json rename to allure-report/data/test-cases/b28ff46b20790be2.json index deb7f693c5f..b9b54ab9bdb 100644 --- a/allure-report/data/test-cases/b169e974f5edace2.json +++ b/allure-report/data/test-cases/b28ff46b20790be2.json @@ -1 +1 @@ -{"uid":"b169e974f5edace2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67be9974a45dfae3","name":"stdout","source":"67be9974a45dfae3.txt","type":"text/plain","size":356}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b169e974f5edace2.json","parameterValues":[]} \ No newline at end of file +{"uid":"b28ff46b20790be2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"609bbc010bbea5b7","name":"stdout","source":"609bbc010bbea5b7.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b28ff46b20790be2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2f619fce2ea028d.json b/allure-report/data/test-cases/b2f619fce2ea028d.json new file mode 100644 index 00000000000..9bc6a16329e --- /dev/null +++ b/allure-report/data/test-cases/b2f619fce2ea028d.json @@ -0,0 +1 @@ +{"uid":"b2f619fce2ea028d","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":1732764221144,"stop":1732764221144,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"54122a7c8f1149b2","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0}},{"uid":"ac65ef6ef01656e6","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"a5467cc7a05b3546","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"b2f619fce2ea028d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b325ede7f1ceeec3.json b/allure-report/data/test-cases/b325ede7f1ceeec3.json deleted file mode 100644 index b27c939e6c3..00000000000 --- a/allure-report/data/test-cases/b325ede7f1ceeec3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b325ede7f1ceeec3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d1cecae81ecbadad","name":"stdout","source":"d1cecae81ecbadad.txt","type":"text/plain","size":487}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b325ede7f1ceeec3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b36ca0513e4048a8.json b/allure-report/data/test-cases/b36ca0513e4048a8.json new file mode 100644 index 00000000000..f0d43e74075 --- /dev/null +++ b/allure-report/data/test-cases/b36ca0513e4048a8.json @@ -0,0 +1 @@ +{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732764220233,"stop":1732764220233,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732764220235,"stop":1732764220236,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"PERFORMANCE"},{"name":"tag","value":"PUZZLES"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cd536df0700f3bd3","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0}},{"uid":"522a0d282fded9dd","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"88851466a8ab5f44","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},"source":"b36ca0513e4048a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f2df3f2c9b86d77.json b/allure-report/data/test-cases/b3ade822e686b250.json similarity index 79% rename from allure-report/data/test-cases/5f2df3f2c9b86d77.json rename to allure-report/data/test-cases/b3ade822e686b250.json index ea7cc7b137d..a35c7b7b266 100644 --- a/allure-report/data/test-cases/5f2df3f2c9b86d77.json +++ b/allure-report/data/test-cases/b3ade822e686b250.json @@ -1 +1 @@ -{"uid":"5f2df3f2c9b86d77","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"5f2df3f2c9b86d77.json","parameterValues":[]} \ No newline at end of file +{"uid":"b3ade822e686b250","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b3ade822e686b250.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b3214317e10e87f.json b/allure-report/data/test-cases/b3d5b9d863751a3f.json similarity index 58% rename from allure-report/data/test-cases/8b3214317e10e87f.json rename to allure-report/data/test-cases/b3d5b9d863751a3f.json index 3bd3f59298b..453f7a4ba2f 100644 --- a/allure-report/data/test-cases/8b3214317e10e87f.json +++ b/allure-report/data/test-cases/b3d5b9d863751a3f.json @@ -1 +1 @@ -{"uid":"8b3214317e10e87f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732428195955,"stop":1732428195955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Significant Figures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85b55023f525bac2","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"57d69ca6b172040d","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d7c1fb6f236110ca","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"8b3214317e10e87f.json","parameterValues":[]} \ No newline at end of file +{"uid":"b3d5b9d863751a3f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732428195955,"stop":1732428195955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Significant Figures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"b3d5b9d863751a3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3db9caa12a5149e.json b/allure-report/data/test-cases/b3db9caa12a5149e.json deleted file mode 100644 index e42a115ddb7..00000000000 --- a/allure-report/data/test-cases/b3db9caa12a5149e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732428196258,"stop":1732428196258,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732428196257,"stop":1732428196257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732428196259,"stop":1732428196259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f449c3e5994db83f","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"6421e8610575915","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"76f8c586f8a804f0","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"b3db9caa12a5149e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3f6328bce0de37c.json b/allure-report/data/test-cases/b3f6328bce0de37c.json new file mode 100644 index 00000000000..e8c8e2a2123 --- /dev/null +++ b/allure-report/data/test-cases/b3f6328bce0de37c.json @@ -0,0 +1 @@ +{"uid":"b3f6328bce0de37c","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":1732764220676,"stop":1732764220677,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220676,"stop":1732764220676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bded3837031681ca","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1}},{"uid":"938f6f7ebecca4c3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"24b136640bd96c68","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"b3f6328bce0de37c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f727d28e098b30b7.json b/allure-report/data/test-cases/b3fa4d42fb1064a9.json similarity index 64% rename from allure-report/data/test-cases/f727d28e098b30b7.json rename to allure-report/data/test-cases/b3fa4d42fb1064a9.json index 85eb85c3ab8..ad466985dee 100644 --- a/allure-report/data/test-cases/f727d28e098b30b7.json +++ b/allure-report/data/test-cases/b3fa4d42fb1064a9.json @@ -1 +1 @@ -{"uid":"f727d28e098b30b7","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"58e0261647deccd2","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"dc1f8d6367d3e66e","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f727d28e098b30b7.json","parameterValues":[]} \ No newline at end of file +{"uid":"b3fa4d42fb1064a9","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b3fa4d42fb1064a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4abfaf3d77f3f23.json b/allure-report/data/test-cases/b4abfaf3d77f3f23.json deleted file mode 100644 index 1401be85d1b..00000000000 --- a/allure-report/data/test-cases/b4abfaf3d77f3f23.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b4abfaf3d77f3f23","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a881d3345681241e","name":"stdout","source":"a881d3345681241e.txt","type":"text/plain","size":931}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"b4abfaf3d77f3f23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4bcf3d5a4367d8.json b/allure-report/data/test-cases/b4bcf3d5a4367d8.json new file mode 100644 index 00000000000..d591ab96dbe --- /dev/null +++ b/allure-report/data/test-cases/b4bcf3d5a4367d8.json @@ -0,0 +1 @@ +{"uid":"b4bcf3d5a4367d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dfbdbb71de71756e","name":"stdout","source":"dfbdbb71de71756e.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b4bcf3d5a4367d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56cce31bdf350ac7.json b/allure-report/data/test-cases/b4e0153f9704bfbb.json similarity index 61% rename from allure-report/data/test-cases/56cce31bdf350ac7.json rename to allure-report/data/test-cases/b4e0153f9704bfbb.json index 40903401d89..4574d1870ad 100644 --- a/allure-report/data/test-cases/56cce31bdf350ac7.json +++ b/allure-report/data/test-cases/b4e0153f9704bfbb.json @@ -1 +1 @@ -{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732428195803,"stop":1732428195803,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"88a73a4735cff92e","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"acfebfd078f8e03c","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1ece392343bb9b12","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"56cce31bdf350ac7.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4e0153f9704bfbb","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732428195803,"stop":1732428195803,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b4e0153f9704bfbb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7560669431ea4aa8.json b/allure-report/data/test-cases/b540357a03b90416.json similarity index 53% rename from allure-report/data/test-cases/7560669431ea4aa8.json rename to allure-report/data/test-cases/b540357a03b90416.json index 02db07debc0..c84d6c4a856 100644 --- a/allure-report/data/test-cases/7560669431ea4aa8.json +++ b/allure-report/data/test-cases/b540357a03b90416.json @@ -1 +1 @@ -{"uid":"7560669431ea4aa8","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732428194291,"stop":1732428194291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194324,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194324,"stop":1732428194391,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1732428194391,"stop":1732428194424,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1732428194434,"stop":1732428194434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7da87d8449dbfb8b","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"87c07388b10e55d5","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"7560669431ea4aa8.json","parameterValues":[]} \ No newline at end of file +{"uid":"b540357a03b90416","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b540357a03b90416.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64c2df72a296b62e.json b/allure-report/data/test-cases/b5cedd1e00782e11.json similarity index 73% rename from allure-report/data/test-cases/64c2df72a296b62e.json rename to allure-report/data/test-cases/b5cedd1e00782e11.json index 7c0b8cf6052..01f0b06e5fb 100644 --- a/allure-report/data/test-cases/64c2df72a296b62e.json +++ b/allure-report/data/test-cases/b5cedd1e00782e11.json @@ -1 +1 @@ -{"uid":"64c2df72a296b62e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aeaa6146da01ffaa","name":"stdout","source":"aeaa6146da01ffaa.txt","type":"text/plain","size":1500}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"64c2df72a296b62e.json","parameterValues":[]} \ No newline at end of file +{"uid":"b5cedd1e00782e11","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c396a9cbff279a34","name":"stdout","source":"c396a9cbff279a34.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b5cedd1e00782e11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b684b0c7250ecf6d.json b/allure-report/data/test-cases/b684b0c7250ecf6d.json new file mode 100644 index 00000000000..3414cb6e99f --- /dev/null +++ b/allure-report/data/test-cases/b684b0c7250ecf6d.json @@ -0,0 +1 @@ +{"uid":"b684b0c7250ecf6d","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3fa4d42fb1064a9","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4}},{"uid":"994a4ad6b5f0c1e0","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"4f20da98ae3e1985","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b684b0c7250ecf6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c94aec0d920b7f7d.json b/allure-report/data/test-cases/b7107b1da849121a.json similarity index 61% rename from allure-report/data/test-cases/c94aec0d920b7f7d.json rename to allure-report/data/test-cases/b7107b1da849121a.json index b0a9747c58d..3c79295116a 100644 --- a/allure-report/data/test-cases/c94aec0d920b7f7d.json +++ b/allure-report/data/test-cases/b7107b1da849121a.json @@ -1 +1 @@ -{"uid":"c94aec0d920b7f7d","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4e248e61461ec35c","name":"stdout","source":"4e248e61461ec35c.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c94aec0d920b7f7d.json","parameterValues":[]} \ No newline at end of file +{"uid":"b7107b1da849121a","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9be06237574ec64","name":"stdout","source":"f9be06237574ec64.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7107b1da849121a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e9a9a4090c00445.json b/allure-report/data/test-cases/b7108f3053cbc60d.json similarity index 72% rename from allure-report/data/test-cases/2e9a9a4090c00445.json rename to allure-report/data/test-cases/b7108f3053cbc60d.json index 700dfd7cf67..970cd049d20 100644 --- a/allure-report/data/test-cases/2e9a9a4090c00445.json +++ b/allure-report/data/test-cases/b7108f3053cbc60d.json @@ -1 +1 @@ -{"uid":"2e9a9a4090c00445","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9cd8266cfd985687","name":"stdout","source":"9cd8266cfd985687.txt","type":"text/plain","size":1013}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"2e9a9a4090c00445.json","parameterValues":[]} \ No newline at end of file +{"uid":"b7108f3053cbc60d","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2b123edd90aa8cfa","name":"stdout","source":"2b123edd90aa8cfa.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7108f3053cbc60d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ede6b0c38e1de853.json b/allure-report/data/test-cases/b7874e896ca052d2.json similarity index 68% rename from allure-report/data/test-cases/ede6b0c38e1de853.json rename to allure-report/data/test-cases/b7874e896ca052d2.json index ca3ac6aa531..00704ebd6d5 100644 --- a/allure-report/data/test-cases/ede6b0c38e1de853.json +++ b/allure-report/data/test-cases/b7874e896ca052d2.json @@ -1 +1 @@ -{"uid":"ede6b0c38e1de853","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"21cec5980af4ec14","name":"stdout","source":"21cec5980af4ec14.txt","type":"text/plain","size":1009}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"ede6b0c38e1de853.json","parameterValues":[]} \ No newline at end of file +{"uid":"b7874e896ca052d2","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cff9f69ec70ee0f7","name":"stdout","source":"cff9f69ec70ee0f7.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7874e896ca052d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b78b9d24e53cd100.json b/allure-report/data/test-cases/b78b9d24e53cd100.json new file mode 100644 index 00000000000..3d82256c5f2 --- /dev/null +++ b/allure-report/data/test-cases/b78b9d24e53cd100.json @@ -0,0 +1 @@ +{"uid":"b78b9d24e53cd100","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6650fdbb71631571","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0}},{"uid":"23199ebc2c7c1fa2","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"330a0128cd73780c","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"b78b9d24e53cd100.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7dd8f8438e567a9.json b/allure-report/data/test-cases/b7dd8f8438e567a9.json new file mode 100644 index 00000000000..c95a47b6fcc --- /dev/null +++ b/allure-report/data/test-cases/b7dd8f8438e567a9.json @@ -0,0 +1 @@ +{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732764218952,"stop":1732764218953,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b540357a03b90416","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132}},{"uid":"61de742601660eab","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"319c2fc51c0b8912","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b7dd8f8438e567a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b897401968bf0d8.json b/allure-report/data/test-cases/b897401968bf0d8.json deleted file mode 100644 index 8513cf733b6..00000000000 --- a/allure-report/data/test-cases/b897401968bf0d8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b897401968bf0d8","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90a10a824ed5b372","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"8f3fc2a4deaebd0d","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7a1019ba1beb3118","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"b897401968bf0d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8a2da685a579f99.json b/allure-report/data/test-cases/b8a2da685a579f99.json new file mode 100644 index 00000000000..5644395919a --- /dev/null +++ b/allure-report/data/test-cases/b8a2da685a579f99.json @@ -0,0 +1 @@ +{"uid":"b8a2da685a579f99","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732764221126,"stop":1732764221126,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d493d526198a7a0a","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1}},{"uid":"2064c7d6b1732474","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"e9f92529af3ab5ff","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b8a2da685a579f99.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48abcc67292a5aa2.json b/allure-report/data/test-cases/b8bd7a062c96fe90.json similarity index 79% rename from allure-report/data/test-cases/48abcc67292a5aa2.json rename to allure-report/data/test-cases/b8bd7a062c96fe90.json index 3a6164ca567..3f75f3cc0bc 100644 --- a/allure-report/data/test-cases/48abcc67292a5aa2.json +++ b/allure-report/data/test-cases/b8bd7a062c96fe90.json @@ -1 +1 @@ -{"uid":"48abcc67292a5aa2","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"48abcc67292a5aa2.json","parameterValues":[]} \ No newline at end of file +{"uid":"b8bd7a062c96fe90","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b8bd7a062c96fe90.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ee1470ea7ce07a6.json b/allure-report/data/test-cases/b8f5ce56991bbe59.json similarity index 68% rename from allure-report/data/test-cases/3ee1470ea7ce07a6.json rename to allure-report/data/test-cases/b8f5ce56991bbe59.json index c8bb764aa71..c766e7155e6 100644 --- a/allure-report/data/test-cases/3ee1470ea7ce07a6.json +++ b/allure-report/data/test-cases/b8f5ce56991bbe59.json @@ -1 +1 @@ -{"uid":"3ee1470ea7ce07a6","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"dcb5cf58cdd3658a","name":"stdout","source":"dcb5cf58cdd3658a.txt","type":"text/plain","size":111}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"3ee1470ea7ce07a6.json","parameterValues":[]} \ No newline at end of file +{"uid":"b8f5ce56991bbe59","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"251fc94fc6c7a32c","name":"stdout","source":"251fc94fc6c7a32c.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"b8f5ce56991bbe59.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/54043a9fba80789b.json b/allure-report/data/test-cases/b9086c98d6d71504.json similarity index 71% rename from allure-report/data/test-cases/54043a9fba80789b.json rename to allure-report/data/test-cases/b9086c98d6d71504.json index b52427aee8f..5bf5f1ca1ce 100644 --- a/allure-report/data/test-cases/54043a9fba80789b.json +++ b/allure-report/data/test-cases/b9086c98d6d71504.json @@ -1 +1 @@ -{"uid":"54043a9fba80789b","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3a4387d961fd6fe2","name":"stdout","source":"3a4387d961fd6fe2.txt","type":"text/plain","size":676}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"54043a9fba80789b.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9086c98d6d71504","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30ae8f4eae56e738","name":"stdout","source":"30ae8f4eae56e738.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b9086c98d6d71504.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a349732eb44f62b9.json b/allure-report/data/test-cases/b98e581eac70f265.json similarity index 60% rename from allure-report/data/test-cases/a349732eb44f62b9.json rename to allure-report/data/test-cases/b98e581eac70f265.json index 5ae1056b924..96390711a75 100644 --- a/allure-report/data/test-cases/a349732eb44f62b9.json +++ b/allure-report/data/test-cases/b98e581eac70f265.json @@ -1 +1 @@ -{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732428195982,"stop":1732428195982,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195983,"stop":1732428195983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"307a8cec4e791e32","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"59120ba12cafb7e8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d1aabae67bc18ba0","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"a349732eb44f62b9.json","parameterValues":[]} \ No newline at end of file +{"uid":"b98e581eac70f265","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732428195982,"stop":1732428195982,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195983,"stop":1732428195983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"b98e581eac70f265.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3cd6da35a1920265.json b/allure-report/data/test-cases/b9bf67d4df9c3970.json similarity index 73% rename from allure-report/data/test-cases/3cd6da35a1920265.json rename to allure-report/data/test-cases/b9bf67d4df9c3970.json index b2630267d02..4ec7aa1319c 100644 --- a/allure-report/data/test-cases/3cd6da35a1920265.json +++ b/allure-report/data/test-cases/b9bf67d4df9c3970.json @@ -1 +1 @@ -{"uid":"3cd6da35a1920265","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ce2512d2a26a891e","name":"stdout","source":"ce2512d2a26a891e.txt","type":"text/plain","size":146}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"3cd6da35a1920265.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9bf67d4df9c3970","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3fc74f16bec5bbf3","name":"stdout","source":"3fc74f16bec5bbf3.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"b9bf67d4df9c3970.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/158f20a061140f84.json b/allure-report/data/test-cases/b9d60ed71764b7f4.json similarity index 56% rename from allure-report/data/test-cases/158f20a061140f84.json rename to allure-report/data/test-cases/b9d60ed71764b7f4.json index 21e9c4255e3..aa4e100edcb 100644 --- a/allure-report/data/test-cases/158f20a061140f84.json +++ b/allure-report/data/test-cases/b9d60ed71764b7f4.json @@ -1 +1 @@ -{"uid":"158f20a061140f84","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":1732428196079,"stop":1732428196079,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4bb422e9ca9901c8","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"f649ed8d3c87f7f8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e6d62aae7d602336","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"158f20a061140f84.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9d60ed71764b7f4","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":1732428196079,"stop":1732428196079,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"b9d60ed71764b7f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/16f7f5e029216efb.json b/allure-report/data/test-cases/b9f8e7d93793c0ea.json similarity index 66% rename from allure-report/data/test-cases/16f7f5e029216efb.json rename to allure-report/data/test-cases/b9f8e7d93793c0ea.json index bc7f09ed7da..0dbf48aebab 100644 --- a/allure-report/data/test-cases/16f7f5e029216efb.json +++ b/allure-report/data/test-cases/b9f8e7d93793c0ea.json @@ -1 +1 @@ -{"uid":"16f7f5e029216efb","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a1418ed9afde7ea1","name":"stdout","source":"a1418ed9afde7ea1.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"16f7f5e029216efb.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9f8e7d93793c0ea","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5bbee37443803595","name":"stdout","source":"5bbee37443803595.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b9f8e7d93793c0ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba2c8f43220f0c44.json b/allure-report/data/test-cases/ba2c8f43220f0c44.json new file mode 100644 index 00000000000..41b4819c01f --- /dev/null +++ b/allure-report/data/test-cases/ba2c8f43220f0c44.json @@ -0,0 +1 @@ +{"uid":"ba2c8f43220f0c44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"24af1d7a0c0925a","name":"stdout","source":"24af1d7a0c0925a.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"ba2c8f43220f0c44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d13030ecd2583e8.json b/allure-report/data/test-cases/ba3e30be8784f086.json similarity index 68% rename from allure-report/data/test-cases/3d13030ecd2583e8.json rename to allure-report/data/test-cases/ba3e30be8784f086.json index f50d979dd03..fcb396af152 100644 --- a/allure-report/data/test-cases/3d13030ecd2583e8.json +++ b/allure-report/data/test-cases/ba3e30be8784f086.json @@ -1 +1 @@ -{"uid":"3d13030ecd2583e8","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1dc0d1d2e3a97f3c","name":"stdout","source":"1dc0d1d2e3a97f3c.txt","type":"text/plain","size":67}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"3d13030ecd2583e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"ba3e30be8784f086","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78d708b30903548d","name":"stdout","source":"78d708b30903548d.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ba3e30be8784f086.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba71f124345447fc.json b/allure-report/data/test-cases/ba71f124345447fc.json new file mode 100644 index 00000000000..804db1681b3 --- /dev/null +++ b/allure-report/data/test-cases/ba71f124345447fc.json @@ -0,0 +1 @@ +{"uid":"ba71f124345447fc","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732764220417,"stop":1732764220417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220417,"stop":1732764220417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732764220419,"stop":1732764220419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"280752ec061c1457","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0}},{"uid":"eb1b904b9e574ded","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"e7b4bfe5c117b0b5","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"ba71f124345447fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57e5e5f4d9d91cf6.json b/allure-report/data/test-cases/bae98e899f1ebab4.json similarity index 62% rename from allure-report/data/test-cases/57e5e5f4d9d91cf6.json rename to allure-report/data/test-cases/bae98e899f1ebab4.json index 0a96ad2b710..545d775b4cb 100644 --- a/allure-report/data/test-cases/57e5e5f4d9d91cf6.json +++ b/allure-report/data/test-cases/bae98e899f1ebab4.json @@ -1 +1 @@ -{"uid":"57e5e5f4d9d91cf6","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5c2711b7e4875740","name":"stdout","source":"5c2711b7e4875740.txt","type":"text/plain","size":1904}],"parameters":[],"hasContent":true,"stepsCount":21,"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":[],"hasContent":false,"stepsCount":0,"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":"57e5e5f4d9d91cf6.json","parameterValues":[]} \ No newline at end of file +{"uid":"bae98e899f1ebab4","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55397a95b3056409","name":"stdout","source":"55397a95b3056409.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bae98e899f1ebab4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/baf923b3ced2f0a.json b/allure-report/data/test-cases/baf923b3ced2f0a.json new file mode 100644 index 00000000000..8f5c33b95a3 --- /dev/null +++ b/allure-report/data/test-cases/baf923b3ced2f0a.json @@ -0,0 +1 @@ +{"uid":"baf923b3ced2f0a","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732428196095,"stop":1732428196095,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"baf923b3ced2f0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb0cb59f0e1a4eca.json b/allure-report/data/test-cases/bb0cb59f0e1a4eca.json new file mode 100644 index 00000000000..9ad282ea015 --- /dev/null +++ b/allure-report/data/test-cases/bb0cb59f0e1a4eca.json @@ -0,0 +1 @@ +{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732764218887,"stop":1732764218887,"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":"

Codewars badge:

Test Description:

The function should remove all agents that are outside of the city boundaries.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"71a87e59b6648413","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1}},{"uid":"d64758690dcdce52","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"641fd537e33a59ae","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"bb0cb59f0e1a4eca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6076e8e1aaaa11ab.json b/allure-report/data/test-cases/bb6e602a844f0715.json similarity index 59% rename from allure-report/data/test-cases/6076e8e1aaaa11ab.json rename to allure-report/data/test-cases/bb6e602a844f0715.json index 259f54af06b..82ead165c25 100644 --- a/allure-report/data/test-cases/6076e8e1aaaa11ab.json +++ b/allure-report/data/test-cases/bb6e602a844f0715.json @@ -1 +1 @@ -{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732428194490,"stop":1732428194490,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"20ae87fc51fb9338","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"47bce28013711283","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"11b652a05502070f","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"6076e8e1aaaa11ab.json","parameterValues":[]} \ No newline at end of file +{"uid":"bb6e602a844f0715","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732428194490,"stop":1732428194490,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"bb6e602a844f0715.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59b1922c33f3ac65.json b/allure-report/data/test-cases/bb7d4237e3a80dd7.json similarity index 61% rename from allure-report/data/test-cases/59b1922c33f3ac65.json rename to allure-report/data/test-cases/bb7d4237e3a80dd7.json index 20ac59e121e..68d9c43df9b 100644 --- a/allure-report/data/test-cases/59b1922c33f3ac65.json +++ b/allure-report/data/test-cases/bb7d4237e3a80dd7.json @@ -1 +1 @@ -{"uid":"59b1922c33f3ac65","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195618,"stop":1732428195618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e378762a5dac9d1e","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"2e9a9a4090c00445","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"59b1922c33f3ac65.json","parameterValues":[]} \ No newline at end of file +{"uid":"bb7d4237e3a80dd7","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bb7d4237e3a80dd7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d6c6bb6b47e11d4.json b/allure-report/data/test-cases/bc6803e227b56151.json similarity index 58% rename from allure-report/data/test-cases/7d6c6bb6b47e11d4.json rename to allure-report/data/test-cases/bc6803e227b56151.json index 76293d6d2fb..c6d3678fbf3 100644 --- a/allure-report/data/test-cases/7d6c6bb6b47e11d4.json +++ b/allure-report/data/test-cases/bc6803e227b56151.json @@ -1 +1 @@ -{"uid":"7d6c6bb6b47e11d4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1b76ff1cacf5544","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"eea4c328ad2eaeca","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"f1ac1e81621379df","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"7d6c6bb6b47e11d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"bc6803e227b56151","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"bc6803e227b56151.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bca9ba5488466979.json b/allure-report/data/test-cases/bca9ba5488466979.json new file mode 100644 index 00000000000..2ea7881bfc9 --- /dev/null +++ b/allure-report/data/test-cases/bca9ba5488466979.json @@ -0,0 +1 @@ +{"uid":"bca9ba5488466979","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"88503943247ae8d5","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0}},{"uid":"d35364e5c638d89f","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"814ad2f745782ad7","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"bca9ba5488466979.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b3fc84157197066.json b/allure-report/data/test-cases/bcdd15975118f527.json similarity index 79% rename from allure-report/data/test-cases/5b3fc84157197066.json rename to allure-report/data/test-cases/bcdd15975118f527.json index 0dece5705a9..26e16e75f99 100644 --- a/allure-report/data/test-cases/5b3fc84157197066.json +++ b/allure-report/data/test-cases/bcdd15975118f527.json @@ -1 +1 @@ -{"uid":"5b3fc84157197066","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"5b3fc84157197066.json","parameterValues":[]} \ No newline at end of file +{"uid":"bcdd15975118f527","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bcdd15975118f527.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd11ee5929c6c53a.json b/allure-report/data/test-cases/bd11ee5929c6c53a.json deleted file mode 100644 index ce5e4796cb0..00000000000 --- a/allure-report/data/test-cases/bd11ee5929c6c53a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bd11ee5929c6c53a","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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\n by ship.\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1732428193903,"stop":1732428193903,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"49355004a4136993","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"56ae9013352b7649","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"bd11ee5929c6c53a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36b7cb5a27235272.json b/allure-report/data/test-cases/bd28741372a5f921.json similarity index 58% rename from allure-report/data/test-cases/36b7cb5a27235272.json rename to allure-report/data/test-cases/bd28741372a5f921.json index 0344fb881c6..2a2968cc012 100644 --- a/allure-report/data/test-cases/36b7cb5a27235272.json +++ b/allure-report/data/test-cases/bd28741372a5f921.json @@ -1 +1 @@ -{"uid":"36b7cb5a27235272","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732428196200,"stop":1732428196200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6fab27b83e3ab13","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"100aeca8c0207022","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"afce902b58f1520a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"36b7cb5a27235272.json","parameterValues":[]} \ No newline at end of file +{"uid":"bd28741372a5f921","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732428196200,"stop":1732428196200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bd28741372a5f921.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/891203fa0698ca9.json b/allure-report/data/test-cases/bd413f89b47699c.json similarity index 55% rename from allure-report/data/test-cases/891203fa0698ca9.json rename to allure-report/data/test-cases/bd413f89b47699c.json index b1392c73735..903071f5015 100644 --- a/allure-report/data/test-cases/891203fa0698ca9.json +++ b/allure-report/data/test-cases/bd413f89b47699c.json @@ -1 +1 @@ -{"uid":"891203fa0698ca9","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8244325875cc8c2","name":"stdout","source":"8244325875cc8c2.txt","type":"text/plain","size":216}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"891203fa0698ca9.json","parameterValues":[]} \ No newline at end of file +{"uid":"bd413f89b47699c","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dc735d6cbaa38cba","name":"stdout","source":"dc735d6cbaa38cba.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bd413f89b47699c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd65eae3991d6c2c.json b/allure-report/data/test-cases/bd65eae3991d6c2c.json new file mode 100644 index 00000000000..39013477e51 --- /dev/null +++ b/allure-report/data/test-cases/bd65eae3991d6c2c.json @@ -0,0 +1 @@ +{"uid":"bd65eae3991d6c2c","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":1732764220896,"stop":1732764220898,"duration":2},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"91cb28173d925ce2","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0}},{"uid":"ab62ce2428f0e01f","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"cb1927945c40fc3","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"bd65eae3991d6c2c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd8413842923f1e.json b/allure-report/data/test-cases/bd8413842923f1e.json deleted file mode 100644 index e26ac976cfc..00000000000 --- a/allure-report/data/test-cases/bd8413842923f1e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bd8413842923f1e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ed71ca1a830493f6","name":"stdout","source":"ed71ca1a830493f6.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bd8413842923f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6eafeb1b2d72c83.json b/allure-report/data/test-cases/bda7ad5e74660b56.json similarity index 92% rename from allure-report/data/test-cases/c6eafeb1b2d72c83.json rename to allure-report/data/test-cases/bda7ad5e74660b56.json index 1a7b38b75ae..e73603945e0 100644 --- a/allure-report/data/test-cases/c6eafeb1b2d72c83.json +++ b/allure-report/data/test-cases/bda7ad5e74660b56.json @@ -1 +1 @@ -{"uid":"c6eafeb1b2d72c83","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c6eafeb1b2d72c83.json","parameterValues":[]} \ No newline at end of file +{"uid":"bda7ad5e74660b56","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"bda7ad5e74660b56.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f040925d9e513197.json b/allure-report/data/test-cases/bdcd06f2ac6e82c9.json similarity index 77% rename from allure-report/data/test-cases/f040925d9e513197.json rename to allure-report/data/test-cases/bdcd06f2ac6e82c9.json index 9ca15ccdab7..67bdd38eaff 100644 --- a/allure-report/data/test-cases/f040925d9e513197.json +++ b/allure-report/data/test-cases/bdcd06f2ac6e82c9.json @@ -1 +1 @@ -{"uid":"f040925d9e513197","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"443a1d8f74495540","name":"stdout","source":"443a1d8f74495540.txt","type":"text/plain","size":117}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f040925d9e513197.json","parameterValues":[]} \ No newline at end of file +{"uid":"bdcd06f2ac6e82c9","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e07fc7bf167a48cd","name":"stdout","source":"e07fc7bf167a48cd.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bdcd06f2ac6e82c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdd8b1b0bd82d5b1.json b/allure-report/data/test-cases/bdd8b1b0bd82d5b1.json new file mode 100644 index 00000000000..813a9de2c11 --- /dev/null +++ b/allure-report/data/test-cases/bdd8b1b0bd82d5b1.json @@ -0,0 +1 @@ +{"uid":"bdd8b1b0bd82d5b1","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ee7ac80cd7bb8f8d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194185,"stop":1732428194185,"duration":0}},{"uid":"5aa7474450de295f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"28083507c1397923","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"bdd8b1b0bd82d5b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/749e2bcfe9e98a99.json b/allure-report/data/test-cases/bded3837031681ca.json similarity index 57% rename from allure-report/data/test-cases/749e2bcfe9e98a99.json rename to allure-report/data/test-cases/bded3837031681ca.json index c30cbfe07bf..1cdb2974203 100644 --- a/allure-report/data/test-cases/749e2bcfe9e98a99.json +++ b/allure-report/data/test-cases/bded3837031681ca.json @@ -1 +1 @@ -{"uid":"749e2bcfe9e98a99","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":1732428195966,"stop":1732428195967,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195966,"stop":1732428195966,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7718694e0e976912","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"1baceb9fc9699f7","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fd395297ed368b03","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"tags":["GAMES","PUZZLES"]},"source":"749e2bcfe9e98a99.json","parameterValues":[]} \ No newline at end of file +{"uid":"bded3837031681ca","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":1732428195966,"stop":1732428195967,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195966,"stop":1732428195966,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"bded3837031681ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/772347d4d5d65952.json b/allure-report/data/test-cases/be4d78eb60a06aeb.json similarity index 57% rename from allure-report/data/test-cases/772347d4d5d65952.json rename to allure-report/data/test-cases/be4d78eb60a06aeb.json index e70091d98b8..50b1f17c354 100644 --- a/allure-report/data/test-cases/772347d4d5d65952.json +++ b/allure-report/data/test-cases/be4d78eb60a06aeb.json @@ -1 +1 @@ -{"uid":"772347d4d5d65952","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":1732428195930,"stop":1732428195933,"duration":3},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732428195930,"stop":1732428195932,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c919701b7942665","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"d66079b030735db8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"c1d9afec6278b1a8","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"772347d4d5d65952.json","parameterValues":[]} \ No newline at end of file +{"uid":"be4d78eb60a06aeb","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":1732428195930,"stop":1732428195933,"duration":3},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732428195930,"stop":1732428195932,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"be4d78eb60a06aeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be50565df8dfb0ab.json b/allure-report/data/test-cases/be50565df8dfb0ab.json new file mode 100644 index 00000000000..bd6ad5a55a2 --- /dev/null +++ b/allure-report/data/test-cases/be50565df8dfb0ab.json @@ -0,0 +1 @@ +{"uid":"be50565df8dfb0ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3719e4e464aa700e","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0}},{"uid":"f1c13dcc2ec25637","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"9f8d638b621270bd","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"be50565df8dfb0ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be618dffc8aac711.json b/allure-report/data/test-cases/be618dffc8aac711.json deleted file mode 100644 index 363188fa408..00000000000 --- a/allure-report/data/test-cases/be618dffc8aac711.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"be618dffc8aac711","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e9b85a28a1d1502","name":"stdout","source":"e9b85a28a1d1502.txt","type":"text/plain","size":3097}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"be618dffc8aac711.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2dcd793cb9c1cce4.json b/allure-report/data/test-cases/bf68fdf036dd98c9.json similarity index 73% rename from allure-report/data/test-cases/2dcd793cb9c1cce4.json rename to allure-report/data/test-cases/bf68fdf036dd98c9.json index f8ae4018de5..78351d50695 100644 --- a/allure-report/data/test-cases/2dcd793cb9c1cce4.json +++ b/allure-report/data/test-cases/bf68fdf036dd98c9.json @@ -1 +1 @@ -{"uid":"2dcd793cb9c1cce4","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"1f8aa4666b4af5af","name":"stdout","source":"1f8aa4666b4af5af.txt","type":"text/plain","size":411}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"2dcd793cb9c1cce4.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf68fdf036dd98c9","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cd47dccaf2814ffa","name":"stdout","source":"cd47dccaf2814ffa.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"bf68fdf036dd98c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34a84f898de954b5.json b/allure-report/data/test-cases/bf7dba429c84fe69.json similarity index 64% rename from allure-report/data/test-cases/34a84f898de954b5.json rename to allure-report/data/test-cases/bf7dba429c84fe69.json index a08d9c9cb02..dae7be70d69 100644 --- a/allure-report/data/test-cases/34a84f898de954b5.json +++ b/allure-report/data/test-cases/bf7dba429c84fe69.json @@ -1 +1 @@ -{"uid":"34a84f898de954b5","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732428194619,"stop":1732428194619,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732428194618,"stop":1732428194618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1732428194621,"stop":1732428194621,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e186c7a758de768a","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"9348c64cc78f5d13","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"34a84f898de954b5.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf7dba429c84fe69","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732428194619,"stop":1732428194619,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bf7dba429c84fe69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acfebfd078f8e03c.json b/allure-report/data/test-cases/bfb03abe3203ecf1.json similarity index 72% rename from allure-report/data/test-cases/acfebfd078f8e03c.json rename to allure-report/data/test-cases/bfb03abe3203ecf1.json index 68835673fcc..04c45b9bc84 100644 --- a/allure-report/data/test-cases/acfebfd078f8e03c.json +++ b/allure-report/data/test-cases/bfb03abe3203ecf1.json @@ -1 +1 @@ -{"uid":"acfebfd078f8e03c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1d5dc16fdfe05c84","name":"stdout","source":"1d5dc16fdfe05c84.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"acfebfd078f8e03c.json","parameterValues":[]} \ No newline at end of file +{"uid":"bfb03abe3203ecf1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6152f64a0232194a","name":"stdout","source":"6152f64a0232194a.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bfb03abe3203ecf1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c005f5247ce8619b.json b/allure-report/data/test-cases/c005f5247ce8619b.json new file mode 100644 index 00000000000..462628e9cf3 --- /dev/null +++ b/allure-report/data/test-cases/c005f5247ce8619b.json @@ -0,0 +1 @@ +{"uid":"c005f5247ce8619b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ceb0c3e5ec48d975","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1}},{"uid":"d0ce09c4ba5ff697","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"821065d4dc841edb","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c005f5247ce8619b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c00621abb22a9be3.json b/allure-report/data/test-cases/c00621abb22a9be3.json new file mode 100644 index 00000000000..14ae891f38e --- /dev/null +++ b/allure-report/data/test-cases/c00621abb22a9be3.json @@ -0,0 +1 @@ +{"uid":"c00621abb22a9be3","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing Battle method

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"afca78445b5fa23f","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0}},{"uid":"552b72a0721ea486","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"921715088233c4e7","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"c00621abb22a9be3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38b436d46d6537ee.json b/allure-report/data/test-cases/c03eb686eb3e5a89.json similarity index 61% rename from allure-report/data/test-cases/38b436d46d6537ee.json rename to allure-report/data/test-cases/c03eb686eb3e5a89.json index 060d186231f..debc7011b52 100644 --- a/allure-report/data/test-cases/38b436d46d6537ee.json +++ b/allure-report/data/test-cases/c03eb686eb3e5a89.json @@ -1 +1 @@ -{"uid":"38b436d46d6537ee","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a40dc509f3c7162d","name":"stdout","source":"a40dc509f3c7162d.txt","type":"text/plain","size":480}],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"38b436d46d6537ee.json","parameterValues":[]} \ No newline at end of file +{"uid":"c03eb686eb3e5a89","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"349072694382d10e","name":"stdout","source":"349072694382d10e.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c03eb686eb3e5a89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0a4502fedd41667.json b/allure-report/data/test-cases/c0a4502fedd41667.json new file mode 100644 index 00000000000..3943a011eb9 --- /dev/null +++ b/allure-report/data/test-cases/c0a4502fedd41667.json @@ -0,0 +1 @@ +{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6a59cc8a0131a02","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1}},{"uid":"ae08758c48a63481","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"7de68906bfa0f18","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c0a4502fedd41667.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0b1085f1fbfd7ed.json b/allure-report/data/test-cases/c0b1085f1fbfd7ed.json new file mode 100644 index 00000000000..8c960de9074 --- /dev/null +++ b/allure-report/data/test-cases/c0b1085f1fbfd7ed.json @@ -0,0 +1 @@ +{"uid":"c0b1085f1fbfd7ed","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":1732764220254,"stop":1732764220254,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"288e814175ef5830","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1}},{"uid":"7612354cc3c699d","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"5956e80e98375be","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c0b1085f1fbfd7ed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d905be84b5c0b77.json b/allure-report/data/test-cases/c0b9bbb0a9f351b0.json similarity index 62% rename from allure-report/data/test-cases/7d905be84b5c0b77.json rename to allure-report/data/test-cases/c0b9bbb0a9f351b0.json index 4d6aa9a9bdf..382fe6673cf 100644 --- a/allure-report/data/test-cases/7d905be84b5c0b77.json +++ b/allure-report/data/test-cases/c0b9bbb0a9f351b0.json @@ -1 +1 @@ -{"uid":"7d905be84b5c0b77","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4f617786d1167bf5","name":"stdout","source":"4f617786d1167bf5.txt","type":"text/plain","size":2146}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"7d905be84b5c0b77.json","parameterValues":[]} \ No newline at end of file +{"uid":"c0b9bbb0a9f351b0","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2e0ebd0ab799745b","name":"stdout","source":"2e0ebd0ab799745b.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c0b9bbb0a9f351b0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0d55ad9fdfb0f8a.json b/allure-report/data/test-cases/c10fb0178a326f0a.json similarity index 68% rename from allure-report/data/test-cases/c0d55ad9fdfb0f8a.json rename to allure-report/data/test-cases/c10fb0178a326f0a.json index 2080224bb0e..7fac6e1a55e 100644 --- a/allure-report/data/test-cases/c0d55ad9fdfb0f8a.json +++ b/allure-report/data/test-cases/c10fb0178a326f0a.json @@ -1 +1 @@ -{"uid":"c0d55ad9fdfb0f8a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b18a61fc243fdba8","name":"stdout","source":"b18a61fc243fdba8.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c0d55ad9fdfb0f8a.json","parameterValues":[]} \ No newline at end of file +{"uid":"c10fb0178a326f0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e567229f9ee12b7","name":"stdout","source":"9e567229f9ee12b7.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c10fb0178a326f0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/75ba956cc9ee13f9.json b/allure-report/data/test-cases/c12e168b06d36fc7.json similarity index 61% rename from allure-report/data/test-cases/75ba956cc9ee13f9.json rename to allure-report/data/test-cases/c12e168b06d36fc7.json index 115a27f9038..50aaabe44e6 100644 --- a/allure-report/data/test-cases/75ba956cc9ee13f9.json +++ b/allure-report/data/test-cases/c12e168b06d36fc7.json @@ -1 +1 @@ -{"uid":"75ba956cc9ee13f9","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ab4a085da0164d2","name":"stdout","source":"1ab4a085da0164d2.txt","type":"text/plain","size":1367}],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"75ba956cc9ee13f9.json","parameterValues":[]} \ No newline at end of file +{"uid":"c12e168b06d36fc7","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9473dcf11398d47e","name":"stdout","source":"9473dcf11398d47e.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"c12e168b06d36fc7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44c1e35d7a7b2adb.json b/allure-report/data/test-cases/c1447fd680942c58.json similarity index 65% rename from allure-report/data/test-cases/44c1e35d7a7b2adb.json rename to allure-report/data/test-cases/c1447fd680942c58.json index 3c5b25f5af4..8880cd2eedb 100644 --- a/allure-report/data/test-cases/44c1e35d7a7b2adb.json +++ b/allure-report/data/test-cases/c1447fd680942c58.json @@ -1 +1 @@ -{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732428195819,"stop":1732428195819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4433323b946a1c32","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"167f34fe4187417a","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e0851c0ba53ec6a9","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"44c1e35d7a7b2adb.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1447fd680942c58","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732428195819,"stop":1732428195819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c1447fd680942c58.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c19e4739f2d4d64c.json b/allure-report/data/test-cases/c19e4739f2d4d64c.json new file mode 100644 index 00000000000..196011edf1a --- /dev/null +++ b/allure-report/data/test-cases/c19e4739f2d4d64c.json @@ -0,0 +1 @@ +{"uid":"c19e4739f2d4d64c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732764220828,"stop":1732764220828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31ab703bf65847e5","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0}},{"uid":"764219a087e938f","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"4fc00e9c47abe8d0","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"c19e4739f2d4d64c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d38d4627913b0040.json b/allure-report/data/test-cases/c1ac88d1c8e8cadf.json similarity index 72% rename from allure-report/data/test-cases/d38d4627913b0040.json rename to allure-report/data/test-cases/c1ac88d1c8e8cadf.json index 3b87829cf49..22b22d405c5 100644 --- a/allure-report/data/test-cases/d38d4627913b0040.json +++ b/allure-report/data/test-cases/c1ac88d1c8e8cadf.json @@ -1 +1 @@ -{"uid":"d38d4627913b0040","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"730a4e5abf4ea8ba","name":"stdout","source":"730a4e5abf4ea8ba.txt","type":"text/plain","size":510}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d38d4627913b0040.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1ac88d1c8e8cadf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"817f3cd0d39f56b9","name":"stdout","source":"817f3cd0d39f56b9.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c1ac88d1c8e8cadf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c20970878e009fc6.json b/allure-report/data/test-cases/c20970878e009fc6.json new file mode 100644 index 00000000000..233eb49c0eb --- /dev/null +++ b/allure-report/data/test-cases/c20970878e009fc6.json @@ -0,0 +1 @@ +{"uid":"c20970878e009fc6","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7b12ebc1ff02117","name":"stdout","source":"7b12ebc1ff02117.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c20970878e009fc6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c244be500ebdf146.json b/allure-report/data/test-cases/c244be500ebdf146.json new file mode 100644 index 00000000000..3b95bc4ea02 --- /dev/null +++ b/allure-report/data/test-cases/c244be500ebdf146.json @@ -0,0 +1 @@ +{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219337,"stop":1732764219338,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732764219338,"stop":1732764219338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4941a73e9c93a57","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2}},{"uid":"256439519ef758bc","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"9d50fe36fd5059ab","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c244be500ebdf146.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c25f8210fdb51a41.json b/allure-report/data/test-cases/c25f8210fdb51a41.json new file mode 100644 index 00000000000..eeb33f3b5b6 --- /dev/null +++ b/allure-report/data/test-cases/c25f8210fdb51a41.json @@ -0,0 +1 @@ +{"uid":"c25f8210fdb51a41","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732764218647,"stop":1732764218647,"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', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"682ca0c47ecc45d4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193998,"stop":1732428193998,"duration":0}},{"uid":"740e72b931a3ed2d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"ef2ebe964f1d2f5f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"c25f8210fdb51a41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8b77a6618ff7e4c.json b/allure-report/data/test-cases/c264906d7bf954d5.json similarity index 94% rename from allure-report/data/test-cases/a8b77a6618ff7e4c.json rename to allure-report/data/test-cases/c264906d7bf954d5.json index a895f3dad63..daa4e8232f3 100644 --- a/allure-report/data/test-cases/a8b77a6618ff7e4c.json +++ b/allure-report/data/test-cases/c264906d7bf954d5.json @@ -1 +1 @@ -{"uid":"a8b77a6618ff7e4c","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"a8b77a6618ff7e4c.json","parameterValues":[]} \ No newline at end of file +{"uid":"c264906d7bf954d5","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"c264906d7bf954d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c2a15dd126224894.json b/allure-report/data/test-cases/c2a15dd126224894.json new file mode 100644 index 00000000000..bf600579a66 --- /dev/null +++ b/allure-report/data/test-cases/c2a15dd126224894.json @@ -0,0 +1 @@ +{"uid":"c2a15dd126224894","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Remove First and Last Character"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5cbf19148d05755c","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0}},{"uid":"3604ad2531e10e0a","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"1ae269d449ac7d5e","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"c2a15dd126224894.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c31558e9c7981ac7.json b/allure-report/data/test-cases/c31558e9c7981ac7.json new file mode 100644 index 00000000000..951f4c11330 --- /dev/null +++ b/allure-report/data/test-cases/c31558e9c7981ac7.json @@ -0,0 +1 @@ +{"uid":"c31558e9c7981ac7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732764221310,"stop":1732764221310,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f1c17d8d31f590b0","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0}},{"uid":"f5725ff55458d02a","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"210d6cbbe1051e7b","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"c31558e9c7981ac7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c580e79550c46f66.json b/allure-report/data/test-cases/c359ea3a207c31eb.json similarity index 57% rename from allure-report/data/test-cases/c580e79550c46f66.json rename to allure-report/data/test-cases/c359ea3a207c31eb.json index 7d362415ba8..420ca892076 100644 --- a/allure-report/data/test-cases/c580e79550c46f66.json +++ b/allure-report/data/test-cases/c359ea3a207c31eb.json @@ -1 +1 @@ -{"uid":"c580e79550c46f66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"566a56003ac2e703","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"cda9164d86dd0b79","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d6e6e46de805754f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c580e79550c46f66.json","parameterValues":[]} \ No newline at end of file +{"uid":"c359ea3a207c31eb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c359ea3a207c31eb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88a73a4735cff92e.json b/allure-report/data/test-cases/c38b32e4e940b443.json similarity index 72% rename from allure-report/data/test-cases/88a73a4735cff92e.json rename to allure-report/data/test-cases/c38b32e4e940b443.json index 825993eaac8..21d3fda0e08 100644 --- a/allure-report/data/test-cases/88a73a4735cff92e.json +++ b/allure-report/data/test-cases/c38b32e4e940b443.json @@ -1 +1 @@ -{"uid":"88a73a4735cff92e","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8f909ea616537459","name":"stdout","source":"8f909ea616537459.txt","type":"text/plain","size":99}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"88a73a4735cff92e.json","parameterValues":[]} \ No newline at end of file +{"uid":"c38b32e4e940b443","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3934a31f83c6b392","name":"stdout","source":"3934a31f83c6b392.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c38b32e4e940b443.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3e164f822b7bae.json b/allure-report/data/test-cases/c3e164f822b7bae.json new file mode 100644 index 00000000000..0880deab3d2 --- /dev/null +++ b/allure-report/data/test-cases/c3e164f822b7bae.json @@ -0,0 +1 @@ +{"uid":"c3e164f822b7bae","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732428196258,"stop":1732428196258,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732428196257,"stop":1732428196257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732428196259,"stop":1732428196259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c3e164f822b7bae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3e9cf6e477b7f80.json b/allure-report/data/test-cases/c3e9cf6e477b7f80.json new file mode 100644 index 00000000000..3a48d8bdc4b --- /dev/null +++ b/allure-report/data/test-cases/c3e9cf6e477b7f80.json @@ -0,0 +1 @@ +{"uid":"c3e9cf6e477b7f80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"867b171e961cc6e3","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1}},{"uid":"3b453b26a6476828","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"d237c739f4b0c138","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"c3e9cf6e477b7f80.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63e9aeb63ef06083.json b/allure-report/data/test-cases/c3faad8d02b815fd.json similarity index 70% rename from allure-report/data/test-cases/63e9aeb63ef06083.json rename to allure-report/data/test-cases/c3faad8d02b815fd.json index a0b264642f2..5320e0bd54f 100644 --- a/allure-report/data/test-cases/63e9aeb63ef06083.json +++ b/allure-report/data/test-cases/c3faad8d02b815fd.json @@ -1 +1 @@ -{"uid":"63e9aeb63ef06083","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"36d455921a73202d","name":"stdout","source":"36d455921a73202d.txt","type":"text/plain","size":81}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"63e9aeb63ef06083.json","parameterValues":[]} \ No newline at end of file +{"uid":"c3faad8d02b815fd","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b75f0fc5a14ca4fd","name":"stdout","source":"b75f0fc5a14ca4fd.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c3faad8d02b815fd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4a8605181ed2d7.json b/allure-report/data/test-cases/c4a8605181ed2d7.json deleted file mode 100644 index dd4701b4b22..00000000000 --- a/allure-report/data/test-cases/c4a8605181ed2d7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c4a8605181ed2d7","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"54a96af48234a9eb","name":"stdout","source":"54a96af48234a9eb.txt","type":"text/plain","size":560}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c4a8605181ed2d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4d384465e183d6.json b/allure-report/data/test-cases/c4d384465e183d6.json deleted file mode 100644 index a960273bb1e..00000000000 --- a/allure-report/data/test-cases/c4d384465e183d6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c4d384465e183d6","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"642ca5006c94cc7","name":"stdout","source":"642ca5006c94cc7.txt","type":"text/plain","size":1649}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c4d384465e183d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5be4a10a1a64fd59.json b/allure-report/data/test-cases/c4d9587a3ff2d229.json similarity index 72% rename from allure-report/data/test-cases/5be4a10a1a64fd59.json rename to allure-report/data/test-cases/c4d9587a3ff2d229.json index 1cd1a7ba4a5..d82ffdbbf92 100644 --- a/allure-report/data/test-cases/5be4a10a1a64fd59.json +++ b/allure-report/data/test-cases/c4d9587a3ff2d229.json @@ -1 +1 @@ -{"uid":"5be4a10a1a64fd59","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5be4a10a1a64fd59.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4d9587a3ff2d229","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c4d9587a3ff2d229.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db6f47361aae7a53.json b/allure-report/data/test-cases/c4f63c652fed664c.json similarity index 57% rename from allure-report/data/test-cases/db6f47361aae7a53.json rename to allure-report/data/test-cases/c4f63c652fed664c.json index b1e2aa634a8..8b6207e2d0a 100644 --- a/allure-report/data/test-cases/db6f47361aae7a53.json +++ b/allure-report/data/test-cases/c4f63c652fed664c.json @@ -1 +1 @@ -{"uid":"db6f47361aae7a53","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"648462a68a83b780","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"16f7f5e029216efb","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"51971bf7ad109ed2","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"db6f47361aae7a53.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4f63c652fed664c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c4f63c652fed664c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c52dc9ba56a64495.json b/allure-report/data/test-cases/c52dc9ba56a64495.json new file mode 100644 index 00000000000..8a9a97b32dd --- /dev/null +++ b/allure-report/data/test-cases/c52dc9ba56a64495.json @@ -0,0 +1 @@ +{"uid":"c52dc9ba56a64495","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732764220760,"stop":1732764220761,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732764220764,"stop":1732764220764,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"name":"tag","value":"ARRAYS"},{"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.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"843678da53c540e6","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0}},{"uid":"f2826391ba216705","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"59a630e9120dbf2c","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c52dc9ba56a64495.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5bce40c2868c787.json b/allure-report/data/test-cases/c5bce40c2868c787.json new file mode 100644 index 00000000000..310d38ccd04 --- /dev/null +++ b/allure-report/data/test-cases/c5bce40c2868c787.json @@ -0,0 +1 @@ +{"uid":"c5bce40c2868c787","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":1732764220328,"stop":1732764220328,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220327,"stop":1732764220327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220329,"stop":1732764220329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6f37cee94115c50c","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0}},{"uid":"b5cedd1e00782e11","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"941c0037b0b98fcf","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c5bce40c2868c787.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5bfa9ec903b7b32.json b/allure-report/data/test-cases/c5bfa9ec903b7b32.json new file mode 100644 index 00000000000..4b5347947b9 --- /dev/null +++ b/allure-report/data/test-cases/c5bfa9ec903b7b32.json @@ -0,0 +1 @@ +{"uid":"c5bfa9ec903b7b32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d30848274c8ad1","name":"stdout","source":"4d30848274c8ad1.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c5bfa9ec903b7b32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef905ece7eeedc77.json b/allure-report/data/test-cases/c5cf96cca0ab2f52.json similarity index 50% rename from allure-report/data/test-cases/ef905ece7eeedc77.json rename to allure-report/data/test-cases/c5cf96cca0ab2f52.json index 34f36cf90bd..1b2de56449e 100644 --- a/allure-report/data/test-cases/ef905ece7eeedc77.json +++ b/allure-report/data/test-cases/c5cf96cca0ab2f52.json @@ -1 +1 @@ -{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732428195597,"stop":1732428195597,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass one","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass two","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass three","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732428195600,"stop":1732428195600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 kyu"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e1fe0122d9c0870d","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"95521fe2b6cd2563","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fa5b03edd274b2cd","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"ef905ece7eeedc77.json","parameterValues":[]} \ No newline at end of file +{"uid":"c5cf96cca0ab2f52","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732428195597,"stop":1732428195597,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732428195600,"stop":1732428195600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 kyu"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c5cf96cca0ab2f52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c61d34eb10bf204.json b/allure-report/data/test-cases/c61d34eb10bf204.json new file mode 100644 index 00000000000..1a191e6917c --- /dev/null +++ b/allure-report/data/test-cases/c61d34eb10bf204.json @@ -0,0 +1 @@ +{"uid":"c61d34eb10bf204","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d2685b3f41e9f61c","name":"stdout","source":"d2685b3f41e9f61c.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c61d34eb10bf204.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6923016c0d7805e.json b/allure-report/data/test-cases/c6923016c0d7805e.json deleted file mode 100644 index e3eb1c4a2a6..00000000000 --- a/allure-report/data/test-cases/c6923016c0d7805e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c6923016c0d7805e","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"50b324c74021da7c","name":"stdout","source":"50b324c74021da7c.txt","type":"text/plain","size":148}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":"c6923016c0d7805e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c700736d12b44c86.json b/allure-report/data/test-cases/c700736d12b44c86.json new file mode 100644 index 00000000000..c2aa57e412f --- /dev/null +++ b/allure-report/data/test-cases/c700736d12b44c86.json @@ -0,0 +1 @@ +{"uid":"c700736d12b44c86","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":1732764220619,"stop":1732764220619,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6209b3d491320ab9","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0}},{"uid":"1b95adcea61e4ef5","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"707862d33841a8ff","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"c700736d12b44c86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4aa537b5c88883a7.json b/allure-report/data/test-cases/c7165b4538deb01d.json similarity index 56% rename from allure-report/data/test-cases/4aa537b5c88883a7.json rename to allure-report/data/test-cases/c7165b4538deb01d.json index 0ca8e05d90e..d4adaa27a70 100644 --- a/allure-report/data/test-cases/4aa537b5c88883a7.json +++ b/allure-report/data/test-cases/c7165b4538deb01d.json @@ -1 +1 @@ -{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732428196475,"stop":1732428196475,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f1a24ca70fa28a4b","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"2dcd793cb9c1cce4","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7c2750d825fae93b","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"4aa537b5c88883a7.json","parameterValues":[]} \ No newline at end of file +{"uid":"c7165b4538deb01d","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732428196475,"stop":1732428196475,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"c7165b4538deb01d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c730b39a7cf9843.json b/allure-report/data/test-cases/c730b39a7cf9843.json new file mode 100644 index 00000000000..69d692b273a --- /dev/null +++ b/allure-report/data/test-cases/c730b39a7cf9843.json @@ -0,0 +1 @@ +{"uid":"c730b39a7cf9843","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8afe9706a7ce18ad","name":"stdout","source":"8afe9706a7ce18ad.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c730b39a7cf9843.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af31da4a2f7e0b3c.json b/allure-report/data/test-cases/c739525d6df646b0.json similarity index 80% rename from allure-report/data/test-cases/af31da4a2f7e0b3c.json rename to allure-report/data/test-cases/c739525d6df646b0.json index ae9d4ef10cb..eeee3309367 100644 --- a/allure-report/data/test-cases/af31da4a2f7e0b3c.json +++ b/allure-report/data/test-cases/c739525d6df646b0.json @@ -1 +1 @@ -{"uid":"af31da4a2f7e0b3c","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ed14694d3d785456","name":"stdout","source":"ed14694d3d785456.txt","type":"text/plain","size":3892}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"af31da4a2f7e0b3c.json","parameterValues":[]} \ No newline at end of file +{"uid":"c739525d6df646b0","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f82dd65f45ebad45","name":"stdout","source":"f82dd65f45ebad45.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c739525d6df646b0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c78900977fa836.json b/allure-report/data/test-cases/c78900977fa836.json new file mode 100644 index 00000000000..dc260dcd043 --- /dev/null +++ b/allure-report/data/test-cases/c78900977fa836.json @@ -0,0 +1 @@ +{"uid":"c78900977fa836","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4562f85c852f0a97","name":"stdout","source":"4562f85c852f0a97.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c78900977fa836.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85b55023f525bac2.json b/allure-report/data/test-cases/c793ab5339736af5.json similarity index 73% rename from allure-report/data/test-cases/85b55023f525bac2.json rename to allure-report/data/test-cases/c793ab5339736af5.json index 162695e504f..89a0c54c9af 100644 --- a/allure-report/data/test-cases/85b55023f525bac2.json +++ b/allure-report/data/test-cases/c793ab5339736af5.json @@ -1 +1 @@ -{"uid":"85b55023f525bac2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"98b58e86a56b6f3b","name":"stdout","source":"98b58e86a56b6f3b.txt","type":"text/plain","size":512}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"85b55023f525bac2.json","parameterValues":[]} \ No newline at end of file +{"uid":"c793ab5339736af5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d0bc1ad841243b6a","name":"stdout","source":"d0bc1ad841243b6a.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c793ab5339736af5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/580b983b7062983c.json b/allure-report/data/test-cases/c7b8f329dd40406f.json similarity index 68% rename from allure-report/data/test-cases/580b983b7062983c.json rename to allure-report/data/test-cases/c7b8f329dd40406f.json index 35920369148..05d424d8075 100644 --- a/allure-report/data/test-cases/580b983b7062983c.json +++ b/allure-report/data/test-cases/c7b8f329dd40406f.json @@ -1 +1 @@ -{"uid":"580b983b7062983c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"998cb255bcb4a08e","name":"stdout","source":"998cb255bcb4a08e.txt","type":"text/plain","size":30}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"580b983b7062983c.json","parameterValues":[]} \ No newline at end of file +{"uid":"c7b8f329dd40406f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7269f46fd31058ea","name":"stdout","source":"7269f46fd31058ea.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"c7b8f329dd40406f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f6f3bc16b3488d6.json b/allure-report/data/test-cases/c7c4d343c90ce082.json similarity index 57% rename from allure-report/data/test-cases/5f6f3bc16b3488d6.json rename to allure-report/data/test-cases/c7c4d343c90ce082.json index 38077009085..20baa38e15c 100644 --- a/allure-report/data/test-cases/5f6f3bc16b3488d6.json +++ b/allure-report/data/test-cases/c7c4d343c90ce082.json @@ -1 +1 @@ -{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194689,"stop":1732428194689,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1732428194691,"stop":1732428194691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b890a6fea083097f","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"6207ccc30173aa77","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5f6f3bc16b3488d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"c7c4d343c90ce082","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c7c4d343c90ce082.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c87eac92a1b3b456.json b/allure-report/data/test-cases/c87eac92a1b3b456.json new file mode 100644 index 00000000000..24661fef116 --- /dev/null +++ b/allure-report/data/test-cases/c87eac92a1b3b456.json @@ -0,0 +1 @@ +{"uid":"c87eac92a1b3b456","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"563a12b2ae66d10b","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1}},{"uid":"55a0094c41d10012","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"ed5a184ed941933a","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"c87eac92a1b3b456.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8a70d9350601da5.json b/allure-report/data/test-cases/c8a70d9350601da5.json new file mode 100644 index 00000000000..74bb0c11cc2 --- /dev/null +++ b/allure-report/data/test-cases/c8a70d9350601da5.json @@ -0,0 +1 @@ +{"uid":"c8a70d9350601da5","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":1732764221235,"stop":1732764221235,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732764221237,"stop":1732764221237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"GEOMETRY"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ALGEBRA"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Surface Area and Volume of a Box"},{"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.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7eedfccbd9267527","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0}},{"uid":"e29868febcecd61d","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"68489cf8ea35171c","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"c8a70d9350601da5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8da32e94b736fef.json b/allure-report/data/test-cases/c8da32e94b736fef.json new file mode 100644 index 00000000000..a327cc8f349 --- /dev/null +++ b/allure-report/data/test-cases/c8da32e94b736fef.json @@ -0,0 +1 @@ +{"uid":"c8da32e94b736fef","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":1732428193933,"stop":1732428193934,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c8da32e94b736fef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f449c3e5994db83f.json b/allure-report/data/test-cases/c8de14a6ed49ac6d.json similarity index 72% rename from allure-report/data/test-cases/f449c3e5994db83f.json rename to allure-report/data/test-cases/c8de14a6ed49ac6d.json index ea1faa9c0ca..e7d6ab19a00 100644 --- a/allure-report/data/test-cases/f449c3e5994db83f.json +++ b/allure-report/data/test-cases/c8de14a6ed49ac6d.json @@ -1 +1 @@ -{"uid":"f449c3e5994db83f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b102eb36f048a843","name":"stdout","source":"b102eb36f048a843.txt","type":"text/plain","size":556}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f449c3e5994db83f.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8de14a6ed49ac6d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73fc8f8784290b40","name":"stdout","source":"73fc8f8784290b40.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c8de14a6ed49ac6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c919701b7942665.json b/allure-report/data/test-cases/c919701b7942665.json deleted file mode 100644 index 686e5793ba6..00000000000 --- a/allure-report/data/test-cases/c919701b7942665.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c919701b7942665","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c919701b7942665.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/97ad1cd914697b30.json b/allure-report/data/test-cases/c91f2e2d1c4e5a72.json similarity index 64% rename from allure-report/data/test-cases/97ad1cd914697b30.json rename to allure-report/data/test-cases/c91f2e2d1c4e5a72.json index fc2e190d2ed..b15a7a86f14 100644 --- a/allure-report/data/test-cases/97ad1cd914697b30.json +++ b/allure-report/data/test-cases/c91f2e2d1c4e5a72.json @@ -1 +1 @@ -{"uid":"97ad1cd914697b30","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"857a5351e31f1baf","name":"stdout","source":"857a5351e31f1baf.txt","type":"text/plain","size":878}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"97ad1cd914697b30.json","parameterValues":[]} \ No newline at end of file +{"uid":"c91f2e2d1c4e5a72","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1dfb198a7253b941","name":"stdout","source":"1dfb198a7253b941.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c91f2e2d1c4e5a72.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7087926d4a83e9d4.json b/allure-report/data/test-cases/c948f5411c74f4a1.json similarity index 63% rename from allure-report/data/test-cases/7087926d4a83e9d4.json rename to allure-report/data/test-cases/c948f5411c74f4a1.json index 792f7014551..44723c5b7b9 100644 --- a/allure-report/data/test-cases/7087926d4a83e9d4.json +++ b/allure-report/data/test-cases/c948f5411c74f4a1.json @@ -1 +1 @@ -{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732428194224,"stop":1732428194224,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732428194223,"stop":1732428194223,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732428194225,"stop":1732428194225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3fd800b8d3602698","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"e7e28dd8f45c4374","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d4c41912963969d7","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"7087926d4a83e9d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"c948f5411c74f4a1","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732428194224,"stop":1732428194224,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732428194223,"stop":1732428194223,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732428194225,"stop":1732428194225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c948f5411c74f4a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de0aa71757f8badf.json b/allure-report/data/test-cases/cad7274be200bf39.json similarity index 52% rename from allure-report/data/test-cases/de0aa71757f8badf.json rename to allure-report/data/test-cases/cad7274be200bf39.json index c6ab9db1b7e..8906f120797 100644 --- a/allure-report/data/test-cases/de0aa71757f8badf.json +++ b/allure-report/data/test-cases/cad7274be200bf39.json @@ -1 +1 @@ -{"uid":"de0aa71757f8badf","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c94aec0d920b7f7d","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"32b8a7a180fb722f","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"de0aa71757f8badf.json","parameterValues":[]} \ No newline at end of file +{"uid":"cad7274be200bf39","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cad7274be200bf39.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20ae87fc51fb9338.json b/allure-report/data/test-cases/caf985b2a75ee6b7.json similarity index 74% rename from allure-report/data/test-cases/20ae87fc51fb9338.json rename to allure-report/data/test-cases/caf985b2a75ee6b7.json index 1ffd86d1543..019efc8ca6b 100644 --- a/allure-report/data/test-cases/20ae87fc51fb9338.json +++ b/allure-report/data/test-cases/caf985b2a75ee6b7.json @@ -1 +1 @@ -{"uid":"20ae87fc51fb9338","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ce9d59c982071d0","name":"stdout","source":"1ce9d59c982071d0.txt","type":"text/plain","size":272}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"20ae87fc51fb9338.json","parameterValues":[]} \ No newline at end of file +{"uid":"caf985b2a75ee6b7","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"633abad852203ff8","name":"stdout","source":"633abad852203ff8.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"caf985b2a75ee6b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb1927945c40fc3.json b/allure-report/data/test-cases/cb1927945c40fc3.json new file mode 100644 index 00000000000..4662c356e8f --- /dev/null +++ b/allure-report/data/test-cases/cb1927945c40fc3.json @@ -0,0 +1 @@ +{"uid":"cb1927945c40fc3","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"2d724952cd20b6e1","name":"stdout","source":"2d724952cd20b6e1.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cb1927945c40fc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c72192846448826.json b/allure-report/data/test-cases/cb7d8edff0d47cc5.json similarity index 66% rename from allure-report/data/test-cases/8c72192846448826.json rename to allure-report/data/test-cases/cb7d8edff0d47cc5.json index 966674c621b..911180405da 100644 --- a/allure-report/data/test-cases/8c72192846448826.json +++ b/allure-report/data/test-cases/cb7d8edff0d47cc5.json @@ -1 +1 @@ -{"uid":"8c72192846448826","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cca44b266aa98436","name":"stdout","source":"cca44b266aa98436.txt","type":"text/plain","size":213}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"8c72192846448826.json","parameterValues":[]} \ No newline at end of file +{"uid":"cb7d8edff0d47cc5","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9ca1d978c6df1121","name":"stdout","source":"9ca1d978c6df1121.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cb7d8edff0d47cc5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb9f6d4c2aaf90e3.json b/allure-report/data/test-cases/cb9f6d4c2aaf90e3.json new file mode 100644 index 00000000000..fd5d2c49123 --- /dev/null +++ b/allure-report/data/test-cases/cb9f6d4c2aaf90e3.json @@ -0,0 +1 @@ +{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732764220509,"stop":1732764220509,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732764220508,"stop":1732764220508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732764220510,"stop":1732764220510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1447fd680942c58","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1}},{"uid":"37af89538f752875","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"71dc0d8169aaad6f","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"cb9f6d4c2aaf90e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a224a931a5567f85.json b/allure-report/data/test-cases/cbe27b4f7111917c.json similarity index 70% rename from allure-report/data/test-cases/a224a931a5567f85.json rename to allure-report/data/test-cases/cbe27b4f7111917c.json index 382325ebc62..08e397c6828 100644 --- a/allure-report/data/test-cases/a224a931a5567f85.json +++ b/allure-report/data/test-cases/cbe27b4f7111917c.json @@ -1 +1 @@ -{"uid":"a224a931a5567f85","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase::0","time":{"start":1732428195628,"stop":1732428195628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"a224a931a5567f85.json","parameterValues":[]} \ No newline at end of file +{"uid":"cbe27b4f7111917c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cbe27b4f7111917c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc4dd11ea285cd92.json b/allure-report/data/test-cases/cc4dd11ea285cd92.json new file mode 100644 index 00000000000..699544b8dba --- /dev/null +++ b/allure-report/data/test-cases/cc4dd11ea285cd92.json @@ -0,0 +1 @@ +{"uid":"cc4dd11ea285cd92","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":1732764220907,"stop":1732764220907,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0a6327af7d064cf","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1}},{"uid":"545394bf3fbbd64b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"1bcebf4fb624aad6","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cc4dd11ea285cd92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccb7c5007831ab45.json b/allure-report/data/test-cases/ccb7c5007831ab45.json new file mode 100644 index 00000000000..96a6137a230 --- /dev/null +++ b/allure-report/data/test-cases/ccb7c5007831ab45.json @@ -0,0 +1 @@ +{"uid":"ccb7c5007831ab45","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3fc324c4038294","name":"stdout","source":"b3fc324c4038294.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ccb7c5007831ab45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9521eb418a2faa99.json b/allure-report/data/test-cases/cce644bc4fb0b16f.json similarity index 65% rename from allure-report/data/test-cases/9521eb418a2faa99.json rename to allure-report/data/test-cases/cce644bc4fb0b16f.json index 64b7ce1e6d4..f8714618b79 100644 --- a/allure-report/data/test-cases/9521eb418a2faa99.json +++ b/allure-report/data/test-cases/cce644bc4fb0b16f.json @@ -1 +1 @@ -{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732428195914,"stop":1732428195914,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732428195915,"stop":1732428195915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"161e5fcc0f247","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"68db53b8169ad957","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b9309fd398214a5","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"9521eb418a2faa99.json","parameterValues":[]} \ No newline at end of file +{"uid":"cce644bc4fb0b16f","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732428195914,"stop":1732428195914,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732428195915,"stop":1732428195915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"cce644bc4fb0b16f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acdec238a53c10e1.json b/allure-report/data/test-cases/cd536df0700f3bd3.json similarity index 52% rename from allure-report/data/test-cases/acdec238a53c10e1.json rename to allure-report/data/test-cases/cd536df0700f3bd3.json index 5130c82fc16..898cc81f845 100644 --- a/allure-report/data/test-cases/acdec238a53c10e1.json +++ b/allure-report/data/test-cases/cd536df0700f3bd3.json @@ -1 +1 @@ -{"uid":"acdec238a53c10e1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732428195552,"stop":1732428195552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732428195556,"stop":1732428195556,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1da47ab927a8de42","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"99b8e6f5f8a43508","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"42383b817b641e4e","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"acdec238a53c10e1.json","parameterValues":[]} \ No newline at end of file +{"uid":"cd536df0700f3bd3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732428195552,"stop":1732428195552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732428195556,"stop":1732428195556,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"cd536df0700f3bd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cdb2fb8959394c65.json b/allure-report/data/test-cases/cdb2fb8959394c65.json deleted file mode 100644 index f22b115d56c..00000000000 --- a/allure-report/data/test-cases/cdb2fb8959394c65.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cdb2fb8959394c65","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1aea611207a542f","name":"stdout","source":"1aea611207a542f.txt","type":"text/plain","size":307}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"cdb2fb8959394c65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e5150fbd4a33237.json b/allure-report/data/test-cases/ce75fbdf4ccd46b8.json similarity index 71% rename from allure-report/data/test-cases/7e5150fbd4a33237.json rename to allure-report/data/test-cases/ce75fbdf4ccd46b8.json index d07055f805d..836c55faf9c 100644 --- a/allure-report/data/test-cases/7e5150fbd4a33237.json +++ b/allure-report/data/test-cases/ce75fbdf4ccd46b8.json @@ -1 +1 @@ -{"uid":"7e5150fbd4a33237","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a7f10bb4c8e33c64","name":"stdout","source":"a7f10bb4c8e33c64.txt","type":"text/plain","size":1579}],"parameters":[],"hasContent":true,"stepsCount":7,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"7e5150fbd4a33237.json","parameterValues":[]} \ No newline at end of file +{"uid":"ce75fbdf4ccd46b8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45607bc70f60caca","name":"stdout","source":"45607bc70f60caca.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ce75fbdf4ccd46b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/71e40623077306da.json b/allure-report/data/test-cases/ceb0c3e5ec48d975.json similarity index 57% rename from allure-report/data/test-cases/71e40623077306da.json rename to allure-report/data/test-cases/ceb0c3e5ec48d975.json index 95b67bf7b34..29c1a341b4e 100644 --- a/allure-report/data/test-cases/71e40623077306da.json +++ b/allure-report/data/test-cases/ceb0c3e5ec48d975.json @@ -1 +1 @@ -{"uid":"71e40623077306da","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":1732428196174,"stop":1732428196175,"duration":1},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f94de18ab2e95fb","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"d1974f16b30f7476","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1c922c5f58027b49","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"71e40623077306da.json","parameterValues":[]} \ No newline at end of file +{"uid":"ceb0c3e5ec48d975","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":1732428196174,"stop":1732428196175,"duration":1},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ceb0c3e5ec48d975.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8949506fce676285.json b/allure-report/data/test-cases/cedf72c8fbbfdfc5.json similarity index 71% rename from allure-report/data/test-cases/8949506fce676285.json rename to allure-report/data/test-cases/cedf72c8fbbfdfc5.json index ee7a3bdf7d4..e7b5ff34d9c 100644 --- a/allure-report/data/test-cases/8949506fce676285.json +++ b/allure-report/data/test-cases/cedf72c8fbbfdfc5.json @@ -1 +1 @@ -{"uid":"8949506fce676285","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bfa0e041a65d579a","name":"stdout","source":"bfa0e041a65d579a.txt","type":"text/plain","size":1380}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"8949506fce676285.json","parameterValues":[]} \ No newline at end of file +{"uid":"cedf72c8fbbfdfc5","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4b8bcccd8e3d9a5","name":"stdout","source":"f4b8bcccd8e3d9a5.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cedf72c8fbbfdfc5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/937c9b1e748aadb0.json b/allure-report/data/test-cases/cefd3a9afeec351e.json similarity index 68% rename from allure-report/data/test-cases/937c9b1e748aadb0.json rename to allure-report/data/test-cases/cefd3a9afeec351e.json index 84ad7af05b2..fa11270813d 100644 --- a/allure-report/data/test-cases/937c9b1e748aadb0.json +++ b/allure-report/data/test-cases/cefd3a9afeec351e.json @@ -1 +1 @@ -{"uid":"937c9b1e748aadb0","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3272d488a926cad0","name":"stdout","source":"3272d488a926cad0.txt","type":"text/plain","size":30}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"937c9b1e748aadb0.json","parameterValues":[]} \ No newline at end of file +{"uid":"cefd3a9afeec351e","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"407f6f4c1f9bb5a2","name":"stdout","source":"407f6f4c1f9bb5a2.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"cefd3a9afeec351e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf349408f505ed67.json b/allure-report/data/test-cases/cf349408f505ed67.json new file mode 100644 index 00000000000..4e2e7e4c989 --- /dev/null +++ b/allure-report/data/test-cases/cf349408f505ed67.json @@ -0,0 +1 @@ +{"uid":"cf349408f505ed67","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"17e1f12bcdd4240f","name":"stdout","source":"17e1f12bcdd4240f.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cf349408f505ed67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf71a425c4796a9.json b/allure-report/data/test-cases/cf71a425c4796a9.json deleted file mode 100644 index a2f2c0745e6..00000000000 --- a/allure-report/data/test-cases/cf71a425c4796a9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cf71a425c4796a9","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":1732428194268,"stop":1732428194268,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732428194270,"stop":1732428194270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"First non-repeating character"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SEARCH"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf437ca3dc1624b1","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"39a19c10cf88efee","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"fd4d83368b6d5d5e","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"cf71a425c4796a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1aaf298f74019608.json b/allure-report/data/test-cases/cf8fa237e5fc3101.json similarity index 56% rename from allure-report/data/test-cases/1aaf298f74019608.json rename to allure-report/data/test-cases/cf8fa237e5fc3101.json index af70111ec02..ecce177b793 100644 --- a/allure-report/data/test-cases/1aaf298f74019608.json +++ b/allure-report/data/test-cases/cf8fa237e5fc3101.json @@ -1 +1 @@ -{"uid":"1aaf298f74019608","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9099a5358c90330","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"ee3eb820ef7c27","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d0862b5213f7938f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1aaf298f74019608.json","parameterValues":[]} \ No newline at end of file +{"uid":"cf8fa237e5fc3101","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cf8fa237e5fc3101.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c8d43e9d38910da.json b/allure-report/data/test-cases/cfac23a989211fca.json similarity index 57% rename from allure-report/data/test-cases/8c8d43e9d38910da.json rename to allure-report/data/test-cases/cfac23a989211fca.json index 812c805d834..9823dbcb09e 100644 --- a/allure-report/data/test-cases/8c8d43e9d38910da.json +++ b/allure-report/data/test-cases/cfac23a989211fca.json @@ -1 +1 @@ -{"uid":"8c8d43e9d38910da","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":1732428196461,"stop":1732428196461,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12432569c8b8923f","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"8b80aa0a92a1ed02","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8427b8f31ff35d6c","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"8c8d43e9d38910da.json","parameterValues":[]} \ No newline at end of file +{"uid":"cfac23a989211fca","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":1732428196461,"stop":1732428196461,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"cfac23a989211fca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0246537274067fb.json b/allure-report/data/test-cases/d0246537274067fb.json new file mode 100644 index 00000000000..e87f7e1bf28 --- /dev/null +++ b/allure-report/data/test-cases/d0246537274067fb.json @@ -0,0 +1 @@ +{"uid":"d0246537274067fb","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732764221017,"stop":1732764221017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e0fbf3b4505484b","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0}},{"uid":"3e88e2d0381e105a","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"a12dc2585f9de41f","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"d0246537274067fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0931e78c129f8d8.json b/allure-report/data/test-cases/d0931e78c129f8d8.json new file mode 100644 index 00000000000..5aa1f91397a --- /dev/null +++ b/allure-report/data/test-cases/d0931e78c129f8d8.json @@ -0,0 +1 @@ +{"uid":"d0931e78c129f8d8","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732764220260,"stop":1732764220260,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e55f716219844475","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0}},{"uid":"962ca80dcc908350","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"98366b42396826ce","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"d0931e78c129f8d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f94de18ab2e95fb.json b/allure-report/data/test-cases/d0ce09c4ba5ff697.json similarity index 68% rename from allure-report/data/test-cases/3f94de18ab2e95fb.json rename to allure-report/data/test-cases/d0ce09c4ba5ff697.json index dd1df8686b6..e2942641a39 100644 --- a/allure-report/data/test-cases/3f94de18ab2e95fb.json +++ b/allure-report/data/test-cases/d0ce09c4ba5ff697.json @@ -1 +1 @@ -{"uid":"3f94de18ab2e95fb","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f180498d197d8df1","name":"stdout","source":"f180498d197d8df1.txt","type":"text/plain","size":96}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f94de18ab2e95fb.json","parameterValues":[]} \ No newline at end of file +{"uid":"d0ce09c4ba5ff697","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9b22cc9dc28f439","name":"stdout","source":"c9b22cc9dc28f439.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d0ce09c4ba5ff697.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/648462a68a83b780.json b/allure-report/data/test-cases/d1233b1a931bee1a.json similarity index 66% rename from allure-report/data/test-cases/648462a68a83b780.json rename to allure-report/data/test-cases/d1233b1a931bee1a.json index 157281da2e6..d86e319179d 100644 --- a/allure-report/data/test-cases/648462a68a83b780.json +++ b/allure-report/data/test-cases/d1233b1a931bee1a.json @@ -1 +1 @@ -{"uid":"648462a68a83b780","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"69c2dd61a98f0df6","name":"stdout","source":"69c2dd61a98f0df6.txt","type":"text/plain","size":34}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"648462a68a83b780.json","parameterValues":[]} \ No newline at end of file +{"uid":"d1233b1a931bee1a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"94e9d8b306bae268","name":"stdout","source":"94e9d8b306bae268.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d1233b1a931bee1a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1bc6da1a117f865.json b/allure-report/data/test-cases/d1bc6da1a117f865.json new file mode 100644 index 00000000000..67f9db0756d --- /dev/null +++ b/allure-report/data/test-cases/d1bc6da1a117f865.json @@ -0,0 +1 @@ +{"uid":"d1bc6da1a117f865","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732764219379,"stop":1732764219379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f30d62828063f744","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0}},{"uid":"6f9dcb0c09ae9f13","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"fa69c95248558058","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"d1bc6da1a117f865.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ad4524b2ee92967.json b/allure-report/data/test-cases/d237c739f4b0c138.json similarity index 67% rename from allure-report/data/test-cases/4ad4524b2ee92967.json rename to allure-report/data/test-cases/d237c739f4b0c138.json index d59a397649a..e56507c6a85 100644 --- a/allure-report/data/test-cases/4ad4524b2ee92967.json +++ b/allure-report/data/test-cases/d237c739f4b0c138.json @@ -1 +1 @@ -{"uid":"4ad4524b2ee92967","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"45655b08b75495d0","name":"stdout","source":"45655b08b75495d0.txt","type":"text/plain","size":27}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4ad4524b2ee92967.json","parameterValues":[]} \ No newline at end of file +{"uid":"d237c739f4b0c138","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cbf43f2ebe410372","name":"stdout","source":"cbf43f2ebe410372.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d237c739f4b0c138.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c0afff932465669.json b/allure-report/data/test-cases/d34aca89a8362e7c.json similarity index 93% rename from allure-report/data/test-cases/3c0afff932465669.json rename to allure-report/data/test-cases/d34aca89a8362e7c.json index 1fc9fa46a1d..8cfdab24fd2 100644 --- a/allure-report/data/test-cases/3c0afff932465669.json +++ b/allure-report/data/test-cases/d34aca89a8362e7c.json @@ -1 +1 @@ -{"uid":"3c0afff932465669","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":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":"3c0afff932465669.json","parameterValues":[]} \ No newline at end of file +{"uid":"d34aca89a8362e7c","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":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":"d34aca89a8362e7c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4fd5b9fa6dd3840.json b/allure-report/data/test-cases/d35364e5c638d89f.json similarity index 71% rename from allure-report/data/test-cases/f4fd5b9fa6dd3840.json rename to allure-report/data/test-cases/d35364e5c638d89f.json index 598e46a678e..487f1106b1b 100644 --- a/allure-report/data/test-cases/f4fd5b9fa6dd3840.json +++ b/allure-report/data/test-cases/d35364e5c638d89f.json @@ -1 +1 @@ -{"uid":"f4fd5b9fa6dd3840","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f4fd5b9fa6dd3840.json","parameterValues":[]} \ No newline at end of file +{"uid":"d35364e5c638d89f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"d35364e5c638d89f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cc2dcb2d1d8eb43.json b/allure-report/data/test-cases/d36e2f5707d2a6d3.json similarity index 57% rename from allure-report/data/test-cases/2cc2dcb2d1d8eb43.json rename to allure-report/data/test-cases/d36e2f5707d2a6d3.json index 463ead7268d..80a80f41ef2 100644 --- a/allure-report/data/test-cases/2cc2dcb2d1d8eb43.json +++ b/allure-report/data/test-cases/d36e2f5707d2a6d3.json @@ -1 +1 @@ -{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732428194022,"stop":1732428194022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":6,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1732428194026,"stop":1732428194026,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5f3069d223f82c6","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"68ae9688c7c99a04","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"2cc2dcb2d1d8eb43.json","parameterValues":[]} \ No newline at end of file +{"uid":"d36e2f5707d2a6d3","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d36e2f5707d2a6d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/284ee1b80abfdb89.json b/allure-report/data/test-cases/d39d2cfc8c05650c.json similarity index 59% rename from allure-report/data/test-cases/284ee1b80abfdb89.json rename to allure-report/data/test-cases/d39d2cfc8c05650c.json index 538466f052c..eb8c48f26b9 100644 --- a/allure-report/data/test-cases/284ee1b80abfdb89.json +++ b/allure-report/data/test-cases/d39d2cfc8c05650c.json @@ -1 +1 @@ -{"uid":"284ee1b80abfdb89","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732428196330,"stop":1732428196330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Multiply"},{"name":"feature","value":"Multiplication"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"tag","value":"INTRODUCTION"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed0bae89bbbcdb66","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"a7a27da7101eb431","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"1efaf2ab015adde4","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"284ee1b80abfdb89.json","parameterValues":[]} \ No newline at end of file +{"uid":"d39d2cfc8c05650c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732428196330,"stop":1732428196330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Multiply"},{"name":"feature","value":"Multiplication"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"tag","value":"INTRODUCTION"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"d39d2cfc8c05650c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b6b658aae9aa73c.json b/allure-report/data/test-cases/d3ab7c4bfc7d171f.json similarity index 64% rename from allure-report/data/test-cases/1b6b658aae9aa73c.json rename to allure-report/data/test-cases/d3ab7c4bfc7d171f.json index 8bb9607c42f..4cca44f14c7 100644 --- a/allure-report/data/test-cases/1b6b658aae9aa73c.json +++ b/allure-report/data/test-cases/d3ab7c4bfc7d171f.json @@ -1 +1 @@ -{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732428194447,"stop":1732428194447,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732428194446,"stop":1732428194446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732428194457,"stop":1732428194457,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5795c1991578aaeb","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"d4258a66cc0cec29","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ed30e8563a89229a","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"1b6b658aae9aa73c.json","parameterValues":[]} \ No newline at end of file +{"uid":"d3ab7c4bfc7d171f","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732428194447,"stop":1732428194447,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732428194446,"stop":1732428194446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732428194457,"stop":1732428194457,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"d3ab7c4bfc7d171f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/368118acc0dadb7d.json b/allure-report/data/test-cases/d493d526198a7a0a.json similarity index 59% rename from allure-report/data/test-cases/368118acc0dadb7d.json rename to allure-report/data/test-cases/d493d526198a7a0a.json index cf073b4c4e8..2affd12f558 100644 --- a/allure-report/data/test-cases/368118acc0dadb7d.json +++ b/allure-report/data/test-cases/d493d526198a7a0a.json @@ -1 +1 @@ -{"uid":"368118acc0dadb7d","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4a8605181ed2d7","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"8dea57e5544d4774","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"4fb2a019463cdbdf","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"368118acc0dadb7d.json","parameterValues":[]} \ No newline at end of file +{"uid":"d493d526198a7a0a","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d493d526198a7a0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fabad9204d0747c.json b/allure-report/data/test-cases/d4941a73e9c93a57.json similarity index 55% rename from allure-report/data/test-cases/5fabad9204d0747c.json rename to allure-report/data/test-cases/d4941a73e9c93a57.json index 379b3a5fdfd..3ea1beef1bc 100644 --- a/allure-report/data/test-cases/5fabad9204d0747c.json +++ b/allure-report/data/test-cases/d4941a73e9c93a57.json @@ -1 +1 @@ -{"uid":"5fabad9204d0747c","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":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194661,"stop":1732428194662,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c89e6a91bc0b9e52","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"23e61e29448b9218","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"5fabad9204d0747c.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4941a73e9c93a57","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194661,"stop":1732428194662,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4941a73e9c93a57.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4a0809a7647965.json b/allure-report/data/test-cases/d4a0809a7647965.json deleted file mode 100644 index 67f7b552b4e..00000000000 --- a/allure-report/data/test-cases/d4a0809a7647965.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d4a0809a7647965","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732428194641,"stop":1732428194641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f9df20ba5fd613f1","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"e17b710b1ca6cef6","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"3a2392b112899a67","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"d4a0809a7647965.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9ab4feb44c59984.json b/allure-report/data/test-cases/d4d3736adb97380b.json similarity index 55% rename from allure-report/data/test-cases/b9ab4feb44c59984.json rename to allure-report/data/test-cases/d4d3736adb97380b.json index 5350754217f..8871917af8d 100644 --- a/allure-report/data/test-cases/b9ab4feb44c59984.json +++ b/allure-report/data/test-cases/d4d3736adb97380b.json @@ -1 +1 @@ -{"uid":"b9ab4feb44c59984","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1bfd50f00e4c2ad5","name":"stdout","source":"1bfd50f00e4c2ad5.txt","type":"text/plain","size":2817}],"parameters":[],"hasContent":true,"stepsCount":30,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"b9ab4feb44c59984.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4d3736adb97380b","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9d7d21f763543a21","name":"stdout","source":"9d7d21f763543a21.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4d3736adb97380b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4f29bba77fd180.json b/allure-report/data/test-cases/d4f29bba77fd180.json new file mode 100644 index 00000000000..1ad34ac4f21 --- /dev/null +++ b/allure-report/data/test-cases/d4f29bba77fd180.json @@ -0,0 +1 @@ +{"uid":"d4f29bba77fd180","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":1732428194567,"stop":1732428194567,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4f29bba77fd180.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/81c03b59fa01f666.json b/allure-report/data/test-cases/d50213dc9ab240ff.json similarity index 61% rename from allure-report/data/test-cases/81c03b59fa01f666.json rename to allure-report/data/test-cases/d50213dc9ab240ff.json index b0c48256e8e..03d5eca371a 100644 --- a/allure-report/data/test-cases/81c03b59fa01f666.json +++ b/allure-report/data/test-cases/d50213dc9ab240ff.json @@ -1 +1 @@ -{"uid":"81c03b59fa01f666","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"12c58087789a46ca","name":"stdout","source":"12c58087789a46ca.txt","type":"text/plain","size":424}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"81c03b59fa01f666.json","parameterValues":[]} \ No newline at end of file +{"uid":"d50213dc9ab240ff","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f469dcf875239b3a","name":"stdout","source":"f469dcf875239b3a.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d50213dc9ab240ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5360156ef396b6e.json b/allure-report/data/test-cases/d5360156ef396b6e.json new file mode 100644 index 00000000000..bab400b0d13 --- /dev/null +++ b/allure-report/data/test-cases/d5360156ef396b6e.json @@ -0,0 +1 @@ +{"uid":"d5360156ef396b6e","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":1732428194577,"stop":1732428194577,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d5360156ef396b6e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d562abb8385a61c5.json b/allure-report/data/test-cases/d56667f6ac1424a3.json similarity index 64% rename from allure-report/data/test-cases/d562abb8385a61c5.json rename to allure-report/data/test-cases/d56667f6ac1424a3.json index ac4c0d7e05a..9994662d453 100644 --- a/allure-report/data/test-cases/d562abb8385a61c5.json +++ b/allure-report/data/test-cases/d56667f6ac1424a3.json @@ -1 +1 @@ -{"uid":"d562abb8385a61c5","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":1732428195826,"stop":1732428195826,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428195827,"stop":1732428195827,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d6e5f0961d8c06a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"48ff8cbb530a1868","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"996165a0ada95681","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d562abb8385a61c5.json","parameterValues":[]} \ No newline at end of file +{"uid":"d56667f6ac1424a3","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":1732428195826,"stop":1732428195826,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428195827,"stop":1732428195827,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d56667f6ac1424a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d58da60cf24b7660.json b/allure-report/data/test-cases/d58da60cf24b7660.json deleted file mode 100644 index b2c01f8e17e..00000000000 --- a/allure-report/data/test-cases/d58da60cf24b7660.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d58da60cf24b7660","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5c2daa57ff9298a6","name":"stdout","source":"5c2daa57ff9298a6.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d58da60cf24b7660.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5aba2cd944d7efd.json b/allure-report/data/test-cases/d5aba2cd944d7efd.json new file mode 100644 index 00000000000..c8283667ea2 --- /dev/null +++ b/allure-report/data/test-cases/d5aba2cd944d7efd.json @@ -0,0 +1 @@ +{"uid":"d5aba2cd944d7efd","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"494bc5055e76bf71","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2}},{"uid":"6558b0da7e100d83","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"747c525d425e0efa","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"d5aba2cd944d7efd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ffa72675847f113.json b/allure-report/data/test-cases/d5d01c4fe30779a0.json similarity index 54% rename from allure-report/data/test-cases/3ffa72675847f113.json rename to allure-report/data/test-cases/d5d01c4fe30779a0.json index 617329384ce..217d46603b0 100644 --- a/allure-report/data/test-cases/3ffa72675847f113.json +++ b/allure-report/data/test-cases/d5d01c4fe30779a0.json @@ -1 +1 @@ -{"uid":"3ffa72675847f113","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":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732428195758,"stop":1732428195758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1732428195762,"stop":1732428195762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a1c24c0cb125454","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"3ffa72675847f113.json","parameterValues":[]} \ No newline at end of file +{"uid":"d5d01c4fe30779a0","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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d5d01c4fe30779a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dcfddf689f44d1d.json b/allure-report/data/test-cases/d64758690dcdce52.json similarity index 75% rename from allure-report/data/test-cases/8dcfddf689f44d1d.json rename to allure-report/data/test-cases/d64758690dcdce52.json index 3d3b7d7afc6..222faeaf8e8 100644 --- a/allure-report/data/test-cases/8dcfddf689f44d1d.json +++ b/allure-report/data/test-cases/d64758690dcdce52.json @@ -1 +1 @@ -{"uid":"8dcfddf689f44d1d","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"678cdbc81118a45c","name":"stdout","source":"678cdbc81118a45c.txt","type":"text/plain","size":562}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"8dcfddf689f44d1d.json","parameterValues":[]} \ No newline at end of file +{"uid":"d64758690dcdce52","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61785349fe52fbcf","name":"stdout","source":"61785349fe52fbcf.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d64758690dcdce52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6ad7a05187743ff.json b/allure-report/data/test-cases/d6ad7a05187743ff.json new file mode 100644 index 00000000000..26757c21166 --- /dev/null +++ b/allure-report/data/test-cases/d6ad7a05187743ff.json @@ -0,0 +1 @@ +{"uid":"d6ad7a05187743ff","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":1732764219308,"stop":1732764219309,"duration":1},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732764219308,"stop":1732764219308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732764219310,"stop":1732764219310,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d09efb523dadc81","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0}},{"uid":"893f14f04872e4c5","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"9ef5212b94420bba","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"d6ad7a05187743ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/910c497042fbb9d7.json b/allure-report/data/test-cases/d6fd6e0593022837.json similarity index 92% rename from allure-report/data/test-cases/910c497042fbb9d7.json rename to allure-report/data/test-cases/d6fd6e0593022837.json index 39f503ce3f8..23ba0a65853 100644 --- a/allure-report/data/test-cases/910c497042fbb9d7.json +++ b/allure-report/data/test-cases/d6fd6e0593022837.json @@ -1 +1 @@ -{"uid":"910c497042fbb9d7","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"910c497042fbb9d7.json","parameterValues":[]} \ No newline at end of file +{"uid":"d6fd6e0593022837","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"d6fd6e0593022837.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d731ec2306766d91.json b/allure-report/data/test-cases/d731ec2306766d91.json new file mode 100644 index 00000000000..802fa3f24e7 --- /dev/null +++ b/allure-report/data/test-cases/d731ec2306766d91.json @@ -0,0 +1 @@ +{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"113e69c4ee0f071","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0}},{"uid":"42452319aaa200ae","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"497e27a7f74365e8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"d731ec2306766d91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7ea74c17659aeca.json b/allure-report/data/test-cases/d7ea74c17659aeca.json new file mode 100644 index 00000000000..86c9864f077 --- /dev/null +++ b/allure-report/data/test-cases/d7ea74c17659aeca.json @@ -0,0 +1 @@ +{"uid":"d7ea74c17659aeca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ce4c0edbbe04f9e","name":"stdout","source":"1ce4c0edbbe04f9e.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d7ea74c17659aeca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e68653192929d9b.json b/allure-report/data/test-cases/d86332e2eabe60c3.json similarity index 54% rename from allure-report/data/test-cases/3e68653192929d9b.json rename to allure-report/data/test-cases/d86332e2eabe60c3.json index 05a61141031..4f371ba5029 100644 --- a/allure-report/data/test-cases/3e68653192929d9b.json +++ b/allure-report/data/test-cases/d86332e2eabe60c3.json @@ -1 +1 @@ -{"uid":"3e68653192929d9b","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7a63127b0ec26d9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"73100341c811e8de","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"95011c2c3c205658","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"3e68653192929d9b.json","parameterValues":[]} \ No newline at end of file +{"uid":"d86332e2eabe60c3","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"d86332e2eabe60c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d86eb3695c9130c6.json b/allure-report/data/test-cases/d86eb3695c9130c6.json new file mode 100644 index 00000000000..6f43e7d1558 --- /dev/null +++ b/allure-report/data/test-cases/d86eb3695c9130c6.json @@ -0,0 +1 @@ +{"uid":"d86eb3695c9130c6","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732428194641,"stop":1732428194641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"d86eb3695c9130c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da6d336020bff47c.json b/allure-report/data/test-cases/d8b4a2733a1f48dc.json similarity index 77% rename from allure-report/data/test-cases/da6d336020bff47c.json rename to allure-report/data/test-cases/d8b4a2733a1f48dc.json index e1ca9c9fa84..7fa7bcc2e3e 100644 --- a/allure-report/data/test-cases/da6d336020bff47c.json +++ b/allure-report/data/test-cases/d8b4a2733a1f48dc.json @@ -1 +1 @@ -{"uid":"da6d336020bff47c","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"452e28e5668d68f6","name":"stdout","source":"452e28e5668d68f6.txt","type":"text/plain","size":135}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"da6d336020bff47c.json","parameterValues":[]} \ No newline at end of file +{"uid":"d8b4a2733a1f48dc","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb5eccf50db39cb4","name":"stdout","source":"eb5eccf50db39cb4.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d8b4a2733a1f48dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7243d74fc99fb8b.json b/allure-report/data/test-cases/d8bbfaabd5a5300d.json similarity index 57% rename from allure-report/data/test-cases/b7243d74fc99fb8b.json rename to allure-report/data/test-cases/d8bbfaabd5a5300d.json index 1b0556e258c..6f670c2c23b 100644 --- a/allure-report/data/test-cases/b7243d74fc99fb8b.json +++ b/allure-report/data/test-cases/d8bbfaabd5a5300d.json @@ -1 +1 @@ -{"uid":"b7243d74fc99fb8b","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732428193918,"stop":1732428193918,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ef1a5cba4efb343a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"a1b53b199c1c867e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"b7243d74fc99fb8b.json","parameterValues":[]} \ No newline at end of file +{"uid":"d8bbfaabd5a5300d","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732428193918,"stop":1732428193918,"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":"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":"d8bbfaabd5a5300d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f4dd2b3858b1ec4.json b/allure-report/data/test-cases/d9bbc705106eff98.json similarity index 69% rename from allure-report/data/test-cases/2f4dd2b3858b1ec4.json rename to allure-report/data/test-cases/d9bbc705106eff98.json index a005236e5a6..8c92e076268 100644 --- a/allure-report/data/test-cases/2f4dd2b3858b1ec4.json +++ b/allure-report/data/test-cases/d9bbc705106eff98.json @@ -1 +1 @@ -{"uid":"2f4dd2b3858b1ec4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7757a124114dd519","name":"stdout","source":"7757a124114dd519.txt","type":"text/plain","size":53}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"2f4dd2b3858b1ec4.json","parameterValues":[]} \ No newline at end of file +{"uid":"d9bbc705106eff98","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4eb3eb579b763a8f","name":"stdout","source":"4eb3eb579b763a8f.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d9bbc705106eff98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dde0d2c7fdfdde63.json b/allure-report/data/test-cases/d9e0974c92057e94.json similarity index 64% rename from allure-report/data/test-cases/dde0d2c7fdfdde63.json rename to allure-report/data/test-cases/d9e0974c92057e94.json index 6995367e0cf..5d15e6bf8db 100644 --- a/allure-report/data/test-cases/dde0d2c7fdfdde63.json +++ b/allure-report/data/test-cases/d9e0974c92057e94.json @@ -1 +1 @@ -{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732428196127,"stop":1732428196127,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Count the Monkeys!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RANGES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab40fd2a8eefa024","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"edb4f03386c56c72","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"5b9aa5357d8d514d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"dde0d2c7fdfdde63.json","parameterValues":[]} \ No newline at end of file +{"uid":"d9e0974c92057e94","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732428196127,"stop":1732428196127,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"LISTS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Count the Monkeys!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RANGES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"d9e0974c92057e94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9e0d2d6c00c88e9.json b/allure-report/data/test-cases/d9e0d2d6c00c88e9.json new file mode 100644 index 00000000000..13bf1e11e14 --- /dev/null +++ b/allure-report/data/test-cases/d9e0d2d6c00c88e9.json @@ -0,0 +1 @@ +{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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":"story","value":"Count the Monkeys!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9e0974c92057e94","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0}},{"uid":"1d437c172b71c55f","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"ed783d7ab62f1ba4","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"d9e0d2d6c00c88e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9e7bf55554cd705.json b/allure-report/data/test-cases/d9e7bf55554cd705.json new file mode 100644 index 00000000000..0549d7ca2f9 --- /dev/null +++ b/allure-report/data/test-cases/d9e7bf55554cd705.json @@ -0,0 +1 @@ +{"uid":"d9e7bf55554cd705","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27790d440082a497","name":"stdout","source":"27790d440082a497.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d9e7bf55554cd705.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da02dcc2ce3c4d85.json b/allure-report/data/test-cases/da02dcc2ce3c4d85.json deleted file mode 100644 index 658de665038..00000000000 --- a/allure-report/data/test-cases/da02dcc2ce3c4d85.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"da02dcc2ce3c4d85","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":1732428195926,"stop":1732428195926,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4bd80ae04896a86","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"5be4a10a1a64fd59","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"52dd320a58bdb229","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"da02dcc2ce3c4d85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64cdb3b918aa694e.json b/allure-report/data/test-cases/da222867360b442e.json similarity index 72% rename from allure-report/data/test-cases/64cdb3b918aa694e.json rename to allure-report/data/test-cases/da222867360b442e.json index 1e47326ee21..5dbad1d542f 100644 --- a/allure-report/data/test-cases/64cdb3b918aa694e.json +++ b/allure-report/data/test-cases/da222867360b442e.json @@ -1 +1 @@ -{"uid":"64cdb3b918aa694e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6100c33a0bd08814","name":"stdout","source":"6100c33a0bd08814.txt","type":"text/plain","size":539}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"64cdb3b918aa694e.json","parameterValues":[]} \ No newline at end of file +{"uid":"da222867360b442e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"760dfa55370d45f9","name":"stdout","source":"760dfa55370d45f9.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"da222867360b442e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc076040e5481dc9.json b/allure-report/data/test-cases/dc076040e5481dc9.json new file mode 100644 index 00000000000..ef11a514bb0 --- /dev/null +++ b/allure-report/data/test-cases/dc076040e5481dc9.json @@ -0,0 +1 @@ +{"uid":"dc076040e5481dc9","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219175,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219175,"stop":1732764219175,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732764219176,"stop":1732764219176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS PARSING"},{"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":"story","value":"String incrementer"},{"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_5.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"965e1d563752b7d3","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0}},{"uid":"a6f428498c7694b0","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"117e19024dff1cfd","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"dc076040e5481dc9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc89f010c8fc632.json b/allure-report/data/test-cases/dc89f010c8fc632.json new file mode 100644 index 00000000000..eeed4ec8562 --- /dev/null +++ b/allure-report/data/test-cases/dc89f010c8fc632.json @@ -0,0 +1 @@ +{"uid":"dc89f010c8fc632","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"dc89f010c8fc632.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a497340f38e6588.json b/allure-report/data/test-cases/dc9bdff2273b81f8.json similarity index 64% rename from allure-report/data/test-cases/5a497340f38e6588.json rename to allure-report/data/test-cases/dc9bdff2273b81f8.json index 6e44e4075e9..b19f43b7c79 100644 --- a/allure-report/data/test-cases/5a497340f38e6588.json +++ b/allure-report/data/test-cases/dc9bdff2273b81f8.json @@ -1 +1 @@ -{"uid":"5a497340f38e6588","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f1a162618bd1b29d","name":"stdout","source":"f1a162618bd1b29d.txt","type":"text/plain","size":167}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5a497340f38e6588.json","parameterValues":[]} \ No newline at end of file +{"uid":"dc9bdff2273b81f8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1342cdaa6481456c","name":"stdout","source":"1342cdaa6481456c.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"dc9bdff2273b81f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dcee0c4d2268b964.json b/allure-report/data/test-cases/dcee0c4d2268b964.json deleted file mode 100644 index 43f2bb89772..00000000000 --- a/allure-report/data/test-cases/dcee0c4d2268b964.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"dcee0c4d2268b964","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c5afc30c761eea74","name":"stdout","source":"c5afc30c761eea74.txt","type":"text/plain","size":311}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"dcee0c4d2268b964.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/614133ca9c69e105.json b/allure-report/data/test-cases/dd53e52e1ab13306.json similarity index 57% rename from allure-report/data/test-cases/614133ca9c69e105.json rename to allure-report/data/test-cases/dd53e52e1ab13306.json index 4f21c5c2228..856fdfe8bd8 100644 --- a/allure-report/data/test-cases/614133ca9c69e105.json +++ b/allure-report/data/test-cases/dd53e52e1ab13306.json @@ -1 +1 @@ -{"uid":"614133ca9c69e105","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":1732428196195,"stop":1732428196195,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"711e095503a0cf45","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"be628f1c5b8245e1","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"6d9afe9fda19581e","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"614133ca9c69e105.json","parameterValues":[]} \ No newline at end of file +{"uid":"dd53e52e1ab13306","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":1732428196195,"stop":1732428196195,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"dd53e52e1ab13306.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd86378e3a37dfe4.json b/allure-report/data/test-cases/dd86378e3a37dfe4.json new file mode 100644 index 00000000000..665cde8fddc --- /dev/null +++ b/allure-report/data/test-cases/dd86378e3a37dfe4.json @@ -0,0 +1 @@ +{"uid":"dd86378e3a37dfe4","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":"

Codewars badge:

Test Description:

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":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase","time":{"start":1732764220300,"stop":1732764220300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cbe27b4f7111917c","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"dd86378e3a37dfe4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/843ad9a1e8e9ca65.json b/allure-report/data/test-cases/de09867d078b6af4.json similarity index 70% rename from allure-report/data/test-cases/843ad9a1e8e9ca65.json rename to allure-report/data/test-cases/de09867d078b6af4.json index 9a6b6b9e146..e33e794a2c7 100644 --- a/allure-report/data/test-cases/843ad9a1e8e9ca65.json +++ b/allure-report/data/test-cases/de09867d078b6af4.json @@ -1 +1 @@ -{"uid":"843ad9a1e8e9ca65","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e41ceec6c0cda082","name":"stdout","source":"e41ceec6c0cda082.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"843ad9a1e8e9ca65.json","parameterValues":[]} \ No newline at end of file +{"uid":"de09867d078b6af4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ca30023d79faffff","name":"stdout","source":"ca30023d79faffff.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"de09867d078b6af4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/409a2a4f316497c6.json b/allure-report/data/test-cases/de0a077377bec456.json similarity index 71% rename from allure-report/data/test-cases/409a2a4f316497c6.json rename to allure-report/data/test-cases/de0a077377bec456.json index 940e6fd68c6..6012019238a 100644 --- a/allure-report/data/test-cases/409a2a4f316497c6.json +++ b/allure-report/data/test-cases/de0a077377bec456.json @@ -1 +1 @@ -{"uid":"409a2a4f316497c6","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a648c0041b64d7a8","name":"stdout","source":"a648c0041b64d7a8.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"409a2a4f316497c6.json","parameterValues":[]} \ No newline at end of file +{"uid":"de0a077377bec456","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a96837b21492cfc6","name":"stdout","source":"a96837b21492cfc6.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"de0a077377bec456.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df34ce2718b817c.json b/allure-report/data/test-cases/dee6c3b3d0dc73e4.json similarity index 56% rename from allure-report/data/test-cases/4df34ce2718b817c.json rename to allure-report/data/test-cases/dee6c3b3d0dc73e4.json index 9f33d556472..eaea2181823 100644 --- a/allure-report/data/test-cases/4df34ce2718b817c.json +++ b/allure-report/data/test-cases/dee6c3b3d0dc73e4.json @@ -1 +1 @@ -{"uid":"4df34ce2718b817c","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":10,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":11,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4df34ce2718b817c.json","parameterValues":[]} \ No newline at end of file +{"uid":"dee6c3b3d0dc73e4","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dee6c3b3d0dc73e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e71fa3f33c33eb50.json b/allure-report/data/test-cases/df5176bbed48ed91.json similarity index 72% rename from allure-report/data/test-cases/e71fa3f33c33eb50.json rename to allure-report/data/test-cases/df5176bbed48ed91.json index 08447aec7bc..517b80ea873 100644 --- a/allure-report/data/test-cases/e71fa3f33c33eb50.json +++ b/allure-report/data/test-cases/df5176bbed48ed91.json @@ -1 +1 @@ -{"uid":"e71fa3f33c33eb50","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"572eaf1e6f057287","name":"stdout","source":"572eaf1e6f057287.txt","type":"text/plain","size":304}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e71fa3f33c33eb50.json","parameterValues":[]} \ No newline at end of file +{"uid":"df5176bbed48ed91","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eaf9f3a704742209","name":"stdout","source":"eaf9f3a704742209.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df5176bbed48ed91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df9a9f68276bbb84.json b/allure-report/data/test-cases/df9a9f68276bbb84.json new file mode 100644 index 00000000000..a58840a7a07 --- /dev/null +++ b/allure-report/data/test-cases/df9a9f68276bbb84.json @@ -0,0 +1 @@ +{"uid":"df9a9f68276bbb84","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e22a14740da9552","name":"stdout","source":"e22a14740da9552.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"df9a9f68276bbb84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed0bae89bbbcdb66.json b/allure-report/data/test-cases/dfa8d9395e9495b6.json similarity index 70% rename from allure-report/data/test-cases/ed0bae89bbbcdb66.json rename to allure-report/data/test-cases/dfa8d9395e9495b6.json index fa773f2c8ca..c924c4a16f7 100644 --- a/allure-report/data/test-cases/ed0bae89bbbcdb66.json +++ b/allure-report/data/test-cases/dfa8d9395e9495b6.json @@ -1 +1 @@ -{"uid":"ed0bae89bbbcdb66","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3f14e07d274c2e01","name":"stdout","source":"3f14e07d274c2e01.txt","type":"text/plain","size":33}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"ed0bae89bbbcdb66.json","parameterValues":[]} \ No newline at end of file +{"uid":"dfa8d9395e9495b6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9f73c3d7a4d872db","name":"stdout","source":"9f73c3d7a4d872db.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"dfa8d9395e9495b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2de3f7cf44554fd8.json b/allure-report/data/test-cases/dfae17616fb702cf.json similarity index 55% rename from allure-report/data/test-cases/2de3f7cf44554fd8.json rename to allure-report/data/test-cases/dfae17616fb702cf.json index 7f1ff0ac7d8..6ce1b0c9c47 100644 --- a/allure-report/data/test-cases/2de3f7cf44554fd8.json +++ b/allure-report/data/test-cases/dfae17616fb702cf.json @@ -1 +1 @@ -{"uid":"2de3f7cf44554fd8","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732428196400,"stop":1732428196400,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732428196399,"stop":1732428196399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732428196401,"stop":1732428196401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"342dee44f5f15fde","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e8ed1f5e4a826f53","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9c38060cc376f686","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"2de3f7cf44554fd8.json","parameterValues":[]} \ No newline at end of file +{"uid":"dfae17616fb702cf","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732428196400,"stop":1732428196400,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732428196399,"stop":1732428196399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732428196401,"stop":1732428196401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"dfae17616fb702cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0d2f09c0da8121.json b/allure-report/data/test-cases/e0d2f09c0da8121.json new file mode 100644 index 00000000000..3d99e24f706 --- /dev/null +++ b/allure-report/data/test-cases/e0d2f09c0da8121.json @@ -0,0 +1 @@ +{"uid":"e0d2f09c0da8121","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2c51ebffe286fde1","name":"stdout","source":"2c51ebffe286fde1.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e0d2f09c0da8121.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47bce28013711283.json b/allure-report/data/test-cases/e0e01cfda157cf01.json similarity index 74% rename from allure-report/data/test-cases/47bce28013711283.json rename to allure-report/data/test-cases/e0e01cfda157cf01.json index 30b149bc596..bb17c8de4de 100644 --- a/allure-report/data/test-cases/47bce28013711283.json +++ b/allure-report/data/test-cases/e0e01cfda157cf01.json @@ -1 +1 @@ -{"uid":"47bce28013711283","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c6b281f58e4fbe3","name":"stdout","source":"8c6b281f58e4fbe3.txt","type":"text/plain","size":272}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"47bce28013711283.json","parameterValues":[]} \ No newline at end of file +{"uid":"e0e01cfda157cf01","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6f187ca9e0f038e3","name":"stdout","source":"6f187ca9e0f038e3.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"e0e01cfda157cf01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1af2c095108694d.json b/allure-report/data/test-cases/e1af2c095108694d.json new file mode 100644 index 00000000000..23d0da3626c --- /dev/null +++ b/allure-report/data/test-cases/e1af2c095108694d.json @@ -0,0 +1 @@ +{"uid":"e1af2c095108694d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219284,"stop":1732764219284,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5abe74757b94997a","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0}},{"uid":"ebb627dfa50cb94d","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"f2a7bab28da55269","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"e1af2c095108694d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e2326ee427488be9.json b/allure-report/data/test-cases/e2326ee427488be9.json deleted file mode 100644 index ddfa8568031..00000000000 --- a/allure-report/data/test-cases/e2326ee427488be9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e2326ee427488be9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7a383696eff0b379","name":"stdout","source":"7a383696eff0b379.txt","type":"text/plain","size":808}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e2326ee427488be9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/607f84fe70696eb5.json b/allure-report/data/test-cases/e248ed6a4ff28aaa.json similarity index 64% rename from allure-report/data/test-cases/607f84fe70696eb5.json rename to allure-report/data/test-cases/e248ed6a4ff28aaa.json index 88b90b1ebcf..1466d227814 100644 --- a/allure-report/data/test-cases/607f84fe70696eb5.json +++ b/allure-report/data/test-cases/e248ed6a4ff28aaa.json @@ -1 +1 @@ -{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732428194512,"stop":1732428194512,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732428194511,"stop":1732428194511,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1732428194513,"stop":1732428194513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"997065a61e801d4c","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"b4abfaf3d77f3f23","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"607f84fe70696eb5.json","parameterValues":[]} \ No newline at end of file +{"uid":"e248ed6a4ff28aaa","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732428194512,"stop":1732428194512,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e248ed6a4ff28aaa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e29868febcecd61d.json b/allure-report/data/test-cases/e29868febcecd61d.json new file mode 100644 index 00000000000..40089d6b756 --- /dev/null +++ b/allure-report/data/test-cases/e29868febcecd61d.json @@ -0,0 +1 @@ +{"uid":"e29868febcecd61d","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"54520f78b41446af","name":"stdout","source":"54520f78b41446af.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"e29868febcecd61d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6373ea673c2617a2.json b/allure-report/data/test-cases/e2a8e239adf783da.json similarity index 72% rename from allure-report/data/test-cases/6373ea673c2617a2.json rename to allure-report/data/test-cases/e2a8e239adf783da.json index c3f2096d41c..cd2f6668300 100644 --- a/allure-report/data/test-cases/6373ea673c2617a2.json +++ b/allure-report/data/test-cases/e2a8e239adf783da.json @@ -1 +1 @@ -{"uid":"6373ea673c2617a2","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a9f925f082e601ea","name":"stdout","source":"a9f925f082e601ea.txt","type":"text/plain","size":23}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":"6373ea673c2617a2.json","parameterValues":[]} \ No newline at end of file +{"uid":"e2a8e239adf783da","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3d868139d71d5f7","name":"stdout","source":"b3d868139d71d5f7.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e2a8e239adf783da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/419686fbcf063822.json b/allure-report/data/test-cases/e2ed60d0ac53c788.json similarity index 56% rename from allure-report/data/test-cases/419686fbcf063822.json rename to allure-report/data/test-cases/e2ed60d0ac53c788.json index 5632569e629..4355764b638 100644 --- a/allure-report/data/test-cases/419686fbcf063822.json +++ b/allure-report/data/test-cases/e2ed60d0ac53c788.json @@ -1 +1 @@ -{"uid":"419686fbcf063822","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195989,"stop":1732428195989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195991,"stop":1732428195991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"302b8c55161cc361","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"8c72192846448826","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"419686fbcf063822.json","parameterValues":[]} \ No newline at end of file +{"uid":"e2ed60d0ac53c788","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e2ed60d0ac53c788.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e330dbdee7dc6874.json b/allure-report/data/test-cases/e330dbdee7dc6874.json deleted file mode 100644 index 30e6321bbb9..00000000000 --- a/allure-report/data/test-cases/e330dbdee7dc6874.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e330dbdee7dc6874","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4a2cdaf17ee494c","name":"stdout","source":"4a2cdaf17ee494c.txt","type":"text/plain","size":288}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"e330dbdee7dc6874.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e41edf94f198f2c7.json b/allure-report/data/test-cases/e41edf94f198f2c7.json new file mode 100644 index 00000000000..9f77f7ad642 --- /dev/null +++ b/allure-report/data/test-cases/e41edf94f198f2c7.json @@ -0,0 +1 @@ +{"uid":"e41edf94f198f2c7","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":1732428194268,"stop":1732428194268,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732428194270,"stop":1732428194270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"First non-repeating character"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SEARCH"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"e41edf94f198f2c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c59e45321407518.json b/allure-report/data/test-cases/e480fe95093fd8e7.json similarity index 80% rename from allure-report/data/test-cases/1c59e45321407518.json rename to allure-report/data/test-cases/e480fe95093fd8e7.json index 67600adfdbc..936f24d08b1 100644 --- a/allure-report/data/test-cases/1c59e45321407518.json +++ b/allure-report/data/test-cases/e480fe95093fd8e7.json @@ -1 +1 @@ -{"uid":"1c59e45321407518","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eaa46cbb4e98fc76","name":"stdout","source":"eaa46cbb4e98fc76.txt","type":"text/plain","size":170}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"1c59e45321407518.json","parameterValues":[]} \ No newline at end of file +{"uid":"e480fe95093fd8e7","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"894b6ecea0eca1b4","name":"stdout","source":"894b6ecea0eca1b4.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"e480fe95093fd8e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e532878179cb6f87.json b/allure-report/data/test-cases/e532878179cb6f87.json new file mode 100644 index 00000000000..51406279fd4 --- /dev/null +++ b/allure-report/data/test-cases/e532878179cb6f87.json @@ -0,0 +1 @@ +{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732764221047,"stop":1732764221047,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732764221049,"stop":1732764221049,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c3e164f822b7bae","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0}},{"uid":"c8de14a6ed49ac6d","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"30ebc2ebd440c488","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"e532878179cb6f87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e53952640c2c9e47.json b/allure-report/data/test-cases/e53952640c2c9e47.json new file mode 100644 index 00000000000..3a5f197b073 --- /dev/null +++ b/allure-report/data/test-cases/e53952640c2c9e47.json @@ -0,0 +1 @@ +{"uid":"e53952640c2c9e47","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6df3cbfc02e5094","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0}},{"uid":"afe0c9a0972467a3","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"fe040c66880e0b15","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e53952640c2c9e47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f91e38b8c375d31c.json b/allure-report/data/test-cases/e55f716219844475.json similarity index 59% rename from allure-report/data/test-cases/f91e38b8c375d31c.json rename to allure-report/data/test-cases/e55f716219844475.json index cfbfc2de1a0..346a82624de 100644 --- a/allure-report/data/test-cases/f91e38b8c375d31c.json +++ b/allure-report/data/test-cases/e55f716219844475.json @@ -1 +1 @@ -{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":7,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1732428195581,"stop":1732428195581,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b5bdabfec79d6cf","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"85284c487c263073","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"f91e38b8c375d31c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e55f716219844475","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e55f716219844475.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a1c24c0cb125454.json b/allure-report/data/test-cases/e5a7c04cf0e6c2f9.json similarity index 68% rename from allure-report/data/test-cases/1a1c24c0cb125454.json rename to allure-report/data/test-cases/e5a7c04cf0e6c2f9.json index 6b59f700121..1ee39edae77 100644 --- a/allure-report/data/test-cases/1a1c24c0cb125454.json +++ b/allure-report/data/test-cases/e5a7c04cf0e6c2f9.json @@ -1 +1 @@ -{"uid":"1a1c24c0cb125454","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cece8653b698fb5f","name":"stdout","source":"cece8653b698fb5f.txt","type":"text/plain","size":1079}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"1a1c24c0cb125454.json","parameterValues":[]} \ No newline at end of file +{"uid":"e5a7c04cf0e6c2f9","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8778cf7e4eef01cb","name":"stdout","source":"8778cf7e4eef01cb.txt","type":"text/plain","size":1079}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e5a7c04cf0e6c2f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5b1f301926fe23.json b/allure-report/data/test-cases/e5b1f301926fe23.json deleted file mode 100644 index 9aec610f98b..00000000000 --- a/allure-report/data/test-cases/e5b1f301926fe23.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e5b1f301926fe23","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732428194170,"stop":1732428194170,"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', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"945a96aedc88e8fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"a3216b951d3fac8b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"e5b1f301926fe23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b5127c91b9deeb6.json b/allure-report/data/test-cases/e5d70f307aec9205.json similarity index 54% rename from allure-report/data/test-cases/9b5127c91b9deeb6.json rename to allure-report/data/test-cases/e5d70f307aec9205.json index 59e2b43d482..92899d8fe21 100644 --- a/allure-report/data/test-cases/9b5127c91b9deeb6.json +++ b/allure-report/data/test-cases/e5d70f307aec9205.json @@ -1 +1 @@ -{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":9,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732428194521,"stop":1732428194521,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ec407d8e8742f0d","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"75ba956cc9ee13f9","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"14d24a2946d66b00","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["SORTING","ALGORITHMS"]},"source":"9b5127c91b9deeb6.json","parameterValues":[]} \ No newline at end of file +{"uid":"e5d70f307aec9205","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732428194521,"stop":1732428194521,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"e5d70f307aec9205.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e604a93a8ee1253f.json b/allure-report/data/test-cases/e604a93a8ee1253f.json new file mode 100644 index 00000000000..52e4b489a85 --- /dev/null +++ b/allure-report/data/test-cases/e604a93a8ee1253f.json @@ -0,0 +1 @@ +{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218682,"stop":1732764218682,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ec528f5ba60e276b","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0}},{"uid":"395a8f7cfcd6a2c9","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"3400d1d080e82f75","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e604a93a8ee1253f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33bc4a62afa9ed1a.json b/allure-report/data/test-cases/e63c100babc1267d.json similarity index 78% rename from allure-report/data/test-cases/33bc4a62afa9ed1a.json rename to allure-report/data/test-cases/e63c100babc1267d.json index c92e54a0eef..a39e56920c3 100644 --- a/allure-report/data/test-cases/33bc4a62afa9ed1a.json +++ b/allure-report/data/test-cases/e63c100babc1267d.json @@ -1 +1 @@ -{"uid":"33bc4a62afa9ed1a","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"546f6d6d1d510331","name":"stdout","source":"546f6d6d1d510331.txt","type":"text/plain","size":210}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"33bc4a62afa9ed1a.json","parameterValues":[]} \ No newline at end of file +{"uid":"e63c100babc1267d","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60b6667cdd104689","name":"stdout","source":"60b6667cdd104689.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"e63c100babc1267d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf2c284d4d5bb98c.json b/allure-report/data/test-cases/e65c2aee0db2b724.json similarity index 71% rename from allure-report/data/test-cases/bf2c284d4d5bb98c.json rename to allure-report/data/test-cases/e65c2aee0db2b724.json index 63584f4818f..9213ad89f43 100644 --- a/allure-report/data/test-cases/bf2c284d4d5bb98c.json +++ b/allure-report/data/test-cases/e65c2aee0db2b724.json @@ -1 +1 @@ -{"uid":"bf2c284d4d5bb98c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e806fd65a1519daa","name":"stdout","source":"e806fd65a1519daa.txt","type":"text/plain","size":160}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"bf2c284d4d5bb98c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e65c2aee0db2b724","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9806239f448fcb9","name":"stdout","source":"c9806239f448fcb9.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"e65c2aee0db2b724.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e687a692c2c18f1b.json b/allure-report/data/test-cases/e687a692c2c18f1b.json new file mode 100644 index 00000000000..91b9e81901a --- /dev/null +++ b/allure-report/data/test-cases/e687a692c2c18f1b.json @@ -0,0 +1 @@ +{"uid":"e687a692c2c18f1b","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4f29bba77fd180","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0}},{"uid":"c0b9bbb0a9f351b0","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"fa5cd4b7c764fede","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e687a692c2c18f1b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a076808e43574371.json b/allure-report/data/test-cases/e695b3f4b0bdd51b.json similarity index 63% rename from allure-report/data/test-cases/a076808e43574371.json rename to allure-report/data/test-cases/e695b3f4b0bdd51b.json index f5a17b61689..3c4eaf29479 100644 --- a/allure-report/data/test-cases/a076808e43574371.json +++ b/allure-report/data/test-cases/e695b3f4b0bdd51b.json @@ -1 +1 @@ -{"uid":"a076808e43574371","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"65c05475b72ce468","name":"stdout","source":"65c05475b72ce468.txt","type":"text/plain","size":242}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"c7eea171ede7ee13","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"a076808e43574371.json","parameterValues":[]} \ No newline at end of file +{"uid":"e695b3f4b0bdd51b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"850bcf9305b7e315","name":"stdout","source":"850bcf9305b7e315.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8ee14a37e5c3cb6","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e695b3f4b0bdd51b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0f78ca1d7d1823c.json b/allure-report/data/test-cases/e6abe3c64e54cb9f.json similarity index 67% rename from allure-report/data/test-cases/e0f78ca1d7d1823c.json rename to allure-report/data/test-cases/e6abe3c64e54cb9f.json index 1ee897a9244..f6fdc06f923 100644 --- a/allure-report/data/test-cases/e0f78ca1d7d1823c.json +++ b/allure-report/data/test-cases/e6abe3c64e54cb9f.json @@ -1 +1 @@ -{"uid":"e0f78ca1d7d1823c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a193aa0d76e6e0f1","name":"stdout","source":"a193aa0d76e6e0f1.txt","type":"text/plain","size":40}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"e0f78ca1d7d1823c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e6abe3c64e54cb9f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef03ba760fe885c0","name":"stdout","source":"ef03ba760fe885c0.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"e6abe3c64e54cb9f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/100aeca8c0207022.json b/allure-report/data/test-cases/e6ed73d965a64ee5.json similarity index 75% rename from allure-report/data/test-cases/100aeca8c0207022.json rename to allure-report/data/test-cases/e6ed73d965a64ee5.json index 1876a366151..730c49f8f59 100644 --- a/allure-report/data/test-cases/100aeca8c0207022.json +++ b/allure-report/data/test-cases/e6ed73d965a64ee5.json @@ -1 +1 @@ -{"uid":"100aeca8c0207022","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a95c78a9496692b3","name":"stdout","source":"a95c78a9496692b3.txt","type":"text/plain","size":185}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"100aeca8c0207022.json","parameterValues":[]} \ No newline at end of file +{"uid":"e6ed73d965a64ee5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7bf0ce4c1ec59dfa","name":"stdout","source":"7bf0ce4c1ec59dfa.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"e6ed73d965a64ee5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7035dc3ef8d99c0.json b/allure-report/data/test-cases/e7035dc3ef8d99c0.json new file mode 100644 index 00000000000..e2dfa8e0fdc --- /dev/null +++ b/allure-report/data/test-cases/e7035dc3ef8d99c0.json @@ -0,0 +1 @@ +{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732764218663,"stop":1732764218663,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b054542ab329d2ac","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0}},{"uid":"b7874e896ca052d2","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"3f3bfc03f90689c3","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e7035dc3ef8d99c0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd4541daca134967.json b/allure-report/data/test-cases/e71092ad871851c8.json similarity index 56% rename from allure-report/data/test-cases/bd4541daca134967.json rename to allure-report/data/test-cases/e71092ad871851c8.json index 00f4830c445..38b13b8f340 100644 --- a/allure-report/data/test-cases/bd4541daca134967.json +++ b/allure-report/data/test-cases/e71092ad871851c8.json @@ -1 +1 @@ -{"uid":"bd4541daca134967","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass medium size array","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #1","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large size array #2","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"462780a7368c9ffd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"be34e44ef544dd56","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7ac9af93b3d2f297","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"bd4541daca134967.json","parameterValues":[]} \ No newline at end of file +{"uid":"e71092ad871851c8","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e71092ad871851c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e751c9c9dc3d04e6.json b/allure-report/data/test-cases/e751c9c9dc3d04e6.json new file mode 100644 index 00000000000..2b318b0808a --- /dev/null +++ b/allure-report/data/test-cases/e751c9c9dc3d04e6.json @@ -0,0 +1 @@ +{"uid":"e751c9c9dc3d04e6","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":1732764220624,"stop":1732764220625,"duration":1},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732764220625,"stop":1732764220625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"74f816020df3559","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0}},{"uid":"4f999b555dd62215","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c4d9587a3ff2d229","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"e751c9c9dc3d04e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f4ba657dc51e0d2.json b/allure-report/data/test-cases/e76c8429b652e3f0.json similarity index 75% rename from allure-report/data/test-cases/2f4ba657dc51e0d2.json rename to allure-report/data/test-cases/e76c8429b652e3f0.json index 0a72bf106fe..e48e74313e3 100644 --- a/allure-report/data/test-cases/2f4ba657dc51e0d2.json +++ b/allure-report/data/test-cases/e76c8429b652e3f0.json @@ -1 +1 @@ -{"uid":"2f4ba657dc51e0d2","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3fe96e9fb5bb6b3f","name":"stdout","source":"3fe96e9fb5bb6b3f.txt","type":"text/plain","size":31}],"parameters":[],"hasContent":true,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2f4ba657dc51e0d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"e76c8429b652e3f0","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"58c4828262135699","name":"stdout","source":"58c4828262135699.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e76c8429b652e3f0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d8c14adba840438.json b/allure-report/data/test-cases/e776a97a9aadedfc.json similarity index 66% rename from allure-report/data/test-cases/5d8c14adba840438.json rename to allure-report/data/test-cases/e776a97a9aadedfc.json index 9847b3f54b5..048173dc350 100644 --- a/allure-report/data/test-cases/5d8c14adba840438.json +++ b/allure-report/data/test-cases/e776a97a9aadedfc.json @@ -1 +1 @@ -{"uid":"5d8c14adba840438","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":14,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1732428194165,"stop":1732428194165,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13ca3a7cd8b0e3af","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"4c7e13d0f61cf99a","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ace382695affabdf","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},"source":"5d8c14adba840438.json","parameterValues":[]} \ No newline at end of file +{"uid":"e776a97a9aadedfc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e776a97a9aadedfc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7c4b4c39dca1f7a.json b/allure-report/data/test-cases/e78a552d574aad16.json similarity index 64% rename from allure-report/data/test-cases/c7c4b4c39dca1f7a.json rename to allure-report/data/test-cases/e78a552d574aad16.json index d1a17570def..9a4643c4b95 100644 --- a/allure-report/data/test-cases/c7c4b4c39dca1f7a.json +++ b/allure-report/data/test-cases/e78a552d574aad16.json @@ -1 +1 @@ -{"uid":"c7c4b4c39dca1f7a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732428194472,"stop":1732428194472,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e357cecc68f801","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"da6d336020bff47c","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"42bb8c96d4cb1bcf","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c7c4b4c39dca1f7a.json","parameterValues":[]} \ No newline at end of file +{"uid":"e78a552d574aad16","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732428194472,"stop":1732428194472,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"e78a552d574aad16.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94af9200e69d147a.json b/allure-report/data/test-cases/e7b4bfe5c117b0b5.json similarity index 79% rename from allure-report/data/test-cases/94af9200e69d147a.json rename to allure-report/data/test-cases/e7b4bfe5c117b0b5.json index 86a0b877d03..1eb452a4406 100644 --- a/allure-report/data/test-cases/94af9200e69d147a.json +++ b/allure-report/data/test-cases/e7b4bfe5c117b0b5.json @@ -1 +1 @@ -{"uid":"94af9200e69d147a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e1f708218c48d04","name":"stdout","source":"1e1f708218c48d04.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"94af9200e69d147a.json","parameterValues":[]} \ No newline at end of file +{"uid":"e7b4bfe5c117b0b5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"912408d5d8c9a319","name":"stdout","source":"912408d5d8c9a319.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7b4bfe5c117b0b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/693d19da33d622de.json b/allure-report/data/test-cases/e8a3e54ef5fe796f.json similarity index 65% rename from allure-report/data/test-cases/693d19da33d622de.json rename to allure-report/data/test-cases/e8a3e54ef5fe796f.json index cb49a1a81ba..26c8e402872 100644 --- a/allure-report/data/test-cases/693d19da33d622de.json +++ b/allure-report/data/test-cases/e8a3e54ef5fe796f.json @@ -1 +1 @@ -{"uid":"693d19da33d622de","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f24a9f86ff4ef095","name":"stdout","source":"f24a9f86ff4ef095.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"693d19da33d622de.json","parameterValues":[]} \ No newline at end of file +{"uid":"e8a3e54ef5fe796f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e693ea1a91f61ae","name":"stdout","source":"4e693ea1a91f61ae.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e8a3e54ef5fe796f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e91954f86960f5cf.json b/allure-report/data/test-cases/e91954f86960f5cf.json new file mode 100644 index 00000000000..00f47ebd70a --- /dev/null +++ b/allure-report/data/test-cases/e91954f86960f5cf.json @@ -0,0 +1 @@ +{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1732764218819,"stop":1732764218819,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732764218818,"stop":1732764218819,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e776a97a9aadedfc","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0}},{"uid":"a456e8af4c590649","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"47f8dbee3cb403d3","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},"source":"e91954f86960f5cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af4da168bd187f62.json b/allure-report/data/test-cases/e9cabde1f2c64760.json similarity index 93% rename from allure-report/data/test-cases/af4da168bd187f62.json rename to allure-report/data/test-cases/e9cabde1f2c64760.json index a3da970639a..69ec0420f14 100644 --- a/allure-report/data/test-cases/af4da168bd187f62.json +++ b/allure-report/data/test-cases/e9cabde1f2c64760.json @@ -1 +1 @@ -{"uid":"af4da168bd187f62","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":"af4da168bd187f62.json","parameterValues":[]} \ No newline at end of file +{"uid":"e9cabde1f2c64760","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":"e9cabde1f2c64760.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dea57e5544d4774.json b/allure-report/data/test-cases/e9f92529af3ab5ff.json similarity index 71% rename from allure-report/data/test-cases/8dea57e5544d4774.json rename to allure-report/data/test-cases/e9f92529af3ab5ff.json index 532c94c06d3..79ef023f473 100644 --- a/allure-report/data/test-cases/8dea57e5544d4774.json +++ b/allure-report/data/test-cases/e9f92529af3ab5ff.json @@ -1 +1 @@ -{"uid":"8dea57e5544d4774","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"62359e715edfaf26","name":"stdout","source":"62359e715edfaf26.txt","type":"text/plain","size":560}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8dea57e5544d4774.json","parameterValues":[]} \ No newline at end of file +{"uid":"e9f92529af3ab5ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fe10e73cc4ad9f0b","name":"stdout","source":"fe10e73cc4ad9f0b.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e9f92529af3ab5ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/711e095503a0cf45.json b/allure-report/data/test-cases/ea018bd2743d350e.json similarity index 71% rename from allure-report/data/test-cases/711e095503a0cf45.json rename to allure-report/data/test-cases/ea018bd2743d350e.json index 36c9dcc4a9b..0554a530389 100644 --- a/allure-report/data/test-cases/711e095503a0cf45.json +++ b/allure-report/data/test-cases/ea018bd2743d350e.json @@ -1 +1 @@ -{"uid":"711e095503a0cf45","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eea11ddd2a3b1d10","name":"stdout","source":"eea11ddd2a3b1d10.txt","type":"text/plain","size":189}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"711e095503a0cf45.json","parameterValues":[]} \ No newline at end of file +{"uid":"ea018bd2743d350e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"74dc839f94675f1c","name":"stdout","source":"74dc839f94675f1c.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ea018bd2743d350e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea636867f014d21.json b/allure-report/data/test-cases/ea636867f014d21.json new file mode 100644 index 00000000000..377f42816e0 --- /dev/null +++ b/allure-report/data/test-cases/ea636867f014d21.json @@ -0,0 +1 @@ +{"uid":"ea636867f014d21","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"214be7d831eff2b3","name":"stdout","source":"214be7d831eff2b3.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"ea636867f014d21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87d2fa2dfc5fe491.json b/allure-report/data/test-cases/ea733e6b4760e89e.json similarity index 52% rename from allure-report/data/test-cases/87d2fa2dfc5fe491.json rename to allure-report/data/test-cases/ea733e6b4760e89e.json index e1b92e2189d..298f4bc014f 100644 --- a/allure-report/data/test-cases/87d2fa2dfc5fe491.json +++ b/allure-report/data/test-cases/ea733e6b4760e89e.json @@ -1 +1 @@ -{"uid":"87d2fa2dfc5fe491","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7fc42db42407a1b3","name":"stdout","source":"7fc42db42407a1b3.txt","type":"text/plain","size":231}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"87d2fa2dfc5fe491.json","parameterValues":[]} \ No newline at end of file +{"uid":"ea733e6b4760e89e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"31e63916e4212e6","name":"stdout","source":"31e63916e4212e6.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"ea733e6b4760e89e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea77ab4395e92566.json b/allure-report/data/test-cases/ea77ab4395e92566.json new file mode 100644 index 00000000000..c2423cd31d9 --- /dev/null +++ b/allure-report/data/test-cases/ea77ab4395e92566.json @@ -0,0 +1 @@ +{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f678007c09ea2b5","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1}},{"uid":"88ed1c9da2d9b53b","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"e8a3e54ef5fe796f","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"ea77ab4395e92566.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e8741eae0b44214.json b/allure-report/data/test-cases/eac7f340d73193c2.json similarity index 62% rename from allure-report/data/test-cases/3e8741eae0b44214.json rename to allure-report/data/test-cases/eac7f340d73193c2.json index 3f3ff6aa7ea..975423f446f 100644 --- a/allure-report/data/test-cases/3e8741eae0b44214.json +++ b/allure-report/data/test-cases/eac7f340d73193c2.json @@ -1 +1 @@ -{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1732428193985,"stop":1732428193985,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"827104e07f2ca2d0","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"614d8ec123787b56","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"7b2352a8e3675c67","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"3e8741eae0b44214.json","parameterValues":[]} \ No newline at end of file +{"uid":"eac7f340d73193c2","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"eac7f340d73193c2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a8ee4991fa5fcbc.json b/allure-report/data/test-cases/eb1b904b9e574ded.json similarity index 79% rename from allure-report/data/test-cases/1a8ee4991fa5fcbc.json rename to allure-report/data/test-cases/eb1b904b9e574ded.json index 2c190a62fcf..d067dcc5077 100644 --- a/allure-report/data/test-cases/1a8ee4991fa5fcbc.json +++ b/allure-report/data/test-cases/eb1b904b9e574ded.json @@ -1 +1 @@ -{"uid":"1a8ee4991fa5fcbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c319238385a5cb6d","name":"stdout","source":"c319238385a5cb6d.txt","type":"text/plain","size":318}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1a8ee4991fa5fcbc.json","parameterValues":[]} \ No newline at end of file +{"uid":"eb1b904b9e574ded","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d3df2dabc5ae756","name":"stdout","source":"6d3df2dabc5ae756.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb1b904b9e574ded.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb4d3d652c38eb3f.json b/allure-report/data/test-cases/eb4d3d652c38eb3f.json new file mode 100644 index 00000000000..10601298a71 --- /dev/null +++ b/allure-report/data/test-cases/eb4d3d652c38eb3f.json @@ -0,0 +1 @@ +{"uid":"eb4d3d652c38eb3f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f451e0abb748fcc1","name":"stdout","source":"f451e0abb748fcc1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb4d3d652c38eb3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26f23a936b51b328.json b/allure-report/data/test-cases/eb60d649770273d6.json similarity index 65% rename from allure-report/data/test-cases/26f23a936b51b328.json rename to allure-report/data/test-cases/eb60d649770273d6.json index b837cdf069f..cbb1c5dd85c 100644 --- a/allure-report/data/test-cases/26f23a936b51b328.json +++ b/allure-report/data/test-cases/eb60d649770273d6.json @@ -1 +1 @@ -{"uid":"26f23a936b51b328","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"126d44dc6bf2e98e","name":"stdout","source":"126d44dc6bf2e98e.txt","type":"text/plain","size":80}],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"26f23a936b51b328.json","parameterValues":[]} \ No newline at end of file +{"uid":"eb60d649770273d6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"53f4bbebe56fedf8","name":"stdout","source":"53f4bbebe56fedf8.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb60d649770273d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebad1371009d2223.json b/allure-report/data/test-cases/ebad1371009d2223.json new file mode 100644 index 00000000000..38aa7086cce --- /dev/null +++ b/allure-report/data/test-cases/ebad1371009d2223.json @@ -0,0 +1 @@ +{"uid":"ebad1371009d2223","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":1732764220243,"stop":1732764220243,"duration":0},"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4f63c652fed664c","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0}},{"uid":"d1233b1a931bee1a","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"b9f8e7d93793c0ea","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ebad1371009d2223.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/844543e89f44e3d5.json b/allure-report/data/test-cases/ebb627dfa50cb94d.json similarity index 69% rename from allure-report/data/test-cases/844543e89f44e3d5.json rename to allure-report/data/test-cases/ebb627dfa50cb94d.json index cdff0ba4323..b8e8dad13c6 100644 --- a/allure-report/data/test-cases/844543e89f44e3d5.json +++ b/allure-report/data/test-cases/ebb627dfa50cb94d.json @@ -1 +1 @@ -{"uid":"844543e89f44e3d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"aa8cd00c6909033a","name":"stdout","source":"aa8cd00c6909033a.txt","type":"text/plain","size":154}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"844543e89f44e3d5.json","parameterValues":[]} \ No newline at end of file +{"uid":"ebb627dfa50cb94d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba852967ab446eeb","name":"stdout","source":"ba852967ab446eeb.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ebb627dfa50cb94d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68db53b8169ad957.json b/allure-report/data/test-cases/ebea1136229ab9bf.json similarity index 74% rename from allure-report/data/test-cases/68db53b8169ad957.json rename to allure-report/data/test-cases/ebea1136229ab9bf.json index cda4d59859b..c4dec1af449 100644 --- a/allure-report/data/test-cases/68db53b8169ad957.json +++ b/allure-report/data/test-cases/ebea1136229ab9bf.json @@ -1 +1 @@ -{"uid":"68db53b8169ad957","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3e088b2fc3849ac3","name":"stdout","source":"3e088b2fc3849ac3.txt","type":"text/plain","size":336}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"68db53b8169ad957.json","parameterValues":[]} \ No newline at end of file +{"uid":"ebea1136229ab9bf","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"40d2195f3173474a","name":"stdout","source":"40d2195f3173474a.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ebea1136229ab9bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec3117c5f0ca458.json b/allure-report/data/test-cases/ec3117c5f0ca458.json deleted file mode 100644 index 1626fbb024c..00000000000 --- a/allure-report/data/test-cases/ec3117c5f0ca458.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ec3117c5f0ca458","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"95dd879b5dc89b5e","name":"stdout","source":"95dd879b5dc89b5e.txt","type":"text/plain","size":487}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ec3117c5f0ca458.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b8219eb37520d2d.json b/allure-report/data/test-cases/ec528f5ba60e276b.json similarity index 62% rename from allure-report/data/test-cases/4b8219eb37520d2d.json rename to allure-report/data/test-cases/ec528f5ba60e276b.json index 4e2dce69760..bb72f56097b 100644 --- a/allure-report/data/test-cases/4b8219eb37520d2d.json +++ b/allure-report/data/test-cases/ec528f5ba60e276b.json @@ -1 +1 @@ -{"uid":"4b8219eb37520d2d","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194034,"stop":1732428194034,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"863d9e582b6f3de4","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"102a91ff9d2e2c1f","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"4b8219eb37520d2d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ec528f5ba60e276b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ec528f5ba60e276b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/898b5d5677e24adf.json b/allure-report/data/test-cases/ed0b0c9c45304a0b.json similarity index 68% rename from allure-report/data/test-cases/898b5d5677e24adf.json rename to allure-report/data/test-cases/ed0b0c9c45304a0b.json index 9acbe9106b2..b76b03be4d7 100644 --- a/allure-report/data/test-cases/898b5d5677e24adf.json +++ b/allure-report/data/test-cases/ed0b0c9c45304a0b.json @@ -1 +1 @@ -{"uid":"898b5d5677e24adf","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732428195716,"stop":1732428195716,"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732428195715,"stop":1732428195715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732428195717,"stop":1732428195717,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Your order, please"},{"name":"subSuite","value":"Unit Tests"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9cbf1053b771d679","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"9585be0acd74f7c1","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ee325afc05dcb3e8","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"898b5d5677e24adf.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed0b0c9c45304a0b","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732428195716,"stop":1732428195716,"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732428195715,"stop":1732428195715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732428195717,"stop":1732428195717,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Your order, please"},{"name":"subSuite","value":"Unit Tests"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"ed0b0c9c45304a0b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbd7acf611333772.json b/allure-report/data/test-cases/ed242b4479970e98.json similarity index 72% rename from allure-report/data/test-cases/fbd7acf611333772.json rename to allure-report/data/test-cases/ed242b4479970e98.json index 5a03da16096..430c2ac8fcf 100644 --- a/allure-report/data/test-cases/fbd7acf611333772.json +++ b/allure-report/data/test-cases/ed242b4479970e98.json @@ -1 +1 @@ -{"uid":"fbd7acf611333772","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"fbd7acf611333772.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed242b4479970e98","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"ed242b4479970e98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33e90a465d3b6e95.json b/allure-report/data/test-cases/ed44c13e0e5a3954.json similarity index 58% rename from allure-report/data/test-cases/33e90a465d3b6e95.json rename to allure-report/data/test-cases/ed44c13e0e5a3954.json index dc688792b8e..0b189e73265 100644 --- a/allure-report/data/test-cases/33e90a465d3b6e95.json +++ b/allure-report/data/test-cases/ed44c13e0e5a3954.json @@ -1 +1 @@ -{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7b13f1197b1367b6","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"30218f5e2dbf6894","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"a70ffb4d0a92e5c8","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"33e90a465d3b6e95.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed44c13e0e5a3954","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"ed44c13e0e5a3954.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf6ae18a8ec3d384.json b/allure-report/data/test-cases/ed5a184ed941933a.json similarity index 70% rename from allure-report/data/test-cases/bf6ae18a8ec3d384.json rename to allure-report/data/test-cases/ed5a184ed941933a.json index 47f5f8bdb66..08d319c4ff1 100644 --- a/allure-report/data/test-cases/bf6ae18a8ec3d384.json +++ b/allure-report/data/test-cases/ed5a184ed941933a.json @@ -1 +1 @@ -{"uid":"bf6ae18a8ec3d384","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fdbdb95799e89350","name":"stdout","source":"fdbdb95799e89350.txt","type":"text/plain","size":97}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf6ae18a8ec3d384.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed5a184ed941933a","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db8507235524f855","name":"stdout","source":"db8507235524f855.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ed5a184ed941933a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edb4f03386c56c72.json b/allure-report/data/test-cases/ed783d7ab62f1ba4.json similarity index 78% rename from allure-report/data/test-cases/edb4f03386c56c72.json rename to allure-report/data/test-cases/ed783d7ab62f1ba4.json index fd5b641750c..31cb48fe659 100644 --- a/allure-report/data/test-cases/edb4f03386c56c72.json +++ b/allure-report/data/test-cases/ed783d7ab62f1ba4.json @@ -1 +1 @@ -{"uid":"edb4f03386c56c72","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e89f9d3c4680bc47","name":"stdout","source":"e89f9d3c4680bc47.txt","type":"text/plain","size":314}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"edb4f03386c56c72.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed783d7ab62f1ba4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87d3adc8617c894b","name":"stdout","source":"87d3adc8617c894b.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ed783d7ab62f1ba4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9fa9266ff3a1c464.json b/allure-report/data/test-cases/ed9cfa6ba87dba0e.json similarity index 62% rename from allure-report/data/test-cases/9fa9266ff3a1c464.json rename to allure-report/data/test-cases/ed9cfa6ba87dba0e.json index 0bd731032d4..d260178ddc0 100644 --- a/allure-report/data/test-cases/9fa9266ff3a1c464.json +++ b/allure-report/data/test-cases/ed9cfa6ba87dba0e.json @@ -1 +1 @@ -{"uid":"9fa9266ff3a1c464","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"16b3d133c1b1141f","name":"stdout","source":"16b3d133c1b1141f.txt","type":"text/plain","size":222}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9fa9266ff3a1c464.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed9cfa6ba87dba0e","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41df37e97a182fa4","name":"stdout","source":"41df37e97a182fa4.txt","type":"text/plain","size":222}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":4,"unknown":0,"total":4},"items":[{"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":"ed9cfa6ba87dba0e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27f5e11d20d2d96c.json b/allure-report/data/test-cases/edb0e461adb94f5b.json similarity index 61% rename from allure-report/data/test-cases/27f5e11d20d2d96c.json rename to allure-report/data/test-cases/edb0e461adb94f5b.json index 594aa848a1e..5341522ca8e 100644 --- a/allure-report/data/test-cases/27f5e11d20d2d96c.json +++ b/allure-report/data/test-cases/edb0e461adb94f5b.json @@ -1 +1 @@ -{"uid":"27f5e11d20d2d96c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732428196043,"stop":1732428196044,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732428196046,"stop":1732428196046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2326ee427488be9","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"5d1981370251e5ca","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"8a0dfae45b96d6a4","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"27f5e11d20d2d96c.json","parameterValues":[]} \ No newline at end of file +{"uid":"edb0e461adb94f5b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732428196043,"stop":1732428196044,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732428196046,"stop":1732428196046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"edb0e461adb94f5b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edb8f84ee9c3dd36.json b/allure-report/data/test-cases/edb8f84ee9c3dd36.json new file mode 100644 index 00000000000..0ad3ba17975 --- /dev/null +++ b/allure-report/data/test-cases/edb8f84ee9c3dd36.json @@ -0,0 +1 @@ +{"uid":"edb8f84ee9c3dd36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732764221158,"stop":1732764221158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d39d2cfc8c05650c","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0}},{"uid":"dfa8d9395e9495b6","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"97bb72caed16dfa0","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"edb8f84ee9c3dd36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edfd5d811972f420.json b/allure-report/data/test-cases/edfd5d811972f420.json new file mode 100644 index 00000000000..5edc3185333 --- /dev/null +++ b/allure-report/data/test-cases/edfd5d811972f420.json @@ -0,0 +1 @@ +{"uid":"edfd5d811972f420","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732764220689,"stop":1732764220689,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Sort Out The Men From Boys"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"294aa341a28271bb","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1}},{"uid":"139cceadff83cc0d","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"5815fdb3e38780e6","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"edfd5d811972f420.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee07ce647fa212f.json b/allure-report/data/test-cases/ee07ce647fa212f.json new file mode 100644 index 00000000000..077676c43ec --- /dev/null +++ b/allure-report/data/test-cases/ee07ce647fa212f.json @@ -0,0 +1 @@ +{"uid":"ee07ce647fa212f","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":1732764220284,"stop":1732764220287,"duration":3},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732764220283,"stop":1732764220283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4a6083b6c2f5cc4b","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1}},{"uid":"14c8b0cd48caa4d6","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"f293d4274aefdd43","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ee07ce647fa212f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af82a0c3b0cef265.json b/allure-report/data/test-cases/ee16b6e353dfd7cd.json similarity index 59% rename from allure-report/data/test-cases/af82a0c3b0cef265.json rename to allure-report/data/test-cases/ee16b6e353dfd7cd.json index 98a27ef3993..3d96792d1e0 100644 --- a/allure-report/data/test-cases/af82a0c3b0cef265.json +++ b/allure-report/data/test-cases/ee16b6e353dfd7cd.json @@ -1 +1 @@ -{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195529,"stop":1732428195529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (200) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (-1) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass test data (1291) and verify the output","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195531,"stop":1732428195531,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6fbd93f1e3abe9a5","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"1cf942af51db20a3","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"84f17449b7b13451","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"af82a0c3b0cef265.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee16b6e353dfd7cd","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195529,"stop":1732428195529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195531,"stop":1732428195531,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"ee16b6e353dfd7cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f9c645ee48c4616c.json b/allure-report/data/test-cases/ee182a5a1f4b39dc.json similarity index 67% rename from allure-report/data/test-cases/f9c645ee48c4616c.json rename to allure-report/data/test-cases/ee182a5a1f4b39dc.json index 047ff2a8305..d262d145b83 100644 --- a/allure-report/data/test-cases/f9c645ee48c4616c.json +++ b/allure-report/data/test-cases/ee182a5a1f4b39dc.json @@ -1 +1 @@ -{"uid":"f9c645ee48c4616c","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1e1a39cd8bddfb25","name":"stdout","source":"1e1a39cd8bddfb25.txt","type":"text/plain","size":565}],"parameters":[],"hasContent":true,"stepsCount":10,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"f9c645ee48c4616c.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee182a5a1f4b39dc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7cf8e66e6e1debdd","name":"stdout","source":"7cf8e66e6e1debdd.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ee182a5a1f4b39dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30b1174850b5a822.json b/allure-report/data/test-cases/ee3233c4ab89c7ec.json similarity index 93% rename from allure-report/data/test-cases/30b1174850b5a822.json rename to allure-report/data/test-cases/ee3233c4ab89c7ec.json index 79e8f8a4d6b..47f0dabcb48 100644 --- a/allure-report/data/test-cases/30b1174850b5a822.json +++ b/allure-report/data/test-cases/ee3233c4ab89c7ec.json @@ -1 +1 @@ -{"uid":"30b1174850b5a822","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":1724733472327,"stop":1724733472327,"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":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":"30b1174850b5a822.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee3233c4ab89c7ec","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":1724733472327,"stop":1724733472327,"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":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":"ee3233c4ab89c7ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee3eb820ef7c27.json b/allure-report/data/test-cases/ee3eb820ef7c27.json deleted file mode 100644 index 82dac762440..00000000000 --- a/allure-report/data/test-cases/ee3eb820ef7c27.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ee3eb820ef7c27","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"19d9a21eca90a0a9","name":"stdout","source":"19d9a21eca90a0a9.txt","type":"text/plain","size":46}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ee3eb820ef7c27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee50880cc545f1d3.json b/allure-report/data/test-cases/ee50880cc545f1d3.json new file mode 100644 index 00000000000..113d5537811 --- /dev/null +++ b/allure-report/data/test-cases/ee50880cc545f1d3.json @@ -0,0 +1 @@ +{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732764221245,"stop":1732764221245,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732764221247,"stop":1732764221247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732764221248,"stop":1732764221248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BUGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3785819940a9985f","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0}},{"uid":"875881a97b3fc375","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e6abe3c64e54cb9f","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"ee50880cc545f1d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a57a3497f4402b67.json b/allure-report/data/test-cases/ee7ac80cd7bb8f8d.json similarity index 56% rename from allure-report/data/test-cases/a57a3497f4402b67.json rename to allure-report/data/test-cases/ee7ac80cd7bb8f8d.json index f9bb8fa212d..5430084a6d1 100644 --- a/allure-report/data/test-cases/a57a3497f4402b67.json +++ b/allure-report/data/test-cases/ee7ac80cd7bb8f8d.json @@ -1 +1 @@ -{"uid":"a57a3497f4402b67","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732428194185,"stop":1732428194185,"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":2,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"deff2de3f9ed88f5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"e47ebce66bbb53cd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":3,"passed":0,"unknown":0,"total":3},"items":[{"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":"a57a3497f4402b67.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee7ac80cd7bb8f8d","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732428194185,"stop":1732428194185,"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":"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":"ee7ac80cd7bb8f8d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eea4c328ad2eaeca.json b/allure-report/data/test-cases/eea4c328ad2eaeca.json deleted file mode 100644 index c8b592cabe4..00000000000 --- a/allure-report/data/test-cases/eea4c328ad2eaeca.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"eea4c328ad2eaeca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fab77c156ff5bb2b","name":"stdout","source":"fab77c156ff5bb2b.txt","type":"text/plain","size":124}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"eea4c328ad2eaeca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef2b00c02db84592.json b/allure-report/data/test-cases/ef2b00c02db84592.json new file mode 100644 index 00000000000..9cf039a9cba --- /dev/null +++ b/allure-report/data/test-cases/ef2b00c02db84592.json @@ -0,0 +1 @@ +{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732764219186,"stop":1732764219186,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732764219184,"stop":1732764219184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e248ed6a4ff28aaa","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0}},{"uid":"1065b8b44c0afc6f","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"2c53cc9448de91f2","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ef2b00c02db84592.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef2d26c76c436892.json b/allure-report/data/test-cases/ef2ebe964f1d2f5f.json similarity index 94% rename from allure-report/data/test-cases/ef2d26c76c436892.json rename to allure-report/data/test-cases/ef2ebe964f1d2f5f.json index d9ec4c20211..36444553339 100644 --- a/allure-report/data/test-cases/ef2d26c76c436892.json +++ b/allure-report/data/test-cases/ef2ebe964f1d2f5f.json @@ -1 +1 @@ -{"uid":"ef2d26c76c436892","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":"ef2d26c76c436892.json","parameterValues":[]} \ No newline at end of file +{"uid":"ef2ebe964f1d2f5f","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":"ef2ebe964f1d2f5f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef53249dd3798b49.json b/allure-report/data/test-cases/ef53249dd3798b49.json new file mode 100644 index 00000000000..1464e81df6e --- /dev/null +++ b/allure-report/data/test-cases/ef53249dd3798b49.json @@ -0,0 +1 @@ +{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732764221343,"stop":1732764221343,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7165b4538deb01d","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0}},{"uid":"a586415c7c751146","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"bf68fdf036dd98c9","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"ef53249dd3798b49.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/920950efadf9f044.json b/allure-report/data/test-cases/efdfaccb93c4c6b4.json similarity index 67% rename from allure-report/data/test-cases/920950efadf9f044.json rename to allure-report/data/test-cases/efdfaccb93c4c6b4.json index 266f6f1c304..b20a20984ed 100644 --- a/allure-report/data/test-cases/920950efadf9f044.json +++ b/allure-report/data/test-cases/efdfaccb93c4c6b4.json @@ -1 +1 @@ -{"uid":"920950efadf9f044","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7e0608ae57e6ca33","name":"stdout","source":"7e0608ae57e6ca33.txt","type":"text/plain","size":253}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":"920950efadf9f044.json","parameterValues":[]} \ No newline at end of file +{"uid":"efdfaccb93c4c6b4","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"42b879e2f735a0ac","name":"stdout","source":"42b879e2f735a0ac.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"efdfaccb93c4c6b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/191f183f3ba0c8ea.json b/allure-report/data/test-cases/f0cf41ee7ec62257.json similarity index 59% rename from allure-report/data/test-cases/191f183f3ba0c8ea.json rename to allure-report/data/test-cases/f0cf41ee7ec62257.json index 01a37f7f951..4ffd043b762 100644 --- a/allure-report/data/test-cases/191f183f3ba0c8ea.json +++ b/allure-report/data/test-cases/f0cf41ee7ec62257.json @@ -1 +1 @@ -{"uid":"191f183f3ba0c8ea","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":1732428195692,"stop":1732428195692,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732428195693,"stop":1732428195693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Unique In Order"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f841b42c8d697c74","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"65d5a47944859245","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"15008ede7bd87a18","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"191f183f3ba0c8ea.json","parameterValues":[]} \ No newline at end of file +{"uid":"f0cf41ee7ec62257","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":1732428195692,"stop":1732428195692,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732428195693,"stop":1732428195693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Unique In Order"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"f0cf41ee7ec62257.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/445f2e59cb6a4191.json b/allure-report/data/test-cases/f10852a0a46489bf.json similarity index 93% rename from allure-report/data/test-cases/445f2e59cb6a4191.json rename to allure-report/data/test-cases/f10852a0a46489bf.json index f4bdc451ed8..2e96a95fdbd 100644 --- a/allure-report/data/test-cases/445f2e59cb6a4191.json +++ b/allure-report/data/test-cases/f10852a0a46489bf.json @@ -1 +1 @@ -{"uid":"445f2e59cb6a4191","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":"445f2e59cb6a4191.json","parameterValues":[]} \ No newline at end of file +{"uid":"f10852a0a46489bf","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":"f10852a0a46489bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b153d545c48d264.json b/allure-report/data/test-cases/f17cc6d65b0932fd.json similarity index 72% rename from allure-report/data/test-cases/5b153d545c48d264.json rename to allure-report/data/test-cases/f17cc6d65b0932fd.json index dd2cccae088..671289064f3 100644 --- a/allure-report/data/test-cases/5b153d545c48d264.json +++ b/allure-report/data/test-cases/f17cc6d65b0932fd.json @@ -1 +1 @@ -{"uid":"5b153d545c48d264","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5ab43402bfd67bde","name":"stdout","source":"5ab43402bfd67bde.txt","type":"text/plain","size":326}],"parameters":[],"hasContent":true,"stepsCount":1,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"5b153d545c48d264.json","parameterValues":[]} \ No newline at end of file +{"uid":"f17cc6d65b0932fd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef5ba384071190d7","name":"stdout","source":"ef5ba384071190d7.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f17cc6d65b0932fd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8cf44bb18023836b.json b/allure-report/data/test-cases/f1908dde48e8dbb5.json similarity index 75% rename from allure-report/data/test-cases/8cf44bb18023836b.json rename to allure-report/data/test-cases/f1908dde48e8dbb5.json index 54603c805f4..a422fb3a797 100644 --- a/allure-report/data/test-cases/8cf44bb18023836b.json +++ b/allure-report/data/test-cases/f1908dde48e8dbb5.json @@ -1 +1 @@ -{"uid":"8cf44bb18023836b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"285de4a0d9b150b3","name":"stdout","source":"285de4a0d9b150b3.txt","type":"text/plain","size":150}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8cf44bb18023836b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1908dde48e8dbb5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"40f2f98b11de943f","name":"stdout","source":"40f2f98b11de943f.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f1908dde48e8dbb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dea092a037f048cd.json b/allure-report/data/test-cases/f1c13dcc2ec25637.json similarity index 66% rename from allure-report/data/test-cases/dea092a037f048cd.json rename to allure-report/data/test-cases/f1c13dcc2ec25637.json index 2759f59d0ad..835ef0ca111 100644 --- a/allure-report/data/test-cases/dea092a037f048cd.json +++ b/allure-report/data/test-cases/f1c13dcc2ec25637.json @@ -1 +1 @@ -{"uid":"dea092a037f048cd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ca9750c0956602d","name":"stdout","source":"1ca9750c0956602d.txt","type":"text/plain","size":104}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"dea092a037f048cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1c13dcc2ec25637","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3fda8fe35c793420","name":"stdout","source":"3fda8fe35c793420.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f1c13dcc2ec25637.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/893dcbf3da59eb02.json b/allure-report/data/test-cases/f1c17d8d31f590b0.json similarity index 60% rename from allure-report/data/test-cases/893dcbf3da59eb02.json rename to allure-report/data/test-cases/f1c17d8d31f590b0.json index c4304940d8c..aa1b74da589 100644 --- a/allure-report/data/test-cases/893dcbf3da59eb02.json +++ b/allure-report/data/test-cases/f1c17d8d31f590b0.json @@ -1 +1 @@ -{"uid":"893dcbf3da59eb02","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732428196445,"stop":1732428196445,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732428196447,"stop":1732428196447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Will there be enough space?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3a0034b3910c9f0c","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"89027a401f5af485","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"af580569ddf3e366","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"893dcbf3da59eb02.json","parameterValues":[]} \ No newline at end of file +{"uid":"f1c17d8d31f590b0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732428196445,"stop":1732428196445,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732428196447,"stop":1732428196447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Will there be enough space?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"f1c17d8d31f590b0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/815ff7102e2d18bc.json b/allure-report/data/test-cases/f207a08521ff3dd3.json similarity index 64% rename from allure-report/data/test-cases/815ff7102e2d18bc.json rename to allure-report/data/test-cases/f207a08521ff3dd3.json index ebfc1deccc7..5f48eeb6b5c 100644 --- a/allure-report/data/test-cases/815ff7102e2d18bc.json +++ b/allure-report/data/test-cases/f207a08521ff3dd3.json @@ -1 +1 @@ -{"uid":"815ff7102e2d18bc","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a31af19dcd964af7","name":"stdout","source":"a31af19dcd964af7.txt","type":"text/plain","size":1865}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"815ff7102e2d18bc.json","parameterValues":[]} \ No newline at end of file +{"uid":"f207a08521ff3dd3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1de780c85f2aabb6","name":"stdout","source":"1de780c85f2aabb6.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f207a08521ff3dd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/342dee44f5f15fde.json b/allure-report/data/test-cases/f20c6ac583494462.json similarity index 65% rename from allure-report/data/test-cases/342dee44f5f15fde.json rename to allure-report/data/test-cases/f20c6ac583494462.json index 32f18939b58..9a93a472d8c 100644 --- a/allure-report/data/test-cases/342dee44f5f15fde.json +++ b/allure-report/data/test-cases/f20c6ac583494462.json @@ -1 +1 @@ -{"uid":"342dee44f5f15fde","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5e25d7437b08e659","name":"stdout","source":"5e25d7437b08e659.txt","type":"text/plain","size":131}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"342dee44f5f15fde.json","parameterValues":[]} \ No newline at end of file +{"uid":"f20c6ac583494462","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e7a51c8d74f448fe","name":"stdout","source":"e7a51c8d74f448fe.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f20c6ac583494462.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c43e0c7813423da.json b/allure-report/data/test-cases/f25197354d7a779d.json similarity index 66% rename from allure-report/data/test-cases/9c43e0c7813423da.json rename to allure-report/data/test-cases/f25197354d7a779d.json index a0b734da766..5ee6ed6e515 100644 --- a/allure-report/data/test-cases/9c43e0c7813423da.json +++ b/allure-report/data/test-cases/f25197354d7a779d.json @@ -1 +1 @@ -{"uid":"9c43e0c7813423da","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c77e43a426f47681","name":"stdout","source":"c77e43a426f47681.txt","type":"text/plain","size":261}],"parameters":[],"hasContent":true,"stepsCount":4,"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":[],"hasContent":false,"stepsCount":0,"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":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"9c43e0c7813423da.json","parameterValues":[]} \ No newline at end of file +{"uid":"f25197354d7a779d","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abb95e0c50272d33","name":"stdout","source":"abb95e0c50272d33.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f25197354d7a779d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7e28dd8f45c4374.json b/allure-report/data/test-cases/f253bf40e74f545d.json similarity index 74% rename from allure-report/data/test-cases/e7e28dd8f45c4374.json rename to allure-report/data/test-cases/f253bf40e74f545d.json index af609daa6da..f397242dc2b 100644 --- a/allure-report/data/test-cases/e7e28dd8f45c4374.json +++ b/allure-report/data/test-cases/f253bf40e74f545d.json @@ -1 +1 @@ -{"uid":"e7e28dd8f45c4374","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b3d5e98a684cd625","name":"stdout","source":"b3d5e98a684cd625.txt","type":"text/plain","size":354}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"e7e28dd8f45c4374.json","parameterValues":[]} \ No newline at end of file +{"uid":"f253bf40e74f545d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a77304cbd9f33e1a","name":"stdout","source":"a77304cbd9f33e1a.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f253bf40e74f545d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f26dca06c76121c7.json b/allure-report/data/test-cases/f26dca06c76121c7.json new file mode 100644 index 00000000000..fdd4387b5e0 --- /dev/null +++ b/allure-report/data/test-cases/f26dca06c76121c7.json @@ -0,0 +1 @@ +{"uid":"f26dca06c76121c7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220572,"stop":1732764220572,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bc6803e227b56151","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1}},{"uid":"faf400d308fb1d4e","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"ba2c8f43220f0c44","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f26dca06c76121c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf7acd85eab5cf37.json b/allure-report/data/test-cases/f2826391ba216705.json similarity index 67% rename from allure-report/data/test-cases/bf7acd85eab5cf37.json rename to allure-report/data/test-cases/f2826391ba216705.json index edb5691113d..85063235d93 100644 --- a/allure-report/data/test-cases/bf7acd85eab5cf37.json +++ b/allure-report/data/test-cases/f2826391ba216705.json @@ -1 +1 @@ -{"uid":"bf7acd85eab5cf37","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf7acd85eab5cf37.json","parameterValues":[]} \ No newline at end of file +{"uid":"f2826391ba216705","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2826391ba216705.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/924a52587e7b2c82.json b/allure-report/data/test-cases/f293d4274aefdd43.json similarity index 68% rename from allure-report/data/test-cases/924a52587e7b2c82.json rename to allure-report/data/test-cases/f293d4274aefdd43.json index 28537f22042..9c06a06c667 100644 --- a/allure-report/data/test-cases/924a52587e7b2c82.json +++ b/allure-report/data/test-cases/f293d4274aefdd43.json @@ -1 +1 @@ -{"uid":"924a52587e7b2c82","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2e5a8277ac6080e3","name":"stdout","source":"2e5a8277ac6080e3.txt","type":"text/plain","size":1536}],"parameters":[],"hasContent":true,"stepsCount":8,"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":[],"hasContent":false,"stepsCount":0,"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":"924a52587e7b2c82.json","parameterValues":[]} \ No newline at end of file +{"uid":"f293d4274aefdd43","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60a8c5c2c7c00ce5","name":"stdout","source":"60a8c5c2c7c00ce5.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f293d4274aefdd43.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7c9ea3ba0070bf05.json b/allure-report/data/test-cases/f2a7bab28da55269.json similarity index 69% rename from allure-report/data/test-cases/7c9ea3ba0070bf05.json rename to allure-report/data/test-cases/f2a7bab28da55269.json index 96983b19d50..8e28c9945af 100644 --- a/allure-report/data/test-cases/7c9ea3ba0070bf05.json +++ b/allure-report/data/test-cases/f2a7bab28da55269.json @@ -1 +1 @@ -{"uid":"7c9ea3ba0070bf05","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3fbdb209be30e4e9","name":"stdout","source":"3fbdb209be30e4e9.txt","type":"text/plain","size":154}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7c9ea3ba0070bf05.json","parameterValues":[]} \ No newline at end of file +{"uid":"f2a7bab28da55269","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"653d98a4ef66ecba","name":"stdout","source":"653d98a4ef66ecba.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2a7bab28da55269.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f30b225377e5683d.json b/allure-report/data/test-cases/f30b225377e5683d.json new file mode 100644 index 00000000000..4a53b547793 --- /dev/null +++ b/allure-report/data/test-cases/f30b225377e5683d.json @@ -0,0 +1 @@ +{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732764220840,"stop":1732764220840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"baf923b3ced2f0a","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0}},{"uid":"c1ac88d1c8e8cadf","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"24df9329b634133a","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"f30b225377e5683d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62141a9b45e036f9.json b/allure-report/data/test-cases/f30d62828063f744.json similarity index 55% rename from allure-report/data/test-cases/62141a9b45e036f9.json rename to allure-report/data/test-cases/f30d62828063f744.json index 1c996b9b4b6..cf0f2ac959b 100644 --- a/allure-report/data/test-cases/62141a9b45e036f9.json +++ b/allure-report/data/test-cases/f30d62828063f744.json @@ -1 +1 @@ -{"uid":"62141a9b45e036f9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732428194701,"stop":1732428194701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6feb6674f3a0e85e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"967fef280aa6e796","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"2b7f0b03733442e8","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"62141a9b45e036f9.json","parameterValues":[]} \ No newline at end of file +{"uid":"f30d62828063f744","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732428194701,"stop":1732428194701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f30d62828063f744.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c77d97bc41048ff.json b/allure-report/data/test-cases/f3b1ea272cafb8c8.json similarity index 55% rename from allure-report/data/test-cases/4c77d97bc41048ff.json rename to allure-report/data/test-cases/f3b1ea272cafb8c8.json index 88209b5eccb..e0ca9d07100 100644 --- a/allure-report/data/test-cases/4c77d97bc41048ff.json +++ b/allure-report/data/test-cases/f3b1ea272cafb8c8.json @@ -1 +1 @@ -{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"99ca7a938f9d4989","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"2980fd5af6447b30","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"4c77d97bc41048ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"f3b1ea272cafb8c8","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f3b1ea272cafb8c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3baf14f5477154.json b/allure-report/data/test-cases/f3baf14f5477154.json deleted file mode 100644 index de01ac5f849..00000000000 --- a/allure-report/data/test-cases/f3baf14f5477154.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f3baf14f5477154","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4091cd5629c473be","name":"stdout","source":"4091cd5629c473be.txt","type":"text/plain","size":311}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"f3baf14f5477154.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/965a3663c8644328.json b/allure-report/data/test-cases/f40d2270a86983a1.json similarity index 73% rename from allure-report/data/test-cases/965a3663c8644328.json rename to allure-report/data/test-cases/f40d2270a86983a1.json index 4aff28c166b..8d6b64ea32a 100644 --- a/allure-report/data/test-cases/965a3663c8644328.json +++ b/allure-report/data/test-cases/f40d2270a86983a1.json @@ -1 +1 @@ -{"uid":"965a3663c8644328","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6e968c2a309c9083","name":"stdout","source":"6e968c2a309c9083.txt","type":"text/plain","size":82}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"965a3663c8644328.json","parameterValues":[]} \ No newline at end of file +{"uid":"f40d2270a86983a1","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2de6534e84498685","name":"stdout","source":"2de6534e84498685.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"f40d2270a86983a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f48dcf9628fe90ff.json b/allure-report/data/test-cases/f48dcf9628fe90ff.json new file mode 100644 index 00000000000..f9f08ab8018 --- /dev/null +++ b/allure-report/data/test-cases/f48dcf9628fe90ff.json @@ -0,0 +1 @@ +{"uid":"f48dcf9628fe90ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732764220613,"stop":1732764220613,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cce644bc4fb0b16f","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0}},{"uid":"3d4ef3b1faaf3c9d","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"ebea1136229ab9bf","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"f48dcf9628fe90ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65a370055ee8e2b9.json b/allure-report/data/test-cases/f507fecee61d3d94.json similarity index 76% rename from allure-report/data/test-cases/65a370055ee8e2b9.json rename to allure-report/data/test-cases/f507fecee61d3d94.json index c00857d88e4..908f0de3265 100644 --- a/allure-report/data/test-cases/65a370055ee8e2b9.json +++ b/allure-report/data/test-cases/f507fecee61d3d94.json @@ -1 +1 @@ -{"uid":"65a370055ee8e2b9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1d395e740ae82411","name":"stdout","source":"1d395e740ae82411.txt","type":"text/plain","size":55}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"65a370055ee8e2b9.json","parameterValues":[]} \ No newline at end of file +{"uid":"f507fecee61d3d94","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"67853a4b20ca2cdb","name":"stdout","source":"67853a4b20ca2cdb.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f507fecee61d3d94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1700dd3f253e8636.json b/allure-report/data/test-cases/f520dc2a3cdded7a.json similarity index 57% rename from allure-report/data/test-cases/1700dd3f253e8636.json rename to allure-report/data/test-cases/f520dc2a3cdded7a.json index 3bffdeab72f..9036627b3b7 100644 --- a/allure-report/data/test-cases/1700dd3f253e8636.json +++ b/allure-report/data/test-cases/f520dc2a3cdded7a.json @@ -1 +1 @@ -{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

Basic test: level, experience, rank

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c2fc5bac7417dd0","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"3d13030ecd2583e8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"1700dd3f253e8636.json","parameterValues":[]} \ No newline at end of file +{"uid":"f520dc2a3cdded7a","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f520dc2a3cdded7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f52e2a19a3ffe707.json b/allure-report/data/test-cases/f52e2a19a3ffe707.json deleted file mode 100644 index a3620f22d10..00000000000 --- a/allure-report/data/test-cases/f52e2a19a3ffe707.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f52e2a19a3ffe707","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"105658932c1d51ff","name":"stdout","source":"105658932c1d51ff.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f52e2a19a3ffe707.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a0034b3910c9f0c.json b/allure-report/data/test-cases/f5725ff55458d02a.json similarity index 76% rename from allure-report/data/test-cases/3a0034b3910c9f0c.json rename to allure-report/data/test-cases/f5725ff55458d02a.json index a46b48d2329..84d723b371a 100644 --- a/allure-report/data/test-cases/3a0034b3910c9f0c.json +++ b/allure-report/data/test-cases/f5725ff55458d02a.json @@ -1 +1 @@ -{"uid":"3a0034b3910c9f0c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"27df6f7a31afa4ff","name":"stdout","source":"27df6f7a31afa4ff.txt","type":"text/plain","size":142}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"3a0034b3910c9f0c.json","parameterValues":[]} \ No newline at end of file +{"uid":"f5725ff55458d02a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"408eed1715a3503c","name":"stdout","source":"408eed1715a3503c.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"f5725ff55458d02a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5819c4c1535edeb.json b/allure-report/data/test-cases/f5819c4c1535edeb.json deleted file mode 100644 index 7e758f1394f..00000000000 --- a/allure-report/data/test-cases/f5819c4c1535edeb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f5819c4c1535edeb","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d7dd41e46efca9ee","name":"stdout","source":"d7dd41e46efca9ee.txt","type":"text/plain","size":233}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f5819c4c1535edeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd76819b5fd836d3.json b/allure-report/data/test-cases/f585eec372fcc899.json similarity index 56% rename from allure-report/data/test-cases/dd76819b5fd836d3.json rename to allure-report/data/test-cases/f585eec372fcc899.json index e5217ca8973..9b9058c4ab2 100644 --- a/allure-report/data/test-cases/dd76819b5fd836d3.json +++ b/allure-report/data/test-cases/f585eec372fcc899.json @@ -1 +1 @@ -{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"8beabd2469a668","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"6373ea673c2617a2","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"dd76819b5fd836d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"f585eec372fcc899","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f585eec372fcc899.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5c9e062133dbbbb.json b/allure-report/data/test-cases/f5c9e062133dbbbb.json new file mode 100644 index 00000000000..57095b98e9e --- /dev/null +++ b/allure-report/data/test-cases/f5c9e062133dbbbb.json @@ -0,0 +1 @@ +{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Test Potion class that mix between 2 RGB colors.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732764220267,"stop":1732764220267,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77a9a3d99a741f47","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0}},{"uid":"79e5a850abe86297","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"111dbc365b1f3e78","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"f5c9e062133dbbbb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f619b88d74382886.json b/allure-report/data/test-cases/f619b88d74382886.json deleted file mode 100644 index 797ca937822..00000000000 --- a/allure-report/data/test-cases/f619b88d74382886.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f619b88d74382886","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f5ae4dee965d4aad","name":"stdout","source":"f5ae4dee965d4aad.txt","type":"text/plain","size":145}],"parameters":[],"hasContent":true,"stepsCount":4,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f619b88d74382886.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b15d7c039eaff13.json b/allure-report/data/test-cases/f631ad3e8bb02244.json similarity index 64% rename from allure-report/data/test-cases/5b15d7c039eaff13.json rename to allure-report/data/test-cases/f631ad3e8bb02244.json index 0e614b2a958..65a5c9945ba 100644 --- a/allure-report/data/test-cases/5b15d7c039eaff13.json +++ b/allure-report/data/test-cases/f631ad3e8bb02244.json @@ -1 +1 @@ -{"uid":"5b15d7c039eaff13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732428196379,"stop":1732428196379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"933ecb6fe52a564f","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"87d2fa2dfc5fe491","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ed5fbc4b14885f68","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"5b15d7c039eaff13.json","parameterValues":[]} \ No newline at end of file +{"uid":"f631ad3e8bb02244","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732428196379,"stop":1732428196379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Boolean"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"f631ad3e8bb02244.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/86b489ae6b8c1d23.json b/allure-report/data/test-cases/f6681b778f42e33c.json similarity index 68% rename from allure-report/data/test-cases/86b489ae6b8c1d23.json rename to allure-report/data/test-cases/f6681b778f42e33c.json index b80f1900f3d..1586b2d2b73 100644 --- a/allure-report/data/test-cases/86b489ae6b8c1d23.json +++ b/allure-report/data/test-cases/f6681b778f42e33c.json @@ -1 +1 @@ -{"uid":"86b489ae6b8c1d23","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"45d7b9435ff3c623","name":"stdout","source":"45d7b9435ff3c623.txt","type":"text/plain","size":1155}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"86b489ae6b8c1d23.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6681b778f42e33c","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8d340a810a5e354f","name":"stdout","source":"8d340a810a5e354f.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f6681b778f42e33c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8215947106021b54.json b/allure-report/data/test-cases/f6b3bc73a428b4db.json similarity index 57% rename from allure-report/data/test-cases/8215947106021b54.json rename to allure-report/data/test-cases/f6b3bc73a428b4db.json index ffca75c8877..78469a222db 100644 --- a/allure-report/data/test-cases/8215947106021b54.json +++ b/allure-report/data/test-cases/f6b3bc73a428b4db.json @@ -1 +1 @@ -{"uid":"8215947106021b54","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":1732428196022,"stop":1732428196022,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90184d6eca761182","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"2db5e1fafcf7f4e1","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"49aa5cc4276ca55b","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"8215947106021b54.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6b3bc73a428b4db","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":1732428196022,"stop":1732428196022,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"f6b3bc73a428b4db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6c63ae7fdc54916.json b/allure-report/data/test-cases/f6c63ae7fdc54916.json new file mode 100644 index 00000000000..3b125ba7293 --- /dev/null +++ b/allure-report/data/test-cases/f6c63ae7fdc54916.json @@ -0,0 +1 @@ +{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732764220855,"stop":1732764220855,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732764220854,"stop":1732764220854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732764220856,"stop":1732764220856,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Check the exam"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"832c94aac84bf09","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0}},{"uid":"7f4f6ae800da8214","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"7369f3dde824b045","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"f6c63ae7fdc54916.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6dea82ce819c148.json b/allure-report/data/test-cases/f6dea82ce819c148.json new file mode 100644 index 00000000000..43376fd6395 --- /dev/null +++ b/allure-report/data/test-cases/f6dea82ce819c148.json @@ -0,0 +1 @@ +{"uid":"f6dea82ce819c148","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"51739cb22fa4b9dd","name":"stdout","source":"51739cb22fa4b9dd.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f6dea82ce819c148.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc455123cb448d3e.json b/allure-report/data/test-cases/f6df3cbfc02e5094.json similarity index 60% rename from allure-report/data/test-cases/fc455123cb448d3e.json rename to allure-report/data/test-cases/f6df3cbfc02e5094.json index a83849c024d..c2c9abaaf84 100644 --- a/allure-report/data/test-cases/fc455123cb448d3e.json +++ b/allure-report/data/test-cases/f6df3cbfc02e5094.json @@ -1 +1 @@ -{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732428195634,"stop":1732428195634,"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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1732428195635,"stop":1732428195635,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5fd184f18d9496f9","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"b921129ad79b857f","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"fc455123cb448d3e.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6df3cbfc02e5094","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732428195634,"stop":1732428195634,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f6df3cbfc02e5094.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b1bc0b9a480db3e.json b/allure-report/data/test-cases/f71bd4516df37f52.json similarity index 85% rename from allure-report/data/test-cases/9b1bc0b9a480db3e.json rename to allure-report/data/test-cases/f71bd4516df37f52.json index e196c6dad75..691f39b2e17 100644 --- a/allure-report/data/test-cases/9b1bc0b9a480db3e.json +++ b/allure-report/data/test-cases/f71bd4516df37f52.json @@ -1 +1 @@ -{"uid":"9b1bc0b9a480db3e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"abe246047ca80d75","name":"stdout","source":"abe246047ca80d75.txt","type":"text/plain","size":227}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9b1bc0b9a480db3e.json","parameterValues":[]} \ No newline at end of file +{"uid":"f71bd4516df37f52","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"42c6735b0fe92ce1","name":"stdout","source":"42c6735b0fe92ce1.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f71bd4516df37f52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ffc43ce0a9f46c9.json b/allure-report/data/test-cases/f7ae1e1fc4481de3.json similarity index 54% rename from allure-report/data/test-cases/5ffc43ce0a9f46c9.json rename to allure-report/data/test-cases/f7ae1e1fc4481de3.json index f652cd7d45b..49c183c48b8 100644 --- a/allure-report/data/test-cases/5ffc43ce0a9f46c9.json +++ b/allure-report/data/test-cases/f7ae1e1fc4481de3.json @@ -1 +1 @@ -{"uid":"5ffc43ce0a9f46c9","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":1732428195479,"stop":1732428195479,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":2,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7be232a1c65ba711","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"26f23a936b51b328","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"d946600dafcc1f6d","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"5ffc43ce0a9f46c9.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7ae1e1fc4481de3","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":1732428195479,"stop":1732428195479,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f7ae1e1fc4481de3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c241cc9403723af.json b/allure-report/data/test-cases/f7d9041670997ad6.json similarity index 62% rename from allure-report/data/test-cases/9c241cc9403723af.json rename to allure-report/data/test-cases/f7d9041670997ad6.json index 1f8a3289576..45b25a4b510 100644 --- a/allure-report/data/test-cases/9c241cc9403723af.json +++ b/allure-report/data/test-cases/f7d9041670997ad6.json @@ -1 +1 @@ -{"uid":"9c241cc9403723af","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732428196335,"stop":1732428196335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"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":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":5,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1732428196337,"stop":1732428196337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"73db1f36a5925004","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"acf49fc01f491be4","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":"9c241cc9403723af.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7d9041670997ad6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f7d9041670997ad6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8cdb3386cf094e1f.json b/allure-report/data/test-cases/f7f7ddd6c717f082.json similarity index 81% rename from allure-report/data/test-cases/8cdb3386cf094e1f.json rename to allure-report/data/test-cases/f7f7ddd6c717f082.json index 2c99f8e1812..eb8b913ee90 100644 --- a/allure-report/data/test-cases/8cdb3386cf094e1f.json +++ b/allure-report/data/test-cases/f7f7ddd6c717f082.json @@ -1 +1 @@ -{"uid":"8cdb3386cf094e1f","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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"519607e9e5d7219c","name":"stdout","source":"519607e9e5d7219c.txt","type":"text/plain","size":204}],"parameters":[],"hasContent":true,"stepsCount":2,"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":[],"hasContent":false,"stepsCount":0,"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":"8cdb3386cf094e1f.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7f7ddd6c717f082","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84790cd414c0264a","name":"stdout","source":"84790cd414c0264a.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f7f7ddd6c717f082.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e17b24d548befe2.json b/allure-report/data/test-cases/f801b2352cd357fc.json similarity index 76% rename from allure-report/data/test-cases/8e17b24d548befe2.json rename to allure-report/data/test-cases/f801b2352cd357fc.json index 197076101c1..c4bf7e162f4 100644 --- a/allure-report/data/test-cases/8e17b24d548befe2.json +++ b/allure-report/data/test-cases/f801b2352cd357fc.json @@ -1 +1 @@ -{"uid":"8e17b24d548befe2","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"273b19c655c226cd","name":"stdout","source":"273b19c655c226cd.txt","type":"text/plain","size":55}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8e17b24d548befe2.json","parameterValues":[]} \ No newline at end of file +{"uid":"f801b2352cd357fc","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3aa04a43be2f48f8","name":"stdout","source":"3aa04a43be2f48f8.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f801b2352cd357fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/945a96aedc88e8fe.json b/allure-report/data/test-cases/f9778b72019f6060.json similarity index 94% rename from allure-report/data/test-cases/945a96aedc88e8fe.json rename to allure-report/data/test-cases/f9778b72019f6060.json index 93f538db2d1..c84ee13aaac 100644 --- a/allure-report/data/test-cases/945a96aedc88e8fe.json +++ b/allure-report/data/test-cases/f9778b72019f6060.json @@ -1 +1 @@ -{"uid":"945a96aedc88e8fe","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":"945a96aedc88e8fe.json","parameterValues":[]} \ No newline at end of file +{"uid":"f9778b72019f6060","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":"f9778b72019f6060.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f9df20ba5fd613f1.json b/allure-report/data/test-cases/f9df20ba5fd613f1.json deleted file mode 100644 index 0c7368481c9..00000000000 --- a/allure-report/data/test-cases/f9df20ba5fd613f1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f9df20ba5fd613f1","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b650a2b5eace42e","name":"stdout","source":"b650a2b5eace42e.txt","type":"text/plain","size":992}],"parameters":[],"hasContent":true,"stepsCount":8,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"f9df20ba5fd613f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/416790ca79634ed0.json b/allure-report/data/test-cases/fa27e6e3693a7b83.json similarity index 68% rename from allure-report/data/test-cases/416790ca79634ed0.json rename to allure-report/data/test-cases/fa27e6e3693a7b83.json index 5900826d760..71dd170d2ae 100644 --- a/allure-report/data/test-cases/416790ca79634ed0.json +++ b/allure-report/data/test-cases/fa27e6e3693a7b83.json @@ -1 +1 @@ -{"uid":"416790ca79634ed0","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e6328cf6a3bf7297","name":"stdout","source":"e6328cf6a3bf7297.txt","type":"text/plain","size":1155}],"parameters":[],"hasContent":true,"stepsCount":3,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"416790ca79634ed0.json","parameterValues":[]} \ No newline at end of file +{"uid":"fa27e6e3693a7b83","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6003c650ea768633","name":"stdout","source":"6003c650ea768633.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"fa27e6e3693a7b83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/16a9ca9919e5cef5.json b/allure-report/data/test-cases/fa5cd4b7c764fede.json similarity index 62% rename from allure-report/data/test-cases/16a9ca9919e5cef5.json rename to allure-report/data/test-cases/fa5cd4b7c764fede.json index 27765a5eeed..3514fd8c7e4 100644 --- a/allure-report/data/test-cases/16a9ca9919e5cef5.json +++ b/allure-report/data/test-cases/fa5cd4b7c764fede.json @@ -1 +1 @@ -{"uid":"16a9ca9919e5cef5","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d6c5e78c2bca1b60","name":"stdout","source":"d6c5e78c2bca1b60.txt","type":"text/plain","size":2146}],"parameters":[],"hasContent":true,"stepsCount":5,"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":[],"hasContent":false,"stepsCount":0,"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":"16a9ca9919e5cef5.json","parameterValues":[]} \ No newline at end of file +{"uid":"fa5cd4b7c764fede","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f6f124c7be3a6e5","name":"stdout","source":"2f6f124c7be3a6e5.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fa5cd4b7c764fede.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa69c95248558058.json b/allure-report/data/test-cases/fa69c95248558058.json new file mode 100644 index 00000000000..b53cc09a4b0 --- /dev/null +++ b/allure-report/data/test-cases/fa69c95248558058.json @@ -0,0 +1 @@ +{"uid":"fa69c95248558058","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a42bbda54a679e90","name":"stdout","source":"a42bbda54a679e90.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa69c95248558058.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa6c346b04c031d5.json b/allure-report/data/test-cases/fa6c346b04c031d5.json new file mode 100644 index 00000000000..94a93ee87f3 --- /dev/null +++ b/allure-report/data/test-cases/fa6c346b04c031d5.json @@ -0,0 +1 @@ +{"uid":"fa6c346b04c031d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732764220731,"stop":1732764220731,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"170ac645fcf8229c","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0}},{"uid":"9a17297856f21a74","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"72c86ca38c98258","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"fa6c346b04c031d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1b76ff1cacf5544.json b/allure-report/data/test-cases/faf400d308fb1d4e.json similarity index 68% rename from allure-report/data/test-cases/c1b76ff1cacf5544.json rename to allure-report/data/test-cases/faf400d308fb1d4e.json index 5922d3a1e4c..e66338b23fd 100644 --- a/allure-report/data/test-cases/c1b76ff1cacf5544.json +++ b/allure-report/data/test-cases/faf400d308fb1d4e.json @@ -1 +1 @@ -{"uid":"c1b76ff1cacf5544","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ae645e567750bb1","name":"stdout","source":"6ae645e567750bb1.txt","type":"text/plain","size":124}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c1b76ff1cacf5544.json","parameterValues":[]} \ No newline at end of file +{"uid":"faf400d308fb1d4e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2696faacdbe9d8c7","name":"stdout","source":"2696faacdbe9d8c7.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"faf400d308fb1d4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f809105a155a665a.json b/allure-report/data/test-cases/fb64f9c33c11676a.json similarity index 70% rename from allure-report/data/test-cases/f809105a155a665a.json rename to allure-report/data/test-cases/fb64f9c33c11676a.json index 20294b745cb..e31e412618e 100644 --- a/allure-report/data/test-cases/f809105a155a665a.json +++ b/allure-report/data/test-cases/fb64f9c33c11676a.json @@ -1 +1 @@ -{"uid":"f809105a155a665a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"81997e6990138a02","name":"stdout","source":"81997e6990138a02.txt","type":"text/plain","size":81}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f809105a155a665a.json","parameterValues":[]} \ No newline at end of file +{"uid":"fb64f9c33c11676a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e932ac087f99689b","name":"stdout","source":"e932ac087f99689b.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fb64f9c33c11676a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/784b6f629ce5c547.json b/allure-report/data/test-cases/fc6ce7cf48700667.json similarity index 61% rename from allure-report/data/test-cases/784b6f629ce5c547.json rename to allure-report/data/test-cases/fc6ce7cf48700667.json index 14d18a8148a..ef9a3b52044 100644 --- a/allure-report/data/test-cases/784b6f629ce5c547.json +++ b/allure-report/data/test-cases/fc6ce7cf48700667.json @@ -1 +1 @@ -{"uid":"784b6f629ce5c547","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428196189,"stop":1732428196189,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10105e91d30d0887","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"f59e61b023eebd26","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"90eee3ddc83b1454","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"784b6f629ce5c547.json","parameterValues":[]} \ No newline at end of file +{"uid":"fc6ce7cf48700667","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428196189,"stop":1732428196189,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fc6ce7cf48700667.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fcb92722bb71757b.json b/allure-report/data/test-cases/fcb92722bb71757b.json new file mode 100644 index 00000000000..c3c0098ef9f --- /dev/null +++ b/allure-report/data/test-cases/fcb92722bb71757b.json @@ -0,0 +1 @@ +{"uid":"fcb92722bb71757b","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":1732764220954,"stop":1732764220955,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220954,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c359ea3a207c31eb","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0}},{"uid":"ae4ebdaea3850cc0","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"8817b6c726fc2884","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"fcb92722bb71757b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3eea5577d98c581f.json b/allure-report/data/test-cases/fd4ef8d041ff123e.json similarity index 59% rename from allure-report/data/test-cases/3eea5577d98c581f.json rename to allure-report/data/test-cases/fd4ef8d041ff123e.json index f20cc12171a..e17ff09f0e1 100644 --- a/allure-report/data/test-cases/3eea5577d98c581f.json +++ b/allure-report/data/test-cases/fd4ef8d041ff123e.json @@ -1 +1 @@ -{"uid":"3eea5577d98c581f","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":1732428195495,"stop":1732428195495,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4304a318e243c50","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"67f932ff555edbd0","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"b8b1a20b1ac22e64","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"3eea5577d98c581f.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd4ef8d041ff123e","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":1732428195495,"stop":1732428195495,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"fd4ef8d041ff123e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34783e6754d286ec.json b/allure-report/data/test-cases/fd85877ffe0d5722.json similarity index 75% rename from allure-report/data/test-cases/34783e6754d286ec.json rename to allure-report/data/test-cases/fd85877ffe0d5722.json index 62d11344364..87c3570cfa2 100644 --- a/allure-report/data/test-cases/34783e6754d286ec.json +++ b/allure-report/data/test-cases/fd85877ffe0d5722.json @@ -1 +1 @@ -{"uid":"34783e6754d286ec","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9047acd474e52c7c","name":"stdout","source":"9047acd474e52c7c.txt","type":"text/plain","size":150}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"34783e6754d286ec.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd85877ffe0d5722","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9b1c37b21b76b29e","name":"stdout","source":"9b1c37b21b76b29e.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fd85877ffe0d5722.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b921129ad79b857f.json b/allure-report/data/test-cases/fe040c66880e0b15.json similarity index 71% rename from allure-report/data/test-cases/b921129ad79b857f.json rename to allure-report/data/test-cases/fe040c66880e0b15.json index cb43567d97f..a5af5ad3bd7 100644 --- a/allure-report/data/test-cases/b921129ad79b857f.json +++ b/allure-report/data/test-cases/fe040c66880e0b15.json @@ -1 +1 @@ -{"uid":"b921129ad79b857f","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f329250c4d2cb198","name":"stdout","source":"f329250c4d2cb198.txt","type":"text/plain","size":243}],"parameters":[],"hasContent":true,"stepsCount":3,"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":[],"hasContent":false,"stepsCount":0,"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":"b921129ad79b857f.json","parameterValues":[]} \ No newline at end of file +{"uid":"fe040c66880e0b15","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc532e29d77b891e","name":"stdout","source":"cc532e29d77b891e.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fe040c66880e0b15.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2951c359ba3fd421.json b/allure-report/data/test-cases/fe07573cd07e1ed8.json similarity index 65% rename from allure-report/data/test-cases/2951c359ba3fd421.json rename to allure-report/data/test-cases/fe07573cd07e1ed8.json index 7c0a39d4fef..478bc5b512a 100644 --- a/allure-report/data/test-cases/2951c359ba3fd421.json +++ b/allure-report/data/test-cases/fe07573cd07e1ed8.json @@ -1 +1 @@ -{"uid":"2951c359ba3fd421","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":"

Codewars badge:

Test Description:

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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"48abcc67292a5aa2","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"5b3fc84157197066","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"972d0622d29729c4","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2951c359ba3fd421.json","parameterValues":[]} \ No newline at end of file +{"uid":"fe07573cd07e1ed8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fe07573cd07e1ed8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5998f9acb6d6dab8.json b/allure-report/data/test-cases/fe13696efb68455a.json similarity index 68% rename from allure-report/data/test-cases/5998f9acb6d6dab8.json rename to allure-report/data/test-cases/fe13696efb68455a.json index 19b9bd1aedf..270ad76e93d 100644 --- a/allure-report/data/test-cases/5998f9acb6d6dab8.json +++ b/allure-report/data/test-cases/fe13696efb68455a.json @@ -1 +1 @@ -{"uid":"5998f9acb6d6dab8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f375c406aca5ef66","name":"stdout","source":"f375c406aca5ef66.txt","type":"text/plain","size":32}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5998f9acb6d6dab8.json","parameterValues":[]} \ No newline at end of file +{"uid":"fe13696efb68455a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9999070a00162057","name":"stdout","source":"9999070a00162057.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"fe13696efb68455a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fea5f749a1c464e4.json b/allure-report/data/test-cases/fea5f749a1c464e4.json new file mode 100644 index 00000000000..9a67893dcb2 --- /dev/null +++ b/allure-report/data/test-cases/fea5f749a1c464e4.json @@ -0,0 +1 @@ +{"uid":"fea5f749a1c464e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732764220357,"stop":1732764220357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b24a6e8f9065ccb","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0}},{"uid":"f1908dde48e8dbb5","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"fd85877ffe0d5722","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"fea5f749a1c464e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fef2d68159e448ff.json b/allure-report/data/test-cases/fef2d68159e448ff.json new file mode 100644 index 00000000000..b28bb5d4861 --- /dev/null +++ b/allure-report/data/test-cases/fef2d68159e448ff.json @@ -0,0 +1 @@ +{"uid":"fef2d68159e448ff","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1732764218932,"stop":1732764218932,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732764218935,"stop":1732764218935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"flatten()"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"50b7ff1fe714521a","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0}},{"uid":"200c9d07d930b3b1","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"9e3c99258a0c64df","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"fef2d68159e448ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff776776c9a8991f.json b/allure-report/data/test-cases/fefeabf3e26a53bd.json similarity index 56% rename from allure-report/data/test-cases/ff776776c9a8991f.json rename to allure-report/data/test-cases/fefeabf3e26a53bd.json index ea7b5ca6db9..1f83e136643 100644 --- a/allure-report/data/test-cases/ff776776c9a8991f.json +++ b/allure-report/data/test-cases/fefeabf3e26a53bd.json @@ -1 +1 @@ -{"uid":"ff776776c9a8991f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732428196064,"stop":1732428196064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c072892b1c739356","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"83b7eb2988572ef6","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"e1471afe863c97c8","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"ff776776c9a8991f.json","parameterValues":[]} \ No newline at end of file +{"uid":"fefeabf3e26a53bd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732428196064,"stop":1732428196064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"fefeabf3e26a53bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff18bec5c293c228.json b/allure-report/data/test-cases/ff18bec5c293c228.json new file mode 100644 index 00000000000..d4ba10507d0 --- /dev/null +++ b/allure-report/data/test-cases/ff18bec5c293c228.json @@ -0,0 +1 @@ +{"uid":"ff18bec5c293c228","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732764220975,"stop":1732764220976,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dd53e52e1ab13306","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0}},{"uid":"ea018bd2743d350e","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"861fc17326f7d16a","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ff18bec5c293c228.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d5ed16bbc896a22.json b/allure-report/data/test-cases/ff24b513a2221397.json similarity index 71% rename from allure-report/data/test-cases/8d5ed16bbc896a22.json rename to allure-report/data/test-cases/ff24b513a2221397.json index dad8f936773..09bd8d5e362 100644 --- a/allure-report/data/test-cases/8d5ed16bbc896a22.json +++ b/allure-report/data/test-cases/ff24b513a2221397.json @@ -1 +1 @@ -{"uid":"8d5ed16bbc896a22","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"929957d5beb797a6","name":"stdout","source":"929957d5beb797a6.txt","type":"text/plain","size":36}],"parameters":[],"hasContent":true,"stepsCount":1,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"hasContent":false,"stepsCount":0,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8d5ed16bbc896a22.json","parameterValues":[]} \ No newline at end of file +{"uid":"ff24b513a2221397","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"afa2344a5891233b","name":"stdout","source":"afa2344a5891233b.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ff24b513a2221397.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff9c64bdd3b3fc0c.json b/allure-report/data/test-cases/ff9c64bdd3b3fc0c.json new file mode 100644 index 00000000000..2cb597da709 --- /dev/null +++ b/allure-report/data/test-cases/ff9c64bdd3b3fc0c.json @@ -0,0 +1 @@ +{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732764220276,"stop":1732764220276,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732764220277,"stop":1732764220277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Pyramid Array"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5cf96cca0ab2f52","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1}},{"uid":"329cbbd27ed228a7","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"1d4c3341dfe8e289","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"ff9c64bdd3b3fc0c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffc8d600f4ca1daf.json b/allure-report/data/test-cases/ffc8d600f4ca1daf.json new file mode 100644 index 00000000000..e21160d1444 --- /dev/null +++ b/allure-report/data/test-cases/ffc8d600f4ca1daf.json @@ -0,0 +1 @@ +{"uid":"ffc8d600f4ca1daf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"80d57c86b12a37c4","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0}},{"uid":"935b6bf420709ca7","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"8bd454f111efcd3e","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"ffc8d600f4ca1daf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/timeline.json b/allure-report/data/timeline.json index a8f252a6ce0..ccb0c3ea27c 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":"Testing check_exam function","uid":"65cad3353d8c115b","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":"Test with empty string","uid":"937c9b1e748aadb0","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 'sum_triangular_numbers' with positive numbers","uid":"90184d6eca761182","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 'vaporcode' function","uid":"518cb319be0d6f5c","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 litres function with various test inputs","uid":"f5819c4c1535edeb","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":"Wolf at the beginning of the queue","uid":"6a59d6609523c5a8","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 'count_sheeps' function: positive flow","uid":"53ac096f64d86d36","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":"Testing 'factorial' function","uid":"891203fa0698ca9","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":"Test with regular string","uid":"843ad9a1e8e9ca65","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 array_diff function","uid":"4ea31191e1f5ab3b","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":"All chars are in upper case","uid":"4aa405db56695158","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":"Testing easy_line function","uid":"38365b0f6f350ca5","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 done_or_not function","uid":"7362d176d35d3813","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":"Testing duplicate_encode function","uid":"6feb6674f3a0e85e","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 'sum_triangular_numbers' with big number as an input","uid":"b4706ff9d2a2958c","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 domain_name function","uid":"90d2f619b6b55a93","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 calc function","uid":"5961f436380e11d2","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":"All chars are in lower case","uid":"844543e89f44e3d5","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 make_readable function","uid":"e40b6e0fafdfb7a4","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 swap_values function","uid":"96df3e350e2ba16f","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":"Testing easy_diagonal function","uid":"b1f2cc8e1be032d","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 'thirt' function","uid":"772c9d6fdd465a8a","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":"Should return 'I smell a series!'","uid":"8e1e999ab6569b87","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":"Negative non consecutive number should be returned","uid":"f9099a5358c90330","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":"863d9e582b6f3de4","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":"Find the int that appears an odd number of times","uid":"883f1439af050615","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":"All chars are in mixed case","uid":"7b13f1197b1367b6","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 hoop_count function (negative test case)","uid":"6309fbba516976ae","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 'feast' function","uid":"51e0b16785f0d461","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 tickets function","uid":"8173581ebbb7cc32","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 'DefaultList' class: __getitem__","uid":"12ac45051c49f01a","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 make_upper_case function","uid":"ebad30d100ba0d2f","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 calc_combinations_per_row function","uid":"c94aec0d920b7f7d","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":"Testing checkchoose function","uid":"e186c7a758de768a","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":"Non square numbers (negative)","uid":"c072892b1c739356","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":"OR logical operator","uid":"c4a8605181ed2d7","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 alphabet_war function","uid":"13ca3a7cd8b0e3af","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":"test_solution_medium","uid":"2f520e29faf9fa03","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 permute_a_palindrome (empty string)","uid":"648462a68a83b780","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":"'multiply' function verification","uid":"ed0bae89bbbcdb66","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":"Testing Battle method","uid":"ddd928ac3a4fb635","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 invite_more_women function (positive)","uid":"7718694e0e976912","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 dirReduc function","uid":"15dbab6d625f40d3","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 row_sum_odd_numbers function","uid":"302b8c55161cc361","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 'count_sheeps' function: mixed list","uid":"19b258c1195772c5","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 digital_root function","uid":"8cf44bb18023836b","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":"'fix_the_meerkat function function verification","uid":"73db1f36a5925004","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 increment_string function","uid":"8e7bc3e134c68e92","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":"Positive test cases for is_prime function testing","uid":"3cb4765f4f4fe8e7","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 'letter_count' function","uid":"25a09c2c9e3c88b1","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":"test_sequence","uid":"c6eafeb1b2d72c83","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 'save' function: positive","uid":"e71fa3f33c33eb50","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":"Square numbers (positive)","uid":"c7a63127b0ec26d9","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 gap function","uid":"4433323b946a1c32","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 string_to_array function","uid":"e330dbdee7dc6874","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 the 'unique_in_order' function","uid":"f841b42c8d697c74","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 share_price function","uid":"cd9da9d797a3c2ab","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 'solution' function","uid":"307a8cec4e791e32","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":"powers function should return an array of unique numbers","uid":"26764a4bab46b2bf","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":"Testing 'order' function","uid":"9cbf1053b771d679","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 done_or_not function","uid":"997065a61e801d4c","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":"Testing 'save' function: negative","uid":"88a73a4735cff92e","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 done_or_not function","uid":"33fff97900a7d8bc","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 likes function","uid":"1bdb6e0764902ab4","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":"Should return 'Publish!'","uid":"9ac6d40036941792","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_permutations","uid":"f12b5c3f29ddd74a","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 validSolution","uid":"5319ceacad5a43bc","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":"a and b are equal","uid":"409a2a4f316497c6","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":"You are given two angles -> find the 3rd.","uid":"74c746ac3dc42135","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":"Non square numbers (negative)","uid":"4bb422e9ca9901c8","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 sum_of_intervals function","uid":"39376204dc517df6","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":"test_triangle","uid":"1a1c24c0cb125454","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 'DefaultList' class: extend","uid":"c89e6a91bc0b9e52","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 next_bigger function","uid":"827104e07f2ca2d0","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":"Testing all_fibonacci_numbers function","uid":"3fd800b8d3602698","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 'count_sheeps' function: bad input","uid":"108dd2ab8a90859d","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":"Wolf at the end of the queue","uid":"12432569c8b8923f","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 'generate_hashtag' function","uid":"3ec407d8e8742f0d","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":"Negative test cases for is_prime function testing","uid":"c8c44a676a12b5c6","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 binary_to_string function","uid":"8949506fce676285","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":"Testing 'DefaultList' class: append","uid":"9c43e0c7813423da","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 largestPower function","uid":"4a35a10fb92b5fdb","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 max_multiple function","uid":"9b613507776a0871","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":"Testing the 'find_missing_number' function","uid":"82a681e3f0c8f54d","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":"Should return 'Fail!'s","uid":"a3b2f77071e9a780","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 sum_for_list function","uid":"7e5150fbd4a33237","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":"Negative test cases for gen_primes function testing","uid":"8beabd2469a668","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":"Positive test cases for gen_primes function testing","uid":"99ca7a938f9d4989","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":"Testing set_alarm function","uid":"933ecb6fe52a564f","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":"Testing 'sum_triangular_numbers' with negative numbers","uid":"59e6c1fe5b50c363","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":"'multiply' function verification: lists with multiple digits","uid":"4e32d03efab2941f","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 with one element list","uid":"c919701b7942665","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 'numericals' function","uid":"1da47ab927a8de42","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 anagrams function","uid":"702c9f7aebde64af","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":"Testing 'is_isogram' function","uid":"428efcfcd43d2531","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":"Test with one char only","uid":"5998f9acb6d6dab8","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 take function","uid":"1f14a6ccebe34b08","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":"Testing spiralize function","uid":"73a56012085cbb67","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":"test_line_negative","uid":"445f2e59cb6a4191","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":"Zero","uid":"90a10a824ed5b372","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 permute_a_palindrome (positive)","uid":"f619b88d74382886","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":"test_solution_big","uid":"f11813f80ada0713","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_smallest","uid":"2b5d1a28c2e7859f","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 check_for_factor function: positive flow","uid":"f6fab27b83e3ab13","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 count_letters_and_digits function","uid":"a076808e43574371","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 length function","uid":"5fda510dc29832db","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":"test_josephus_survivor","uid":"55e4a84277d15d0d","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 monkey_count function","uid":"ab40fd2a8eefa024","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 shark function (positive)","uid":"6d7f7d9659ba7dd5","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":"test_line_positive","uid":"ef1a5cba4efb343a","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":"Two smallest numbers in the start of the list","uid":"bf7acd85eab5cf37","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 invite_more_women function (negative)","uid":"f809105a155a665a","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 first_non_repeated function with various inputs","uid":"e2326ee427488be9","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 Sudoku class","uid":"b9ab4feb44c59984","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":"String with mixed type of chars","uid":"7be232a1c65ba711","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 string_transformer function","uid":"c4d384465e183d6","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":"Testing the 'pyramid' function","uid":"e1fe0122d9c0870d","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":"Testing two_decimal_places function","uid":"3d6e5f0961d8c06a","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 'solution' function","uid":"161e5fcc0f247","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 alphanumeric function","uid":"7e357cecc68f801","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":"Testing password function","uid":"b325ede7f1ceeec3","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 number_of_sigfigs function","uid":"85b55023f525bac2","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":"'multiply' function verification with empty list","uid":"d4bd80ae04896a86","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 pig_it function","uid":"20ae87fc51fb9338","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 check_for_factor function: positive flow","uid":"711e095503a0cf45","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 'greek_comparator' function","uid":"a0d455d6bf21528b","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 that no_space function removes the spaces","uid":"ba7aa507beaa1547","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":"Testing 'has_subpattern' (part 1) function","uid":"3c17e0f5363e3016","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 'count_sheeps' function: empty list","uid":"51c4ad89c4a768de","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 Warrior class >>> tom","uid":"9c2fc5bac7417dd0","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 shark function (negative)","uid":"c74e320818fb9682","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: pop","uid":"a2cc2be21cb9d7cd","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":"String with no duplicate chars","uid":"d9af06a5366a3631","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 first_non_repeating_letter function","uid":"cf437ca3dc1624b1","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":"test_ips_between","uid":"945a96aedc88e8fe","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 the 'sort_array' function","uid":"5fd184f18d9496f9","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":"String with alphabet chars only","uid":"8d5ed16bbc896a22","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":"47068bee5b06a234","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":"test_starting_position_from_negatives","uid":"3c0afff932465669","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 shark function (positive)","uid":"48abcc67292a5aa2","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":"Wolf in the middle of the queue","uid":"f1a24ca70fa28a4b","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 decipher_this function","uid":"f9df20ba5fd613f1","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 to_table function","uid":"7d905be84b5c0b77","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":"Non is expected","uid":"3f94de18ab2e95fb","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 list_squared function","uid":"7da87d8449dbfb8b","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":"goals function verification","uid":"660684096c18d05d","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 the 'group_cities' function","uid":"4f1172fa5620cc18","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 'longest_repetition' function","uid":"ad8dd1da3b7d646d","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":"AND logical operator","uid":"32703c37c2f9cfbd","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":"Square numbers (positive)","uid":"fbd7acf611333772","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 compute_ranks","uid":"72a7c9402c254937","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 easy_line function exception message","uid":"2dc119e05306bc09","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 toJadenCase function (positive)","uid":"c1b76ff1cacf5544","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":"a and b are equal","uid":"656eaa4febf44ace","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":"Testing growing_plant function","uid":"9b1bc0b9a480db3e","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 'DefaultList' class: insert","uid":"9f02852e3aa10b6d","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 Warrior class >>> bruce_lee","uid":"1938e37bf1525466","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":"Testing zero_fuel function","uid":"f040925d9e513197","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":"Testing check_root function","uid":"1a8ee4991fa5fcbc","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 Decoding functionality","uid":"bce82edab468d2f2","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 Encoding functionality","uid":"97ad1cd914697b30","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 the 'solution' function","uid":"6fbd93f1e3abe9a5","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 stock_list function","uid":"602b6b1c829f1e7f","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":"move function tests","uid":"342dee44f5f15fde","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 advice function","uid":"58e0261647deccd2","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 permute_a_palindrome (negative)","uid":"500ac2fecd2b527c","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 is_prime function","uid":"5795c1991578aaeb","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":"Verify that greet function returns the proper message","uid":"21f553aee2e150e3","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 agents_cleanup function","uid":"8dcfddf689f44d1d","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 men_from_boys function","uid":"d4d9b4f519ec1ce3","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":"a or b is negative","uid":"dea092a037f048cd","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 'mix' function","uid":"c5f3069d223f82c6","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":"Testing Calculator class","uid":"aeac31a6eff8ced3","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 calculate_damage function","uid":"2b5bdabfec79d6cf","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":"Non consecutive number should be returned","uid":"566a56003ac2e703","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 valid_parentheses function","uid":"b169e974f5edace2","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":"String with no duplicate chars","uid":"4544ac5de6415953","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":"31050b40d7651adc","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 'has_subpattern' (part 2) function","uid":"64c2df72a296b62e","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 top_3_words function","uid":"f0700b9c803f7cf9","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":"'multiply' function verification with random list","uid":"813aa9dc885c2882","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 remove_char function","uid":"6399c372aa4005f1","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":"XOR logical operator","uid":"462780a7368c9ffd","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 length function where head = None","uid":"9557455e27a468ef","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 validate_battlefield function","uid":"49355004a4136993","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":"Testing solution function","uid":"f63a88604b1d062f","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":"Testing flatten function","uid":"76dad62f743b3603","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 is_palindrome function","uid":"f449c3e5994db83f","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":"test_solution_empty","uid":"7131237025069abe","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 to_alternating_case function","uid":"d38d4627913b0040","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 period_is_late function (negative)","uid":"1506cf302ecd21f1","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 century function","uid":"3d4f8cb2de087cf","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":"Testing 'summation' function","uid":"c0f4e1faa852c595","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":"get_size function tests","uid":"8e1e8d12e75298b","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 create_city_map function","uid":"5b153d545c48d264","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 next_smaller function","uid":"f9c645ee48c4616c","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 encrypt_this function","uid":"e97ebddff1ce0b6f","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 hoop_count function (positive test case)","uid":"65a370055ee8e2b9","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":"test_solution_basic","uid":"deff2de3f9ed88f5","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":"String with no alphabet chars","uid":"b67b48d7bd01382a","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 two_decimal_places function","uid":"10105e91d30d0887","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 move_zeros function","uid":"e57068c00956ea02","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 zeros function","uid":"f3baf14f5477154","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":"Testing 'snail' function","uid":"ede6b0c38e1de853","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 'has_subpattern' (part 3) function","uid":"af31da4a2f7e0b3c","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"]},{"name":"Testing solve function","uid":"6030df3a53146090","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":"STesting enough function","uid":"3a0034b3910c9f0c","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":"a an b are positive numbers","uid":"84d177b8ff2c367d","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":"Testing period_is_late function (positive)","uid":"4dc4de0a74fe7f66","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 'sum_triangular_numbers' with zero","uid":"3b580876a88f5382","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 odd_row function","uid":"e378762a5dac9d1e","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":"Testing calculate function","uid":"5a497340f38e6588","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":"Large lists","uid":"416790ca79634ed0","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":"Testing epidemic function","uid":"b890a6fea083097f","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 'DefaultList' class: remove","uid":"5519a1e9b61f2ca3","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":"Negative numbers","uid":"f4fd5b9fa6dd3840","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 make_class function","uid":"d12fb82b623fefb9","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 toJadenCase function (negative)","uid":"c0d55ad9fdfb0f8a","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":"test_starting_position_from_positives","uid":"85df8de56a96ab7c","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":"String alphabet chars and spaces","uid":"c4304a318e243c50","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":[]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"12720-MainThread","children":[{"name":"All chars are in mixed case","uid":"33e90a465d3b6e95","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing remove_char function","uid":"6ca78efd90ffa643","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"8da01589d3299948","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing easy_line function","uid":"28c03a6c5cc24cef","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing likes function","uid":"fb237eeb673713e3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"5eca272b3b393557","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"7560669431ea4aa8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"8215947106021b54","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing password function","uid":"5ce6881896e2614d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Large lists","uid":"405cf642fa0cf7c1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'mix' function","uid":"2cc2dcb2d1d8eb43","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"a3370192ce6dd676","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"get_size function tests","uid":"98c161ccba9924bd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing decipher_this function","uid":"d4a0809a7647965","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"String alphabet chars and spaces","uid":"3eea5577d98c581f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing dir_reduc function","uid":"5ea5418b10cdf416","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'numericals' function","uid":"acdec238a53c10e1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing take function","uid":"fda81d5edcbfeda5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"371c743cf6f64f1d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"OR logical operator","uid":"368118acc0dadb7d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing Encoding functionality","uid":"9dd5714486b51753","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Positive test cases for is_prime function testing","uid":"62ef482e2cb3493b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing length function where head = None","uid":"21f08ae936e1de27","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing done_or_not function","uid":"6e3ab906ce5621b5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"62141a9b45e036f9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing odd_row function","uid":"59b1922c33f3ac65","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"test_solution_empty","uid":"b5a113fbe50e74ce","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Walker class - position property from negative grids","uid":"a76c277b6c0b5940","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Test with empty string","uid":"b9b6a14fc4bd1dd7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"70963d87150b1b7f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'parts_sums' function","uid":"ac379271ec16d5ad","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 max_multiple function","uid":"649728966aa92b06","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing 'order' function","uid":"898b5d5677e24adf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing number_of_sigfigs function","uid":"8b3214317e10e87f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"af82a0c3b0cef265","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Wolf at the end of the queue","uid":"8c8d43e9d38910da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'snail' function","uid":"461527a27e50c04a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"7087926d4a83e9d4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing toJadenCase function (positive)","uid":"7d6c6bb6b47e11d4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing period_is_late function (positive)","uid":"be8f9e1d393606ac","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Zero","uid":"b897401968bf0d8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing the 'pyramid' function","uid":"ef905ece7eeedc77","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'letter_count' function","uid":"256a10c9792b808f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing make_readable function","uid":"67a957cc2815c6ee","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing century function","uid":"c7e963fd1c95dafe","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"2951c359ba3fd421","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"12f0442ef33f054e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing two_decimal_places function","uid":"784b6f629ce5c547","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"a770e6ac7d91604a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing length function","uid":"3b89778e0f9a0b66","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"test_sequence","uid":"b6d0f7b70ff35380","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Square numbers (positive)","uid":"3c3a8d947ad77b59","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"String with mixed type of chars","uid":"5ffc43ce0a9f46c9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'feast' function","uid":"4045abc0bf075d90","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing Calculator class","uid":"e78e70d10bce7cf5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing make_class function","uid":"5af3f258cf327b2a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"1700dd3f253e8636","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing period_is_late function (negative)","uid":"345a3bae73357330","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"goals function verification","uid":"73f30fbb9798a5d5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Test with one char only","uid":"ac8683bc2703e398","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing anagrams function","uid":"43e7aaf3ed9f3ed0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"5cd4eeb8a4b79d6b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"92a7ecb29f4704b1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing encrypt_this function","uid":"4a386a153d4cde6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing 'DefaultList' class: extend","uid":"5fabad9204d0747c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing zero_fuel function","uid":"b2705032891531e8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"fix_the_meerkat function function verification","uid":"9c241cc9403723af","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'is_isogram' function","uid":"2c6c8c712bf1892f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing format_duration","uid":"7cc0844ab5ecf216","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"9c5c32029e742eac","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"35f08e300f5635d6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing sum_for_list function","uid":"aa08a95162404297","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing spiralize function","uid":"8dde6031964dc28f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"158f20a061140f84","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing litres function with various test inputs","uid":"5a2ae93193e5280a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"a10876da94fb2b4f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"751027d0ac0cc021","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing count_letters_and_digits function","uid":"62e01ffb20b661b5","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 men_from_boys function","uid":"3529b67f8df1184b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing zeros function","uid":"2b98fb3b88f75199","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_diagonal function","uid":"56da494ae1701253","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"6660f839d8534ee2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing hoop_count function (negative test case)","uid":"6c70ddf45fea2887","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing stock_list function","uid":"9267ea7150c527ef","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"'multiply' function verification with one element list","uid":"772347d4d5d65952","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing toJadenCase function (negative)","uid":"47cc31f6ebf12c13","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"d562abb8385a61c5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"191f183f3ba0c8ea","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing check_root function","uid":"dc1c20798f5a8f0a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"Negative numbers","uid":"e69093187fd70d56","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing monkey_count function","uid":"dde0d2c7fdfdde63","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing calculate_damage function","uid":"f91e38b8c375d31c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"test_smallest","uid":"c58cb7ae6e5a9993","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"60180807c3815756","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"move function tests","uid":"2de3f7cf44554fd8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_permutations","uid":"4942ac4be65ef1b0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing calc_combinations_per_row function","uid":"de0aa71757f8badf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"27d124696efa8c6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"c580e79550c46f66","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"9521eb418a2faa99","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"15f47b991f284575","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"aa3ebaa27581f198","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_ips_between","uid":"e5b1f301926fe23","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a405e7d50def0411","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing solution function","uid":"a3395496d8bde803","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"test_solution_big","uid":"c42292a9c36c46f3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing validate_battlefield function","uid":"bd11ee5929c6c53a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"test_line_positive","uid":"b7243d74fc99fb8b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing domain_name function","uid":"2b89947e3a3ec46d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'thirt' function","uid":"777edc280c74020d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calculate function","uid":"fbd37fe4a302b125","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'generate_hashtag' function","uid":"9b5127c91b9deeb6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing string_to_array function","uid":"984af3d5d8056be9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing to_table function","uid":"40c938f8f83f34f7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"a and b are equal","uid":"3b395c1683e127a4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"dd76819b5fd836d3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing permute_a_palindrome (negative)","uid":"1c8c3b6600a20e75","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"STesting enough function","uid":"893dcbf3da59eb02","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing check_for_factor function: positive flow","uid":"36b7cb5a27235272","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"2e46c970e553e301","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Test with regular string","uid":"f701011259e850f6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing is_palindrome function","uid":"b3db9caa12a5149e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing growing_plant function","uid":"56ad7c473898c46d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"2baefc3521a1da2a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Positive test cases for gen_primes function testing","uid":"4c77d97bc41048ff","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Wolf at the beginning of the queue","uid":"b1cbd478c753b1e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing shark function (negative)","uid":"b67813f1cae4659e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"bcc8c6b28fb32dd0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"3e68653192929d9b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'longest_repetition' function","uid":"7e997a5018ff0710","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing increment_string function","uid":"cfaf892be75c5d35","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing checkchoose function","uid":"34a84f898de954b5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: insert","uid":"1532fae746d0bb3a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Two smallest numbers in the start of the list","uid":"ea40d4fff96687ff","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"ff776776c9a8991f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing to_alternating_case function","uid":"a1a7aeb13172d1f0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing share_price function","uid":"4750955362b24610","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"284ee1b80abfdb89","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing 'greek_comparator' function","uid":"a4849e99633e4676","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'solution' function","uid":"a349732eb44f62b9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"36685d778f756fae","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"b36380d1077ce20b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing hoop_count function (positive test case)","uid":"d121ae5a75cc69b9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"607f84fe70696eb5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Verify that greet function returns the proper message","uid":"698c99dcac4b0d93","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Non is expected","uid":"71e40623077306da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing the 'group_cities' function","uid":"25fd6f6c5cfe2b58","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"d9328098007f6ade","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Should return 'Publish!'","uid":"5c0b01ada3a3f14e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing validSolution","uid":"91c9b008755c7351","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"'multiply' function verification with random list","uid":"8ea6e5a2b5515469","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing alphabet_war function","uid":"5d8c14adba840438","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing array_diff function","uid":"2bfddef765c09569","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing 'shortest_job_first(' function","uid":"a224a931a5567f85","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 advice function","uid":"f727d28e098b30b7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"dd6fef8ab37d71ba","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"1aaf298f74019608","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing next_bigger function","uid":"3e8741eae0b44214","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"c77f51e83226296c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing check_for_factor function: positive flow","uid":"614133ca9c69e105","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"3ae9a46b9a1e7c40","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing Decoding functionality","uid":"8804093a9c3b17d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing done_or_not function","uid":"1265911f14bcd919","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b673d7ca3af16ae5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Potion class","uid":"d820d165ec4b4b72","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_solution_basic","uid":"a57a3497f4402b67","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing invite_more_women function (positive)","uid":"749e2bcfe9e98a99","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing epidemic function","uid":"5f6f3bc16b3488d6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Negative test cases for is_prime function testing","uid":"54bb63fb3736b8ae","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"a and b are equal","uid":"900a2cbb7155295","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Find the int that appears an odd number of times","uid":"b2ea4d6d64dc027a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no duplicate chars","uid":"f5177f712a8be6da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"711928de75b599ba","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"f85ab0d3a8429db7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing pig_it function","uid":"6076e8e1aaaa11ab","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"e051944b31d54c14","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing alphanumeric function","uid":"c7c4b4c39dca1f7a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing set_alarm function","uid":"5b15d7c039eaff13","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"93ceeb95a47fabbf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"cf71a425c4796a9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Wolf in the middle of the queue","uid":"4aa537b5c88883a7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"ffa13a74003ae703","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing move_zeros function","uid":"e99ca5757342b866","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing compute_ranks","uid":"d7d1e3c0f9370311","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":"Testing 'DefaultList' class: remove","uid":"239a317b6e090fd8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing first_non_repeated function with various inputs","uid":"27f5e11d20d2d96c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing invite_more_women function (negative)","uid":"b03752c3145720e6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"All chars are in upper case","uid":"196d34645221ebb4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'summation' function","uid":"877a76cbb202d7b3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"XOR logical operator","uid":"bd4541daca134967","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing gap function","uid":"44c1e35d7a7b2adb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing solve function","uid":"d19efceb39f40f4f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"4b8219eb37520d2d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing binary_to_string function","uid":"1d2104b5fa1d29b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"test_triangle","uid":"3ffa72675847f113","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing sum_of_intervals function","uid":"9f9422c1f71252b6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing largestPower function","uid":"e08b527d12d4e4df","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"'multiply' function verification with empty list","uid":"da02dcc2ce3c4d85","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"test_line_negative","uid":"996ab105867adbc9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Should return 'I smell a series!'","uid":"d04b40a520c97bdd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing tickets function","uid":"74b0969e7db4effb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"test_solution_medium","uid":"571176bf000b455b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"419686fbcf063822","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing valid_parentheses function","uid":"5d373bcba925975c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"AND logical operator","uid":"a77a517a493b3eb2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing flatten function","uid":"533bf937be1aa466","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"70eff3ae24ccc67a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'save' function: negative","uid":"56cce31bdf350ac7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing the 'sort_array' function","uid":"fc455123cb448d3e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing easy_line function exception message","uid":"593778a5ba99d447","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"a or b is negative","uid":"f7d2073500029121","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"c3d1eec0ca08f2cd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"413fd3063d3e7dc4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: append","uid":"2655a1e6934b1850","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing check_exam function","uid":"9800852f4c3c1957","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing is_prime function","uid":"1b6b658aae9aa73c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"db6f47361aae7a53","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Battle method","uid":"ac136a3215f7ad6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"String with no duplicate chars","uid":"87dc5713a007f1d7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"2b76b55d8c8f82d1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Should return 'Fail!'s","uid":"973452fbe07efc18","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing swap_values function","uid":"11fa683d801b6c42","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"f0ded5a934f7c37b7599afabf4ca35fc"},{"name":"17192-MainThread","children":[{"name":"All chars are in mixed case","uid":"30218f5e2dbf6894","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 to_table function","uid":"16a9ca9919e5cef5","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 increment_string function","uid":"b982073aac2c9d08","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 length function","uid":"bf6ae18a8ec3d384","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":"Wolf at the beginning of the queue","uid":"3cd6da35a1920265","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":"Non square numbers (negative)","uid":"f649ed8d3c87f7f8","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 take function","uid":"920950efadf9f044","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 duplicate_encode function","uid":"967fef280aa6e796","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 set_alarm function","uid":"87d2fa2dfc5fe491","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 'sum_triangular_numbers' with positive numbers","uid":"2db5e1fafcf7f4e1","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 'generate_hashtag' function","uid":"75ba956cc9ee13f9","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":"STesting enough function","uid":"89027a401f5af485","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":"test_random","uid":"5ea1e8d078b774a7","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 make_class function","uid":"c6923016c0d7805e","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 valid_parentheses function","uid":"83c423646ff2d9ba","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 'has_subpattern' (part 3) function","uid":"5187a55d5b7bcbbd","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":"Positive test cases for gen_primes function testing","uid":"2980fd5af6447b30","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 permute_a_palindrome (negative)","uid":"332b728d7cfdedcf","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 calc function","uid":"57e5e5f4d9d91cf6","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 'count_sheeps' function: bad input","uid":"2f4ba657dc51e0d2","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":"'multiply' function verification with empty list","uid":"5be4a10a1a64fd59","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 password function","uid":"ec3117c5f0ca458","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":"Testing 'count_sheeps' function: positive flow","uid":"3f2abb7dc9376332","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 epidemic function","uid":"6207ccc30173aa77","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":"Should return 'Fail!'s","uid":"c898f599f64280c3","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":"Testing Encoding functionality","uid":"54e4671ce8499dcf","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 stock_list function","uid":"9ee9ff331756b11e","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 agents_cleanup function","uid":"b080152571ac4adf","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 domain_name function","uid":"eaaef6c05ba4cb98","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":"test_solution_big","uid":"3aa67525242f5614","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 digital_root function","uid":"34783e6754d286ec","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":"String with no duplicate chars","uid":"951576068e42ee36","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 to_alternating_case function","uid":"1ca9562da84c64b4","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 done_or_not function","uid":"b4abfaf3d77f3f23","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 easy_diagonal function","uid":"6113acbf67a69117","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 calc_combinations_per_row function","uid":"32b8a7a180fb722f","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":"a or b is negative","uid":"d97402e929388a59","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":"String with alphabet chars only","uid":"e911f85aab34c4e6","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":"String with no alphabet chars","uid":"62507dec220dfd02","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 'longest_repetition' function","uid":"8c6df3dc2deaaefa","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 calculate function","uid":"684d4d6fbb32213a","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 make_upper_case function","uid":"5c78d3bc5a71109a","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 Calculator class","uid":"bfc6af42137d4620","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":"test_starting_position_from_positives","uid":"af4da168bd187f62","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 max_multiple function","uid":"64cdb3b918aa694e","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 compute_ranks","uid":"9a401d5b28fee66a","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 row_sum_odd_numbers function","uid":"8c72192846448826","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 'count_sheeps' function: mixed list","uid":"3287e9af1a22ed8b","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 the 'pyramid' function","uid":"95521fe2b6cd2563","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":"Large lists","uid":"86b489ae6b8c1d23","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 number_of_sigfigs function","uid":"57d69ca6b172040d","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 century function","uid":"d58adc2ec0d31961","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":"Testing 'mix' function","uid":"68ae9688c7c99a04","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":"Testing next_bigger function","uid":"614d8ec123787b56","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":"String with mixed type of chars","uid":"26f23a936b51b328","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 invite_more_women function (negative)","uid":"63e9aeb63ef06083","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 create_city_map function","uid":"a530698ca5ed066c","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":"Test that no_space function removes the spaces","uid":"36b60db7bef82294","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 shark function (positive)","uid":"5b3fc84157197066","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":"Wolf in the middle of the queue","uid":"2dcd793cb9c1cce4","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 invite_more_women function (positive)","uid":"1baceb9fc9699f7","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 largestPower function","uid":"12688af3a6e6b4d","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":"Negative numbers","uid":"2f407878af91b1de","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 'thirt' function","uid":"7a3ebc7dbd092b26","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 toJadenCase function (negative)","uid":"33a7277db5231ef9","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 'order' function","uid":"9585be0acd74f7c1","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 'solution' function","uid":"68db53b8169ad957","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":"test_solution_empty","uid":"37f24af32c057862","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 'DefaultList' class: remove","uid":"4b8d012f19a4e1e6","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":"All chars are in lower case","uid":"7c9ea3ba0070bf05","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":"Find the int that appears an odd number of times","uid":"a258a6f00a3ffda1","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 advice function","uid":"dc1f8d6367d3e66e","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":"'multiply' function verification: lists with multiple digits","uid":"bdddf7ddac3322c3","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 the 'find_missing_number' function","uid":"c8870275fadfceea","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":"Non square numbers (negative)","uid":"83b7eb2988572ef6","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: __getitem__","uid":"d7eae685c38fccbb","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 flatten function","uid":"4f0296b5891c7763","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":"cda9164d86dd0b79","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":"Test with regular string","uid":"e8b3178794c4402b","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":"test_permutations","uid":"ef2d26c76c436892","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 the 'sort_array' function","uid":"b921129ad79b857f","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 first_non_repeated function with various inputs","uid":"5d1981370251e5ca","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 next_smaller function","uid":"a7d4500da5fb8933","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 sum_for_list function","uid":"49fb68289fb078f8","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 'vaporcode' function","uid":"81c03b59fa01f666","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 calculate_damage function","uid":"85284c487c263073","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 'has_subpattern' (part 1) function","uid":"d42759854937ade9","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":"3c944fe792fcd179","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 growing_plant function","uid":"eeed6f5fdf5c1d70","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":"Testing length function where head = None","uid":"d9dd09ce35083af7","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 sum_of_intervals function","uid":"ed566371d87065db","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 period_is_late function (positive)","uid":"4b58bd62b05a8814","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 check_for_factor function: positive flow","uid":"100aeca8c0207022","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":"XOR logical operator","uid":"be34e44ef544dd56","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 men_from_boys function","uid":"80598dcd2309aaf9","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 make_readable function","uid":"33bc4a62afa9ed1a","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":"Testing 'save' function: positive","uid":"bd8413842923f1e","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":"'multiply' function verification with one element list","uid":"d66079b030735db8","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":"OR logical operator","uid":"8dea57e5544d4774","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_solution_basic","uid":"e47ebce66bbb53cd","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 move_zeros function","uid":"90c86a448294d535","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 likes function","uid":"8a9b52813983814b","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 check_root function","uid":"94af9200e69d147a","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 'factorial' function","uid":"9326ca5c3b3bcaf3","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 check_for_factor function: positive flow","uid":"be628f1c5b8245e1","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 done_or_not function","uid":"9abe86e868e9efe6","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 'summation' function","uid":"bf2c284d4d5bb98c","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 'numericals' function","uid":"99b8e6f5f8a43508","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 array_diff function","uid":"ac81c5ec86387239","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":"String alphabet chars and spaces","uid":"67f932ff555edbd0","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 'solution' function","uid":"102a91ff9d2e2c1f","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":"Negative test cases for gen_primes function testing","uid":"6373ea673c2617a2","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 two_decimal_places function","uid":"f59e61b023eebd26","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 'is_isogram' function","uid":"691701add6daaf89","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":"'multiply' function verification","uid":"a7a27da7101eb431","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":"get_size function tests","uid":"f97aaf8957be0a89","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 Warrior class >>> tom","uid":"3d13030ecd2583e8","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 and b are equal","uid":"965a3663c8644328","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":"Testing period_is_late function (negative)","uid":"38b436d46d6537ee","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 anagrams function","uid":"1c59e45321407518","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 Warrior class >>> bruce_lee","uid":"286a2c6d22a3ea0b","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":"Testing easy_line function","uid":"64d00badde981bd3","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 Potion class","uid":"95a29a9545c416cd","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":"test_ips_between","uid":"a3216b951d3fac8b","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 validSolution","uid":"f7656bca6b03073b","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 'DefaultList' class: append","uid":"c5ea93b10613ec53","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":"AND logical operator","uid":"82a8f1ffa445d40","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 'sum_triangular_numbers' with negative numbers","uid":"9451201a4cae53ad","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":"Zero","uid":"8f3fc2a4deaebd0d","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":"Wolf at the end of the queue","uid":"8b80aa0a92a1ed02","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 binary_to_string function","uid":"f00b7b6604c5e7e4","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 hoop_count function (negative test case)","uid":"2f4dd2b3858b1ec4","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":"Should return 'Publish!'","uid":"1bef76bb610cc3bd","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":"'fix_the_meerkat function function verification","uid":"acf49fc01f491be4","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 'feast' function","uid":"77e868a9cd944330","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 validate_battlefield function","uid":"56ae9013352b7649","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":"Two smallest numbers in the start of the list","uid":"b7812824440b717e","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":"Test with empty string","uid":"580b983b7062983c","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 'letter_count' function","uid":"d4af7c6dd9a36bc3","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 the 'unique_in_order' function","uid":"65d5a47944859245","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 Battle method","uid":"f1d39787f3312e8b","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 Decoding functionality","uid":"27b26e7a6523571a","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 alphanumeric function","uid":"da6d336020bff47c","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 remove_char function","uid":"f8d7fd46b923bc4f","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 'DefaultList' class: pop","uid":"45f16c4708137d2d","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_triangular_numbers' with zero","uid":"4ad4524b2ee92967","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 Sudoku class","uid":"837e4ce24ac45efb","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 list_squared function","uid":"87c07388b10e55d5","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 count_letters_and_digits function","uid":"c7eea171ede7ee13","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":"Verify that greet function returns the proper message","uid":"e0b6b39a4d4f9bf4","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 'save' function: negative","uid":"acfebfd078f8e03c","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 zero_fuel function","uid":"6f0b2af516b0f755","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 easy_line function exception message","uid":"d936198953d58b58","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":"30b1174850b5a822","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":"test_josephus_survivor","uid":"a8b77a6618ff7e4c","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":"You are given two angles -> find the 3rd.","uid":"a7008d20e58a9d6a","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 first_non_repeating_letter function","uid":"39a19c10cf88efee","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 the 'solution' function","uid":"1cf942af51db20a3","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":"test_basic","uid":"9fa9266ff3a1c464","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":"'multiply' function verification with random list","uid":"4df34ce2718b817c","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 swap_values function","uid":"e0f78ca1d7d1823c","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":"Non is expected","uid":"d1974f16b30f7476","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":"All chars are in upper case","uid":"40819c186d07d3de","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":"ea156c7340f7150f","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 'solution' function","uid":"59120ba12cafb7e8","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 litres function with various test inputs","uid":"9e6f93dfe778ff9a","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 odd_row function","uid":"2e9a9a4090c00445","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 'DefaultList' class: extend","uid":"23e61e29448b9218","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 'sum_triangular_numbers' with big number as an input","uid":"6e3ce129a9f8f588","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 alphabet_war function","uid":"4c7e13d0f61cf99a","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":"Positive test cases for is_prime function testing","uid":"cc1bd3cedb1bfef0","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 solve function","uid":"552742d77daecee9","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 share_price function","uid":"33a4a469899e9868","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 top_3_words function","uid":"be618dffc8aac711","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 checkchoose function","uid":"9348c64cc78f5d13","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 toJadenCase function (positive)","uid":"eea4c328ad2eaeca","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 the 'group_cities' function","uid":"924a52587e7b2c82","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":"move function tests","uid":"e8ed1f5e4a826f53","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":"Square numbers (positive)","uid":"73100341c811e8de","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 all_fibonacci_numbers function","uid":"e7e28dd8f45c4374","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":"8cdb3386cf094e1f","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 is_palindrome function","uid":"6421e8610575915","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 'greek_comparator' function","uid":"c6f52d0b9e8ac3c5","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 permute_a_palindrome (positive)","uid":"f52e2a19a3ffe707","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":"Negative test cases for is_prime function testing","uid":"e427c3eece0f34c3","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":"powers function should return an array of unique numbers","uid":"1bf2db2d5f0c7414","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 pig_it function","uid":"47bce28013711283","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 shark function (negative)","uid":"5f2df3f2c9b86d77","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":"Should return 'I smell a series!'","uid":"3ee1470ea7ce07a6","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 check_exam function","uid":"cdb2fb8959394c65","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 is_prime function","uid":"d4258a66cc0cec29","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":"a an b are positive numbers","uid":"9dc85df7fba3a78e","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 string_to_array function","uid":"9d10f71bfad2e1ef","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 done_or_not function","uid":"54043a9fba80789b","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 'DefaultList' class: insert","uid":"693d19da33d622de","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":"Negative non consecutive number should be returned","uid":"ee3eb820ef7c27","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 'count_sheeps' function: empty list","uid":"d58da60cf24b7660","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 monkey_count function","uid":"edb4f03386c56c72","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 solution function","uid":"89c602359c6f109b","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 string_transformer function","uid":"9f8b999462605375","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":"test_line_positive","uid":"a1b53b199c1c867e","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 'has_subpattern' (part 2) function","uid":"e4f24bca4471f754","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":"Square numbers (positive)","uid":"b01c60cc4e07480b","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":"a and b are equal","uid":"a8ef326c3cb7b77c","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 format_duration","uid":"bc039aea1f276c5c","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":"goals function verification","uid":"b3c5df850665402e","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":"test_line_negative","uid":"8efea6185ce9f545","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 shark function (positive)","uid":"4961a0c52d810ec1","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 gap function","uid":"167f34fe4187417a","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":"test_sequence","uid":"910c497042fbb9d7","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 with one char only","uid":"2ce701a458e1cd31","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 'snail' function","uid":"35836d979e37575","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 permute_a_palindrome (empty string)","uid":"16f7f5e029216efb","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 tickets function","uid":"5b88f232b1f58c27","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":"test_solution_medium","uid":"4073719ea3c0e8fe","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 decipher_this function","uid":"e17b710b1ca6cef6","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 zeros function","uid":"dcee0c4d2268b964","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 spiralize function","uid":"815ff7102e2d18bc","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 hoop_count function (positive test case)","uid":"8e17b24d548befe2","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 encrypt_this function","uid":"8c7db5518444ac71","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 two_decimal_places function","uid":"48ff8cbb530a1868","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":[]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file +{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"DESKTOP-I2O0REL","children":[{"name":"11036-MainThread","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"a6d26dfb90ab4062","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing sum_of_intervals function","uid":"61e07c6ddcc506b1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Two smallest numbers in the start of the list","uid":"c52dc9ba56a64495","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"b22afbc33030e55f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing compute_ranks","uid":"9e017ac7fdaf6bf5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"fa6c346b04c031d5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"String with no duplicate chars","uid":"1c3655d4a978bd79","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"302e450946481df3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing pig_it function","uid":"60f7c96f923539a5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c5bce40c2868c787","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"All chars are in upper case","uid":"b0cc123728fa2f2d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing zero_fuel function","uid":"7c6af0e0a129f035","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing gap function","uid":"cb9f6d4c2aaf90e3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing growing_plant function","uid":"56d019840f444cec","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"1a13c6a89153460b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Square numbers (positive)","uid":"1bd3919646678e3f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'letter_count' function","uid":"d6ad7a05187743ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"c700736d12b44c86","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing solution function","uid":"d5aba2cd944d7efd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"63a8ebd07b8fa1c4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing binary_to_string function","uid":"67a0bf67db9047ee","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"a and b are equal","uid":"405b625cf95f9fbd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing two_decimal_places function","uid":"a61ba5af03a1f296","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","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":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing max_multiple function","uid":"1abde016dd7f5ee7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'thirt' function","uid":"62a6bbd8d87be20e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"63b822db5bae14d4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing is_prime function","uid":"142f5165c8452d36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing to_alternating_case function","uid":"f30b225377e5683d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing Calculator class","uid":"5194ad39db439d08","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Walker class - position property from negative grids","uid":"3e564e38813f1539","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Wolf at the end of the queue","uid":"6dfafb882d7cc41f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing increment_string function","uid":"dc076040e5481dc9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"fix_the_meerkat function function verification","uid":"1f1df83d6cc10b66","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Testing Battle method","uid":"c00621abb22a9be3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing domain_name function","uid":"6a3f85e29591c654","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Negative test cases for is_prime function testing","uid":"4710cc2182eb85cb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing zeros function","uid":"3c7a781e3674db5e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"ff18bec5c293c228","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"450fbb27e2067be4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"9b0ec4eb2cd2dde7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"test_triangle","uid":"732b9dd805d734b8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing count_letters_and_digits function","uid":"183ba5aa4a18280","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"354cda6601a7cded","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"9246dbe4ecdc42ce","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"5ad5cb812fbd5d4a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing period_is_late function (negative)","uid":"2be24f9b66669d76","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"47f66d4df6594479df63e370348f1468"},{"name":"9168-MainThread","children":[{"name":"Wolf at the beginning of the queue","uid":"3b252f71e94d60c3","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 Encoding functionality","uid":"c91f2e2d1c4e5a72","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":"Negative test cases for gen_primes function testing","uid":"65f6b4f1195a0e9d","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 check_for_factor function: positive flow","uid":"af99dc37dcb7799b","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_combinations_per_row function","uid":"b7107b1da849121a","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":"Testing 'has_subpattern' (part 3) function","uid":"c739525d6df646b0","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"]},{"name":"Testing first_non_repeating_letter function","uid":"378b8959bf0b41a9","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 to_alternating_case function","uid":"c1ac88d1c8e8cadf","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 is_prime function","uid":"8edcba07a1a3ea56","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":"Zero","uid":"764219a087e938f","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 sum_of_intervals function","uid":"99a774ce5ee6bba3","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 men_from_boys function","uid":"139cceadff83cc0d","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 list_squared function","uid":"61de742601660eab","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 'has_subpattern' (part 2) function","uid":"b5cedd1e00782e11","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":"test_solution_empty","uid":"706d67120123862f","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 hoop_count function (positive test case)","uid":"f507fecee61d3d94","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":"Should return 'I smell a series!'","uid":"68e1fa91eff84fb2","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":"test_triangle","uid":"e5a7c04cf0e6c2f9","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 Sudoku class","uid":"d4d3736adb97380b","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":"Testing permute_a_palindrome (positive)","uid":"7612354cc3c699d","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":"'multiply' function verification","uid":"dfa8d9395e9495b6","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":"Testing the 'pyramid' function","uid":"329cbbd27ed228a7","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":"Testing Warrior class >>> bruce_lee","uid":"70c180d1e9f40ddc","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":"Testing domain_name function","uid":"e0d2f09c0da8121","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":"test_sequence","uid":"bda7ad5e74660b56","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 'mix' function","uid":"9ee094a1f359821e","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":"Wolf at the end of the queue","uid":"2180a5f5e79006a1","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":"test_smallest","uid":"767acc864b347295","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 pig_it function","uid":"caf985b2a75ee6b7","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 Decoding functionality","uid":"58a164b572fc5a50","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 'DefaultList' class: append","uid":"f25197354d7a779d","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 easy_diagonal function","uid":"8d85f39401914c16","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":"String alphabet chars and spaces","uid":"817c95f8ac92a91e","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":"test_ips_between","uid":"f9778b72019f6060","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 'solution' function","uid":"3d4ef3b1faaf3c9d","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 make_readable function","uid":"75040d42480a95e8","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 odd_row function","uid":"1be5b98a41807de8","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":"Testing 'thirt' function","uid":"1a8f12ae9a258bd1","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":"Should return 'Fail!'s","uid":"a355bc32a0d73da0","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 easy_line function exception message","uid":"44516baeffa03c9d","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 'sum_triangular_numbers' with positive numbers","uid":"71a05925458c8736","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 length function","uid":"55a0094c41d10012","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 permute_a_palindrome (negative)","uid":"11195fbf11e8bfc3","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":"test_solution_medium","uid":"634b88b34b81a74c","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 toJadenCase function (positive)","uid":"faf400d308fb1d4e","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 alphanumeric function","uid":"4df9c941adb35f26","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":"Test with one char only","uid":"fe13696efb68455a","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 count_letters_and_digits function","uid":"e695b3f4b0bdd51b","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":"Negative non consecutive number should be returned","uid":"9aaaa009f2bba8b1","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 zero_fuel function","uid":"bdcd06f2ac6e82c9","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":"Testing easy_line function","uid":"45bc1447720343e5","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 mixed type of chars","uid":"5471ece0090e3d4","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":"move function tests","uid":"f20c6ac583494462","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 duplicate_encode function","uid":"6f9dcb0c09ae9f13","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":"test_starting_position_from_negatives","uid":"d34aca89a8362e7c","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 'count_sheeps' function: bad input","uid":"23e7f7a9e25073fa","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 'vaporcode' function","uid":"7d3b7c7449825e20","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 'has_subpattern' (part 1) function","uid":"142b0c4f3754d996","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 password function","uid":"2f46a2e41d4cb55","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 array_diff function","uid":"359cda8d66959d20","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":"Two smallest numbers in the start of the list","uid":"f2826391ba216705","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 share_price function","uid":"1212df96f6b2dc34","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":"'fix_the_meerkat function function verification","uid":"5c657b72ebb12427","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 is_palindrome function","uid":"c8de14a6ed49ac6d","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 calc function","uid":"500f182a6eedd000","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 'is_isogram' function","uid":"f6dea82ce819c148","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":"Testing next_smaller function","uid":"ee182a5a1f4b39dc","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 make_upper_case function","uid":"ac65ef6ef01656e6","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 decipher_this function","uid":"67e470215248af57","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 'greek_comparator' function","uid":"3e88e2d0381e105a","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":"Testing toJadenCase function (negative)","uid":"c10fb0178a326f0a","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 'summation' function","uid":"6b42b881fa048473","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":"Testing max_multiple function","uid":"a1980ae57d2c7b3","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":"a or b is negative","uid":"f1c13dcc2ec25637","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 done_or_not function","uid":"86173a2048ae1d24","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":"All chars are in upper case","uid":"2c38900f28571c1","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":"Testing 'snail' function","uid":"b7874e896ca052d2","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 'count_sheeps' function: mixed list","uid":"545394bf3fbbd64b","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 validSolution","uid":"2ac4d21875a44bdb","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":"AND logical operator","uid":"c78900977fa836","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 remove_char function","uid":"3604ad2531e10e0a","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":"Testing length function where head = None","uid":"21dca02637c8027f","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 Warrior class >>> tom","uid":"3bb063d5045f38b5","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":"All chars are in mixed case","uid":"9b5105f2c1baa9ed","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 to_table function","uid":"c0b9bbb0a9f351b0","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":"Test with regular string","uid":"de09867d078b6af4","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 'order' function","uid":"610300a29faa4ee4","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 'letter_count' function","uid":"893f14f04872e4c5","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 advice function","uid":"994a4ad6b5f0c1e0","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":"String with no duplicate chars","uid":"ae5dc2ec4f03f9e5","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 row_sum_odd_numbers function","uid":"583a0190aa99ad42","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 binary_to_string function","uid":"cedf72c8fbbfdfc5","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":"'multiply' function verification with random list","uid":"6e91e404eb8e624","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 likes function","uid":"4617147ad7612076","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":"Testing monkey_count function","uid":"1d437c172b71c55f","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 'numericals' function","uid":"522a0d282fded9dd","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":"Large lists","uid":"fa27e6e3693a7b83","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":"Testing sum_for_list function","uid":"ce75fbdf4ccd46b8","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":"Find the int that appears an odd number of times","uid":"82d71f1a1b9a4c08","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 'DefaultList' class: pop","uid":"adbbb2c26291ccd5","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 invite_more_women function (positive)","uid":"938f6f7ebecca4c3","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 the 'sort_array' function","uid":"afe0c9a0972467a3","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 Battle method","uid":"552b72a0721ea486","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":"Non is expected","uid":"d0ce09c4ba5ff697","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 Calculator class","uid":"197e00510d3eb166","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 'sum_triangular_numbers' with zero","uid":"3b453b26a6476828","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 the 'unique_in_order' function","uid":"8bbe3b647eb4bfeb","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 check_exam function","uid":"7f4f6ae800da8214","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":"Non consecutive number should be returned","uid":"ae4ebdaea3850cc0","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 make_class function","uid":"aa1a2a69b8a9bf68","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 'solution' function","uid":"afc07e402ebe38d8","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":"Verify that greet function returns the proper message","uid":"6902a5b0a224435c","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 'solution' function","uid":"395a8f7cfcd6a2c9","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":"String with no duplicate chars","uid":"895071e6126c1fbc","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 epidemic function","uid":"4c31a5ec99c6ca69","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":"Should return 'Publish!'","uid":"3c275e4650ef1fcb","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_basic","uid":"5aa7474450de295f","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":"Testing litres function with various test inputs","uid":"df9a9f68276bbb84","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 zeros function","uid":"6463a9e3be0b4026","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":"Testing 'DefaultList' class: extend","uid":"256439519ef758bc","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 swap_values function","uid":"875881a97b3fc375","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":"Testing digital_root function","uid":"f1908dde48e8dbb5","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":"Testing stock_list function","uid":"a98592d8e6c7fba2","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":"Testing create_city_map function","uid":"f17cc6d65b0932fd","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 number_of_sigfigs function","uid":"c793ab5339736af5","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":"You are given two angles -> find the 3rd.","uid":"756610bb1a8856d4","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":"a and b are equal","uid":"9dc0ca62f1db510f","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":"Testing 'sum_triangular_numbers' with big number as an input","uid":"9a17297856f21a74","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 shark function (negative)","uid":"30e62f45ee93d21d","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 compute_ranks","uid":"197e80b267cccc2b","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":"3a617c2d20fe6a0a","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":"OR logical operator","uid":"2064c7d6b1732474","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 period_is_late function (negative)","uid":"93cbb9687a6c19d2","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 done_or_not function","uid":"2da97da2ac2c9bbd","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":"Testing agents_cleanup function","uid":"d64758690dcdce52","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":"goals function verification","uid":"91aab0544068789","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":"'multiply' function verification: lists with multiple digits","uid":"1b95adcea61e4ef5","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":"Negative numbers","uid":"d35364e5c638d89f","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_repeated function with various inputs","uid":"b4bcf3d5a4367d8","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 'count_sheeps' function: positive flow","uid":"68235061ff0b1d1d","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":"Testing alphabet_war function","uid":"a456e8af4c590649","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":"Square numbers (positive)","uid":"a5bb3631db18a9d9","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_line_negative","uid":"f10852a0a46489bf","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 check_root function","uid":"eb1b904b9e574ded","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":"String with no alphabet chars","uid":"7f05453c14dc1c4a","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":"Positive test cases for is_prime function testing","uid":"42452319aaa200ae","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":"String with alphabet chars only","uid":"ff24b513a2221397","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 check_for_factor function: positive flow","uid":"ea018bd2743d350e","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":"test_line_positive","uid":"2488d38c1be516d6","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":"'multiply' function verification with empty list","uid":"4f999b555dd62215","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 largestPower function","uid":"28847243d9b7f290","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":"Wolf in the middle of the queue","uid":"a586415c7c751146","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 'save' function: positive","uid":"df5176bbed48ed91","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_triangular_numbers' with negative numbers","uid":"23199ebc2c7c1fa2","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 growing_plant function","uid":"f71bd4516df37f52","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":"test_solution_big","uid":"4d0958f9149b5791","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":"Testing two_decimal_places function","uid":"4eaed4684cfaee8f","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 solve function","uid":"c61d34eb10bf204","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 anagrams function","uid":"4d57a8ddade5816","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":"test_permutations","uid":"740e72b931a3ed2d","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":"Negative test cases for is_prime function testing","uid":"406377324fdf0256","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 'DefaultList' class: insert","uid":"88ed1c9da2d9b53b","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 spiralize function","uid":"47cf0745ec1b0964","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":"Testing shark function (positive)","uid":"b8bd7a062c96fe90","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 increment_string function","uid":"a6f428498c7694b0","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":"Test with empty string","uid":"cefd3a9afeec351e","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 period_is_late function (positive)","uid":"935b6bf420709ca7","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 two_decimal_places function","uid":"c20970878e009fc6","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 string_transformer function","uid":"152d6167de0fb37e","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":"Testing permute_a_palindrome (empty string)","uid":"d1233b1a931bee1a","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 flatten function","uid":"200c9d07d930b3b1","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 encrypt_this function","uid":"1751fe3c0a6687c3","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 next_bigger function","uid":"8dcdfa9166c48fb8","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":"Testing century function","uid":"3fe8a02ede1e6532","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":"All chars are in lower case","uid":"ebb627dfa50cb94d","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 the 'group_cities' function","uid":"14c8b0cd48caa4d6","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 validate_battlefield function","uid":"1c217987ee1a1d39","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":"Testing 'DefaultList' class: __getitem__","uid":"632eacb89b6e193e","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 'DefaultList' class: remove","uid":"ae08758c48a63481","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 take function","uid":"7fb0d954404a7411","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":"Testing format_duration","uid":"42bd5b348187136c","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 set_alarm function","uid":"68ad711bfb950e6e","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":"Testing 'longest_repetition' function","uid":"9a72e64592e0ae1b","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 invite_more_women function (negative)","uid":"fb64f9c33c11676a","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":"'multiply' function verification with one element list","uid":"a7d954f4aff6f601","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":"test_starting_position_from_positives","uid":"a35155a27bb8937d","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 done_or_not function","uid":"1065b8b44c0afc6f","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":"Test that no_space function removes the spaces","uid":"49044c1c42d54a81","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":"Positive test cases for gen_primes function testing","uid":"22f939e586318511","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":"Testing checkchoose function","uid":"73622414b649e45a","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 calculate_damage function","uid":"962ca80dcc908350","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 the 'find_missing_number' function","uid":"ccb7c5007831ab45","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":"XOR logical operator","uid":"2dcba5fbac259354","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":"a an b are positive numbers","uid":"c5bfa9ec903b7b32","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":"Testing gap function","uid":"37af89538f752875","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 'generate_hashtag' function","uid":"a9ecee1b4fc0ab11","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 'save' function: negative","uid":"c38b32e4e940b443","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 top_3_words function","uid":"65c772a236576a2d","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":"get_size function tests","uid":"e29868febcecd61d","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 shark function (positive)","uid":"99e31d655e3161a","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 all_fibonacci_numbers function","uid":"8bf0e4ddc17f51c8","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":"a and b are equal","uid":"de0a077377bec456","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 move_zeros function","uid":"482801cdd802c850","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":"powers function should return an array of unique numbers","uid":"7f0995b9351caed2","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":"Non square numbers (negative)","uid":"35f4051adfa3517","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 hoop_count function (negative test case)","uid":"6c457590f118b700","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 solution function","uid":"6558b0da7e100d83","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":"Testing 'count_sheeps' function: empty list","uid":"ab62ce2428f0e01f","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 Potion class","uid":"79e5a850abe86297","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 tickets function","uid":"8f6f88ab23c0d630","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":"Non square numbers (negative)","uid":"3846d19bb4975491","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":"Square numbers (positive)","uid":"ed242b4479970e98","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 valid_parentheses function","uid":"b28ff46b20790be2","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 dirReduc function","uid":"a07fccce3e37ee4a","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":"STesting enough function","uid":"f5725ff55458d02a","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":"Testing 'factorial' function","uid":"bd413f89b47699c","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":"test_josephus_survivor","uid":"6566372edd2dc54c","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 calculate function","uid":"dc9bdff2273b81f8","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":"Testing 'feast' function","uid":"579e5f45553c02f2","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 string_to_array function","uid":"2d49ce73ea45d7a1","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"]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"17192-MainThread","children":[{"name":"Testing advice function","uid":"4f20da98ae3e1985","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":"Testing max_multiple function","uid":"da222867360b442e","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 'solution' function","uid":"ebea1136229ab9bf","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":"Negative test cases for is_prime function testing","uid":"335c39c3e0f7aa15","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":"Square numbers (positive)","uid":"6d2f9028315647c1","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 the 'pyramid' function","uid":"1d4c3341dfe8e289","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":"a an b are positive numbers","uid":"2ba00773a1bfae2e","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_sequence","uid":"d6fd6e0593022837","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 monkey_count function","uid":"ed783d7ab62f1ba4","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 'count_sheeps' function: bad input","uid":"e76c8429b652e3f0","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 'DefaultList' class: pop","uid":"582aa68275dac68e","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":"Square numbers (positive)","uid":"1531ff5e4d5380e4","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 valid_parentheses function","uid":"ea636867f014d21","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":"test_line_negative","uid":"96ce14353b4f3e49","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 decipher_this function","uid":"4719969d944ed48a","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":"Test that no_space function removes the spaces","uid":"1b6eab50f2f722f5","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 encrypt_this function","uid":"229dd074fbcb6ca1","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 Encoding functionality","uid":"2483ff464fe4ea07","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":"Wolf in the middle of the queue","uid":"bf68fdf036dd98c9","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":"a or b is negative","uid":"9f8d638b621270bd","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":"String with no duplicate chars","uid":"383972b39eec664a","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 array_diff function","uid":"6a8f943df9cf325c","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":"Non is expected","uid":"821065d4dc841edb","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 validate_battlefield function","uid":"616388e3d3f3ad4c","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 zeros function","uid":"4ab2fd070154adeb","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 next_bigger function","uid":"ab7f75990cdffa76","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":"All chars are in upper case","uid":"34931ad2bd045d0c","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 Warrior class >>> tom","uid":"ba3e30be8784f086","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":"Testing 'DefaultList' class: append","uid":"86447fe348b226fe","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 century function","uid":"65bb39f46c25941f","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":"Should return 'Fail!'s","uid":"65b2cf00b86ce444","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":"Negative numbers","uid":"814ad2f745782ad7","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 permute_a_palindrome (positive)","uid":"5956e80e98375be","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 'DefaultList' class: __getitem__","uid":"4430fa612ad99844","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 shark function (positive)","uid":"bcdd15975118f527","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":"String alphabet chars and spaces","uid":"95924b9d92f1ced5","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":"OR logical operator","uid":"e9f92529af3ab5ff","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":"Find the int that appears an odd number of times","uid":"3c99f2489842209e","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 'snail' function","uid":"3f3bfc03f90689c3","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 'greek_comparator' function","uid":"a12dc2585f9de41f","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":"test_basic","uid":"ed9cfa6ba87dba0e","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":"Positive test cases for gen_primes function testing","uid":"40a0fe54277654cc","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 alphabet_war function","uid":"47f8dbee3cb403d3","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 zero_fuel function","uid":"3b2be2c8b8f3d0bb","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 number_of_sigfigs function","uid":"ac35e86bb753fb8c","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 string_transformer function","uid":"6226ef3ddb316aa7","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":"move function tests","uid":"625a87864855843c","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 sum_of_intervals function","uid":"8c4c3ac3b9ddced3","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 'save' function: negative","uid":"bfb03abe3203ecf1","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 all_fibonacci_numbers function","uid":"f253bf40e74f545d","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 is_prime function","uid":"6e4923e8771eebeb","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":"Testing 'sum_triangular_numbers' with zero","uid":"d237c739f4b0c138","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 set_alarm function","uid":"ea733e6b4760e89e","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 make_readable function","uid":"e63c100babc1267d","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":"You are given two angles -> find the 3rd.","uid":"20569c47774cf3c7","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 count_letters_and_digits function","uid":"a8ee14a37e5c3cb6","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":"Should return 'I smell a series!'","uid":"b8f5ce56991bbe59","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 increment_string function","uid":"117e19024dff1cfd","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":"test_random","uid":"664f2a2d41bf2bd8","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":"test_josephus_survivor","uid":"c264906d7bf954d5","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":"Test with one char only","uid":"2399abc94e3173da","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 remove_char function","uid":"1ae269d449ac7d5e","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":"String with mixed type of chars","uid":"eb60d649770273d6","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 the 'solution' function","uid":"741a61f0f9cb4c37","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":"747c525d425e0efa","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 'has_subpattern' (part 3) function","uid":"95e7a9865f127b46","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":"a and b are equal","uid":"f40d2270a86983a1","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":"Testing first_non_repeated function with various inputs","uid":"2c7af88777002151","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 Warrior class >>> bruce_lee","uid":"4941703c69aa6dd8","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":"Testing epidemic function","uid":"437936b48694b75d","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":"String with alphabet chars only","uid":"1938d829429abf54","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":"All chars are in lower case","uid":"f2a7bab28da55269","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 tickets function","uid":"765c2af6ca77e4e9","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 growing_plant function","uid":"91d86d4a26e41755","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":"Testing top_3_words function","uid":"4b28b33a131eefd9","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 agents_cleanup function","uid":"641fd537e33a59ae","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":"Wolf at the beginning of the queue","uid":"b9bf67d4df9c3970","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 shark function (negative)","uid":"b3ade822e686b250","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 check_for_factor function: positive flow","uid":"e6ed73d965a64ee5","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 'numericals' function","uid":"88851466a8ab5f44","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":"STesting enough function","uid":"210d6cbbe1051e7b","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_root function","uid":"e7b4bfe5c117b0b5","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":"Should return 'Publish!'","uid":"46de5298b06a2e8f","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":"a and b are equal","uid":"c730b39a7cf9843","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":"get_size function tests","uid":"68489cf8ea35171c","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 'generate_hashtag' function","uid":"c12e168b06d36fc7","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 stock_list function","uid":"296f86e34803d6c1","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 'count_sheeps' function: mixed list","uid":"1bcebf4fb624aad6","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":"Wolf at the end of the queue","uid":"56e6898f814c9a2c","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 easy_diagonal function","uid":"abf4f2031d384e78","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 calculate_damage function","uid":"98366b42396826ce","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 create_city_map function","uid":"472edec34fd4cc19","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":"Non consecutive number should be returned","uid":"8817b6c726fc2884","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 done_or_not function","uid":"b9086c98d6d71504","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":"test_starting_position_from_positives","uid":"e9cabde1f2c64760","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 'unique_in_order' function","uid":"d7ea74c17659aeca","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":"'multiply' function verification: lists with multiple digits","uid":"707862d33841a8ff","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":"test_solution_big","uid":"a83b85c2e341a76c","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 check_for_factor function: positive flow","uid":"861fc17326f7d16a","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":"'multiply' function verification with one element list","uid":"4dfeb434e28153fe","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 invite_more_women function (negative)","uid":"c3faad8d02b815fd","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 hoop_count function (negative test case)","uid":"d9bbc705106eff98","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 period_is_late function (positive)","uid":"8bd454f111efcd3e","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 Battle method","uid":"921715088233c4e7","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 Potion class","uid":"111dbc365b1f3e78","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 'factorial' function","uid":"4f2bbc07480f42a4","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 Calculator class","uid":"abed1b9a0913387d","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":"Negative test cases for gen_primes function testing","uid":"e2a8e239adf783da","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 'mix' function","uid":"584f8bdd5c7f3c16","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":"Testing easy_line function","uid":"d9e7bf55554cd705","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 shark function (positive)","uid":"83b34d0610fd83c6","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":"'multiply' function verification with empty list","uid":"c4d9587a3ff2d229","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 done_or_not function","uid":"2c53cc9448de91f2","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 string_to_array function","uid":"a20726936132e0f6","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 length function where head = None","uid":"1dd416b71393e4f8","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 two_decimal_places function","uid":"8782c11be4532248","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 digital_root function","uid":"fd85877ffe0d5722","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 format_duration","uid":"9f41894781b470ee","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":"'fix_the_meerkat function function verification","uid":"a0013817978e9f1b","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 toJadenCase function (positive)","uid":"ba2c8f43220f0c44","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":"Negative non consecutive number should be returned","uid":"6444bc59e77319f9","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":"Zero","uid":"4fc00e9c47abe8d0","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 'DefaultList' class: insert","uid":"e8a3e54ef5fe796f","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 'order' function","uid":"7312d30334dcfc0d","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 gap function","uid":"71dc0d8169aaad6f","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 first_non_repeating_letter function","uid":"31a691fa5a56c905","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":"Test with empty string","uid":"c7b8f329dd40406f","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 validSolution","uid":"7677af29e8a1671e","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 'thirt' function","uid":"24b32ad032525022","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 duplicate_encode function","uid":"fa69c95248558058","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 easy_line function exception message","uid":"7e36f3895c7e5ba3","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_smallest","uid":"5364b62b05552f1e","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 odd_row function","uid":"b7108f3053cbc60d","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 largestPower function","uid":"78450b76b8629fe6","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":"test_solution_medium","uid":"ac390c8ac17d8363","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 negative numbers","uid":"330a0128cd73780c","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 the 'group_cities' function","uid":"f293d4274aefdd43","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 sum_for_list function","uid":"30ac3ffad3316fea","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":"test_starting_position_from_negatives","uid":"ee3233c4ab89c7ec","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":"test_ips_between","uid":"624b364c1e1f6bc7","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 to_alternating_case function","uid":"24df9329b634133a","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 the 'find_missing_number' function","uid":"3460c7a02debe899","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 binary_to_string function","uid":"a22d4b8f003df599","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 invite_more_women function (positive)","uid":"24b136640bd96c68","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 Sudoku class","uid":"6de398181d9095ee","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 solve function","uid":"7ec3425d5267a222","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 'DefaultList' class: remove","uid":"7de68906bfa0f18","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 'solution' function","uid":"8fd9fc1a4b426539","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 likes function","uid":"168ffd09c766442f","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 'has_subpattern' (part 2) function","uid":"941c0037b0b98fcf","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 'longest_repetition' function","uid":"a25791815212e793","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 check_exam function","uid":"7369f3dde824b045","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":"goals function verification","uid":"80ba443311cb72ff","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 positive numbers","uid":"122ba025ebcea5dd","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":"Verify that greet function returns the proper message","uid":"12c07b407ce072f5","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 'has_subpattern' (part 1) function","uid":"76614b580d9bd7f8","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 length function","uid":"ed5a184ed941933a","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 permute_a_palindrome (negative)","uid":"7b584cbfaa9e2f14","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 alphanumeric function","uid":"d8b4a2733a1f48dc","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":"Positive test cases for is_prime function testing","uid":"497e27a7f74365e8","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":"Non square numbers (negative)","uid":"6aeb83ca0df8b3d8","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 'DefaultList' class: extend","uid":"9d50fe36fd5059ab","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 swap_values function","uid":"e6abe3c64e54cb9f","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":"Testing move_zeros function","uid":"1b9a7ef859e6370c","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 calculate function","uid":"7ed5e03fb846420f","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 checkchoose function","uid":"5392fbee850dfcf4","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 Decoding functionality","uid":"25b0f3d782a2ed03","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 hoop_count function (positive test case)","uid":"f801b2352cd357fc","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":"'multiply' function verification","uid":"97bb72caed16dfa0","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 litres function with various test inputs","uid":"53fa8d477eb42fd3","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_line_positive","uid":"9eac58d1342209e0","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 done_or_not function","uid":"1c33446eccccc45a","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 share_price function","uid":"a4637a157e542cb8","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":"'multiply' function verification with random list","uid":"dee6c3b3d0dc73e4","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":"28083507c1397923","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 password function","uid":"cf349408f505ed67","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":"Testing is_palindrome function","uid":"30ebc2ebd440c488","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":"Two smallest numbers in the start of the list","uid":"59a630e9120dbf2c","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 make_class function","uid":"44e584571b03be2","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 'sum_triangular_numbers' with big number as an input","uid":"72c86ca38c98258","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 make_upper_case function","uid":"a5467cc7a05b3546","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 'letter_count' function","uid":"9ef5212b94420bba","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 calc function","uid":"bae98e899f1ebab4","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 'vaporcode' function","uid":"d50213dc9ab240ff","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 take function","uid":"efdfaccb93c4c6b4","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 men_from_boys function","uid":"5815fdb3e38780e6","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":"String with no alphabet chars","uid":"a2f70229e4c52322","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 period_is_late function (negative)","uid":"c03eb686eb3e5a89","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":"test_permutations","uid":"ef2ebe964f1d2f5f","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":"AND logical operator","uid":"a618a1e47f6e349d","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 'count_sheeps' function: empty list","uid":"cb1927945c40fc3","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":"Non square numbers (negative)","uid":"acf18a2788645a5a","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":"powers function should return an array of unique numbers","uid":"58bbccd3c8af3c06","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 anagrams function","uid":"e480fe95093fd8e7","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 calc_combinations_per_row function","uid":"681eea057133a7e0","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 'feast' function","uid":"43c9c9efb1c04251","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 'summation' function","uid":"e65c2aee0db2b724","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 compute_ranks","uid":"9fea94ac2fbcf5b2","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":"XOR logical operator","uid":"94e103957a6e541c","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 'is_isogram' function","uid":"801881710b06074","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":"Testing spiralize function","uid":"f207a08521ff3dd3","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":"Test with regular string","uid":"11ff02c2df19530d","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":"842b955d145895ca","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 pig_it function","uid":"e0e01cfda157cf01","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 next_smaller function","uid":"a53e477b227bdf44","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 row_sum_odd_numbers function","uid":"cb7d8edff0d47cc5","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 toJadenCase function (negative)","uid":"36552864c04c1cf9","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":"Large lists","uid":"f6681b778f42e33c","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 the 'sort_array' function","uid":"fe040c66880e0b15","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 dirReduc function","uid":"f7f7ddd6c717f082","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 flatten function","uid":"9e3c99258a0c64df","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 permute_a_palindrome (empty string)","uid":"b9f8e7d93793c0ea","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 to_table function","uid":"fa5cd4b7c764fede","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 'save' function: positive","uid":"eb4d3d652c38eb3f","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 'solution' function","uid":"3400d1d080e82f75","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":"All chars are in mixed case","uid":"8bc93f78736d3a0e","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 'count_sheeps' function: positive flow","uid":"5a4c9eb3dcb32bf5","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 list_squared function","uid":"319c2fc51c0b8912","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":"13c4343c88a790e8","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":"test_solution_empty","uid":"61f84f81177cf38b","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":"String with no duplicate chars","uid":"a7599be0f5459a3d","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"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"},{"name":"12720-MainThread","children":[{"name":"Testing invite_more_women function (negative)","uid":"1d7a8665bbc3ca3a","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: pop","uid":"67c96b92db3f1ee1","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":"Test with empty string","uid":"2fb895d93acc0bab","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":"Testing calculate function","uid":"1b6850c9f0a02820","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 Walker class - position property from positive grids","uid":"c8da32e94b736fef","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 domain_name function","uid":"950acbfbefb81796","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":"test_solution_big","uid":"68a2b9760a533e02","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":"String with alphabet chars only","uid":"85613c3b6c6421c4","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 'sum_triangular_numbers' with zero","uid":"867b171e961cc6e3","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 'sum_triangular_numbers' with positive numbers","uid":"f6b3bc73a428b4db","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 set_alarm function","uid":"f631ad3e8bb02244","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":"Testing sum_for_list function","uid":"4b22647a9cdd2bef","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 tickets function","uid":"5c0c21f2226a901c","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":"Testing array_diff function","uid":"41a6baf598873d9b","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 check_for_factor function: positive flow","uid":"bd28741372a5f921","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":"Testing encrypt_this function","uid":"4ab01f4fc722fa2f","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 permute_a_palindrome (empty string)","uid":"c4f63c652fed664c","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":"Testing hoop_count function (positive test case)","uid":"a0332cc6a682faac","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":"get_size function tests","uid":"7eedfccbd9267527","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":"test_permutations","uid":"682ca0c47ecc45d4","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 shark function (negative)","uid":"42358797bb03e774","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":"test_line_negative","uid":"63ceea7fe946ff07","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 dir_reduc function","uid":"aa8525de66192fb3","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 stock_list function","uid":"64001087ec7aaf2b","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 Potion class","uid":"77a9a3d99a741f47","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 make_upper_case function","uid":"54122a7c8f1149b2","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 first_non_repeated function with various inputs","uid":"edb0e461adb94f5b","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 zero_fuel function","uid":"9ece4d55c6bd3b35","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":"Testing easy_diagonal function","uid":"711b3df283530a5b","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 'has_subpattern' (part 2) function","uid":"6f37cee94115c50c","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":"Wolf at the beginning of the queue","uid":"20301c2d6922300e","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":"Testing check_for_factor function: positive flow","uid":"dd53e52e1ab13306","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":"Testing the 'find_missing_number' function","uid":"1b7657273f039658","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 big number as an input","uid":"170ac645fcf8229c","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 length function","uid":"563a12b2ae66d10b","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 make_readable function","uid":"4ca3cfa2d2c9d074","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":"Non consecutive number should be returned","uid":"c359ea3a207c31eb","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":"Testing litres function with various test inputs","uid":"5bf0909978db7e30","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":"test_sequence","uid":"25a19c539143ffc2","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 check_root function","uid":"280752ec061c1457","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 Sudoku class","uid":"b0df4a2c5fe59a12","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":"Testing toJadenCase function (positive)","uid":"bc6803e227b56151","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":"Testing zeros function","uid":"6aa550180790876d","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":"Testing easy_line function exception message","uid":"13c5e35ef3c791a0","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 'solution' function","uid":"ec528f5ba60e276b","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":"Square numbers (positive)","uid":"d86332e2eabe60c3","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":"Negative numbers","uid":"88503943247ae8d5","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 row_sum_odd_numbers function","uid":"e2ed60d0ac53c788","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":"Testing 'shortest_job_first(' function","uid":"cbe27b4f7111917c","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":"'multiply' function verification with one element list","uid":"be4d78eb60a06aeb","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 period_is_late function (positive)","uid":"80d57c86b12a37c4","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 'thirt' function","uid":"1216cba41972f97c","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 hoop_count function (negative test case)","uid":"1bfd57b8cda6c028","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 the 'pyramid' function","uid":"c5cf96cca0ab2f52","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":"Two smallest numbers in the start of the list","uid":"843678da53c540e6","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":"'multiply' function verification with random list","uid":"90c1df398d2f201a","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":"Testing 'DefaultList' class: append","uid":"875e90b046ec092c","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":"a or b is negative","uid":"3719e4e464aa700e","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":"Testing permute_a_palindrome (positive)","uid":"288e814175ef5830","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 calc_combinations_per_row function","uid":"cad7274be200bf39","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 compute_ranks","uid":"1d02b155522c6119","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":"Testing monkey_count function","uid":"d9e0974c92057e94","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 check_exam function","uid":"832c94aac84bf09","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 'longest_repetition' function","uid":"5a88d917682070e","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":"test_smallest","uid":"998a460e800cbb2b","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":"String with no duplicate chars","uid":"a29d5673ddcf7e8e","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 Encoding functionality","uid":"5b904804aa9a6e53","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":"Verify that greet function returns the proper message","uid":"3714d7b27c33cf44","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":"test_triangle","uid":"d5d01c4fe30779a0","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":"OR logical operator","uid":"d493d526198a7a0a","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 'letter_count' function","uid":"3d09efb523dadc81","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 'has_subpattern' (part 1) function","uid":"70008c90c6552144","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":"Testing 'mix' function","uid":"d36e2f5707d2a6d3","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 toJadenCase function (negative)","uid":"5e8bbbba63c3bb75","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 'parts_sums' function","uid":"9665a188a4944ac6","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":"fix_the_meerkat function function verification","uid":"f7d9041670997ad6","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":"Testing 'vaporcode' function","uid":"a672dac8835c46c1","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 solution function","uid":"494bc5055e76bf71","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":"Testing list_squared function","uid":"b540357a03b90416","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":"Testing digital_root function","uid":"1b24a6e8f9065ccb","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":"Non square numbers (negative)","uid":"b9d60ed71764b7f4","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 next_smaller function","uid":"a329da92784fccae","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 password function","uid":"9054a710a823b80a","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 'save' function: negative","uid":"b4e0153f9704bfbb","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 'numericals' function","uid":"cd536df0700f3bd3","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 next_bigger function","uid":"eac7f340d73193c2","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":"Testing anagrams function","uid":"479b452abb7b813c","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"]},{"name":"Non is expected","uid":"ceb0c3e5ec48d975","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 solve function","uid":"23151e1dbdaacb09","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":"move function tests","uid":"dfae17616fb702cf","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 'count_sheeps' function: mixed list","uid":"b0a6327af7d064cf","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":"'multiply' function verification","uid":"d39d2cfc8c05650c","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 advice function","uid":"b3fa4d42fb1064a9","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":"Positive test cases for is_prime function testing","uid":"113e69c4ee0f071","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 easy_line function","uid":"156fc08ab7167514","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":"Testing 'count_sheeps' function: positive flow","uid":"510e078ddda4bd3c","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 'factorial' function","uid":"303f99106d04e0c7","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 'DefaultList' class: insert","uid":"3f678007c09ea2b5","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":"'multiply' function verification: lists with multiple digits","uid":"6209b3d491320ab9","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":"Testing number_of_sigfigs function","uid":"b3d5b9d863751a3f","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":"Testing top_3_words function","uid":"1f21450476aa4c9a","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 two_decimal_places function","uid":"d56667f6ac1424a3","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 valid_parentheses function","uid":"99e68c3ce0169a01","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 the 'sort_array' function","uid":"f6df3cbfc02e5094","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 'DefaultList' class: remove","uid":"a6a59cc8a0131a02","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":"Testing 'snail' function","uid":"b054542ab329d2ac","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 increment_string function","uid":"965e1d563752b7d3","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 all_fibonacci_numbers function","uid":"c948f5411c74f4a1","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":"a and b are equal","uid":"555a795f08de5e6c","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":"'multiply' function verification with empty list","uid":"74f816020df3559","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 Walker class - position property from negative grids","uid":"46ad98eaed470ea7","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":"Test that no_space function removes the spaces","uid":"97a2a77f06d4866c","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":"Positive test cases for gen_primes function testing","uid":"f3b1ea272cafb8c8","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":"Testing permute_a_palindrome (negative)","uid":"14cdd8696beec9a","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":"Testing largestPower function","uid":"1d756394430052ee","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":"Large lists","uid":"27e5ed0c95dfc112","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 agents_cleanup function","uid":"71a87e59b6648413","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":"Testing to_alternating_case function","uid":"baf923b3ced2f0a","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":"Testing validSolution","uid":"6d9aec252d158762","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":"powers function should return an array of unique numbers","uid":"15315242cf60389c","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 'order' function","uid":"ed0b0c9c45304a0b","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 'solution' function","uid":"b98e581eac70f265","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":"test_ips_between","uid":"777ba0c823c5a82a","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":"All chars are in upper case","uid":"22d82bbeb537c71a","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":"a an b are positive numbers","uid":"5703befafee18856","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 Warrior class >>> bruce_lee","uid":"10f08e5166368fc8","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 flatten function","uid":"50b7ff1fe714521a","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 Battle method","uid":"afca78445b5fa23f","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":"String alphabet chars and spaces","uid":"fd4ef8d041ff123e","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":"Negative test cases for gen_primes function testing","uid":"f585eec372fcc899","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":"String with no duplicate chars","uid":"1230413e064883bb","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 done_or_not function","uid":"5bc730ff95f1c205","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":"Testing spiralize function","uid":"aea343086c8abd68","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":"Testing move_zeros function","uid":"4df5cc35809df545","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":"Testing two_decimal_places function","uid":"fc6ce7cf48700667","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":"Testing calculate_damage function","uid":"e55f716219844475","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":"test_solution_basic","uid":"ee7ac80cd7bb8f8d","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 Warrior class >>> tom","uid":"f520dc2a3cdded7a","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 the 'group_cities' function","uid":"4a6083b6c2f5cc4b","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 create_city_map function","uid":"574cb5d6827dca2a","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 shark function (positive)","uid":"fe07573cd07e1ed8","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 'sum_triangular_numbers' with negative numbers","uid":"6650fdbb71631571","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 swap_values function","uid":"3785819940a9985f","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 shark function (positive)","uid":"95e685797940e119","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 done_or_not function","uid":"dc89f010c8fc632","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 remove_char function","uid":"5cbf19148d05755c","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":"Find the int that appears an odd number of times","uid":"38d84fb9239b5f2e","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 to_table function","uid":"d4f29bba77fd180","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 'summation' function","uid":"393b88e5ac625a50","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 checkchoose function","uid":"bf7dba429c84fe69","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":"Should return 'Fail!'s","uid":"9689f8dcf21c7e63","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 length function where head = None","uid":"6bf2acd0a0db42e5","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":"All chars are in mixed case","uid":"ed44c13e0e5a3954","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 period_is_late function (negative)","uid":"75a0786e7098fd84","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 duplicate_encode function","uid":"f30d62828063f744","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":"Should return 'I smell a series!'","uid":"749bcfd3f56dec1a","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 string_transformer function","uid":"34ca51906297ee6f","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":"Negative test cases for is_prime function testing","uid":"71f8f5b376b254cf","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":"Should return 'Publish!'","uid":"6c94325f55b8b56c","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 done_or_not function","uid":"e248ed6a4ff28aaa","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 format_duration","uid":"1e6c7d1c4189d9dd","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":"test_solution_medium","uid":"8271119e6077f333","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 share_price function","uid":"879748b1d447d0a9","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":"Wolf at the end of the queue","uid":"cfac23a989211fca","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 sum_of_intervals function","uid":"84ea3c3b3250393e","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 the 'solution' function","uid":"ee16b6e353dfd7cd","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":"String with no alphabet chars","uid":"5c0380ec075dfe06","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 decipher_this function","uid":"d86eb3695c9130c6","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":"goals function verification","uid":"6e173d8e5ff615be","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 'DefaultList' class: extend","uid":"d4941a73e9c93a57","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 Decoding functionality","uid":"532d8f53f92733e9","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":"test_solution_empty","uid":"880859ea02196db7","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 alphanumeric function","uid":"e78a552d574aad16","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 make_class function","uid":"a3ca7d068d3e7d87","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":"Testing 'save' function: positive","uid":"2ee59d9a8c304f3b","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":"Zero","uid":"31ab703bf65847e5","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 the 'unique_in_order' function","uid":"f0cf41ee7ec62257","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":"Wolf in the middle of the queue","uid":"c7165b4538deb01d","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":"Testing invite_more_women function (positive)","uid":"bded3837031681ca","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 'count_sheeps' function: empty list","uid":"91cb28173d925ce2","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 likes function","uid":"2e0eb113649e95e6","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":"Test with regular string","uid":"26a447cb7c15cb4e","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 calc function","uid":"a39b53ea962a31f1","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 'generate_hashtag' function","uid":"e5d70f307aec9205","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":"Testing binary_to_string function","uid":"d5360156ef396b6e","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":"Testing max_multiple function","uid":"710a5d14f0382e2f","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 epidemic function","uid":"c7c4d343c90ce082","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 gap function","uid":"c1447fd680942c58","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":"XOR logical operator","uid":"e71092ad871851c8","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":"Testing 'solution' function","uid":"cce644bc4fb0b16f","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 'has_subpattern' (part 3) function","uid":"4d2d9b386eb6ebf2","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 'DefaultList' class: __getitem__","uid":"a8e7ed0b9e8a05d4","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 first_non_repeating_letter function","uid":"e41edf94f198f2c7","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":"Testing 'greek_comparator' function","uid":"7e0fbf3b4505484b","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 string_to_array function","uid":"1ddf203d8a3c498d","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":"Testing 'count_sheeps' function: bad input","uid":"1e4e59f90ff35603","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":"Testing is_prime function","uid":"d3ab7c4bfc7d171f","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":"Testing century function","uid":"864737f712b002ec","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":"Negative non consecutive number should be returned","uid":"cf8fa237e5fc3101","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 men_from_boys function","uid":"294aa341a28271bb","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":"Square numbers (positive)","uid":"76b07a3b0b784bd3","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 is_palindrome function","uid":"c3e164f822b7bae","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 pig_it function","uid":"bb6e602a844f0715","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":"Test with one char only","uid":"4acb1c573ef8b7bb","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 'feast' function","uid":"51021ef4547a41f8","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 validate_battlefield function","uid":"aec2fb642901e92","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 take function","uid":"696e651c40149097","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":"a and b are equal","uid":"a75aa53086c60820","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":"You are given two angles -> find the 3rd.","uid":"97e1e8aa5714e13a","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 alphabet_war function","uid":"e776a97a9aadedfc","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":"test_line_positive","uid":"d8bbfaabd5a5300d","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":"Testing growing_plant function","uid":"4ea092b3f85ebfcb","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":"Testing 'is_isogram' function","uid":"7567c87108e55931","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":"String with mixed type of chars","uid":"f7ae1e1fc4481de3","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":"All chars are in lower case","uid":"5abe74757b94997a","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 count_letters_and_digits function","uid":"126c2e67245419a9","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":"AND logical operator","uid":"946a2bd47c8adfbc","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":"Non square numbers (negative)","uid":"fefeabf3e26a53bd","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 odd_row function","uid":"bb7d4237e3a80dd7","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 Calculator class","uid":"1a204aa873a93d86","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":"test_josephus_survivor","uid":"6aba04a431b7fd70","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":"STesting enough function","uid":"f1c17d8d31f590b0","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"]}],"uid":"f0ded5a934f7c37b7599afabf4ca35fc"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file diff --git a/allure-report/export/influxDbData.txt b/allure-report/export/influxDbData.txt index 06f157e0372..75f627fae73 100644 --- a/allure-report/export/influxDbData.txt +++ b/allure-report/export/influxDbData.txt @@ -1,13 +1,13 @@ -launch_status failed=0 1732428242000000000 -launch_status broken=0 1732428242000000000 -launch_status passed=215 1732428242000000000 -launch_status skipped=11 1732428242000000000 -launch_status unknown=0 1732428242000000000 -launch_time duration=7694722309 1732428242000000000 -launch_time min_duration=0 1732428242000000000 -launch_time max_duration=717 1732428242000000000 -launch_time sum_duration=981 1732428242000000000 -launch_time start=1724733474194 1732428242000000000 -launch_time stop=1732428196503 1732428242000000000 -launch_retries retries=437 1732428242000000000 -launch_retries run=226 1732428242000000000 +launch_status failed=0 1732764264000000000 +launch_status broken=0 1732764264000000000 +launch_status passed=216 1732764264000000000 +launch_status skipped=11 1732764264000000000 +launch_status unknown=0 1732764264000000000 +launch_time duration=8030747183 1732764264000000000 +launch_time min_duration=0 1732764264000000000 +launch_time max_duration=745 1732764264000000000 +launch_time sum_duration=1064 1732764264000000000 +launch_time start=1724733474194 1732764264000000000 +launch_time stop=1732764221377 1732764264000000000 +launch_retries retries=659 1732764264000000000 +launch_retries run=227 1732764264000000000 diff --git a/allure-report/export/prometheusData.txt b/allure-report/export/prometheusData.txt index c16e00b3bad..87e04bf58f5 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 215 +launch_status_passed 216 launch_status_skipped 11 launch_status_unknown 0 -launch_time_duration 7694722309 +launch_time_duration 8030747183 launch_time_min_duration 0 -launch_time_max_duration 717 -launch_time_sum_duration 981 +launch_time_max_duration 745 +launch_time_sum_duration 1064 launch_time_start 1724733474194 -launch_time_stop 1732428196503 -launch_retries_retries 437 -launch_retries_run 226 +launch_time_stop 1732764221377 +launch_retries_retries 659 +launch_retries_run 227 diff --git a/allure-report/history/duration-trend.json b/allure-report/history/duration-trend.json index 97317859ef2..33a9f28dc0c 100644 --- a/allure-report/history/duration-trend.json +++ b/allure-report/history/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}}] \ No newline at end of file +[{"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}},{"data":{"duration":59372266}}] \ No newline at end of file diff --git a/allure-report/history/history-trend.json b/allure-report/history/history-trend.json index 2dbdb8059b2..bce06c8cd99 100644 --- a/allure-report/history/history-trend.json +++ b/allure-report/history/history-trend.json @@ -1 +1 @@ -[{"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}},{"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}}] \ No newline at end of file +[{"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}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}}] \ No newline at end of file diff --git a/allure-report/history/history.json b/allure-report/history/history.json index e4041dd989f..cafc27a1621 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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":3},"items":[{"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}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":1},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"passed":0,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":1,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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}}]},"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":1,"unknown":0,"total":1},"items":[{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"939a8064e3d28ec85fadd67010b560ae":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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":3,"unknown":0,"total":3},"items":[{"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 +{"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":4,"unknown":0,"total":4},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"ed63cab09a5a21abc4139e6751f28e54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"b71e871d53b429aef63593ea1f41c8bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"ed6c1e5f0eb38874fc66b7fa53f68e12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"a5e357785cf7a1184adb35707a6c5d0c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"84d7f0a1c2a345b29fa2e222a5ed7ee5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"21739eee721a124a84e5414945df03e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"3181c0c2e1c9ba7b49a9f72369c7b0bb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b22abb76677627273b26e5c011545fb2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"94e7f25439d88c0d2dae964ef4a033cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"fb8836e996664af9461454bae0b6f79c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"f2e69721b9f301c2454fa419ac365031":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"8c287dae332df512fc4a9755020ffedc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"27ae718be00b2e9f316c37c338cb2894":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b223f14337b9b49b6e64d94d9479e857":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"92164414ad94bf1f5638230345fa606d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"ecc1f7419b2f77621f5c909f1d0df9a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"d2c9cdacf9fca346eec2858cd44275e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"334b612b45e8a87e83a3482704f4ba8a":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"aaef6593296fd19246b6caa71f38ecab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"dc079813fc553d210a3def6568230a25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"aa9027133335818366e5c0c91c936279":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"9f2093620517aae286b85ccc9f40b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"12f0f975ccfd38a2860e83db6017e19f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"6738a51245363d65952509f12ebc1af8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"a2426de0b4808429aff451df95bbdc21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b49a06236d1af1a464e84083e52f6b22":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"d8680aad50eda2b69694580584e0455f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"e2edeca1f212268fe8082320adfcc98c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"c8ef830d4279bee02e53bf3a04349c35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"9af049da90f73c206ca7e8b1362e502f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"0e1169325045c4d7d4ed6982c76387ed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"135e62f837ca5fe30ddfd2ad875e089b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"c060fb3e36725c887b4b4edce83f7142":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"e4b3b27b629bbd5f25abab144f66de37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"2972663ca9fa4b4f0e6ea69060a464d5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"47e8749fb79b5ff765dc32c3b5efb2a3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"026739760bca73e921f8e5d35d9329cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":1,"unknown":0,"total":1},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"e1a83b5e7221ab7611b800cba5c64efa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"3d4d9d606fbf24bad8abb0f0f85e6130":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"4d7a6b080aa8dcf06d68a1f957a8e465":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"9cff2d5d4d73fbc92b1c7c29d738384f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"124f2add699f3e2269c311afae219c6e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"7c789f6ee990c99f027ff5b8c32573fd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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 1d4c64c6d1a..77412d967df 100644 --- a/allure-report/history/retry-trend.json +++ b/allure-report/history/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}}] \ No newline at end of file +[{"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}},{"data":{"run":209,"retry":4447}}] \ No newline at end of file diff --git a/allure-report/index.html b/allure-report/index.html index 25bb1bde99d..179c93853ca 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': '16903a08-160a-4ff7-ab96-d6d4dc98f23a', + 'reportUuid': 'd656bfaf-c85c-445e-a29f-7265fb22ae98', 'single_file': false }); diff --git a/allure-report/widgets/duration-trend.json b/allure-report/widgets/duration-trend.json index 97317859ef2..33a9f28dc0c 100644 --- a/allure-report/widgets/duration-trend.json +++ b/allure-report/widgets/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}},{"data":{"duration":5213}}] \ No newline at end of file +[{"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}},{"data":{"duration":59372266}}] \ No newline at end of file diff --git a/allure-report/widgets/duration.json b/allure-report/widgets/duration.json index 8345194bedf..1b376458d81 100644 --- a/allure-report/widgets/duration.json +++ b/allure-report/widgets/duration.json @@ -1 +1 @@ -[{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"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 2dbdb8059b2..bce06c8cd99 100644 --- a/allure-report/widgets/history-trend.json +++ b/allure-report/widgets/history-trend.json @@ -1 +1 @@ -[{"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}},{"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}}] \ No newline at end of file +[{"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}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}}] \ No newline at end of file diff --git a/allure-report/widgets/retry-trend.json b/allure-report/widgets/retry-trend.json index 1d4c64c6d1a..77412d967df 100644 --- a/allure-report/widgets/retry-trend.json +++ b/allure-report/widgets/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}}] \ No newline at end of file +[{"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}},{"data":{"run":209,"retry":4447}}] \ No newline at end of file diff --git a/allure-report/widgets/severity.json b/allure-report/widgets/severity.json index 168cb97f84e..ac031fc5f7c 100644 --- a/allure-report/widgets/severity.json +++ b/allure-report/widgets/severity.json @@ -1 +1 @@ -[{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"status":"passed","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"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 8345194bedf..1b376458d81 100644 --- a/allure-report/widgets/status-chart.json +++ b/allure-report/widgets/status-chart.json @@ -1 +1 @@ -[{"uid":"b897401968bf0d8","name":"Zero","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","severity":"normal"},{"uid":"a770e6ac7d91604a","name":"Testing 'save' function: positive","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","severity":"normal"},{"uid":"345a3bae73357330","name":"Testing period_is_late function (negative)","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","severity":"normal"},{"uid":"d820d165ec4b4b72","name":"Testing Potion class","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","severity":"normal"},{"uid":"62ef482e2cb3493b","name":"Positive test cases for is_prime function testing","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","severity":"critical"},{"uid":"371c743cf6f64f1d","name":"Testing shark function (positive)","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"status":"passed","severity":"normal"},{"uid":"e78e70d10bce7cf5","name":"Testing Calculator class","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","severity":"normal"},{"uid":"f727d28e098b30b7","name":"Testing advice function","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","severity":"normal"},{"uid":"fc455123cb448d3e","name":"Testing the 'sort_array' function","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1a7aeb13172d1f0","name":"Testing to_alternating_case function","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c6c8c712bf1892f","name":"Testing 'is_isogram' function","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffa13a74003ae703","name":"Testing 'vaporcode' function","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","severity":"normal"},{"uid":"67a957cc2815c6ee","name":"Testing make_readable function","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c3a8d947ad77b59","name":"Square numbers (positive)","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"status":"passed","severity":"normal"},{"uid":"1265911f14bcd919","name":"Testing done_or_not function","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"status":"passed","severity":"normal"},{"uid":"73f30fbb9798a5d5","name":"goals function verification","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"status":"passed","severity":"normal"},{"uid":"6e3ab906ce5621b5","name":"Testing done_or_not function","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da01589d3299948","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","severity":"normal"},{"uid":"893dcbf3da59eb02","name":"STesting enough function","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","severity":"normal"},{"uid":"b673d7ca3af16ae5","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de3f7cf44554fd8","name":"move function tests","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","severity":"normal"},{"uid":"da02dcc2ce3c4d85","name":"'multiply' function verification with empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b9b6a14fc4bd1dd7","name":"Test with empty string","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","severity":"normal"},{"uid":"47cc31f6ebf12c13","name":"Testing toJadenCase function (negative)","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b89947e3a3ec46d","name":"Testing domain_name function","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","severity":"normal"},{"uid":"2baefc3521a1da2a","name":"a an b are positive numbers","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","severity":"normal"},{"uid":"b2705032891531e8","name":"Testing zero_fuel function","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"status":"passed","severity":"normal"},{"uid":"1aaf298f74019608","name":"Negative non consecutive number should be returned","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","severity":"normal"},{"uid":"f701011259e850f6","name":"Test with regular string","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","severity":"normal"},{"uid":"f7d2073500029121","name":"a or b is negative","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff776776c9a8991f","name":"Non square numbers (negative)","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"status":"passed","severity":"normal"},{"uid":"973452fbe07efc18","name":"Should return 'Fail!'s","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b15d7c039eaff13","name":"Testing set_alarm function","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ca78efd90ffa643","name":"Testing remove_char function","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea5418b10cdf416","name":"Testing dir_reduc function","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4849e99633e4676","name":"Testing 'greek_comparator' function","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","severity":"normal"},{"uid":"a76c277b6c0b5940","name":"Testing Walker class - position property from negative grids","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","severity":"critical"},{"uid":"4942ac4be65ef1b0","name":"test_permutations","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3e68653192929d9b","name":"Square numbers (positive)","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","severity":"normal"},{"uid":"614133ca9c69e105","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","severity":"normal"},{"uid":"8215947106021b54","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","severity":"normal"},{"uid":"56da494ae1701253","name":"Testing easy_diagonal function","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"status":"passed","severity":"normal"},{"uid":"56ad7c473898c46d","name":"Testing growing_plant function","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","severity":"normal"},{"uid":"900a2cbb7155295","name":"a and b are equal","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","severity":"normal"},{"uid":"413fd3063d3e7dc4","name":"Testing Walker class - position property from positive grids","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"status":"passed","severity":"critical"},{"uid":"1c8c3b6600a20e75","name":"Testing permute_a_palindrome (negative)","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","severity":"normal"},{"uid":"8b3214317e10e87f","name":"Testing number_of_sigfigs function","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","severity":"normal"},{"uid":"191f183f3ba0c8ea","name":"Testing the 'unique_in_order' function","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","severity":"normal"},{"uid":"877a76cbb202d7b3","name":"Testing 'summation' function","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","severity":"normal"},{"uid":"1700dd3f253e8636","name":"Testing Warrior class >>> tom","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"status":"passed","severity":"normal"},{"uid":"de0aa71757f8badf","name":"Testing calc_combinations_per_row function","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","severity":"normal"},{"uid":"a57a3497f4402b67","name":"test_solution_basic","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"status":"skipped","severity":"normal"},{"uid":"36685d778f756fae","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"status":"passed","severity":"normal"},{"uid":"772347d4d5d65952","name":"'multiply' function verification with one element list","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"status":"passed","severity":"normal"},{"uid":"2e46c970e553e301","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","severity":"normal"},{"uid":"a076808e43574371","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"27f5e11d20d2d96c","name":"Testing first_non_repeated function with various inputs","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c77d97bc41048ff","name":"Positive test cases for gen_primes function testing","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","severity":"critical"},{"uid":"2bfddef765c09569","name":"Testing array_diff function","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e8741eae0b44214","name":"Testing next_bigger function","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","severity":"normal"},{"uid":"dc1c20798f5a8f0a","name":"Testing check_root function","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","severity":"normal"},{"uid":"d04b40a520c97bdd","name":"Should return 'I smell a series!'","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"status":"passed","severity":"normal"},{"uid":"777edc280c74020d","name":"Testing 'thirt' function","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1cbd478c753b1e","name":"Wolf at the beginning of the queue","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c0b01ada3a3f14e","name":"Should return 'Publish!'","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","severity":"normal"},{"uid":"35f08e300f5635d6","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"status":"passed","severity":"normal"},{"uid":"fb237eeb673713e3","name":"Testing likes function","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cc2dcb2d1d8eb43","name":"Testing 'mix' function","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","severity":"normal"},{"uid":"e99ca5757342b866","name":"Testing move_zeros function","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9328098007f6ade","name":"Testing 'DefaultList' class: pop","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","severity":"normal"},{"uid":"a349732eb44f62b9","name":"Testing 'solution' function","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","severity":"normal"},{"uid":"2655a1e6934b1850","name":"Testing 'DefaultList' class: append","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cd4eeb8a4b79d6b","name":"Testing agents_cleanup function","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"status":"passed","severity":"normal"},{"uid":"91c9b008755c7351","name":"Testing validSolution","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"status":"passed","severity":"normal"},{"uid":"9f9422c1f71252b6","name":"Testing sum_of_intervals function","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3395496d8bde803","name":"Testing solution function","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"status":"passed","severity":"normal"},{"uid":"c7c4b4c39dca1f7a","name":"Testing alphanumeric function","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","severity":"normal"},{"uid":"4750955362b24610","name":"Testing share_price function","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","severity":"normal"},{"uid":"7087926d4a83e9d4","name":"Testing all_fibonacci_numbers function","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd11ee5929c6c53a","name":"Testing validate_battlefield function","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","severity":"normal"},{"uid":"71e40623077306da","name":"Non is expected","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"status":"passed","severity":"normal"},{"uid":"7560669431ea4aa8","name":"Testing list_squared function","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"status":"passed","severity":"normal"},{"uid":"7e997a5018ff0710","name":"Testing 'longest_repetition' function","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac379271ec16d5ad","name":"Testing 'parts_sums' function","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","severity":"normal"},{"uid":"54bb63fb3736b8ae","name":"Negative test cases for is_prime function testing","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","severity":"critical"},{"uid":"ac136a3215f7ad6c","name":"Testing Battle method","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b5127c91b9deeb6","name":"Testing 'generate_hashtag' function","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","severity":"normal"},{"uid":"f85ab0d3a8429db7","name":"Testing top_3_words function","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"status":"passed","severity":"normal"},{"uid":"b36380d1077ce20b","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3f258cf327b2a","name":"Testing make_class function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","severity":"normal"},{"uid":"649728966aa92b06","name":"Testing max_multiple function","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","severity":"normal"},{"uid":"c42292a9c36c46f3","name":"test_solution_big","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e69093187fd70d56","name":"Negative numbers","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","severity":"normal"},{"uid":"60180807c3815756","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"status":"passed","severity":"normal"},{"uid":"af82a0c3b0cef265","name":"Testing the 'solution' function","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ea6e5a2b5515469","name":"'multiply' function verification with random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","severity":"normal"},{"uid":"25fd6f6c5cfe2b58","name":"Testing the 'group_cities' function","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"status":"passed","severity":"normal"},{"uid":"3ae9a46b9a1e7c40","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","severity":"normal"},{"uid":"ef905ece7eeedc77","name":"Testing the 'pyramid' function","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"status":"passed","severity":"normal"},{"uid":"fbd37fe4a302b125","name":"Testing calculate function","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"status":"passed","severity":"normal"},{"uid":"751027d0ac0cc021","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","severity":"normal"},{"uid":"461527a27e50c04a","name":"Testing 'snail' function","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","severity":"normal"},{"uid":"43e7aaf3ed9f3ed0","name":"Testing anagrams function","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","severity":"normal"},{"uid":"533bf937be1aa466","name":"Testing flatten function","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","severity":"normal"},{"uid":"9dd5714486b51753","name":"Testing Encoding functionality","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","severity":"normal"},{"uid":"405cf642fa0cf7c1","name":"Large lists","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7e963fd1c95dafe","name":"Testing century function","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac8683bc2703e398","name":"Test with one char only","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","severity":"normal"},{"uid":"5eca272b3b393557","name":"Testing next_smaller function","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","severity":"normal"},{"uid":"a224a931a5567f85","name":"Testing 'shortest_job_first(' function","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"status":"passed","severity":"normal"},{"uid":"9fa9266ff3a1c464","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"9800852f4c3c1957","name":"Testing check_exam function","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","severity":"normal"},{"uid":"d121ae5a75cc69b9","name":"Testing hoop_count function (positive test case)","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","severity":"normal"},{"uid":"571176bf000b455b","name":"test_solution_medium","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"status":"skipped","severity":"normal"},{"uid":"593778a5ba99d447","name":"Testing easy_line function exception message","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","severity":"normal"},{"uid":"db6f47361aae7a53","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cc0844ab5ecf216","name":"Testing format_duration","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","severity":"normal"},{"uid":"5f6f3bc16b3488d6","name":"Testing epidemic function","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"status":"passed","severity":"normal"},{"uid":"be8f9e1d393606ac","name":"Testing period_is_late function (positive)","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c241cc9403723af","name":"fix_the_meerkat function function verification","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","severity":"normal"},{"uid":"8804093a9c3b17d","name":"Testing Decoding functionality","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"status":"passed","severity":"normal"},{"uid":"ea40d4fff96687ff","name":"Two smallest numbers in the start of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","severity":"normal"},{"uid":"d19efceb39f40f4f","name":"Testing solve function","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","severity":"normal"},{"uid":"bd4541daca134967","name":"XOR logical operator","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"status":"passed","severity":"normal"},{"uid":"21f08ae936e1de27","name":"Testing length function where head = None","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"status":"passed","severity":"normal"},{"uid":"15f47b991f284575","name":"Testing Sudoku class","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c5c32029e742eac","name":"All chars are in lower case","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dde6031964dc28f","name":"Testing spiralize function","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"status":"passed","severity":"critical"},{"uid":"a77a517a493b3eb2","name":"AND logical operator","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","severity":"normal"},{"uid":"368118acc0dadb7d","name":"OR logical operator","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"status":"passed","severity":"normal"},{"uid":"3b89778e0f9a0b66","name":"Testing length function","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"status":"passed","severity":"normal"},{"uid":"62e01ffb20b661b5","name":"Testing count_letters_and_digits function","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5177f712a8be6da","name":"String with no duplicate chars","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"status":"passed","severity":"normal"},{"uid":"70963d87150b1b7f","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd6fef8ab37d71ba","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","severity":"normal"},{"uid":"87dc5713a007f1d7","name":"String with no duplicate chars","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","severity":"normal"},{"uid":"5fabad9204d0747c","name":"Testing 'DefaultList' class: extend","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"status":"passed","severity":"normal"},{"uid":"f91e38b8c375d31c","name":"Testing calculate_damage function","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","severity":"normal"},{"uid":"e051944b31d54c14","name":"Testing the 'find_missing_number' function","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7243d74fc99fb8b","name":"test_line_positive","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2b76b55d8c8f82d1","name":"Testing create_city_map function","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"status":"passed","severity":"normal"},{"uid":"284ee1b80abfdb89","name":"'multiply' function verification","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","severity":"normal"},{"uid":"a405e7d50def0411","name":"Testing permute_a_palindrome (positive)","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"status":"passed","severity":"normal"},{"uid":"c77f51e83226296c","name":"Testing calc function","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","severity":"normal"},{"uid":"158f20a061140f84","name":"Non square numbers (negative)","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","severity":"normal"},{"uid":"196d34645221ebb4","name":"All chars are in upper case","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","severity":"normal"},{"uid":"93ceeb95a47fabbf","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"status":"passed","severity":"normal"},{"uid":"11fa683d801b6c42","name":"Testing swap_values function","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","severity":"normal"},{"uid":"784b6f629ce5c547","name":"Testing two_decimal_places function","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3d1eec0ca08f2cd","name":"Testing digital_root function","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa08a95162404297","name":"Testing sum_for_list function","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"status":"passed","severity":"normal"},{"uid":"4aa537b5c88883a7","name":"Wolf in the middle of the queue","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"status":"passed","severity":"normal"},{"uid":"1532fae746d0bb3a","name":"Testing 'DefaultList' class: insert","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"status":"passed","severity":"normal"},{"uid":"b67813f1cae4659e","name":"Testing shark function (negative)","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"status":"passed","severity":"normal"},{"uid":"72a7c9402c254937","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf71a425c4796a9","name":"Testing first_non_repeating_letter function","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3db9caa12a5149e","name":"Testing is_palindrome function","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","severity":"normal"},{"uid":"c58cb7ae6e5a9993","name":"test_smallest","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"status":"skipped","severity":"normal"},{"uid":"44c1e35d7a7b2adb","name":"Testing gap function","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"status":"passed","severity":"normal"},{"uid":"996ab105867adbc9","name":"test_line_negative","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"status":"skipped","severity":"normal"},{"uid":"acdec238a53c10e1","name":"Testing 'numericals' function","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ffa72675847f113","name":"test_triangle","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","severity":"normal"},{"uid":"749e2bcfe9e98a99","name":"Testing invite_more_women function (positive)","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"status":"passed","severity":"normal"},{"uid":"6076e8e1aaaa11ab","name":"Testing pig_it function","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"status":"passed","severity":"normal"},{"uid":"1b6b658aae9aa73c","name":"Testing is_prime function","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","severity":"normal"},{"uid":"59b1922c33f3ac65","name":"Testing odd_row function","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","severity":"normal"},{"uid":"bcc8c6b28fb32dd0","name":"Testing string_transformer function","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","severity":"normal"},{"uid":"74b0969e7db4effb","name":"Testing tickets function","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a386a153d4cde6","name":"Testing encrypt_this function","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a2ae93193e5280a","name":"Testing litres function with various test inputs","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","severity":"normal"},{"uid":"256a10c9792b808f","name":"Testing 'letter_count' function","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","severity":"normal"},{"uid":"c580e79550c46f66","name":"Non consecutive number should be returned","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","severity":"normal"},{"uid":"40c938f8f83f34f7","name":"Testing to_table function","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","severity":"normal"},{"uid":"98c161ccba9924bd","name":"get_size function tests","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","severity":"normal"},{"uid":"984af3d5d8056be9","name":"Testing string_to_array function","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","severity":"normal"},{"uid":"698c99dcac4b0d93","name":"Verify that greet function returns the proper message","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","severity":"normal"},{"uid":"9521eb418a2faa99","name":"Testing 'solution' function","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4045abc0bf075d90","name":"Testing 'feast' function","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd76819b5fd836d3","name":"Negative test cases for gen_primes function testing","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","severity":"critical"},{"uid":"a3370192ce6dd676","name":"String with no alphabet chars","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","severity":"normal"},{"uid":"3529b67f8df1184b","name":"Testing men_from_boys function","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"status":"passed","severity":"normal"},{"uid":"d562abb8385a61c5","name":"Testing two_decimal_places function","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2ea4d6d64dc027a","name":"Find the int that appears an odd number of times","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ea1e8d078b774a7","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"419686fbcf063822","name":"Testing row_sum_odd_numbers function","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","severity":"normal"},{"uid":"70eff3ae24ccc67a","name":"test_josephus_survivor","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"status":"skipped","severity":"normal"},{"uid":"33e90a465d3b6e95","name":"All chars are in mixed case","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","severity":"normal"},{"uid":"34a84f898de954b5","name":"Testing checkchoose function","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","severity":"normal"},{"uid":"711928de75b599ba","name":"Testing 'factorial' function","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2104b5fa1d29b","name":"Testing binary_to_string function","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5b1f301926fe23","name":"test_ips_between","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"status":"skipped","severity":"normal"},{"uid":"607f84fe70696eb5","name":"Testing done_or_not function","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b8219eb37520d2d","name":"Testing 'solution' function","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","severity":"normal"},{"uid":"dde0d2c7fdfdde63","name":"Testing monkey_count function","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b395c1683e127a4","name":"a and b are equal","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","severity":"normal"},{"uid":"cfaf892be75c5d35","name":"Testing increment_string function","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","severity":"normal"},{"uid":"56cce31bdf350ac7","name":"Testing 'save' function: negative","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ffc43ce0a9f46c9","name":"String with mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","severity":"normal"},{"uid":"2951c359ba3fd421","name":"Testing shark function (positive)","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"status":"passed","severity":"normal"},{"uid":"a10876da94fb2b4f","name":"You are given two angles -> find the 3rd.","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b6d0f7b70ff35380","name":"test_sequence","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"status":"skipped","severity":"normal"},{"uid":"28c03a6c5cc24cef","name":"Testing easy_line function","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"status":"passed","severity":"normal"},{"uid":"8c8d43e9d38910da","name":"Wolf at the end of the queue","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","severity":"normal"},{"uid":"fda81d5edcbfeda5","name":"Testing take function","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","severity":"normal"},{"uid":"b03752c3145720e6","name":"Testing invite_more_women function (negative)","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d6c6bb6b47e11d4","name":"Testing toJadenCase function (positive)","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","severity":"normal"},{"uid":"6c70ddf45fea2887","name":"Testing hoop_count function (negative test case)","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"status":"passed","severity":"normal"},{"uid":"12f0442ef33f054e","name":"String with alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d8c14adba840438","name":"Testing alphabet_war function","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","severity":"normal"},{"uid":"d7d1e3c0f9370311","name":"Testing compute_ranks","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","severity":"normal"},{"uid":"898b5d5677e24adf","name":"Testing 'order' function","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b7cb5a27235272","name":"Testing check_for_factor function: positive flow","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"status":"passed","severity":"normal"},{"uid":"9267ea7150c527ef","name":"Testing stock_list function","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5a113fbe50e74ce","name":"test_solution_empty","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"status":"skipped","severity":"normal"},{"uid":"3eea5577d98c581f","name":"String alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","severity":"normal"},{"uid":"62141a9b45e036f9","name":"Testing duplicate_encode function","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","severity":"normal"},{"uid":"d4a0809a7647965","name":"Testing decipher_this function","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","severity":"normal"},{"uid":"5d373bcba925975c","name":"Testing valid_parentheses function","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa3ebaa27581f198","name":"Testing make_upper_case function","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","severity":"normal"},{"uid":"239a317b6e090fd8","name":"Testing 'DefaultList' class: remove","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","severity":"normal"},{"uid":"6660f839d8534ee2","name":"powers function should return an array of unique numbers","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08b527d12d4e4df","name":"Testing largestPower function","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","severity":"normal"},{"uid":"27d124696efa8c6c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"status":"passed","severity":"normal"},{"uid":"92a7ecb29f4704b1","name":"Test that no_space function removes the spaces","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","severity":"normal"},{"uid":"2b98fb3b88f75199","name":"Testing zeros function","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ce6881896e2614d","name":"Testing password function","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"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 329eff88c3f..ab62e1c781f 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":110,"unknown":0,"total":110}},{"uid":"7f519f47c947401fdd71874cbd1d477a","name":"Novice","statistic":{"failed":0,"broken":0,"skipped":8,"passed":78,"unknown":0,"total":86}},{"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 +{"total":5,"items":[{"uid":"55eafda7393c07a0cb8bf5a36609ee53","name":"Beginner","statistic":{"failed":0,"broken":0,"skipped":0,"passed":110,"unknown":0,"total":110}},{"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 18d62a896c0..74bc6ca48ef 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":11,"passed":215,"unknown":0,"total":226},"time":{"start":1724733474194,"stop":1732428196503,"duration":7694722309,"minDuration":0,"maxDuration":717,"sumDuration":981}} \ No newline at end of file +{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":0,"skipped":11,"passed":216,"unknown":0,"total":227},"time":{"start":1724733474194,"stop":1732764221377,"duration":8030747183,"minDuration":0,"maxDuration":745,"sumDuration":1064}} \ No newline at end of file From ab7708c20abc452eeefb7139231f292bff40f301 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 27 Nov 2024 19:48:37 -0800 Subject: [PATCH 273/873] Update README.md Error: kyu_6/valid_braces/README.md:17:81 MD013/line-length Line length [Expected: 80; Actual: 88] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md --- kyu_6/valid_braces/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/README.md b/kyu_6/valid_braces/README.md index 53a1b79a2f8..617d63a3dd6 100644 --- a/kyu_6/valid_braces/README.md +++ b/kyu_6/valid_braces/README.md @@ -14,7 +14,8 @@ brackets and curly braces: `()[]{}`. ## What is considered Valid? -A string of braces is considered valid if all braces are matched with the correct brace. +A string of braces is considered valid if all braces are matched with the +correct brace. Examples: From 86965852f1ee9b49f5a87e8c2529173f95dc4e2a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 21:36:15 -0800 Subject: [PATCH 274/873] Valid Parentheses --- kyu_7/README.md | 69 +++++++++++++++-------------- kyu_7/valid_parentheses/__init__.py | 0 2 files changed, 35 insertions(+), 34 deletions(-) create mode 100644 kyu_7/valid_parentheses/__init__.py diff --git a/kyu_7/README.md b/kyu_7/README.md index fe6f79dcd11..4635eace2cc 100644 --- a/kyu_7/README.md +++ b/kyu_7/README.md @@ -15,39 +15,40 @@ rank - the harder the kata the faster you advance. ### List of Completed Kata (Python 3) -| No. | Puzzle/Kata Name | Solution / GitHub Link | -|-----|:--------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------:| -| 1 | [Always perfect](https://www.codewars.com/kata/55f3facb78a9fd5b26000036) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/always_perfect) | -| 2 | [Beginner Series #3 Sum of Numbers](https://www.codewars.com/kata/55f2b110f61eb01779000053) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/beginner_series_sum_of_numbers) | -| 2 | [Coloured Triangles](https://www.codewars.com/kata/5a25ac6ac5e284cfbe000111) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/coloured_triangles) | -| 3 | [Disemvowel Trolls](https://www.codewars.com/kata/52fba66badcd10859f00097e) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/disemvowel_trolls) | -| 4 | [Factorial](https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/factorial) | -| 5 | [Computer problem series #1](https://www.codewars.com/kata/5d49c93d089c6e000ff8428c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/fill_the_hard_disk_drive) | -| 6 | [Fun with lists: length](https://www.codewars.com/kata/581e476d5f59408553000a4b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/fun_with_lists_length) | -| 7 | [Jaden Casing Strings](https://www.codewars.com/kata/5390bac347d09b7da40006f6) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/jaden_casing_strings) | -| 8 | [Make Class](https://www.codewars.com/kata/5d774cfde98179002a7cb3c8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/make_class) | -| 9 | [Maximum Multiple](https://www.codewars.com/kata/5aba780a6a176b029800041c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/maximum_multiple) | -| 10 | [Password validator](https://www.codewars.com/kata/56a921fa8c5167d8e7000053) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/password_validator) | -| 11 | [Powers of 3](https://www.codewars.com/kata/57be674b93687de78c0001d9) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/powers_of_3) | -| 12 | [Pull your words together, man!](https://www.codewars.com/kata/59ad7d2e07157af687000070) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/pull_your_words_together_man) | -| 13 | [The museum of incredible dull things](https://www.codewars.com/kata/563cf89eb4747c5fb100001b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/remove_the_minimum) | -| 14 | [Share price](https://www.codewars.com/kata/5603a4dd3d96ef798f000068) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/share_prices) | -| 15 | [Significant Figures Challenge](https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/significant_figures) | -| 16 | [Simple Fun #152: Invite More Women](https://www.codewars.com/kata/58acfe4ae0201e1708000075) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/simple_fun_152) | -| 17 | [Sort Out The Men From Boys](https://www.codewars.com/kata/5af15a37de4c7f223e00012d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sort_out_the_men_from_boys) | -| 18 | [Substituting Variables Into Strings: Padded Numbers](https://www.codewars.com/kata/51c89385ee245d7ddf000001) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/substituting_variables_into_strings_padded_numbers) | -| 19 | [Sum of powers of 2](https://www.codewars.com/kata/5d9f95424a336600278a9632) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_powers_of_2) | -| 20 | [Sum of Triangular Numbers](https://www.codewars.com/kata/580878d5d27b84b64c000b51) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_triangular_numbers) | -| 21 | [Sum of two lowest positive integers](https://www.codewars.com/kata/558fc85d8fd1938afb000014) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_two_lowest_int) | -| 22 | [The First Non Repeated Character In A String](https://www.codewars.com/kata/570f6436b29c708a32000826) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/the_first_non_repeated_character_in_string) | -| 23 | [V A P O R C O D E](https://www.codewars.com/kata/5966eeb31b229e44eb00007a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/vaporcode) | -| 24 | [You're a square](https://www.codewars.com/kata/54c27a33fb7da0db0100040e) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/you_are_square) | -| 25 | [Find the longest gap!](https://www.codewars.com/kata/55b86beb1417eab500000051) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/find_the_longest_gap) | -| 26 | [Simple Fun #74: Growing Plant](https://www.codewars.com/kata/58941fec8afa3618c9000184) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/growing_plant) | -| 27 | [Basic Math (Add or Subtract)](https://www.codewars.com/kata/5809b62808ad92e31b000031) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/basic_math_add_or_subtract) | -| 28 | [Sum of odd numbers](https://www.codewars.com/kata/55fd2d567d94ac3bc9000064) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_odd_numbers) | -| 29 | [Help Bob count letters and digits](https://www.codewars.com/kata/5738f5ea9545204cec000155) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/help_bob_count_letters_and_digits) | -| 30 | [Make Class](https://www.codewars.com/kata/5d774cfde98179002a7cb3c8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/make_class) | -| 30 | [Easy Line](https://www.codewars.com/kata/56e7d40129035aed6c000632) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/easy_line) | +| No. | Puzzle/Kata Name | Solution / GitHub Link | +|-----|:-------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------:| +| 1 | [Always perfect](https://www.codewars.com/kata/55f3facb78a9fd5b26000036) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/always_perfect) | +| 2 | [Beginner Series #3 Sum of Numbers](https://www.codewars.com/kata/55f2b110f61eb01779000053) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/beginner_series_sum_of_numbers) | +| 2 | [Coloured Triangles](https://www.codewars.com/kata/5a25ac6ac5e284cfbe000111) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/coloured_triangles) | +| 3 | [Disemvowel Trolls](https://www.codewars.com/kata/52fba66badcd10859f00097e) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/disemvowel_trolls) | +| 4 | [Factorial](https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/factorial) | +| 5 | [Computer problem series #1](https://www.codewars.com/kata/5d49c93d089c6e000ff8428c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/fill_the_hard_disk_drive) | +| 6 | [Fun with lists: length](https://www.codewars.com/kata/581e476d5f59408553000a4b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/fun_with_lists_length) | +| 7 | [Jaden Casing Strings](https://www.codewars.com/kata/5390bac347d09b7da40006f6) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/jaden_casing_strings) | +| 8 | [Make Class](https://www.codewars.com/kata/5d774cfde98179002a7cb3c8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/make_class) | +| 9 | [Maximum Multiple](https://www.codewars.com/kata/5aba780a6a176b029800041c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/maximum_multiple) | +| 10 | [Password validator](https://www.codewars.com/kata/56a921fa8c5167d8e7000053) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/password_validator) | +| 11 | [Powers of 3](https://www.codewars.com/kata/57be674b93687de78c0001d9) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/powers_of_3) | +| 12 | [Pull your words together, man!](https://www.codewars.com/kata/59ad7d2e07157af687000070) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/pull_your_words_together_man) | +| 13 | [The museum of incredible dull things](https://www.codewars.com/kata/563cf89eb4747c5fb100001b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/remove_the_minimum) | +| 14 | [Share price](https://www.codewars.com/kata/5603a4dd3d96ef798f000068) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/share_prices) | +| 15 | [Significant Figures Challenge](https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/significant_figures) | +| 16 | [Simple Fun #152: Invite More Women](https://www.codewars.com/kata/58acfe4ae0201e1708000075) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/simple_fun_152) | +| 17 | [Sort Out The Men From Boys](https://www.codewars.com/kata/5af15a37de4c7f223e00012d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sort_out_the_men_from_boys) | +| 18 | [Substituting Variables Into Strings: Padded Numbers](https://www.codewars.com/kata/51c89385ee245d7ddf000001) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/substituting_variables_into_strings_padded_numbers) | +| 19 | [Sum of powers of 2](https://www.codewars.com/kata/5d9f95424a336600278a9632) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_powers_of_2) | +| 20 | [Sum of Triangular Numbers](https://www.codewars.com/kata/580878d5d27b84b64c000b51) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_triangular_numbers) | +| 21 | [Sum of two lowest positive integers](https://www.codewars.com/kata/558fc85d8fd1938afb000014) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_two_lowest_int) | +| 22 | [The First Non Repeated Character In A String](https://www.codewars.com/kata/570f6436b29c708a32000826) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/the_first_non_repeated_character_in_string) | +| 23 | [V A P O R C O D E](https://www.codewars.com/kata/5966eeb31b229e44eb00007a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/vaporcode) | +| 24 | [You're a square](https://www.codewars.com/kata/54c27a33fb7da0db0100040e) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/you_are_square) | +| 25 | [Find the longest gap!](https://www.codewars.com/kata/55b86beb1417eab500000051) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/find_the_longest_gap) | +| 26 | [Simple Fun #74: Growing Plant](https://www.codewars.com/kata/58941fec8afa3618c9000184) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/growing_plant) | +| 27 | [Basic Math (Add or Subtract)](https://www.codewars.com/kata/5809b62808ad92e31b000031) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/basic_math_add_or_subtract) | +| 28 | [Sum of odd numbers](https://www.codewars.com/kata/55fd2d567d94ac3bc9000064) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/sum_of_odd_numbers) | +| 29 | [Help Bob count letters and digits](https://www.codewars.com/kata/5738f5ea9545204cec000155) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/help_bob_count_letters_and_digits) | +| 30 | [Make Class](https://www.codewars.com/kata/5d774cfde98179002a7cb3c8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/make_class) | +| 30 | [Easy Line](https://www.codewars.com/kata/56e7d40129035aed6c000632) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/easy_line) | +| 31 | [Valid Parentheses](https://www.codewars.com/kata/6411b91a5e71b915d237332d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_7/valid_parentheses) | [Source](https://www.codewars.com/about) \ No newline at end of file diff --git a/kyu_7/valid_parentheses/__init__.py b/kyu_7/valid_parentheses/__init__.py new file mode 100644 index 00000000000..e69de29bb2d From 80d5b1c3af154afd680620895e57ecb388b3405c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 21:45:22 -0800 Subject: [PATCH 275/873] Create README.md --- kyu_7/valid_parentheses/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 kyu_7/valid_parentheses/README.md diff --git a/kyu_7/valid_parentheses/README.md b/kyu_7/valid_parentheses/README.md new file mode 100644 index 00000000000..b3576c3eb60 --- /dev/null +++ b/kyu_7/valid_parentheses/README.md @@ -0,0 +1,26 @@ +# Valid Parentheses + +Write a function 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: +```bash +"()" => true +")(()))" => false +"(" => false +"(())((()())())" => true +``` + +Constraints + +```bash 0 <= length of input <= 100``` + +- All inputs will be strings, consisting only of characters ( and ). +- Empty strings are considered balanced (and therefore valid), and will be tested. +- For languages with mutable strings, the inputs should not be mutated. + +*Tip:* If you are trying to figure out why a string of parentheses is invalid, +paste the parentheses into the code editor, and let the code highlighting show you! + +[Source](https://www.codewars.com/kata/6411b91a5e71b915d237332d) \ No newline at end of file From 313929a814878a6c00895a0b1339268df424130d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:32:47 -0800 Subject: [PATCH 276/873] Solution ready --- kyu_7/valid_parentheses/solution.py | 46 +++++ .../test_valid_parentheses.py | 161 ++++++++++++++++++ 2 files changed, 207 insertions(+) create mode 100644 kyu_7/valid_parentheses/solution.py create mode 100644 kyu_7/valid_parentheses/test_valid_parentheses.py diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py new file mode 100644 index 00000000000..5e444b444d0 --- /dev/null +++ b/kyu_7/valid_parentheses/solution.py @@ -0,0 +1,46 @@ +def valid_parentheses(paren_str: str) -> bool: + """ + A function 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. + :param paren_str: str + :return: bool + """ + print(paren_str) + + # Should return True for empty strings + if not paren_str: + return True + + # Fail if starts from closing bracket + if paren_str[0] == ')': + return False + + # A number of closing and opening + # brackets should be equal + if paren_str.count('(') != paren_str.count(')'): + return False + + while paren_str: + # Fail if starts from closing bracket + if paren_str[0] == ')': + return False + # Find matching pair and remove them from the string + for i in range(1, len(paren_str)): + if paren_str[i] == ')': + paren_str = update_str(paren_str, i) + break + + return True + + +def update_str(paren_str: str, i: int) -> str: + """ + Update string: + 1. remove first char. + 2. remove matching char/bracket. + :param paren_str: str + :param i: int + :return: str + """ + return ''.join(paren_str[indx] for indx, char in enumerate(paren_str) if indx not in [0, i]) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py new file mode 100644 index 00000000000..41c2c2011f6 --- /dev/null +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -0,0 +1,161 @@ +""" +Test for -> Valid Parentheses +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + +# STRINGS PARSING ALGORITHMS + +import unittest +import allure +from utils.log_func import print_log +from kyu_7.valid_parentheses.solution import valid_parentheses + + +# pylint: disable=R0801 +@allure.epic('7 kyu') +@allure.parent_suite('Beginner') +@allure.suite("Algorithms") +@allure.sub_suite("Unit Tests") +@allure.feature("String") +@allure.story('Valid Parentheses') +@allure.tag('STRINGS', + 'PARSING', + 'ALGORITHMS') +@allure.link( + url='https://www.codewars.com/kata/6411b91a5e71b915d237332d', + name='Source/Kata') +# pylint: enable=R0801 +class ValidParenthesesTestCase(unittest.TestCase): + """ + Testing valid_parentheses function + """ + + def test_valid_parentheses_true(self): + """ + -1: Negative numbers cannot be square numbers + :return: + """ + # pylint: disable=R0801 + allure.dynamic.title("Simple test for valid parentheses") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

Codewars badge:

' + '' + '

Test Description:

' + "

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_data=test_data, 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( + '

Codewars badge:

' + '' + '

Test Description:

' + "

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_data=test_data, 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( + '

Codewars badge:

' + '' + '

Test Description:

' + "

Should return True for empty strings.

") + # pylint: enable=R0801 + with allure.step(f"Enter empty test string and verify" + f"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( + '

Codewars badge:

' + '' + '

Test Description:

' + "

Valid large test string

") + # pylint: enable=R0801 + with (allure.step(f"Enter a large valid test string and verify" + f"that the function returns True.")): + test_str: str = (f'()(()()()()(()())((()()())((((())(()))(()))(((' + f')(())((()))((())()))(())(()()(())))())))') + 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( + '

Codewars badge:

' + '' + '

Test Description:

' + "

Invalid large test string

") + # pylint: enable=R0801 + with (allure.step(f"Enter a large invalid test string and verify" + f"that the function returns False.")): + test_str: str = (f'(((())(()()(()()))(())())(((()(()))))()(()()((' + f'))))()()()(()())(()()(()()()(()()()((()())))))())()') + result: bool = valid_parentheses(test_str) + print_log(test_str=test_str, result=result) + self.assertFalse(result) + From c1cfe5969e6384c89040a64104eb0624bc92438f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:39:20 -0800 Subject: [PATCH 277/873] Update solution.py Missing module docstring --- kyu_7/valid_parentheses/solution.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index 5e444b444d0..98c04051108 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -1,3 +1,9 @@ +""" +Solution for -> Valid Parentheses +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + def valid_parentheses(paren_str: str) -> bool: """ A function that takes a string of parentheses, and determines From 6741ceb88cf6795920b3f693a8075ab19be1189b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:41:35 -0800 Subject: [PATCH 278/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index 98c04051108..72c17d7c59b 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -4,6 +4,7 @@ GitHub: https://github.com/ikostan """ + def valid_parentheses(paren_str: str) -> bool: """ A function that takes a string of parentheses, and determines From 18c197a9d901a2f575c093e5f57870fbaab751a7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:42:20 -0800 Subject: [PATCH 279/873] Update test_valid_parentheses.py Trailing newlines --- kyu_7/valid_parentheses/test_valid_parentheses.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index 41c2c2011f6..d7765c095f2 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -158,4 +158,3 @@ def test_valid_parentheses_large_invalid(self): result: bool = valid_parentheses(test_str) print_log(test_str=test_str, result=result) self.assertFalse(result) - From 69f07a7d2a0cd0b2b5c6e2fd1d93c563396cd527 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:42:58 -0800 Subject: [PATCH 280/873] Update test_valid_parentheses.py Wrong continued indentation (add 1 space). --- kyu_7/valid_parentheses/test_valid_parentheses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index d7765c095f2..dc254627c27 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -152,7 +152,7 @@ def test_valid_parentheses_large_invalid(self): "

Invalid large test string

") # pylint: enable=R0801 with (allure.step(f"Enter a large invalid test string and verify" - f"that the function returns False.")): + f"that the function returns False.")): test_str: str = (f'(((())(()()(()()))(())())(((()(()))))()(()()((' f'))))()()()(()())(()()(()()()(()()()((()())))))())()') result: bool = valid_parentheses(test_str) From ab6ed0c4d1714d8a213eadabf6a4676749fd1e73 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:45:38 -0800 Subject: [PATCH 281/873] @sourcery-ai --- kyu_7/valid_parentheses/test_valid_parentheses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index dc254627c27..2e0cda2083a 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -128,7 +128,7 @@ def test_valid_parentheses_large_valid(self): "

Valid large test string

") # pylint: enable=R0801 with (allure.step(f"Enter a large valid test string and verify" - f"that the function returns True.")): + f"that the function returns True.")): test_str: str = (f'()(()()()()(()())((()()())((((())(()))(()))(((' f')(())((()))((())()))(())(()()(())))())))') result: bool = valid_parentheses(test_str) From 4f9d623e0467be4c05f81b9a8cab101400a6719e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:53:55 -0800 Subject: [PATCH 282/873] Update solution.py kyu_7/valid_parentheses/solution.py:53:19: R1736: Unnecessary list index lookup, use 'char' instead (unnecessary-list-index-lookup) --- kyu_7/valid_parentheses/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index 72c17d7c59b..ffe53676eaf 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -50,4 +50,4 @@ def update_str(paren_str: str, i: int) -> str: :param i: int :return: str """ - return ''.join(paren_str[indx] for indx, char in enumerate(paren_str) if indx not in [0, i]) + return ''.join(char for indx, char in enumerate(paren_str) if indx not in [0, i]) From 2c6a0e64c5d3ba7d6fb300370ea9b90e9497cf8a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:55:54 -0800 Subject: [PATCH 283/873] Update test_valid_parentheses.py kyu_7/valid_parentheses/test_valid_parentheses.py:108:25: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) kyu_7/valid_parentheses/test_valid_parentheses.py:130:26: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) kyu_7/valid_parentheses/test_valid_parentheses.py:132:29: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) kyu_7/valid_parentheses/test_valid_parentheses.py:154:26: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) kyu_7/valid_parentheses/test_valid_parentheses.py:156:29: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) --- kyu_7/valid_parentheses/test_valid_parentheses.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index 2e0cda2083a..48ddcb9d015 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -105,8 +105,8 @@ def test_valid_parentheses_empty_string(self): '

Test Description:

' "

Should return True for empty strings.

") # pylint: enable=R0801 - with allure.step(f"Enter empty test string and verify" - f"that the function returns True."): + 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) @@ -129,8 +129,8 @@ def test_valid_parentheses_large_valid(self): # pylint: enable=R0801 with (allure.step(f"Enter a large valid test string and verify" f"that the function returns True.")): - test_str: str = (f'()(()()()()(()())((()()())((((())(()))(()))(((' - f')(())((()))((())()))(())(()()(())))())))') + test_str: str = ('()(()()()()(()())((()()())((((())(()))(()))(((' + ')(())((()))((())()))(())(()()(())))())))') result: bool = valid_parentheses(test_str) print_log(test_str=test_str, result=result) self.assertTrue(result) @@ -153,8 +153,8 @@ def test_valid_parentheses_large_invalid(self): # pylint: enable=R0801 with (allure.step(f"Enter a large invalid test string and verify" f"that the function returns False.")): - test_str: str = (f'(((())(()()(()()))(())())(((()(()))))()(()()((' - f'))))()()()(()())(()()(()()()(()()()((()())))))())()') + test_str: str = ('(((())(()()(()()))(())())(((()(()))))()(()()((' + '))))()()()(()())(()()(()()()(()()()((()())))))())()') result: bool = valid_parentheses(test_str) print_log(test_str=test_str, result=result) self.assertFalse(result) From d917260edd51b22097c5f4f29b1d7375c62c8077 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 29 Nov 2024 22:58:19 -0800 Subject: [PATCH 284/873] Update test_valid_parentheses.py ************* Module kyu_7.valid_parentheses.test_valid_parentheses kyu_7/valid_parentheses/test_valid_parentheses.py:130:26: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) kyu_7/valid_parentheses/test_valid_parentheses.py:154:26: W1309: Using an f-string that does not have any interpolated variables (f-string-without-interpolation) --- kyu_7/valid_parentheses/test_valid_parentheses.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index 48ddcb9d015..847189f15fa 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -127,8 +127,8 @@ def test_valid_parentheses_large_valid(self): '

Test Description:

' "

Valid large test string

") # pylint: enable=R0801 - with (allure.step(f"Enter a large valid test string and verify" - f"that the function returns True.")): + 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) @@ -151,8 +151,8 @@ def test_valid_parentheses_large_invalid(self): '

Test Description:

' "

Invalid large test string

") # pylint: enable=R0801 - with (allure.step(f"Enter a large invalid test string and verify" - f"that the function returns False.")): + 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) From 14b2efce88dbd97dbd6144090d091aa8675aa060 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 20:53:38 -0800 Subject: [PATCH 285/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 30 +++++++---------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index ffe53676eaf..16f2dc6520f 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -13,21 +13,14 @@ def valid_parentheses(paren_str: str) -> bool: :param paren_str: str :return: bool """ - print(paren_str) - - # Should return True for empty strings - if not paren_str: - return True - - # Fail if starts from closing bracket - if paren_str[0] == ')': - return False - # A number of closing and opening # brackets should be equal if paren_str.count('(') != paren_str.count(')'): return False + # convert string into list + paren_str = list(paren_str) + while paren_str: # Fail if starts from closing bracket if paren_str[0] == ')': @@ -35,19 +28,10 @@ def valid_parentheses(paren_str: str) -> bool: # Find matching pair and remove them from the string for i in range(1, len(paren_str)): if paren_str[i] == ')': - paren_str = update_str(paren_str, i) + # delete a matching pair + del paren_str[i] + del paren_str[0] + # start all over again break return True - - -def update_str(paren_str: str, i: int) -> str: - """ - Update string: - 1. remove first char. - 2. remove matching char/bracket. - :param paren_str: str - :param i: int - :return: str - """ - return ''.join(char for indx, char in enumerate(paren_str) if indx not in [0, i]) From d7a5a1eb82e75157ccf1a0dd3638d63a6ecc44e9 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 20:56:35 -0800 Subject: [PATCH 286/873] Update test_valid_parentheses.py --- kyu_7/valid_parentheses/test_valid_parentheses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index 847189f15fa..c82d49bbe5c 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -87,7 +87,7 @@ def test_valid_parentheses_false(self): 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_data=test_data, result=result) + print_log(test_str=test_str, result=result) self.assertFalse(result) def test_valid_parentheses_empty_string(self): From d878cbc30045fe7e6c232cff4a88e18c70f8d4ff Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 20:57:53 -0800 Subject: [PATCH 287/873] Update test_valid_parentheses.py issue (bug_risk): Fix incorrect parameter in print_log call The print_log is using test_data instead of test_str which could cause confusing log output. Should be print_log(test_data=test_str, result=result) --- kyu_7/valid_parentheses/test_valid_parentheses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index c82d49bbe5c..f80b00f6a95 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -57,7 +57,7 @@ def test_valid_parentheses_true(self): 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_data=test_data, result=result) + print_log(test_str=test_str, result=result) self.assertTrue(result) def test_valid_parentheses_false(self): From c9dba876189953b825a3a5782d1220a9b5afdeed Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 21:01:53 -0800 Subject: [PATCH 288/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index 16f2dc6520f..a4b4d7208cd 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -19,7 +19,7 @@ def valid_parentheses(paren_str: str) -> bool: return False # convert string into list - paren_str = list(paren_str) + paren_str = list(char for char in paren_str) while paren_str: # Fail if starts from closing bracket From be39032e329751c86cb2a152f496475c5f5c349f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 21:05:27 -0800 Subject: [PATCH 289/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index a4b4d7208cd..e0a049a4b7c 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -19,18 +19,18 @@ def valid_parentheses(paren_str: str) -> bool: return False # convert string into list - paren_str = list(char for char in paren_str) + paren_str_list: list = list(paren_str) - while paren_str: + while paren_str_list: # Fail if starts from closing bracket - if paren_str[0] == ')': + if paren_str_list[0] == ')': return False # Find matching pair and remove them from the string - for i in range(1, len(paren_str)): - if paren_str[i] == ')': + for i in range(1, len(paren_str_list)): + if paren_str_list[i] == ')': # delete a matching pair - del paren_str[i] - del paren_str[0] + del paren_str_list[i] + del paren_str_list[0] # start all over again break From 6f0f5acddf0ff02c1c5b754d9b20bfd87201d1f0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 21:10:05 -0800 Subject: [PATCH 290/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index e0a049a4b7c..b79e93274de 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -13,17 +13,14 @@ def valid_parentheses(paren_str: str) -> bool: :param paren_str: str :return: bool """ - # A number of closing and opening - # brackets should be equal - if paren_str.count('(') != paren_str.count(')'): - return False - # convert string into list paren_str_list: list = list(paren_str) while paren_str_list: - # Fail if starts from closing bracket - if paren_str_list[0] == ')': + # 1. Fail if starts from closing bracket + # 2. A number of closing and opening + # brackets should be equal + if paren_str_list[0] == ')' or paren_str.count('(') != paren_str.count(')'): return False # Find matching pair and remove them from the string for i in range(1, len(paren_str_list)): From cde890e23770e2c6e5e2e2eb36a903c625ce3595 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 21:13:33 -0800 Subject: [PATCH 291/873] Update solution.py --- kyu_7/valid_parentheses/solution.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index b79e93274de..d112681a5eb 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -13,14 +13,17 @@ def valid_parentheses(paren_str: str) -> bool: :param paren_str: str :return: bool """ + # A number of closing and opening + # brackets should be equal + if paren_str.count('(') != paren_str.count(')'): + return False + # convert string into list paren_str_list: list = list(paren_str) while paren_str_list: - # 1. Fail if starts from closing bracket - # 2. A number of closing and opening - # brackets should be equal - if paren_str_list[0] == ')' or paren_str.count('(') != paren_str.count(')'): + # Fail if starts from closing bracket + if paren_str_list[0] == ')': return False # Find matching pair and remove them from the string for i in range(1, len(paren_str_list)): @@ -30,5 +33,5 @@ def valid_parentheses(paren_str: str) -> bool: del paren_str_list[0] # start all over again break - + # string is valid return True From d87e55d71203be0e056e2a04cd1aafdacf50fc85 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 30 Nov 2024 21:18:31 -0800 Subject: [PATCH 292/873] Allure test report --- ...fc94fc6c7a32c.txt => 109442e0bd8a1bf7.txt} | 0 ...30848274c8ad1.txt => 109a63364b1709cb.txt} | 0 ...705772211817a.txt => 10a01d4023ecf988.txt} | 0 ...04a43be2f48f8.txt => 10ab1851bf24b8d6.txt} | 0 ...7c06d429f0757.txt => 11f397a799a36e46.txt} | 0 ...5653f29871a87.txt => 125be537d5adaaca.txt} | 0 ...27bd500cb42e3.txt => 12f8c2c15d255220.txt} | 0 ...2f149df538341.txt => 1317b7c3ac9b35f3.txt} | 0 ...bedecdc10bf7c.txt => 137f1698764a14f9.txt} | 0 ...1d5484e0bc70d7d.txt => 1396f0b44562fb.txt} | 0 ...37f4331d47546.txt => 1432622f91e93164.txt} | 0 ...b2b673c5d0f8b.txt => 14a8f582bcfd592e.txt} | 0 ...2e64e7212768ad.txt => 14b7835dfcf5573.txt} | 0 ...f37e97a182fa4.txt => 14eb68b01bad174e.txt} | 0 ...2195f3173474a.txt => 156bd3bd78bc6da3.txt} | 0 ...45f795d532c99.txt => 15ba330274e4476f.txt} | 0 ...31ba669f341d4.txt => 160b559167718fe9.txt} | 0 ...6ef3ff023cc9a.txt => 170e0e9c6fcebe10.txt} | 0 ...9f69ec70ee0f7.txt => 1711c955ae8ed0a7.txt} | 0 ...eafabb75260d1.txt => 1731dec9bd704732.txt} | 0 ...84027e285a197.txt => 173c8b3804a43ebd.txt} | 0 ...bdb1cdb347243.txt => 1740535c6865a94c.txt} | 0 ...da570f7a6ee0b.txt => 177ff12f105ad4fb.txt} | 0 ...d630f27c230cc.txt => 178114092f1d89bc.txt} | 0 ...e2e008fa1f7b7.txt => 17b2af932389b810.txt} | 0 ...4a31f83c6b392.txt => 186311649e77f5c8.txt} | 0 ...e8734629abe38.txt => 189cde1d0b42e48e.txt} | 0 ...2d90eab3398ae.txt => 18d6da20137be417.txt} | 0 ...cae3bc3627567.txt => 199bb2c039260176.txt} | 0 ...75387bd3b0160.txt => 19fe4b4b294825d2.txt} | 0 ...90d440082a497.txt => 1a54a6c3a38e3980.txt} | 0 ...f10167539853c.txt => 1a639fee286babca.txt} | 0 ...3d98a4ef66ecba.txt => 1abf48c153a1a17.txt} | 0 ...668e4eadc4184.txt => 1b39872f125fb2ef.txt} | 0 ...b805ca97b9cb4.txt => 1bbf8f89249006b7.txt} | 0 ...a8fe35c793420.txt => 1d9f9656a94c5b68.txt} | 0 ...034871f152875.txt => 1ded455ca81b768f.txt} | 0 ...e06237574ec64.txt => 1f0ce1b1fd5fc576.txt} | 0 ...52967ab446eeb.txt => 1f2d499684f15ad9.txt} | 0 ...e2ebe7761508b.txt => 1f432fb3d00b5421.txt} | 0 ...1e11e2ff687a2.txt => 1f751d5dc8f66594.txt} | 0 ...7854c25108dd3.txt => 20620e6bfba57810.txt} | 0 ...5592d4f270e5c.txt => 2096e2c2c39f7dc3.txt} | 0 ...77fc91cdd3978.txt => 222c482e7768a801.txt} | 0 ...42dfa3ebb2236.txt => 23973121b39ff210.txt} | 0 ...cbfc79956849c.txt => 24199b96cc9c8ec3.txt} | 0 ...3ba760fe885c0.txt => 24f89618104eb19b.txt} | 0 ...9f3a704742209.txt => 2519fe596c9290b5.txt} | 0 ...3c650ea768633.txt => 2589fdae4962b015.txt} | 0 ...24952cd20b6e1.txt => 25bffeb92bc30f28.txt} | 0 ...02dd3c9afa278.txt => 261dd410d8763d0c.txt} | 0 ...b258de88c9004.txt => 269b686a0975db0c.txt} | 0 ...a2236fba5201a.txt => 26a3b25de30a9620.txt} | 0 ...93916dbf3d716.txt => 27bed6305313af96.txt} | 0 ...9c92a6fe0ac60.txt => 28132f88f00a1308.txt} | 0 ...b4a5251243888.txt => 290c988fd03516ad.txt} | 0 ...35331d2572599.txt => 29d2aeece76c7fe3.txt} | 0 ...b645b301593c3.txt => 2a05a507f0806707.txt} | 0 ...dc928e034d6b3.txt => 2c7e8a807d9268ca.txt} | 0 ...f6d7cefafc12f.txt => 2dd32f5139296bc1.txt} | 0 ...07bc70f60caca.txt => 2fdd029d73a8807a.txt} | 0 ...4c0edbbe04f9e.txt => 301d26c401259420.txt} | 0 ...71bf346c43317.txt => 3042b984a74017cb.txt} | 0 ...24d1199424ffc.txt => 308712033617631b.txt} | 0 ...6e27128e108d6.txt => 311050da7cc4ba1d.txt} | 0 ...868139d71d5f7.txt => 31feec1cbe8e86eb.txt} | 0 ...6534e84498685.txt => 3253e81015ef9292.txt} | 0 ...17348ea95e36a.txt => 330cef54d490c73e.txt} | 0 ...4bbebe56fedf8.txt => 3399e5458489501f.txt} | 0 ...93f25c4ee9e10.txt => 348342fa3ca36cd4.txt} | 0 ...8f07fa0a63017.txt => 34970ab91dd4eb6c.txt} | 0 ...9a9c4b2d76831.txt => 3594eabb545be088.txt} | 0 ...6b6f5238c5b93.txt => 3608f48d89e26964.txt} | 0 ...be7d831eff2b3.txt => 36d68ec5646bcd8f.txt} | 0 ...abad852203ff8.txt => 36e3a300e20ebc68.txt} | 0 ...24dd6f011f9a2.txt => 36ecb19439af20bd.txt} | 0 ...510f84e87d061.txt => 3770d294f14361b7.txt} | 0 ...97a95b3056409.txt => 37cb2e943dd3d9fa.txt} | 0 ...96ebaed3b737c.txt => 37e9edade389e962.txt} | 0 ...ee37443803595.txt => 38571528b67e0e01.txt} | 0 ...c421dc94f15f8.txt => 394478f192e8a5de.txt} | 0 ...e223ecfa6a3c6.txt => 39cdb5ecef1e6852.txt} | 0 ...2aef00cdbb284.txt => 39d04d48da97fae9.txt} | 0 ...06a35f51e50cd.txt => 3a7734f8c672bad4.txt} | 0 ...ae48ecc824334.txt => 3b3cd319fcba15f6.txt} | 0 ...5c73086be3d07.txt => 3bb61b0a55d4385d.txt} | 0 ...d07999fe8bb77.txt => 3cae79604aa7933a.txt} | 0 ...5895b50875943.txt => 3cfc143b96c54cf6.txt} | 0 ...c70b07f1415e5.txt => 3e07263d3e995602.txt} | 0 ...d30a7c0f382b9.txt => 3ecf2d6ad02962e9.txt} | 0 ...4f22fa99f8e9d.txt => 3f0b8846373b1989.txt} | 0 ...f806ee93872a1.txt => 3fc3f69bfdd6ff9f.txt} | 0 ...883e774d20c18.txt => 425763916f5e21f0.txt} | 0 ...ffb014ecda8013.txt => 4279fe2563b48bb.txt} | 0 ...7f0c7806d7a5f.txt => 435e1e4d04469bf3.txt} | 0 ...6f9b1aa47477d8.txt => 444e3c5fd77d103.txt} | 0 ...35a94d30c45bf.txt => 44f2331d72fdaf9f.txt} | 0 ...3adc8617c894b.txt => 468a57056683ca0e.txt} | 0 ...a5c86d6124176.txt => 46d017d45a55c05d.txt} | 0 ...1e0abb748fcc1.txt => 4718f5d8ec029744.txt} | 0 ...95e0c50272d33.txt => 479ed89d4ea66fbb.txt} | 0 ...6d71052a1b866.txt => 47f787d5d2d88cb3.txt} | 0 ...1a28436ed8397.txt => 48efcf6226950113.txt} | 0 ...22cc9dc28f439.txt => 49113f874a139db1.txt} | 0 ...e2b3c5f7bae47.txt => 491334107dd5238e.txt} | 0 ...5fb968677e918.txt => 496a8fc7c085caf4.txt} | 0 ...28c9b0b57911a.txt => 49e08a4f979422ca.txt} | 0 ...8c5c2c7c00ce5.txt => 4ae64cfa18a7fe16.txt} | 0 ...d20a8fa5049ef.txt => 4b7e6475d8bd7c13.txt} | 0 ...f3e6ddecc6408.txt => 4bab5f3bdd559aa2.txt} | 0 ...fc324c4038294.txt => 4bd7ac0fc20fb6a1.txt} | 0 ...f0fc5a14ca4fd.txt => 4c101c06530a2e9e.txt} | 0 ...6735b0fe92ce1.txt => 4cb1b482ef5803db.txt} | 0 ...1795fd7e9c165.txt => 4dd82faaba573e68.txt} | 0 ...32c8bd9f79614.txt => 4de55b4ae1f39108.txt} | 0 ...81cac44a14e7f.txt => 4eeb339282cdbad1.txt} | 0 ...9ab8a22025032.txt => 50169eac5bf8084a.txt} | 0 ...1f12bcdd4240f.txt => 50e06d17e1c8d051.txt} | 0 ...4828262135699.txt => 51a20e306213f50c.txt} | 0 ...65c0bd2baa205.txt => 51e235954e2b24e9.txt} | 0 ...118fc0413c04b.txt => 5442f35428b86593.txt} | 0 ...0819228c5b269.txt => 551e85d4261ef859.txt} | 0 ...fc8f8784290b40.txt => 5538d98488e22a1.txt} | 0 ...63cc1ff017e55.txt => 559adfb16322e47a.txt} | 0 ...2344a5891233b.txt => 566cb1395d2623ee.txt} | 0 ...84e5480e91547.txt => 599f4bf8dc375f2f.txt} | 0 ...ce307fc80ae94.txt => 5a674ed3663720ba.txt} | 0 ...9e3b457f9320a.txt => 5aca5b8e45147f1d.txt} | 0 ...fb7eadd505b53.txt => 5ae64153eb7d8fd5.txt} | 0 ...a84ce1aa4434a.txt => 5bd79911afafb617.txt} | 0 ...bed3c0bc3ed4a.txt => 5c46b88a061332b3.txt} | 0 ...932e6bf05499f.txt => 5e736eac717d48b8.txt} | 0 ...4f5edff7b23a8.txt => 5f6fe8d21ab696a3.txt} | 0 ...072694382d10e.txt => 604a50ef60eddbca.txt} | 0 ...dc0bd484f71d7.txt => 60551f07eabe2ff9.txt} | 0 ...2ea957f6fd3d1.txt => 60ceec260ccbe12f.txt} | 0 ...96c8197b3dace.txt => 61278101606180d8.txt} | 0 ...e74011774c312.txt => 6148a5719472274d.txt} | 0 ...5ae4e4dd30a2d.txt => 61c3ba5a703e8965.txt} | 0 ...97c5236222053.txt => 622422493d650fdf.txt} | 0 ...062c4d3ad84ef.txt => 6369af4634ea6437.txt} | 0 ...00ad1037160b6.txt => 64799626cd40a47b.txt} | 0 ...43f2ebe410372.txt => 65939308dfa4b454.txt} | 0 ...25186cd87d138.txt => 65be7c61ca459627.txt} | 0 ...9f976cb96a98d.txt => 6724f660007b6f8f.txt} | 0 ...7ca07980ea016.txt => 68019be75248ce7a.txt} | 0 ...140d5a479d77f.txt => 68907a6eac7b7e79.txt} | 0 ...bdfb319cbef56.txt => 69a85253be572104.txt} | 0 ...a1d978c6df1121.txt => 69ca1dfc95141b1.txt} | 0 ...dd65f45ebad45.txt => 6a89bd43066f4143.txt} | 0 ...e8f4eae56e738.txt => 6aac0d6477d82d49.txt} | 0 ...eb5fa3fe3b8e6.txt => 6b06d8bb1f0d8ae7.txt} | 0 ...2c8f15fc6c9c0.txt => 6b26647644a9011f.txt} | 0 ...2cdaa6481456c.txt => 6c8ba92b05ceb5be.txt} | 0 ...6a9cbff279a34.txt => 6e533a6d7b553e50.txt} | 0 ...afdca61317e51.txt => 6e652aa73f38cf38.txt} | 0 ...c4bb712b376ab.txt => 6f68f7e9f588442e.txt} | 0 ...23edd90aa8cfa.txt => 70549112d1201a37.txt} | 0 ...53188e91eeef0.txt => 7059a7f2ea4f1d21.txt} | 0 ...bbda54a679e90.txt => 712c159a049ff459.txt} | 0 ...613cb4c662f2e.txt => 71fc07a67416a0d6.txt} | 0 ...f6f4c1f9bb5a2.txt => 72c5ae89672fcecc.txt} | 0 ...f2c0a44e75654.txt => 7324bd79d75b1976.txt} | 0 ...dff4578efa314.txt => 7379dff7e25cb0a5.txt} | 0 ...f36a16a608c99.txt => 73dfd6fcf3f0a2ae.txt} | 0 ...595e4822528c2.txt => 73e1a08147f0ff00.txt} | 0 ...9dcf875239b3a.txt => 7425734ad14179e4.txt} | 0 ...df00dc666cbbd.txt => 74fd4cb3a0d16df5.txt} | 0 ...2f98b11de943f.txt => 7548d350c45f54f6.txt} | 0 ...3833bd58160c1.txt => 757a12dc566d3a04.txt} | 0 ...d300a7de26866.txt => 761ccb0eac4691eb.txt} | 0 ...53a5d01cb978a.txt => 768a2542510e9424.txt} | 0 ...82e5aa37702bc.txt => 778d3397f8515034.txt} | 0 ...2f3a355e5f2ed.txt => 78536cfa8705ace3.txt} | 0 ...71aa1ac7b19de.txt => 788d307008b11df5.txt} | 0 ...3d90850028d14.txt => 78b67cc840d0f4a8.txt} | 0 ...93ea1a91f61ae.txt => 78ccb02d90c15e25.txt} | 0 ...63c17619b52a4.txt => 7a6a4e0267245cc3.txt} | 0 ...2a5280a09e0f4.txt => 7b9e000b6e8b6a60.txt} | 0 ...887f366c469bf.txt => 7bfcd285de663163.txt} | 0 ...3eb579b763a8f.txt => 7c4d33961ba9ecde.txt} | 0 ...2ac087f99689b.txt => 7cbc8ebd65fb8481.txt} | 0 ...32190833aaac7.txt => 7ce02846f9ac9e3d.txt} | 0 ...e9706a7ce18ad.txt => 7d82c31fb2485e49.txt} | 0 ...20f78b41446af.txt => 7e6e0f3580253245.txt} | 0 ...7dccaf2814ffa.txt => 7f097b27d301b075.txt} | 0 ...6837b21492cfc6.txt => 7f1e6261fe55f12.txt} | 0 ...bcf9305b7e315.txt => 7f5a59d26508f55d.txt} | 0 ...e4619c5013fd1.txt => 7f8244a44f0672b6.txt} | 0 ...004b465c9b5f8.txt => 817385884ec20713.txt} | 0 ...3bc31f56d9a8c.txt => 8276c421e6a39adf.txt} | 0 ...879e2f735a0ac.txt => 8333a44527f8bcd6.txt} | 0 ...67229f9ee12b7.txt => 833d260c3e69ae73.txt} | 0 ...fb385384ff8bd.txt => 835d7d8f35896535.txt} | 0 ...13043366b6b90.txt => 843a9b33796b69ab.txt} | 0 ...b1893c2b8b52d.txt => 8474eb0f72326e17.txt} | 0 ...aca645c6a63be.txt => 87d604abdd1034ad.txt} | 0 ...df2dabc5ae756.txt => 87f01e814f201b12.txt} | 0 ...45087bdeef541.txt => 8824f11650f12248.txt} | 0 ...6667cdd104689.txt => 885315e2174c8284.txt} | 0 ...9ffa61a5d6299.txt => 89e2dbaee5a08a8e.txt} | 0 ...09417038f1f70.txt => 8aceddf9a40c21c4.txt} | 0 ...b9ca1dd2e7b86.txt => 8b70cbce8e882192.txt} | 0 ...895964a4f1dc3.txt => 8bf4ab3249d50d5d.txt} | 0 ...304cbd9f33e1a.txt => 8c9b413e90bf769f.txt} | 0 ...39cb22fa4b9dd.txt => 8cf8917f49abc708.txt} | 0 ...cb0410a6ed3d7.txt => 8d8a3475c1ccc5fb.txt} | 0 ...4b6ecea0eca1b4.txt => 8e4c5f9ea62989e.txt} | 0 ...ad6265b9c6d8f.txt => 8f0da0353e68cf34.txt} | 0 ...b03d7ca85feb9.txt => 8f4bf05879c8645b.txt} | 0 ...caad5616d047a.txt => 8fc1f3f9e7136bfe.txt} | 0 ...871840dfd173c.txt => 8ffb3d947babe2e5.txt} | 0 ...8941907447826.txt => 918ce551f75f4a0e.txt} | 0 ...1cf6b46c44c9e.txt => 9639571481038f39.txt} | 0 ...a7e6f7e7538915.txt => 9664dbae27a9df3.txt} | 0 ...865fe73fa5b27.txt => 9735ba411f0b6bb5.txt} | 0 ...8de0f4d0253c8.txt => 97d568438480d957.txt} | 0 ...8bcccd8e3d9a5.txt => 9817c9d821675f57.txt} | 0 ...bc31b80f9d83c.txt => 982c55cae2a7ef4a.txt} | 0 ...62f85c852f0a97.txt => 9846fc0a17d839b.txt} | 0 ...c839f94675f1c.txt => 9adef8938da49aa4.txt} | 0 ...73d2ead28469f.txt => 9bd069e9e159fee7.txt} | 0 ...8eb12f2ec789a.txt => 9c2f5fc2bb8b3db8.txt} | 0 ...bf0bbb023a57f.txt => 9da75d7f845f0505.txt} | 0 ...2f64a0232194a.txt => 9e8a1dedd1940971.txt} | 0 ...87b318aa88c6e.txt => 9febde34d0c00b2f.txt} | 0 ...53a4b20ca2cdb.txt => a03148d44cb41cd1.txt} | 0 ...8e66e6e1debdd.txt => a05e018d59cd8b23.txt} | 0 ...949b4a7c16c61.txt => a0d3807a4788c278.txt} | 0 ...a97703cb852b3.txt => a11058edff9d734d.txt} | 0 ...45d8c1df7c43f.txt => a125eb4c92d61148.txt} | 0 ...e3a23a26b4600.txt => a156897cab59d4a9.txt} | 0 ...35d6cbaa38cba.txt => a21d8bb488556a6f.txt} | 0 ...12afb446c78ce.txt => a23effdd1e0b0387.txt} | 0 ...5ba384071190d7.txt => a243f5a6e2aef08.txt} | 0 ...74f16bec5bbf3.txt => a3650a70b5eae511.txt} | 0 ...5b065c02fb875.txt => a425815a2146be3f.txt} | 0 ...a8ba45b2ebefd2.txt => a5312ee34a83472.txt} | 0 ...b92b2a68485aa.txt => a60431e704cfd67c.txt} | 0 ...aa2198d4850df.txt => a6116dd9c620e39c.txt} | 0 ...d24d51ab0f2ec.txt => a6a60e5084ac1c11.txt} | 0 ...bc8ca27f67538.txt => a6bd6cbda8e220e3.txt} | 0 ...fbc6ed8dc7bd7.txt => a892fb7f4ca8f546.txt} | 0 ...2caa4cfa17eeb.txt => a99ebb2468b16b95.txt} | 0 ...0e73cc4ad9f0b.txt => aaa63d8350548106.txt} | 0 ...d21f763543a21.txt => aad37f3b55b49e8b.txt} | 0 ...eccf50db39cb4.txt => abf9a812b0a61e07.txt} | 0 ...9e45ebf48d755.txt => ac454cba7b8ef897.txt} | 0 ...9070a00162057.txt => ac7ee8f205d4305f.txt} | 0 ...0023d79faffff.txt => adebeeed90235942.txt} | 0 ...405a34f99b6d6.txt => ae198d98d59aaf55.txt} | 0 ...50be8b38a35c0.txt => aedb47484495e540.txt} | 0 ...8cf7e4eef01cb.txt => af19b50155e57570.txt} | 0 ...075c83e7baebb.txt => afb99113fdc97fa7.txt} | 0 ...99295a3f41ee0.txt => afc512e4954fc414.txt} | 0 ...90d26ad4a4f8d.txt => b010e8f0a161de92.txt} | 0 ...d4fe51ef67a7e.txt => b024c4fc790da6a0.txt} | 0 ...b7a7482b5d8a7.txt => b04de969348b1187.txt} | 0 ...1af9821f0d361c.txt => b0ff98cda0b0c43.txt} | 0 ...fa9f25e69b0db.txt => b2310e8820061774.txt} | 0 ...51ca36b85ae94.txt => b278aa851a807748.txt} | 0 ...11dda30514e67.txt => b3f562db94371de7.txt} | 0 ...12b8e3303683b.txt => b5f1637aeba19ba4.txt} | 0 ...dbb71de71756e.txt => b6c652a922a26947.txt} | 0 ...1be7860f58cf6.txt => b71080d98c3c005a.txt} | 0 ...c1ad841243b6a.txt => b8226dfed0d6a202.txt} | 0 ...546882d08a1ac.txt => b8b7177b76c24b60.txt} | 0 ...c37b21b76b29e.txt => b8eb00e308a84c71.txt} | 0 ...9f46fd31058ea.txt => ba1557147d8416c1.txt} | 0 ...a566935f714fc.txt => ba489e6f976c964f.txt} | 0 ...d53c85d21b130.txt => bbfc3fd670d975ed.txt} | 0 ...507235524f855.txt => bc673310ad989d77.txt} | 0 ...fb265a3e6098c.txt => bda0913251ec8a7b.txt} | 0 ...b3917a8b59d5897.txt => bf45d5ff12eeac.txt} | 0 ...0280d8ceb16cd.txt => bf99ecdb396f2260.txt} | 0 ...3c3d7a4d872db.txt => c2193538ea3afe0a.txt} | 0 ...aa4f029baa8f0.txt => c2a52b208b761917.txt} | 0 ...09ce44d720b41.txt => c2e67de795c89a5a.txt} | 0 ...99e3f6110c5a32.txt => c2f1b1cb1ae72af.txt} | 0 ...7f52236c75608.txt => c3f7cfc63c7ff6c0.txt} | 0 ...71d66be6d6e40.txt => c44b1c3c0ffa10e2.txt} | 0 ...7336d068efc8d.txt => c451fef2d9e750cf.txt} | 0 ...a0c598c1f2d04.txt => c48ba88f01713cd9.txt} | 0 ...e83a8939aa3ea.txt => c4c9e9114ad6559f.txt} | 0 ...d6ffe4ff4d743f.txt => c4ea8d9f8cc216b.txt} | 0 ...b198a7253b941.txt => c59a8e0803dd0f2a.txt} | 0 ...19a36b49cd420.txt => c5bd55033a46cbd6.txt} | 0 ...408d5d8c9a319.txt => c5e476dd4b6a20ba.txt} | 0 ...ebd0ab799745b.txt => c74dda443bb93e16.txt} | 0 ...af1d7a0c0925a.txt => c9f5f46a27073adb.txt} | 0 ...ad4c171b47b9e.txt => cb0ee2e023f35346.txt} | 0 ...9d8b306bae268.txt => cb23a7b28fc18bd6.txt} | 0 ...5c5917aa6e797.txt => cb41782d94c9aab7.txt} | 0 ...67e8d01d8dfde.txt => cbd3c7018b67e8e4.txt} | 0 ...3cc61f9d4e36a.txt => cc4cfb2dc7db30af.txt} | 0 ...731264b505a67.txt => cc63349648479638.txt} | 0 ...45b3b58a92040.txt => ccbd4e70fd917551.txt} | 0 ...6faacdbe9d8c7.txt => cf72669419827310.txt} | 0 ...e36dfb1d3c6b9.txt => cf7f17d6f7fd036a.txt} | 0 ...1894a1d267067.txt => cfe73955a863d89d.txt} | 0 ...9906a8709b5cf.txt => cfefef663b0332e5.txt} | 0 ...ce9c609c0bc6d.txt => d00e203177644379.txt} | 0 ...e6d56faf7b4e2.txt => d14e7908f9d07961.txt} | 0 ...73fba435502d8.txt => d2045a3977b6446a.txt} | 0 ...993259005a4f7.txt => d440fc5c222001d7.txt} | 0 ...fc7bf167a48cd.txt => d4a81151a0ff1cd3.txt} | 0 ...d028b53b2fa36.txt => d4e82428a3f7df08.txt} | 0 ...c339de2200090.txt => d514a9b6a336ccd7.txt} | 0 ...12ebc1ff02117.txt => d548d3f08000ee3d.txt} | 0 ...2343faf93d23b.txt => d5ed21afa8637a26.txt} | 0 ...e63916e4212e6.txt => d66cc433d6fd8732.txt} | 0 ...126aa0fb68ef3.txt => d7c022e7514eebb0.txt} | 0 ...bbc010bbea5b7.txt => d7e95fbbc7ae4edc.txt} | 0 ...a7d798a0dd1d2.txt => d857b907a04662b0.txt} | 0 ...bb0f8a7466de9.txt => d85c19e058de9af1.txt} | 0 ...486abc69fc1fc.txt => d9705198a9828f90.txt} | 0 ...7c985bb14104f.txt => d98685c9fe133870.txt} | 0 ...c2e562160f609.txt => da2e8ce75b901e82.txt} | 0 ...37c6294090d64.txt => dba3075441128a41.txt} | 0 ...97c98bb2f9177.txt => dba645bb71d6294b.txt} | 0 ...7d06498897878.txt => dbdc65123191fc3f.txt} | 0 ...c53f2bcc51cfd.txt => dcbab4e3ea8be2cb.txt} | 0 ...dfa55370d45f9.txt => dcf012b2df6b781b.txt} | 0 ...eed1715a3503c.txt => dd95f43103333bf7.txt} | 0 ...1a6171e8a5d4c.txt => dea29eab15838d9c.txt} | 0 ...3264e25c98281.txt => df070dcdc10f9538.txt} | 0 ...cf75cca245ee2.txt => dfcb4cec23e82cb9.txt} | 0 ...0ce4c1ec59dfa.txt => e048c0e6bb06d724.txt} | 0 ...abe2714e07e88.txt => e0680ee49daf3ecd.txt} | 0 ...32e29d77b891e.txt => e0c62dc3071fe329.txt} | 0 ...30da14b8e67d2.txt => e11f321ad70e66d6.txt} | 0 ...bc227660f6677.txt => e225c605af3cdfe6.txt} | 0 ...25a7b608174fa.txt => e23896a75b3be671.txt} | 0 ...08c9ef684cb1e.txt => e245408b463a8838.txt} | 0 ...5eb2953c41fef.txt => e3476f63fad27664.txt} | 0 ...68cef6801ede5.txt => e355939f9d2af970.txt} | 0 ...a51c8d74f448fe.txt => e3a4cf54bcea79f.txt} | 0 ...df41b3f6059d4.txt => e3e8b5194a02b840.txt} | 0 ...85349fe52fbcf.txt => e41185e6a2547eda.txt} | 0 ...1750ca1ae0253.txt => e51eb49b458f8b30.txt} | 0 ...780c85f2aabb6.txt => e5b6ae7757c6e743.txt} | 0 ...b1151a0bdf19c.txt => e5c727b0b5b40d52.txt} | 0 ...e2ef0dd5ae597.txt => e8051d2095f3e05f.txt} | 0 ...1ebffe286fde1.txt => ea2c55d1a71e4c1b.txt} | 0 ...8521de031df4e.txt => ea8ea3523c9226e8.txt} | 0 ...73dcf11398d47e.txt => eacae423597e783.txt} | 0 ...0be274d24546e.txt => eb7ef9838cd7cad8.txt} | 0 ...67429b8224516.txt => ee3a0764d3c252bb.txt} | 0 ...85b3f41e9f61c.txt => ef79b655f296972f.txt} | 0 ...7f9b7e86e5fe4.txt => efe9c31cce4f2691.txt} | 0 ...c700a12236023.txt => f0b58c59c3feea05.txt} | 0 ...40a6b644cd21e.txt => f0e8db62b4d5a04e.txt} | 0 ...d5302084b69b0.txt => f0f675da06acca44.txt} | 0 ...9fd349f1d045f.txt => f1383a1298b478d1.txt} | 0 ...0c74c966a73af.txt => f28cf2c881206bc7.txt} | 0 ...74371a2badce6.txt => f3103a75268ee27b.txt} | 0 ...00a1177d78061.txt => f40eb1a37e76915b.txt} | 0 ...87ca9e0f038e3.txt => f476dbef5564bf84.txt} | 0 ...40a810a5e354f.txt => f4fc65b495fcb88b.txt} | 0 ...0a8741dd8ba1f.txt => f5908886e3245af0.txt} | 0 ...90cd414c0264a.txt => f5d9059f956d5013.txt} | 0 ...7f3cd0d39f56b9.txt => f5f071e3b309d77.txt} | 0 ...7a008f3d7b308.txt => f63a818ce466a5d5.txt} | 0 ...708b30903548d.txt => f6add51b506494b4.txt} | 0 ...62fc7761306e3.txt => f79d82c8ac8b6bda.txt} | 0 ...f124c7be3a6e5.txt => f8ebdb80be997fde.txt} | 0 ...be6ef6dfa6828.txt => f9702a98b358e235.txt} | 0 ...22a14740da9552.txt => f9e0beeb8300348.txt} | 0 ...a9a8c81cbe39f.txt => fa01ea71c168121d.txt} | 0 ...9fdb7c4350c2b.txt => fac7406e86e2d594.txt} | 0 ...d9038af68abcd.txt => fafd1746b13ebf11.txt} | 0 ...7b358c14deeef.txt => fb0df6afc6219df9.txt} | 0 ...fa73ae78d8720.txt => fb84be60b66700fa.txt} | 0 ...06239f448fcb9.txt => fbdaeda311992dcb.txt} | 0 ...b9ab1ca4c439c.txt => fd192e99e6a5065d.txt} | 0 ...26a3792b70bd8.txt => fd40fcf970ebd4c6.txt} | 0 ...83dadd4fd2138.txt => fec7d456d7e1f9e8.txt} | 0 ...073d8d3352f3e.txt => ff5fc916c91c2ec1.txt} | 0 ...cde579304f854.txt => ffe262df372f1494.txt} | 0 allure-report/data/behaviors.csv | 271 +- allure-report/data/behaviors.json | 2 +- allure-report/data/packages.json | 2 +- allure-report/data/suites.csv | 2200 +++++++++-------- allure-report/data/suites.json | 2 +- .../data/test-cases/101b76d3a18bb4c3.json | 1 + ...c32a0d73da0.json => 1039c276c50498c7.json} | 2 +- .../data/test-cases/11195fbf11e8bfc3.json | 1 - .../data/test-cases/112ca50049d27c.json | 1 - .../data/test-cases/1137568979e0ed3a.json | 1 + .../data/test-cases/113e69c4ee0f071.json | 1 - .../data/test-cases/115439469142590e.json | 1 + ...43c88a790e8.json => 115f495bb01a1dcf.json} | 2 +- ...4e5c638d89f.json => 1186c71e39a023da.json} | 2 +- ...c6ddcc506b1.json => 1191e503f4a01ba8.json} | 2 +- ...3d5045f38b5.json => 119afffc6f9f5da8.json} | 2 +- ...a9c0404421b.json => 11b930e98296bcb5.json} | 2 +- ...5fbac259354.json => 11dd46913546ab74.json} | 2 +- .../data/test-cases/1212df96f6b2dc34.json | 1 - ...9538f752875.json => 12409260b34394eb.json} | 2 +- ...50476aa4c9a.json => 13b14c699e0075d9.json} | 2 +- ...fd3f56dec1a.json => 13bf02549cf3b6be.json} | 2 +- ...6c726fc2884.json => 13f07332e607443a.json} | 2 +- ...5c2e341a76c.json => 141816067eecf7ae.json} | 2 +- .../data/test-cases/142b0c4f3754d996.json | 1 - ...28bce0de37c.json => 14a62b5662523525.json} | 2 +- .../data/test-cases/14c26803c1139e78.json | 1 + .../data/test-cases/14cdd8696beec9a.json | 1 - ...c2d6922300e.json => 14fe289b5296dbe2.json} | 2 +- ...9687a6c19d2.json => 1527893d1e9640cd.json} | 2 +- ...4bf3fbbd64b.json => 154178490b84fb33.json} | 2 +- .../data/test-cases/157d23c0aff9e075.json | 1 + ...4eb2cd2dde7.json => 158fcdb2f6fefbbc.json} | 2 +- ...2caed16dfa0.json => 15b13324091bd06f.json} | 2 +- ...3a989211fca.json => 15fb7a87bc12b45a.json} | 2 +- ...4ce5ee6bba3.json => 160f56b842e7aedc.json} | 2 +- ...c2d20fe6a0a.json => 16c1a97c5d8eacc8.json} | 2 +- ...529af3ab5ff.json => 16e8835412fb12dc.json} | 2 +- ...9395e9495b6.json => 1746b1293c111d5c.json} | 2 +- ...a5a1f4b39dc.json => 17e1393f574a0bd2.json} | 2 +- ...7cf48700667.json => 17e173f94ae42aac.json} | 2 +- ...0be8784f086.json => 17e43c85790e0335.json} | 2 +- ...03d8a3c498d.json => 17e84d8dd3123806.json} | 2 +- ...a205b731823.json => 1809b6a5abfda186.json} | 2 +- ...7d93793c0ea.json => 18128d81fd90263f.json} | 2 +- .../data/test-cases/183ba5aa4a18280.json | 1 - ...2db5bae14d4.json => 184d3db7becc05d3.json} | 2 +- ...25377e5683d.json => 18ce21893b263766.json} | 2 +- .../data/test-cases/190ed93e28b901b.json | 1 - .../data/test-cases/19443f8320b2694c.json | 1 + ...44534b3c5db.json => 196d20a77b3bd50d.json} | 2 +- ...dc9fa1f1c3a.json => 19ea1d35de320e7d.json} | 2 +- ...19646678e3f.json => 19edf49636f3f12c.json} | 2 +- ...e56991bbe59.json => 1a7cac845fe0b74b.json} | 2 +- .../data/test-cases/1a8f12ae9a258bd1.json | 1 - ...155522c6119.json => 1aa02f860d14689a.json} | 2 +- .../data/test-cases/1abde016dd7f5ee7.json | 1 - .../data/test-cases/1b7657273f039658.json | 1 - ...a612ad99844.json => 1b90e35542bb0d33.json} | 2 +- .../data/test-cases/1b9a7ef859e6370c.json | 1 - ...9a99109106e.json => 1bbca055747eb3d5.json} | 2 +- ...b1a931bee1a.json => 1c311c9e8beb5e15.json} | 2 +- .../data/test-cases/1c66d03c44b01cf6.json | 1 + .../data/test-cases/1cbe6a610fbdfd6.json | 1 + .../data/test-cases/1cc5ce778c99d98.json | 1 + .../data/test-cases/1d0688b018eb523.json | 1 + .../data/test-cases/1d2cfb77eef4360e.json | 1 + .../data/test-cases/1d49801d4e6b4921.json | 1 + ...3ca0df8b3d8.json => 1d6bdee17d8fe6b6.json} | 2 +- .../data/test-cases/1df66f77b1cc31ad.json | 1 + ...c172b71c55f.json => 1e414e40d5aadc94.json} | 2 +- ...6640bd96c68.json => 1ec22d6f24411c0a.json} | 2 +- ...f00b86ce444.json => 1f322fed435e4c7b.json} | 2 +- ...5055e76bf71.json => 1fa1afd4ab27e4cb.json} | 2 +- .../data/test-cases/1fb0e4ddfae0bf06.json | 1 + ...c59e77319f9.json => 1fbf7f076eee2a48.json} | 2 +- .../data/test-cases/1fc6416a9dae71a6.json | 1 + .../data/test-cases/2064c7d6b1732474.json | 1 - ...025ebcea5dd.json => 206559a31da63112.json} | 2 +- .../data/test-cases/20bc61b759bd6ae3.json | 1 + .../data/test-cases/21221b4a48a21055.json | 1 + ...1a97b3fc375.json => 212bbd08068e155a.json} | 2 +- ...ac7fdaf6bf5.json => 213536a8a5597e91.json} | 2 +- ...9e586318511.json => 213fb9c2969dbcfd.json} | 2 +- .../data/test-cases/2165433d4974d104.json | 1 + .../data/test-cases/2180a5f5e79006a1.json | 1 - .../data/test-cases/218b156daee27f08.json | 1 + ...b50f2f722f5.json => 21e692bd1f008ebc.json} | 2 +- ...4b70b306bd4.json => 2200ea2b7046c13e.json} | 2 +- .../data/test-cases/22bb7ddce4971121.json | 1 + .../data/test-cases/230fd42f20a11e18.json | 1 + .../data/test-cases/231a2a65aa8e32a.json | 1 + ...0d0ac53c788.json => 233e934352e9feff.json} | 2 +- ...f3b4505484b.json => 237d8af0ad05999a.json} | 2 +- ...fe5c117b0b5.json => 238aa65764e1d222.json} | 2 +- .../data/test-cases/23b533c70baf95c9.json | 1 + ...dbc90cf4c5e.json => 23d88d3c634a9318.json} | 2 +- ...2c26291ccd5.json => 247e42713d4388e5.json} | 2 +- ...190aa99ad42.json => 249dabf58e93eece.json} | 2 +- ...850abe86297.json => 24b90ea9d401f78e.json} | 2 +- .../data/test-cases/24f0384efd85ae74.json | 1 + .../data/test-cases/24fce2b7549fc46.json | 1 + ...37a1715c915.json => 250def6bd45574c1.json} | 2 +- .../data/test-cases/2571a6d17171a809.json | 1 + ...35d3de0d6f4.json => 258638d82f4f543b.json} | 2 +- ...fa2d2c9d074.json => 259fe2f0923b6d92.json} | 2 +- .../data/test-cases/25c9ba69d5ac48c6.json | 1 + ...86e7098fd84.json => 25e6937e43cdeebb.json} | 2 +- .../data/test-cases/25eb791ee007f15b.json | 1 + .../data/test-cases/26189d3cfda1b8d1.json | 1 + ...1f0f9cb4c37.json => 2620650c036fa5d9.json} | 2 +- ...78ddda4bd3c.json => 2687b62465687fa1.json} | 2 +- ...53086c60820.json => 274cead41a0d037b.json} | 2 +- ...7354d7a779d.json => 2752c76835c96fe1.json} | 2 +- ...fb523dadc81.json => 27ff7d9c249750c3.json} | 2 +- .../data/test-cases/280752ec061c1457.json | 1 - ...06d7bf954d5.json => 28b8fa13ba65f773.json} | 2 +- .../data/test-cases/28baf5593cc14310.json | 1 + .../data/test-cases/293f48722d8450df.json | 1 + ...537e33a59ae.json => 295480517e9988a7.json} | 2 +- ...cb89b6e193e.json => 297d8e250a3e646f.json} | 2 +- ...efafee18856.json => 2989a8630844f025.json} | 2 +- ...2585f9de41f.json => 299c2d5af116c0c6.json} | 2 +- ...d068d3e7d87.json => 29dbd6c095321046.json} | 2 +- ...a06c76121c7.json => 29ff0a22a55da068.json} | 2 +- .../data/test-cases/2a3aa78afffa487b.json | 1 + .../data/test-cases/2a6bb93adc2b9500.json | 1 + ...a9afeec351e.json => 2a72b580d7da86a8.json} | 2 +- .../data/test-cases/2a82791553e70088.json | 1 + ...02637c8027f.json => 2ae21ed716f07041.json} | 2 +- ...ec372fcc899.json => 2b0cda84a7f3dae6.json} | 2 +- ...1e6126c1fbc.json => 2b0e5265fce841a7.json} | 2 +- .../data/test-cases/2c379ae83853bb2a.json | 1 + .../data/test-cases/2c38900f28571c1.json | 1 - ...710a823b80a.json => 2c5d8621f6ad138a.json} | 2 +- ...9024dff1cfd.json => 2c9576ef35dcd75d.json} | 2 +- .../data/test-cases/2cc31ac5154e0ba1.json | 1 + ...925458c8736.json => 2cf064760bcef1c9.json} | 2 +- .../data/test-cases/2d7cf0b0c2f46c3.json | 1 + ...a92784fccae.json => 2dbb23fbcd106704.json} | 2 +- .../data/test-cases/2de9285990285353.json | 1 + ...188a4944ac6.json => 2e552441092e62c5.json} | 2 +- ...00babc1267d.json => 2e82de27bb7feb41.json} | 2 +- ...cd3c8af3c06.json => 2ea180ad6a851a6d.json} | 2 +- ...2b2ae66d10b.json => 2f5a6152612f841f.json} | 2 +- ...5b2a75ee6b7.json => 2f7fe1d474868abf.json} | 2 +- .../data/test-cases/2fa689144ccb2725.json | 1 + .../data/test-cases/2febaffd225102f.json | 1 + ...bdf4ccd46b8.json => 2ff548416f63af86.json} | 2 +- .../data/test-cases/300c045916564a1.json | 1 - ...d981594c6f7.json => 305e207ab9e52150.json} | 2 +- .../data/test-cases/30779503c72bcec6.json | 1 + ...d282fded9dd.json => 30782fdca988a45e.json} | 2 +- ...dde48e8dbb5.json => 30a51896f75b6d0e.json} | 2 +- .../data/test-cases/30ebc2ebd440c488.json | 1 - .../data/test-cases/315e825b7f114d5b.json | 1 + .../data/test-cases/31667aebf4f2d5e.json | 1 + ...c92a1b3b456.json => 31754715fc04b029.json} | 2 +- .../data/test-cases/31ce0fdb81c2daf6.json | 1 + ...afe4439b9a8.json => 31e5836e8c9c8975.json} | 2 +- ...12b94420bba.json => 31fa8902feb5ac83.json} | 2 +- ...c3ce0169a01.json => 327e71002be993d7.json} | 2 +- ...59f0e1a4eca.json => 32c8f819a3205d1d.json} | 2 +- .../data/test-cases/32eaf956310a89b7.json | 1 + .../data/test-cases/33444d7890f0540.json | 1 + ...f5ba60e276b.json => 3352f60feb1f9712.json} | 2 +- ...165c8452d36.json => 335bbd097bcd7f07.json} | 2 +- ...881fa048473.json => 3371b53ac373c146.json} | 2 +- ...f8438e567a9.json => 3376cc456abfb7e3.json} | 2 +- .../data/test-cases/33789c02e7e07041.json | 1 + ...dd805d734b8.json => 338755bddf5c3394.json} | 2 +- ...c4fe30779a0.json => 33cbde6b5c940b7b.json} | 2 +- .../data/test-cases/33cec918ed89f21.json | 1 + ...e78c129f8d8.json => 33fde501ad5f49b7.json} | 2 +- .../data/test-cases/34ca51906297ee6f.json | 1 - ...a73e9c93a57.json => 353219a042e3862c.json} | 2 +- ...a1056fea3d4.json => 35a3e561b98b1660.json} | 2 +- ...62b05552f1e.json => 35bd830710547eb9.json} | 2 +- ...edc22c54787.json => 35dae73baea1e718.json} | 2 +- .../data/test-cases/35f4051adfa3517.json | 1 - ...27f6bff6f10.json => 36190d8eb76d5fc1.json} | 2 +- ...86bb753fb8c.json => 362d2abd0db10461.json} | 2 +- ...27af7d064cf.json => 36cf4add9af1788b.json} | 2 +- ...ad6b5f0c1e0.json => 3765df1aaa05656f.json} | 2 +- ...600f4ca1daf.json => 378737d914acf19c.json} | 2 +- .../data/test-cases/37fbb0401b01604d.json | 1 + .../data/test-cases/383972b39eec664a.json | 1 - ...c539143ffc2.json => 38465b9126105022.json} | 2 +- ...81e3674db5e.json => 3855d942abd2cdd4.json} | 2 +- ...a272cafb8c8.json => 387fcb0eb682916d.json} | 2 +- .../data/test-cases/3889b494a7c822e.json | 1 + ...c095108694d.json => 38a864ebd2e42623.json} | 2 +- .../data/test-cases/38d84fb9239b5f2e.json | 1 - ...f40e74f545d.json => 394fa56a4056d8b5.json} | 2 +- ...baeffa03c9d.json => 39b35ac8d306cbda.json} | 2 +- ...5975118f527.json => 39d768f6fda8fdf2.json} | 2 +- ...57a03b90416.json => 39dc8cd28592a068.json} | 2 +- ...2489842209e.json => 39eb5e3cc2f12413.json} | 2 +- .../data/test-cases/3a516b9dc7b53625.json | 1 + ...a38809b08b4.json => 3a88934bc640802f.json} | 2 +- ...ae7fdc54916.json => 3af8d9a34aaedf9e.json} | 2 +- ...96efb68455a.json => 3b9843a7de0fadce.json} | 2 +- ...a89a8362e7c.json => 3bcfd32a26f68acf.json} | 2 +- ...dcc2ec25637.json => 3bdd18878d95b69a.json} | 2 +- ...c8ac17d8363.json => 3bf609775738b0d6.json} | 2 +- .../data/test-cases/3c275e4650ef1fcb.json | 1 - ...6a2e41d4cb55.json => 3cf56b09b04e1e0.json} | 2 +- ...53c14dc1c4a.json => 3d317930834fc5a0.json} | 2 +- .../data/test-cases/3d6d6f8c83d1b77.json | 1 + .../data/test-cases/3d9d773987a3ac09.json | 1 + ...0180790876d.json => 3e0c67e156a2779f.json} | 2 +- ...1eb012d0834.json => 3e3617735ee8a318.json} | 2 +- .../data/test-cases/3e564e38813f1539.json | 1 - ...692c2c18f1b.json => 3e7bb737d50c6ad2.json} | 2 +- ...1cdd802c850.json => 3e8030135d08e5ec.json} | 2 +- ...4bc4fb0b16f.json => 3ed2084bc0b6f03d.json} | 2 +- ...4274aefdd43.json => 3f1d46f60fdb6ff1.json} | 2 +- .../data/test-cases/3f2e19b818fd15f5.json | 1 + .../data/test-cases/3f3a4afa0166112e.json | 1 + ...7a9e25073fa.json => 3f9c404f9b9586bb.json} | 2 +- .../data/test-cases/3fc024845e1d1c6.json | 1 + .../data/test-cases/3fd5a8d15bcf78fb.json | 1 + .../data/test-cases/3fe8a02ede1e6532.json | 1 - .../data/test-cases/3ff093181cede851.json | 1 + ...3e8771eebeb.json => 40205ec1b133a2fd.json} | 2 +- ...b26a6476828.json => 4026348dc538d851.json} | 2 +- ...9c3e0f7aa15.json => 405571045d735c93.json} | 2 +- .../data/test-cases/40605a6b825041b.json | 1 + ...2ad871851c8.json => 4062058c45eaf899.json} | 2 +- .../data/test-cases/4092d3473f63825.json | 1 + .../data/test-cases/4098e50c368546e.json | 1 + .../data/test-cases/40b9b78f2d258cf9.json | 1 + .../data/test-cases/40fa5a64adc09d6a.json | 1 + ...acfa2431348.json => 418db164c4b04ca4.json} | 2 +- ...04b9e574ded.json => 41a0b3fc08086e96.json} | 2 +- .../data/test-cases/4223e436b2847599.json | 1 + .../data/test-cases/42452319aaa200ae.json | 1 - ...a90aeba5e97.json => 427e4e0e38cec3a1.json} | 2 +- .../data/test-cases/42bd5b348187136c.json | 1 - ...749a1c464e4.json => 42eeca3ee9327f4d.json} | 2 +- ...11ea285cd92.json => 432b6e8e59506414.json} | 2 +- .../data/test-cases/43578fd4f74ce5d9.json | 1 + .../data/test-cases/4391e2c86d08e20.json | 1 + ...9ea02196db7.json => 4397ca89d4873d0b.json} | 2 +- .../data/test-cases/43a52f18fb3b8136.json | 1 + .../data/test-cases/43ae83fa91833c8.json | 1 + ...d07d930b3b1.json => 43e580c8ccbc2ae0.json} | 2 +- .../data/test-cases/44141b5da145c70a.json | 1 + ...b882d7cc41f.json => 44221036fb99a571.json} | 2 +- ...0bb1a8856d4.json => 442731f3c269dae1.json} | 2 +- ...4a0a8bd8284.json => 44275f12522bda28.json} | 2 +- ...8d041ff123e.json => 44684f939061cdde.json} | 2 +- ...837031681ca.json => 44dd7ed6ddd58149.json} | 2 +- .../data/test-cases/44e584571b03be2.json | 1 - .../data/test-cases/450fbb27e2067be4.json | 1 - ...f3c0fa23567.json => 453e6c562bbae4f7.json} | 2 +- .../data/test-cases/456a7345e9aeb905.json | 1 + ...96f923539a5.json => 458495e9a11139a4.json} | 2 +- ...df036dd98c9.json => 45a592633cd8d633.json} | 2 +- .../data/test-cases/45bc1447720343e5.json | 1 - .../data/test-cases/46352cf5111d5c61.json | 1 + .../data/test-cases/469fb46dbe1a31d.json | 1 + ...ac9558d7a9c.json => 46c119be5111a687.json} | 2 +- ...d5056a00e1d.json => 46d58d763aebfedc.json} | 2 +- .../data/test-cases/4719969d944ed48a.json | 1 - .../data/test-cases/472edec34fd4cc19.json | 1 - ...745ec1b0964.json => 4736a066b330a3e5.json} | 2 +- .../data/test-cases/474912065ebca71.json | 1 + ...ae800da8214.json => 476ac59c15a93d4b.json} | 2 +- ...13e0e5a3954.json => 478b2bb987aa8c1c.json} | 2 +- .../data/test-cases/47e3461a4e252fc1.json | 1 + .../data/test-cases/47eeb9c764763918.json | 1 + ...a3d2e7b92c1.json => 4803d92c50fef81a.json} | 2 +- .../data/test-cases/482cc1b462231f44.json | 1 + ...41372a5f921.json => 4875af937b850b1f.json} | 2 +- ...43311cb72ff.json => 48a3545f29b9b695.json} | 2 +- ...5f8ac92a91e.json => 48e1ee32ef518911.json} | 2 +- .../data/test-cases/48f19bb58dd1432f.json | 1 + ...cce3e37ee4a.json => 48f4ecefce5c7b7e.json} | 2 +- .../data/test-cases/49244d740987433.json | 1 + ...52ea94aa88a.json => 4928db7c01341cec.json} | 2 +- ...be9e7cab5b6.json => 49330a85ee41c454.json} | 2 +- ...a91eff84fb2.json => 4968a6d06aaa9f9c.json} | 2 +- .../data/test-cases/4990a9f9fb7d9809.json | 1 + ...cfc8c05650c.json => 49d94e51d64718a4.json} | 2 +- ...4516df37f52.json => 49fa9055aa757d7b.json} | 2 +- ...5411c74f4a1.json => 4a25f98e06778e12.json} | 2 +- ...242cf60389c.json => 4a34b1c679ee3fc0.json} | 2 +- .../data/test-cases/4a970025f2147b3a.json | 1 + .../data/test-cases/4ab2fd070154adeb.json | 1 - ...ef4547a41f8.json => 4ac6613711439ff9.json} | 2 +- ...47a9cdd2bef.json => 4ade5d7baabdb848.json} | 2 +- ...d8d31f590b0.json => 4aeb02bd06c6709d.json} | 2 +- .../data/test-cases/4b2984e4fa36f94.json | 1 - ...3dc9ab240ff.json => 4b38126bac5fa484.json} | 2 +- .../data/test-cases/4b75654893666492.json | 1 + ...4bc4e02fa07.json => 4b7f4ecd4f7fef24.json} | 2 +- .../data/test-cases/4b82056eac592aba.json | 1 + ...a07a1a3ea56.json => 4ba6a0676ce201a1.json} | 2 +- ...229e4c52322.json => 4bc08c1baeba1126.json} | 2 +- .../data/test-cases/4c31a5ec99c6ca69.json | 1 - ...087ec7aaf2b.json => 4c4230f8e0e384cc.json} | 2 +- ...bf3e26a53bd.json => 4c8c8098a5ba0587.json} | 2 +- .../data/test-cases/4cc7d24b84024142.json | 1 + ...c73a428b4db.json => 4d0543e962e43a97.json} | 2 +- .../data/test-cases/4d07449717f6193c.json | 1 + ...4f1195a0e9d.json => 4d2239036502cf20.json} | 2 +- .../data/test-cases/4d53eb58d77047e8.json | 1 + .../data/test-cases/4d57a8ddade5816.json | 1 - .../data/test-cases/4d64a30c387b7743.json | 1 + ...c5a2c55f031.json => 4d86cc91fd1923ec.json} | 2 +- ...5797940e119.json => 4db417c919f14dad.json} | 2 +- .../data/test-cases/4df2e31ca734bf47.json | 1 + ...f398d2f201a.json => 4e0b9180415d7384.json} | 2 +- .../data/test-cases/4e3f7ea473e691d3.json | 1 + .../data/test-cases/4e3fc5966ad47411.json | 1 + .../data/test-cases/4e87d924fe50548.json | 1 + ...b8f003df599.json => 4ed891af5fcb8959.json} | 2 +- ...68b06d36fc7.json => 4eec4d08404980cd.json} | 2 +- ...b38164b77c2.json => 4f327dad8c4d7133.json} | 2 +- ...ce845a8b680.json => 4f80880da2e426c8.json} | 2 +- .../data/test-cases/500f182a6eedd000.json | 1 - ...e6b4760e89e.json => 5016998388e149a3.json} | 2 +- ...ee7248b1557.json => 5052ffebbe9e5222.json} | 2 +- ...f6e477b7f80.json => 50577b0cb2a4b7be.json} | 2 +- .../data/test-cases/506e0ee504d23a05.json | 1 + ...08521ff3dd3.json => 50aed2563bca9cb0.json} | 2 +- ...037b0b98fcf.json => 50d6552ddbe0d86a.json} | 2 +- ...aabd5a5300d.json => 51076f5a3e3475ad.json} | 2 +- ...4e464aa700e.json => 51801b1697e4932d.json} | 2 +- ...f7cfcd6a2c9.json => 51842db2fafc0136.json} | 2 +- ...28bcf35143f.json => 520c156ef3917d19.json} | 2 +- ...513a2221397.json => 522017a410240b47.json} | 2 +- ...33a131eefd9.json => 522dabffb376b9c8.json} | 2 +- .../data/test-cases/5238b22fc20ccda9.json | 1 + .../data/test-cases/523993bf26b2b2d.json | 1 + ...8af4c590649.json => 5283421c34c2facb.json} | 2 +- ...98a41807de8.json => 529f7f81e90deb17.json} | 2 +- ...394430052ee.json => 52a5dee2c595fefe.json} | 2 +- ...df283530a5b.json => 52c8b26b912e9951.json} | 2 +- ...d1c4189d9dd.json => 52e4a6d580ce5f36.json} | 2 +- .../data/test-cases/52e55a2445119fdd.json | 1 + .../data/test-cases/52f852c4238fea22.json | 1 + ...4ac2fbcf5b2.json => 530cf97bef900b31.json} | 2 +- ...47ad7612076.json => 5319ce0d16f13f7e.json} | 2 +- .../data/test-cases/532d8f53f92733e9.json | 1 - .../data/test-cases/5364303890f7a5a1.json | 1 + ...0215248af57.json => 53900b5a556367f8.json} | 2 +- ...f307aec9205.json => 539e48e315449d8e.json} | 2 +- .../data/test-cases/53fa8d477eb42fd3.json | 1 - ...5a27bb8937d.json => 5421992f655c2a5d.json} | 2 +- ...17310170d88.json => 5444c88fc365358c.json} | 2 +- .../data/test-cases/5471ece0090e3d4.json | 1 - ...e95093fd8e7.json => 547e143b73834674.json} | 2 +- ...3f4b0bdd51b.json => 5488ed1b45d5018a.json} | 2 +- ...4a37e5c3cb6.json => 5493a4d389a4b9e6.json} | 2 +- .../data/test-cases/5496efe2fd3e353.json | 1 + ...38c1be516d6.json => 54d8fcc9aa407768.json} | 2 +- .../data/test-cases/54fbe05c675f404a.json | 1 - .../data/test-cases/5503b0de9149b0f0.json | 1 + .../data/test-cases/555817f2fd5ba68f.json | 1 + ...f2fa010c721.json => 5567075f87625777.json} | 2 +- ...822e686b250.json => 55719c1a41a634a4.json} | 2 +- ...d8e5ff615be.json => 559abc951e1b2adf.json} | 2 +- ...545d8dcd43f.json => 55bf5f341a824ad0.json} | 2 +- .../data/test-cases/5647d5db4078d707.json | 1 + .../data/test-cases/564bcc936cf15d1a.json | 1 + ...6fd32f6992f.json => 56a70ac6c19b5c2a.json} | 2 +- ...9fe45d13f2d.json => 56d0c429ca5615e0.json} | 2 +- ...c37dcb7799b.json => 56d273815a84483f.json} | 2 +- ...4ddc17f51c8.json => 57c8e0dc2c8662c2.json} | 2 +- ...c3b6c6421c4.json => 57eb8463acc316b7.json} | 2 +- ...93ff1ffe8b3.json => 57fc1349073137a7.json} | 2 +- .../data/test-cases/5814d63d4b392228.json | 1 + .../data/test-cases/5880c730022f01ee.json | 1 + ...4a6ed49ac6d.json => 592d9cd2b7f473ab.json} | 2 +- .../data/test-cases/5956e80e98375be.json | 1 - ...0878e009fc6.json => 59b3d14f4d280871.json} | 2 +- .../data/test-cases/59cf1cc1a5cff79.json | 1 + ...82ce819c148.json => 59d6a997f5b4aca5.json} | 2 +- ...88777002151.json => 5a12cd507dfc239d.json} | 2 +- ...25f55b8b56c.json => 5a1dd57eb64fa0aa.json} | 2 +- .../data/test-cases/5a5d0954bb249b69.json | 1 + ...dcea61e4ef5.json => 5a6f2f90ae14c26f.json} | 2 +- .../data/test-cases/5a88d917682070e.json | 1 - ...30334dcfc0d.json => 5aa15cdd34cdd72f.json} | 2 +- ...128cd73780c.json => 5ac2db6b2e80def2.json} | 2 +- .../data/test-cases/5ac65e8dc17d86a.json | 1 + .../data/test-cases/5af3592e93b232bc.json | 1 + ...db3e38780e6.json => 5b0d83830c13fe88.json} | 2 +- .../data/test-cases/5b36ed636679609b.json | 1 + .../data/test-cases/5b5df6c66b23ba75.json | 1 + ...ad2bd045d0c.json => 5b87063c55d646fa.json} | 2 +- ...371009d2223.json => 5ba553d4084ace90.json} | 2 +- ...94781b470ee.json => 5ba85cabbe7e4e64.json} | 2 +- ...a157e542cb8.json => 5bbc7cd8e2683c41.json} | 2 +- .../data/test-cases/5bee7e36f6e76857.json | 1 + .../data/test-cases/5c0380ec075dfe06.json | 1 - .../data/test-cases/5c460b7e756cd57.json | 1 + .../data/test-cases/5c8cbacba511411.json | 1 + ...0178a326f0a.json => 5c8e94c26f7e775d.json} | 2 +- .../data/test-cases/5cb1c27a6629db87.json | 1 + ...83d6cc10b66.json => 5cbc168dcad54c45.json} | 2 +- .../data/test-cases/5cbf19148d05755c.json | 1 - ...fd680942c58.json => 5cc568bcbc2453dc.json} | 2 +- ...5b9351caed2.json => 5cda4840465073d5.json} | 2 +- ...1e10beb3240.json => 5d6b33acb65bb93f.json} | 2 +- ...c07480f42a4.json => 5da43d3a303ec46a.json} | 2 +- .../data/test-cases/5ddbb977ec343693.json | 1 + ...b4479970e98.json => 5e446730ae629c6c.json} | 2 +- ...040e5481dc9.json => 5e72598a5c064723.json} | 2 +- ...ecee61d3d94.json => 5ef563c60f1007ea.json} | 2 +- ...3b6c2f5cc4b.json => 5f01b1bb86ec5e4a.json} | 2 +- ...a2048ae1d24.json => 5f37f1e35250223f.json} | 2 +- ...da1a117f865.json => 5f3a50fbe3f45101.json} | 2 +- ...8eaed470ea7.json => 5f7165cd602afcbf.json} | 2 +- .../data/test-cases/5fb0fdc1cb454fb.json | 1 + .../data/test-cases/5ff9cf70b259ca21.json | 1 + ...f1fe714521a.json => 5ffc12c38a719895.json} | 2 +- ...dbb71631571.json => 600ff9f84893303e.json} | 2 +- ...c86b12a37c4.json => 6044467509892ff0.json} | 2 +- ...3c4ab89c7ec.json => 6066d349be23d299.json} | 2 +- ...b4f7111917c.json => 6081ff969f9ea72a.json} | 2 +- ...d3e8bb02244.json => 60f76b164a916b4e.json} | 2 +- ...52abb7b813c.json => 610996d8ca2c99cc.json} | 2 +- ...74c92057e94.json => 611d558a953db4dc.json} | 2 +- .../data/test-cases/61355273b18aad8.json | 1 + ...f81177cf38b.json => 61b2bb726cd1f52e.json} | 2 +- ...97a9aadedfc.json => 61c11f4086f447bf.json} | 2 +- ...2640c2c9e47.json => 61f607b52c867fb3.json} | 2 +- ...0cd48caa4d6.json => 621a25121601fe95.json} | 2 +- ...b2817945b36.json => 62263e93a5cfddb4.json} | 2 +- ...9f90ff35603.json => 622aea036e4cf24e.json} | 2 +- ...c9448de91f2.json => 623e1f94af0b0a8a.json} | 2 +- ...f67db9047ee.json => 627ac903c8bfc90f.json} | 2 +- .../data/test-cases/62a6bbd8d87be20e.json | 1 - ...b1da849121a.json => 62dca90ee3fbe009.json} | 2 +- ...5d4dc841edb.json => 630542b4d1ae1e45.json} | 2 +- ...19bb4975491.json => 630aba545cc07b30.json} | 2 +- ...f2c06bf8752.json => 6327808bac6df1db.json} | 2 +- ...cbfaa9e2f14.json => 634a6fc50b2ba707.json} | 2 +- ...954404a7411.json => 635a66b4aaab6101.json} | 2 +- ...3d782a2ed03.json => 63600542edbb694a.json} | 2 +- .../data/test-cases/63b9cb3528bcd1e8.json | 1 + ...867360b442e.json => 640e02afdf541b21.json} | 2 +- ...0513e4048a8.json => 6410dd1650b4faab.json} | 2 +- .../data/test-cases/644c808df55456e9.json | 1 + ...e1b4fc0ab11.json => 64e42fae205d69e4.json} | 2 +- ...cc6a682faac.json => 65318d64270bf167.json} | 2 +- .../data/test-cases/653d6409b929d554.json | 1 + ...baa5d6679fc.json => 65519c1899e60621.json} | 2 +- ...009f2bba8b1.json => 656d201041ba5817.json} | 2 +- ...5b0a224435c.json => 65ae520512a0a5fc.json} | 2 +- ...4b7c764fede.json => 65c57bdf9fea8094.json} | 2 +- ...007c09ea2b5.json => 65cae0d4eb0f95b8.json} | 2 +- ...d0610fd83c6.json => 6612fa568c338bff.json} | 2 +- .../data/test-cases/66b2d8dadf3898.json | 1 + ...bbeb537c71a.json => 66dedca947415b6c.json} | 2 +- ...d1e00782e11.json => 6722ace1ab285b1e.json} | 2 +- .../data/test-cases/67535419d885cbd9.json | 1 + ...7a02debe899.json => 67590949db6da2ee.json} | 2 +- ...f4fb624aad6.json => 67660b7a0592cf4d.json} | 2 +- .../data/test-cases/67c96b92db3f1ee1.json | 1 - ...2e2eabe60c3.json => 67ecde96f288a7b2.json} | 2 +- .../data/test-cases/681eea057133a7e0.json | 1 - ...124345447fc.json => 6826d14915228b29.json} | 2 +- ...a6ba87dba0e.json => 68fbe283acac1b6a.json} | 2 +- .../data/test-cases/690df5b9e2e97d3.json | 1 + ...ba41972f97c.json => 691c776616074a7a.json} | 2 +- ...9209fbeb70d.json => 694927049ad61cd3.json} | 2 +- ...150a499b4e9.json => 694d122063aa9b02.json} | 2 +- ...98f814c9a2c.json => 6959c64cdad7a79a.json} | 2 +- ...c2306766d91.json => 69bff1baf8829aa6.json} | 2 +- ...3e227b56151.json => 69c302e5122b751d.json} | 2 +- .../data/test-cases/69d8ca152b73c452.json | 1 + .../data/test-cases/69f67038b11a4861.json | 1 + ...3695c9130c6.json => 6a0a7c65d5636a5c.json} | 2 +- .../data/test-cases/6a0ae436d7d72bb.json | 1 + .../data/test-cases/6a8f943df9cf325c.json | 1 - ...ac8835c46c1.json => 6b11699e388f2732.json} | 2 +- .../data/test-cases/6b2ccbd851ec600.json | 1 + ...e1fc4481de3.json => 6b82f1725d1453b9.json} | 2 +- .../data/test-cases/6bcea3846719ead.json | 1 + .../data/test-cases/6c1e65f294db5f89.json | 1 + .../data/test-cases/6c8559b634a76bd8.json | 1 + ...25d5267a222.json => 6cc7dd91ca56d191.json} | 2 +- ...3dde824b045.json => 6cece42c72540e7a.json} | 2 +- ...e402ebe38d8.json => 6d57e0044d071709.json} | 2 +- .../data/test-cases/6d917e3e4d702f23.json | 1 + ...e4978ed22ba.json => 6da9e4a8a463c592.json} | 2 +- ...8495a8b75af.json => 6db0502ca689b396.json} | 2 +- ...c4bfc7d171f.json => 6dd8a24f05e81d8d.json} | 2 +- .../data/test-cases/6e91e404eb8e624.json | 1 - .../data/test-cases/6f178467aa4ed9b7.json | 1 + ...645fcf8229c.json => 6f2806a9130ac2bf.json} | 2 +- ...8173d925ce2.json => 6f95e3a968732946.json} | 2 +- ...0d1e9f40ddc.json => 6fa9bd2fff491ec7.json} | 2 +- ...eb3dcb32bf5.json => 6fb97aca94ac90f1.json} | 2 +- ...4f04872e4c5.json => 7019f73b053e7ae6.json} | 2 +- .../data/test-cases/701c3cee2d2ca0d.json | 1 + ...8febcecd61d.json => 703af1f2e157e358.json} | 2 +- ...e899f1ebab4.json => 705df14002b81e6d.json} | 2 +- ...a7c8f1149b2.json => 705f3a50d2317813.json} | 2 +- ...dec6435da10.json => 7062f727dbe31207.json} | 2 +- ...f464fe4ea07.json => 7086e3f0d0497484.json} | 2 +- .../data/test-cases/70a5d60b5abb1f3f.json | 1 + .../data/test-cases/7250652c2d8bbae5.json | 1 + .../data/test-cases/72c2edc2055d0da7.json | 1 + .../data/test-cases/72c86ca38c98258.json | 1 - ...a2c5fe59a12.json => 73191ac2ec23a302.json} | 2 +- .../data/test-cases/732bf4c64788dac.json | 1 + .../data/test-cases/733b2334645f5c42.json | 1 + .../data/test-cases/73654e59fd10df4d.json | 1 + ...0c823c5a82a.json => 73b957e217c05b3b.json} | 2 +- ...27c471bc909.json => 73ceae1f03ba10a4.json} | 2 +- ...461adb94f5b.json => 73ef94971e1ebc98.json} | 2 +- .../data/test-cases/740e72b931a3ed2d.json | 1 - ...c35809df545.json => 7423494f63e5e438.json} | 2 +- ...52e1ab13306.json => 74b0e8a5cfe71956.json} | 2 +- ...1abb22a9be3.json => 74d08353b69572cc.json} | 2 +- .../data/test-cases/74f816020df3559.json | 1 - .../data/test-cases/75040d42480a95e8.json | 1 - ...466a8ab5f44.json => 75b2a36530573b63.json} | 2 +- .../data/test-cases/7612354cc3c699d.json | 1 - ...6e3693a7b83.json => 7616dbf2a034685c.json} | 2 +- ...c3b3250393e.json => 761ca73c34549675.json} | 2 +- ...ff55458d02a.json => 763ac19ad87ac3cd.json} | 2 +- ...f5707d2a6d3.json => 76a91c6ac0b40085.json} | 2 +- ...67d078b6af4.json => 76e193dcfd9d956a.json} | 2 +- .../data/test-cases/777b1d9b55eb3ae9.json | 1 + .../data/test-cases/77858b1148b2de9d.json | 1 + ...bc33030e55f.json => 77a4cf3d728ec302.json} | 2 +- ...227c17ce17f.json => 77d417f099b71c46.json} | 2 +- ...e0593022837.json => 78770f3ff6d80a18.json} | 2 +- ...ee94115c50c.json => 7886d18807eb6c13.json} | 2 +- .../data/test-cases/78aec59881bd461e.json | 1 + ...0da7e100d83.json => 78b238490a0d0c98.json} | 2 +- ...3895c7e5ba3.json => 792ce345a0c4a9e1.json} | 2 +- .../data/test-cases/7940a8ba615e27f7.json | 1 + ...c90c6552144.json => 7a1146c2cbd99038.json} | 2 +- ...b4538deb01d.json => 7a5a4eebadaab126.json} | 2 +- ...abe3203ecf1.json => 7a77e28352aaf1ca.json} | 2 +- .../data/test-cases/7aa3fbfc8218c54e.json | 1 + ...de1f2c64760.json => 7abec7f9960933cc.json} | 2 +- ...2a236576a2d.json => 7b5c67e400b6b0a0.json} | 2 +- ...f45553c02f2.json => 7b7000404fe21186.json} | 2 +- ...9ab33f4ea66.json => 7b778b64af209b91.json} | 2 +- ...739f4b0c138.json => 7c3d4f705ded9146.json} | 2 +- ...507c1397923.json => 7c60279d383e9d8b.json} | 2 +- ...46eccccc45a.json => 7c87151d683c2aad.json} | 2 +- ...ff2273b81f8.json => 7cacdad83c7f5f10.json} | 2 +- ...243443acbf6.json => 7ce67f10ab4c86ee.json} | 2 +- .../data/test-cases/7d152505fce8fc34.json | 1 + ...bba63c3bb75.json => 7d5b1a2ffe0a970a.json} | 2 +- ...9e3be0b4026.json => 7d777a45074a2435.json} | 2 +- ...0c9f0a02820.json => 7de3e61f9ee174a3.json} | 2 +- ...ebc2c7c1fa2.json => 7de5228b774a8541.json} | 2 +- .../data/test-cases/7de68906bfa0f18.json | 1 - .../data/test-cases/7e7534020c406c41.json | 1 + .../data/test-cases/7e8e53d16d69077.json | 1 + .../data/test-cases/7ea8a8dc382128a4.json | 1 + ...08ab7167514.json => 7edeace92746910e.json} | 2 +- ...3d965a64ee5.json => 7f10132389bd0afd.json} | 2 +- ...2c8fbbfdfc5.json => 7f106ecb68257734.json} | 2 +- ...2d6c00c88e9.json => 7f28ecea13e4e886.json} | 2 +- ...391ba216705.json => 7f2fca7b02951542.json} | 2 +- ...25cf95f9fbd.json => 7f6d50d19e0f3de2.json} | 2 +- ...d5e74660b56.json => 7f8863141fd28835.json} | 2 +- .../data/test-cases/7fae1c49f318568.json | 1 + .../data/test-cases/7fd83f8828bfb391.json | 1 + ...9d449ac7d5e.json => 800e8bf322748e89.json} | 2 +- .../data/test-cases/801881710b06074.json | 1 - ...3c64e54cb9f.json => 8081a31c05be488b.json} | 2 +- ...3b1faaf3c9d.json => 809e3691a3f26473.json} | 2 +- .../data/test-cases/80b7e762ad299367.json | 1 + ...329dd40406f.json => 80f4fc862b13c5c8.json} | 2 +- .../data/test-cases/8146fd50051ac96b.json | 1 + .../data/test-cases/81d67983376326e.json | 1 + ...df0700f3bd3.json => 81fc21ff964037a2.json} | 2 +- ...8899e8e691d.json => 823872001ab9ba87.json} | 2 +- .../data/test-cases/823dff07664aaa4.json | 1 + ...dc3ef8d99c0.json => 824bfc7518105d49.json} | 2 +- ...2a0a46489bf.json => 82ae018d43c04f85.json} | 2 +- ...19940a9985f.json => 82d90de1156cd48c.json} | 2 +- ...ad032525022.json => 82e02fa0cc46fda7.json} | 2 +- .../data/test-cases/832c94aac84bf09.json | 1 - ...21875a44bdb.json => 83385fc467b4a8e5.json} | 2 +- ...b5658921dcd.json => 839787eb550f06c0.json} | 2 +- .../data/test-cases/83ae1189d3669b33.json | 1 + .../data/test-cases/83c9df798b4e44f.json | 1 + ...ac3b9ddced3.json => 83da90e97e5349e6.json} | 2 +- ...341a28271bb.json => 83db549d27afd32b.json} | 2 +- ...8e5ac625a50.json => 842c6d1ee8161eef.json} | 2 +- ...ccb93c4c6b4.json => 84d7e1eb21948129.json} | 2 +- ...fc15c8260a3.json => 84e5ce529aafcfa9.json} | 2 +- .../data/test-cases/8572ffe92ddcaa11.json | 1 + ...d8169aaad6f.json => 857509cc66fb3470.json} | 2 +- ...270a86983a1.json => 857dc75c5bd2dd17.json} | 2 +- ...11d3c9a3124.json => 8603861216d7d4c6.json} | 2 +- .../data/test-cases/864737f712b002ec.json | 1 - .../data/test-cases/864ee426bf422b09.json | 1 + .../data/test-cases/867b171e961cc6e3.json | 1 - ...7f6ac1424a3.json => 867f27ef53f4ce43.json} | 2 +- ...e2428f0e01f.json => 86bec9b105840355.json} | 2 +- .../data/test-cases/86bf8b663d5828a.json | 1 - ...78179cb6f87.json => 86de6e64454fca19.json} | 2 +- ...a98ae3e1985.json => 8729b907b71b7609.json} | 2 +- .../data/test-cases/873ec1972fa36468.json | 1 + ...7324fdf0256.json => 87664723e6f57cb6.json} | 2 +- .../data/test-cases/879748b1d447d0a9.json | 1 - .../data/test-cases/87b0b5de93d5cb12.json | 1 + .../data/test-cases/87b2e8453406c3f.json | 1 + ...dd6c717f082.json => 87df803cadfb61a6.json} | 2 +- ...5e29591c654.json => 87f281129608ef41.json} | 2 +- ...1117d0ad5b6.json => 8809fca01a516cec.json} | 2 +- ...d7ab62f1ba4.json => 88501d2467af647f.json} | 2 +- .../data/test-cases/8878dccf56d36ba6.json | 1 + ...f0b4ec790a3.json => 88b006bece2616b2.json} | 2 +- ...41670997ad6.json => 88ca13ae93cc2b33.json} | 2 +- .../data/test-cases/8930ec9e348fd4d.json | 1 + ...fe348b226fe.json => 895846e60323f8ba.json} | 2 +- ...e73ea45d7a1.json => 8966b735a3793409.json} | 2 +- ...e59b6648413.json => 89e4ffe6e2b4858c.json} | 2 +- ...1815212e793.json => 89e6e7af226f3582.json} | 2 +- .../data/test-cases/8a0604fc927a7480.json | 1 + ...bc94e3173da.json => 8a29f61d53cfa694.json} | 2 +- ...2e94b736fef.json => 8ade4c7a0e59dd30.json} | 2 +- .../data/test-cases/8b066879dcf90ee.json | 1 + ...94c41d10012.json => 8b09bdc5a519a070.json} | 2 +- ...40c2868c787.json => 8b29a5334bdbc1b5.json} | 2 +- ...501d19b5f47.json => 8bb4333bde7b6f57.json} | 2 +- ...73cd07e1ed8.json => 8bbe92897a0837e7.json} | 2 +- .../data/test-cases/8bd454f111efcd3e.json | 1 - ...0b046ec092c.json => 8c0ab77873b28b8f.json} | 2 +- ...4b572fc5a50.json => 8c1749fbe9590e77.json} | 2 +- ...237e3a80dd7.json => 8c263832e40387fc.json} | 2 +- ...8b34b81a74c.json => 8c2738ac8b329dff.json} | 2 +- .../data/test-cases/8c4575be21ff0ded.json | 1 + .../data/test-cases/8c72b971279020f.json | 1 + .../data/test-cases/8caf8fe76e46aa0f.json | 1 + .../data/test-cases/8cb8fb70f937622b.json | 1 + ...aee0db2b724.json => 8d0f8b1f359d2e57.json} | 2 +- ...80cc545f1d3.json => 8d156d3e42d4375b.json} | 2 +- ...03bf65847e5.json => 8d4255e3e5d3d8a0.json} | 2 +- ...89a74667507.json => 8d44f2b97a47f0f3.json} | 2 +- ...19e6077f333.json => 8da0b58109862b1b.json} | 2 +- .../data/test-cases/8da8c6de16bb179d.json | 1 + .../data/test-cases/8db7c8bf0abe07bc.json | 1 + ...cc7a05b3546.json => 8dc2c9fe3450d5a4.json} | 2 +- ...649770273d6.json => 8dfb78838f25ea50.json} | 2 +- .../data/test-cases/8e4b6f6bd251566.json | 1 - .../data/test-cases/8eb80b15a6d6b848.json | 1 + ...a9166c48fb8.json => 8ebc308a5806000e.json} | 2 +- ...7b8cda6c028.json => 8f3c559eb697de75.json} | 2 +- ...d8d02b815fd.json => 8f411cd28b85874e.json} | 2 +- ...773a1bfae2e.json => 8fc3e4e9309f61b9.json} | 2 +- ...341dfe8e289.json => 901ad6e6b17ea71d.json} | 2 +- .../data/test-cases/902288cde0f2109a.json | 1 + ...c03f90689c3.json => 903c4d3d57375ecf.json} | 2 +- ...0c0ac58f7b6.json => 90548ade83f4ad3f.json} | 2 +- .../data/test-cases/90ca6a0c009b593.json | 1 + .../data/test-cases/913fbd5c2da31308.json | 1 + ...a69b8a9bf68.json => 91592072a42568a2.json} | 2 +- .../data/test-cases/91aab0544068789.json | 1 - .../data/test-cases/91c1d8a1fc37f84.json | 1 + ...2c2df19530d.json => 9212c6b19c8a287e.json} | 2 +- .../data/test-cases/92695f36fc50d8a3.json | 1 + ...058a213deae.json => 931a1e301c63c1a1.json} | 2 +- ...ae3991d6c2c.json => 9328d9c37e2386a6.json} | 2 +- ...c98d6d71504.json => 93600ea56dc1843a.json} | 2 +- .../data/test-cases/9400c2351555d83a.json | 1 + ...80dcc908350.json => 94470fc1dd0d3d27.json} | 2 +- ...2a0721ea486.json => 946874b940758475.json} | 2 +- ...46b04c031d5.json => 94887fb9761f9305.json} | 2 +- ...f6ef01656e6.json => 94a0f5c0bb41d73c.json} | 2 +- ...d9350601da5.json => 94a29fbc0358d34a.json} | 2 +- ...2bc186d7f9a.json => 94aee1df5a6d75c7.json} | 2 +- ...18071a02e50.json => 94d4bd5574aa8f7b.json} | 2 +- ...9760a533e02.json => 94ea40491ebef366.json} | 2 +- ...e8e7202ad57.json => 9546971ec41b8ce1.json} | 2 +- .../data/test-cases/95500b18da61d76.json | 1 + ...d9a8c304f3b.json => 9555c80771d907bb.json} | 2 +- ...b386eb6ebf2.json => 95b80642b494d437.json} | 2 +- ...5d4a978bd79.json => 95fe30b3b4a958d6.json} | 2 +- ...77ffe0d5722.json => 9675429ac75e0c11.json} | 2 +- .../data/test-cases/96938210802b960f.json | 1 + .../data/test-cases/971c2aa5dd36f62c.json | 1 + ...3d99a741f47.json => 975470b122402791.json} | 2 +- .../data/test-cases/97a2a77f06d4866c.json | 1 - ...8aa5714e13a.json => 97c98bd57653ce11.json} | 2 +- ...c9da2d9b53b.json => 97d66dc06144a438.json} | 2 +- ...6d65b0932fd.json => 981acdaf3faf1d8f.json} | 2 +- ...a909012a6f0.json => 9823bb7abc34f758.json} | 2 +- .../data/test-cases/984b8a80ce69773d.json | 1 + ...c2a3cdded7a.json => 988614c511102150.json} | 2 +- ...4f4aff6f601.json => 99363c879a15b2c4.json} | 2 +- ...09978db7e30.json => 99e1739d168a007c.json} | 2 +- .../data/test-cases/99e31d655e3161a.json | 1 - .../data/test-cases/99e95613ed424b35.json | 1 + .../data/test-cases/9a17297856f21a74.json | 1 - ...b580d9bd7f8.json => 9a76d6db19b09f54.json} | 2 +- ...d6a4ff28aaa.json => 9b26a570961ab395.json} | 2 +- ...7ece8075aa5.json => 9b5e6753141602b8.json} | 2 +- ...797bb03e774.json => 9b6456a02fb8e586.json} | 2 +- .../data/test-cases/9b651a3e27842d38.json | 1 + .../data/test-cases/9ba260a0149e6341.json | 1 + ...9fce2ea028d.json => 9bb51a042d358695.json} | 2 +- .../data/test-cases/9c497f5f830a2958.json | 1 + ...4a1f359821e.json => 9c58cd2f052b55a6.json} | 2 +- .../data/test-cases/9c7635c760d519cd.json | 1 + .../data/test-cases/9cc2024d730e5f8a.json | 1 + ...8445b5fa23f.json => 9d0a0378192b3dfd.json} | 2 +- ...f45ee93d21d.json => 9d10648422f3aeed.json} | 2 +- ...408f505ed67.json => 9d243bfb1021bb63.json} | 2 +- ...f7ebecca4c3.json => 9d27d41bfa6de8dc.json} | 2 +- ...2828063f744.json => 9d4c9ba0aff07821.json} | 2 +- .../data/test-cases/9d50fe36fd5059ab.json | 1 - ...5d6827dca2a.json => 9d8106b104f30ee6.json} | 2 +- .../data/test-cases/9e10b0087e5b64c.json | 1 + ...66198fa34e6.json => 9e4cc550b1ac8808.json} | 2 +- ...987ee1a1d39.json => 9e692004742b5469.json} | 2 +- .../data/test-cases/9e6eb35888cc4f59.json | 1 + .../data/test-cases/9e884f6ea55b7c35.json | 1 + .../data/test-cases/9eaae816682ea6e3.json | 1 + ...bd07b8fa1c4.json => 9edb2b589904d584.json} | 2 +- ...95248558058.json => 9f56730a0e41c609.json} | 2 +- .../data/test-cases/9f8d638b621270bd.json | 1 - .../data/test-cases/9faa60a73c33e8b6.json | 1 + ...4757b94997a.json => 9fb9fb1a0489c1a3.json} | 2 +- .../data/test-cases/a0445feeac697184.json | 1 + .../data/test-cases/a088624abb606e0e.json | 1 + ...e67245419a9.json => a124532204114d8a.json} | 2 +- .../data/test-cases/a13c451f0f676900.json | 1 - ...f3053cbc60d.json => a1726ce9583568d0.json} | 2 +- .../data/test-cases/a1980ae57d2c7b3.json | 1 - .../data/test-cases/a1c87b2c2a6c0bb7.json | 1 + .../data/test-cases/a1e3818ccb62ed24.json | 1 + ...cbfc02e5094.json => a200977d521a9785.json} | 2 +- ...d0c95dfc112.json => a24b90978f06ce4b.json} | 2 +- ...f5039f12f67.json => a24df28711252fb3.json} | 2 +- ...87108e55931.json => a293120689451651.json} | 2 +- ...8181d9095ee.json => a2c0d72771fc18f1.json} | 2 +- .../data/test-cases/a2d5dff34138108f.json | 1 + .../data/test-cases/a2e66c48b8347bd.json | 1 + ...d811972f420.json => a2ff67830434b9af.json} | 2 +- ...2e4e940b443.json => a30886bec4fc9e3b.json} | 2 +- ...d42fb1064a9.json => a30e32170a464ad0.json} | 2 +- ...9a0972467a3.json => a32047be9db53ed6.json} | 2 +- ...19d19bd8125.json => a394baafe8edd2c5.json} | 2 +- ...2d33841a8ff.json => a3b8656ba40e9af1.json} | 2 +- ...028315647c1.json => a3e36a462ba6b0e6.json} | 2 +- ...0c7250ecf6d.json => a3e837b6100ae0c4.json} | 2 +- ...f4fc722fa2f.json => a42f9f61a6c45aa8.json} | 2 +- ...af6ca77e4e9.json => a43120edfc7294d0.json} | 2 +- .../data/test-cases/a492c358ecb2902d.json | 1 + ...c252d158762.json => a4aa1c9fe84c9cc9.json} | 2 +- .../data/test-cases/a4cb6a94c77f28ce.json | 1 + .../data/test-cases/a53e477b227bdf44.json | 1 - .../data/test-cases/a5961784f4ddfa34.json | 1 + .../data/test-cases/a5a7f52be4bf7369.json | 1 + .../data/test-cases/a5bb3631db18a9d9.json | 1 - ...e3d43cf437d.json => a5ef1e97378ae643.json} | 2 +- ...959bf0b41a9.json => a65123311cff1206.json} | 2 +- ...167de0fb37e.json => a654bf006c33c2bc.json} | 2 +- ...b42396826ce.json => a65eaf9a40469196.json} | 2 +- ...e3c0a6687c3.json => a66f07e5b377a93b.json} | 2 +- .../data/test-cases/a6a651d904577cf4.json | 1 + .../data/test-cases/a6eaf13968162fc7.json | 1 + ...9ba56a64495.json => a6ecb3b474360e70.json} | 2 +- ...9840f444cec.json => a6f615adf58af171.json} | 2 +- ...cc8a0131a02.json => a712aa917a11c1d8.json} | 2 +- ...97f8a5ea815.json => a72e2d4e966e7c09.json} | 2 +- ...b72019f6060.json => a7585b25b34695fe.json} | 2 +- ...17326f7d16a.json => a7645184155771ad.json} | 2 +- .../data/test-cases/a78b9243c26a61bf.json | 1 - ...85f1fbfd7ed.json => a78dd64f3f2b4648.json} | 2 +- .../data/test-cases/a81b8ca7a7877717.json | 1 + ...6e8f9065ccb.json => a86267feca446780.json} | 2 +- .../data/test-cases/a890c2eb991483c.json | 1 + .../data/test-cases/a8ac1a16737b16a.json | 1 + ...864c04c1cf9.json => a8ceda5e3158297c.json} | 2 +- .../data/test-cases/a90239b6ef90f6a6.json | 1 + .../data/test-cases/a908975bd67b2eca.json | 1 - ...8498c7694b0.json => a912833bc91830ef.json} | 2 +- .../data/test-cases/a92222b0b7f4d601.json | 1 + .../data/test-cases/a95c24b51d5c9432.json | 1 + ...d55c6bd3b35.json => a9aa7cc6bd5c34be.json} | 2 +- ...4bf403c80de.json => a9f0e43ae54089ff.json} | 2 +- ...f940bb3f46a.json => a9fe3e48d71bee45.json} | 2 +- ...0fe38b5a062.json => aa00c7be0a861177.json} | 2 +- ...65d354963ea.json => aa0a102aebb2ddf0.json} | 2 +- .../data/test-cases/aa0fd3e8d8009a95.json | 1 + .../data/test-cases/aa7d2e5e86b66673.json | 1 + ...7d4df9c3970.json => aade1eebfa7ac9cf.json} | 2 +- ...c66880e0b15.json => aadfe826c6aeccf6.json} | 2 +- ...5af03a1f296.json => ab2861d9bed3765e.json} | 2 +- ...6b48694b75d.json => ab6068d2916c95e9.json} | 2 +- ...2031d384e78.json => ab7fe234dc976ac6.json} | 2 +- .../data/test-cases/ab9420b5e475e35.json | 1 + ...675aea47099.json => abbcc324b9e8a1ea.json} | 2 +- ...14175ef5830.json => abe925767bdb0e39.json} | 2 +- ...af598873d9b.json => abfe637076f1879d.json} | 2 +- ...64c1e1f6bc7.json => ac366a2ecd02d5dd.json} | 2 +- ...64592e0ae1b.json => ac4b8e11c3d56a6a.json} | 2 +- ...25d425e0efa.json => ac66f87691632de7.json} | 2 +- .../data/test-cases/ac824f903545a6e7.json | 1 + ...2cd944d7efd.json => ac8d0c005e499da5.json} | 2 +- ...9519ef758bc.json => acad0a25b607c9fe.json} | 2 +- .../data/test-cases/ad3e6b6eddb975ef.json | 1 + .../data/test-cases/ad642268f112be60.json | 1 + ...2d0381e105a.json => adba958b88eb7661.json} | 2 +- ...739f2d4d64c.json => add9ef76ac7e1779.json} | 2 +- .../data/test-cases/ae08758c48a63481.json | 1 - .../data/test-cases/ae87022eb9b205bd.json | 1 + ...4bdd3b3fc0c.json => ae9c6bad3687824e.json} | 2 +- ...b4395e92566.json => ae9de108d4c0920c.json} | 2 +- ...bdd5c7f3c16.json => aea42439e3c082b4.json} | 2 +- ...cf8ea35171c.json => aeae161caad1a65f.json} | 2 +- ...673ddcf7e8e.json => aeaf73e97e8c5fe3.json} | 2 +- .../data/test-cases/aec2fb642901e92.json | 1 - ...a8d66959d20.json => aee1417e53524250.json} | 2 +- .../data/test-cases/aef6b82f43e1b4b4.json | 1 + ...665bbc3ca3a.json => aef740a566ef8e93.json} | 2 +- .../data/test-cases/af16ce1f4d774662.json | 1 + .../data/test-cases/af3a43fc31649664.json | 1 + .../data/test-cases/afa4196b56245753.json | 1 + .../data/test-cases/afc8e5dacd30bc41.json | 1 + ...84ee9c3dd36.json => b00d5d40ec75b250.json} | 2 +- ...fc51c0b8912.json => b01a24c8d7b81de4.json} | 2 +- .../data/test-cases/b0395834a1dc7266.json | 1 + .../data/test-cases/b0da8ff80b8db87.json | 1 + ...93a8ee1253f.json => b1b08a9c0991d73d.json} | 2 +- .../data/test-cases/b1b4ed481e88bb25.json | 1 + ...5b376b254cf.json => b1ed0faa67962e1c.json} | 2 +- ...d4a26e41755.json => b27497f64988d4cb.json} | 2 +- ...9c4ba5ff697.json => b289d731e65d2b32.json} | 2 +- .../data/test-cases/b2b39aab9a2e66b.json | 1 + ...5088233c4e7.json => b35458785abd4d83.json} | 2 +- .../data/test-cases/b3654581f89b5576.json | 1 + ...8dcf21c7e63.json => b37405ca3882bd1c.json} | 2 +- ...0c47ecc45d4.json => b37adbf845502fe8.json} | 2 +- .../data/test-cases/b3baec89064c3983.json | 1 + .../data/test-cases/b3d5b9d863751a3f.json | 1 - .../data/test-cases/b40f27be3da7edd7.json | 1 + .../data/test-cases/b4318b89966fb16.json | 1 + ...bd27ed228a7.json => b43edc8fd032be6e.json} | 2 +- ...53f9704bfbb.json => b4423bcb7f125986.json} | 2 +- ...f911b054e74.json => b4a93aab25c4b5f7.json} | 2 +- ...9c9dc3d04e6.json => b4b8e18ee349d818.json} | 2 +- .../data/test-cases/b4bcf3d5a4367d8.json | 1 - .../data/test-cases/b4c3bd7788c9f57d.json | 1 + .../data/test-cases/b4cae88de9afaa55.json | 1 + ...d652c38eb3f.json => b56ab9fe385db93a.json} | 2 +- ...a05187743ff.json => b56e159e9a8b128f.json} | 2 +- ...c2182eb85cb.json => b591ce46c92300fc.json} | 2 +- .../data/test-cases/b59318a9c97ef9f1.json | 1 + .../data/test-cases/b5ba84846c075db5.json | 1 + ...70dd2142a16.json => b69923e60de0964d.json} | 2 +- ...bf420709ca7.json => b6d612c29223f1e3.json} | 2 +- .../data/test-cases/b744224a1d89f44f.json | 1 + .../data/test-cases/b74e7e51e0827a84.json | 1 + ...4000991e820.json => b759b096d671749a.json} | 2 +- .../data/test-cases/b7874e896ca052d2.json | 1 - ...d39db439d08.json => b79318ff2ae67fee.json} | 2 +- ...78e3a37dfe4.json => b7eddfa61552d783.json} | 2 +- ...e5166368fc8.json => b81b0ae77ee26a61.json} | 2 +- ...03c69aa6dd8.json => b82b2a2c9febe0c6.json} | 2 +- ...ca6e090522b.json => b876874728bc13e3.json} | 2 +- .../data/test-cases/b87f80755bc77034.json | 1 + ...4353b4f3e49.json => b89f1a91511e43fe.json} | 2 +- ...ec5c293c228.json => b8c210754da93c52.json} | 2 +- .../data/test-cases/b8f26140fdddc630.json | 1 + ...42ab329d2ac.json => b91b3028c146d7df.json} | 2 +- .../data/test-cases/b92f0db6c4ee4ff0.json | 1 + ...b0c09ae9f13.json => b95dabcc1b6701ba.json} | 2 +- ...a685a579f99.json => b9ceaeaa317803af.json} | 2 +- .../data/test-cases/ba2c8f43220f0c44.json | 1 - ...0b5f893b4e2.json => ba4a3c35a46d9d79.json} | 2 +- ...5007831ab45.json => babd57c21b463d43.json} | 2 +- ...a2d41bf2bd8.json => badb2c1a8c5e2d2d.json} | 2 +- .../data/test-cases/baf923b3ced2f0a.json | 1 - ...12f067d459d.json => bb728a3601eecc02.json} | 2 +- .../data/test-cases/bb8e119491d2ebc3.json | 1 + ...ba6af0b177a.json => bb902a37816cc407.json} | 2 +- .../data/test-cases/bbb128976da4f18a.json | 1 + ...d14f0382e2f.json => bc04b77b7c90af86.json} | 2 +- ...8d1342209e0.json => bc0d03d768c84e9a.json} | 2 +- .../data/test-cases/bc5f75e76b0bf63.json | 1 + ...9106d04e0c7.json => bc719674954c58b2.json} | 2 +- ...434e28153fe.json => bcbd2adc2b6db91f.json} | 2 +- ...6e353dfd7cd.json => bcfec9a648915f6a.json} | 2 +- .../data/test-cases/bd413f89b47699c.json | 1 - ...60e800cbb2b.json => bd6b8dc125a7712d.json} | 2 +- .../data/test-cases/bdcd06f2ac6e82c9.json | 1 - ...25d6df646b0.json => bdfd73520247929b.json} | 2 +- ...8ab23c0d630.json => be22b07b7195c319.json} | 2 +- .../data/test-cases/be79a08ed18e426.json | 1 + ...a3a207c31eb.json => beae761fcafbcfaf.json} | 2 +- ...6cca0ab2f52.json => bebb2bc7f67aea79.json} | 2 +- ...36d12b44c86.json => bef296bdea9fd681.json} | 2 +- ...745cd367097.json => bf262768264e0cc2.json} | 2 +- ...943247ae8d5.json => bf2cbfcfafa25fb5.json} | 2 +- .../data/test-cases/bfe3079800be8e80.json | 1 + ...0fc2782867c.json => bff3d119847a95d6.json} | 2 +- .../data/test-cases/c005f5247ce8619b.json | 1 - ...3d491320ab9.json => c0bcf993972d49ba.json} | 2 +- ...343c90ce082.json => c1010dc09e66b779.json} | 2 +- ...93357f6e501.json => c12d427c645c762f.json} | 2 +- .../data/test-cases/c1326d9a3ad9ddfb.json | 1 + .../data/test-cases/c1393951861e51a9.json | 1 + .../data/test-cases/c149947a189c0282.json | 1 + .../data/test-cases/c1ac88d1c8e8cadf.json | 1 - ...7dfa50cb94d.json => c1dfde6c70281ff2.json} | 2 +- .../data/test-cases/c1f0d1467179d957.json | 1 + .../data/test-cases/c1f90fc4edd70bea.json | 1 + .../data/test-cases/c245bb8192a35073.json | 1 + ...d24e53cd100.json => c24c0d6b556365c6.json} | 2 +- .../data/test-cases/c25f8210fdb51a41.json | 1 - ...8e3d3f3ad4c.json => c2cb5c7eee700e38.json} | 2 +- ...ed71764b7f4.json => c361fae801a29bfb.json} | 2 +- ...e1dbdaacb09.json => c371f8df57328f01.json} | 2 +- ...1ba8856d412.json => c3dd54ea07cba973.json} | 2 +- .../data/test-cases/c3e164f822b7bae.json | 1 - ...51c40149097.json => c3f4680f378d24e0.json} | 2 +- ...f1a1b9a4c08.json => c3fd98c434ab7b3d.json} | 2 +- ...c864b347295.json => c4045fa90cc64964.json} | 2 +- ...bb0a9f351b0.json => c409a300546c15a6.json} | 2 +- .../data/test-cases/c46f98a697de9b7.json | 1 + ...2733a1f48dc.json => c4de7ce2ddbb42a4.json} | 2 +- ...1d080e82f75.json => c4eaee07c56e2bda.json} | 2 +- ...c1a4b426539.json => c50564bf93e2ebd9.json} | 2 +- .../data/test-cases/c50649c997228fe6.json | 1 + .../data/test-cases/c515ef635fa26df1.json | 1 + ...dd126224894.json => c51d0888e1777a9e.json} | 2 +- .../data/test-cases/c5bfa9ec903b7b32.json | 1 - ...328cfed2428.json => c5e6a87af3754f9e.json} | 2 +- .../data/test-cases/c61d34eb10bf204.json | 1 - .../data/test-cases/c62025a79b33eb3.json | 1 + ...50946481df3.json => c666a2fc70e4969f.json} | 2 +- .../data/test-cases/c66ea864985e641.json | 1 + .../data/test-cases/c678c03e12583e98.json | 1 + ...74450de295f.json => c6b40d117da688e8.json} | 2 +- ...b812fbd5d4a.json => c6c0fd894bae942b.json} | 2 +- ...590f118b700.json => c6f6863411d36c7a.json} | 2 +- .../data/test-cases/c730b39a7cf9843.json | 1 - ...45d30c593a7.json => c77ad5c459e90990.json} | 2 +- ...42601660eab.json => c77cd6e80c5f42f2.json} | 2 +- .../data/test-cases/c78900977fa836.json | 1 - ...3957a6e541c.json => c78ec33b6fe131a0.json} | 2 +- ...0e9120dbf2c.json => c793fa14312a7752.json} | 2 +- .../data/test-cases/c7a57b49fa57ab27.json | 1 + ...02fedd41667.json => c8141b2abd713c90.json} | 2 +- .../data/test-cases/c8680b20dd7e19d5.json | 1 + ...b647eb4bfeb.json => c8aec766397234af.json} | 2 +- .../data/test-cases/c8c57e21dd6fea81.json | 1 + ...68159e448ff.json => c8d9a4d573dbda2b.json} | 2 +- ...e9c47abe8d0.json => c9095528631735ce.json} | 2 +- .../data/test-cases/c91f2e2d1c4e5a72.json | 1 - ...f78736d3a0e.json => c93838d5eefff03d.json} | 2 +- ...340d73193c2.json => c9b5322357724fe7.json} | 2 +- ...a429c84fe69.json => c9c9a6a75f3a249f.json} | 2 +- ...2f745782ad7.json => c9fb9d40396e984d.json} | 2 +- .../data/test-cases/ca1eccae180a083e.json | 1 + ...537274067fb.json => caa8571433eea386.json} | 2 +- ...13e064883bb.json => cab8fd48239210db.json} | 2 +- .../data/test-cases/cab9c25314cf754.json | 1 + .../data/test-cases/cac786da5d1fffa.json | 1 + ...77143af3f55.json => caf9670d0e0965a0.json} | 2 +- .../data/test-cases/cb005e45e7b312b5.json | 1 + .../data/test-cases/cb1927945c40fc3.json | 1 - ...2b3f85ebfcb.json => cb1c1fa1e4f21add.json} | 2 +- ...f29e8a1671e.json => cb1f986a714e3e2e.json} | 2 +- ...8690dcdce52.json => cb74d5229c88c838.json} | 2 +- .../data/test-cases/cb7d8edff0d47cc5.json | 1 - ...237e5fc3101.json => cb921d8c86204096.json} | 2 +- ...b76b8629fe6.json => cbaa99833f802aa6.json} | 2 +- ...4f86960f5cf.json => cbad1c121fb6a6fb.json} | 2 +- .../data/test-cases/cbb9443875889585.json | 1 + ...a062c96fe90.json => cbf123a6aa236a3b.json} | 2 +- ...b9a0913387d.json => cc051f6a400be208.json} | 2 +- ...4a431b7fd70.json => cc2dceff6dc83502.json} | 2 +- ...d0b9e8a05d4.json => ccac52878bec48b6.json} | 2 +- ...f71e94d60c3.json => ccc1ac75f035d282.json} | 2 +- .../data/test-cases/ccc6c3ffee5b9f76.json | 1 + ...d2531e10e0a.json => cd3e27d521a2ebd0.json} | 2 +- .../data/test-cases/cd56af2e749c4e8a.json | 1 + ...156ef396b6e.json => cd72a87cc33096c5.json} | 2 +- ...329b634133a.json => cd858786e595fd45.json} | 2 +- ...6936132e0f6.json => cde33394de2ec155.json} | 2 +- ...c47774cf3c7.json => cde4151d7e05fca5.json} | 2 +- ...dc6717fe514.json => ce004e41100b8867.json} | 2 +- .../data/test-cases/ce6714fc18aff8ec.json | 1 + ...8f9149b5791.json => ce842a0bacb75304.json} | 2 +- .../data/test-cases/cef1ed2aef537de7.json | 1 + ...941adb35f26.json => cfba8b314ab82273.json} | 2 +- .../data/test-cases/cfca05e0b975fd2.json | 1 + .../data/test-cases/d06d6d8db945d4d7.json | 1 + .../data/test-cases/d0b6dccad411741e.json | 1 + ...243d9b7f290.json => d0c0a10a6587c56e.json} | 2 +- .../data/test-cases/d0cba34627dad034.json | 1 + ...061ff0b1d1d.json => d10b96136002b581.json} | 2 +- ...6a89153460b.json => d12e38fc8c8ec4dd.json} | 2 +- ...f55554cd705.json => d157034757bf8b88.json} | 2 +- ...0a29faa4ee4.json => d1be51368671f899.json} | 2 +- ...bee850dfcf4.json => d208c625c151e61d.json} | 2 +- .../data/test-cases/d20d06b45fb65ddb.json | 1 + ...2c8b8f3d0bb.json => d20f10e7196a7103.json} | 2 +- ...c652fed664c.json => d21849f45071cee3.json} | 2 +- ...9865f127b46.json => d23a28a2b97dc203.json} | 2 +- .../data/test-cases/d2acdc5e027859f4.json | 1 + .../data/test-cases/d2af0876e7f45a7f.json | 1 + ...722bb71757b.json => d2b6a960777edb8f.json} | 2 +- .../data/test-cases/d3b84ca939222bc6.json | 1 + ...804aa9a6e53.json => d4260955f91337ec.json} | 2 +- ...8ca3aead56c.json => d4597108775e2ebb.json} | 2 +- ...0d308fb1d4e.json => d4662f23ff8e6620.json} | 2 +- ...d777aea105a.json => d49eccd60ce84feb.json} | 2 +- ...c3c4e1a677a.json => d4bec70d6611b3f1.json} | 2 +- ...bfbefb81796.json => d4ccdeadb2c9dbf3.json} | 2 +- .../data/test-cases/d4f29bba77fd180.json | 1 - .../data/test-cases/d518579b8137712e.json | 1 + ...cd0a0db42e5.json => d532fafc0994a83d.json} | 2 +- ...49dd3798b49.json => d56b8598f52532d4.json} | 2 +- ...2ec4f03f9e5.json => d579d28da21d0458.json} | 2 +- .../data/test-cases/d5cb7590517b0cc1.json | 1 + ...e765fb39849.json => d645ef6b4817b107.json} | 2 +- .../data/test-cases/d6520bfb9bc036e4.json | 1 + ...b5339736af5.json => d74e6ece91df2759.json} | 2 +- ...7616fb702cf.json => d7c080fc06195b6c.json} | 2 +- ...be4ecdc42ce.json => d88ebfa77f8bc285.json} | 2 +- ...16219844475.json => d8938caa254e2720.json} | 2 +- ...b778f42e33c.json => d8a647ffef20d33c.json} | 2 +- ...414b649e45a.json => d8c3cab37b2e7dbb.json} | 2 +- ...e1fdeed6f0a.json => d9035fa8f853a08a.json} | 2 +- ...bd47c8adfbc.json => d94530c5ab1a7ba8.json} | 2 +- ...3ea962a31f1.json => d95f3589be6b0bcb.json} | 2 +- ...cfda157cf01.json => d9826ef645180f7d.json} | 2 +- .../data/test-cases/d9d827d0af3ba710.json | 1 + ...8e9c7981ac7.json => da018a416a2e5798.json} | 2 +- .../data/test-cases/da0fce94db2e25fb.json | 1 + ...39401914c16.json => da31e11488208aed.json} | 2 +- ...a5488466979.json => da622740411a3e7a.json} | 2 +- .../data/test-cases/da6f4b236162247c.json | 1 + .../data/test-cases/da807d1d651bf07b.json | 1 + ...03fb846420f.json => da87c785a6ba7322.json} | 2 +- ...0510d3eb166.json => daa21ce701ca0a19.json} | 2 +- ...5d3a7d8ec34.json => db31ba951eab96a9.json} | 2 +- .../data/test-cases/db9b592f660c3c08.json | 1 + ...2352cd357fc.json => dba029f7988869ef.json} | 2 +- ...9258a0c64df.json => dbc901f56e1e91ea.json} | 2 +- .../data/test-cases/dbd543834c91eda6.json | 1 + ...52d574aad16.json => dbe420147c1da53b.json} | 2 +- ...6b71393e4f8.json => dbfb622c1ebb235b.json} | 2 +- ...3e5ec48d975.json => dc885b646bda3346.json} | 2 +- .../data/test-cases/dc89f010c8fc632.json | 1 - ...a62f1db510f.json => dcbe3576bc7fc285.json} | 2 +- ...3b3d0dc73e4.json => ddab479d47dfd717.json} | 2 +- .../data/test-cases/de0a077377bec456.json | 1 - ...87a3ff2d229.json => de63ba79b87d23ab.json} | 2 +- ...5f2c1baa9ed.json => de7442e95e2bcada.json} | 2 +- ...7a7f74365e8.json => de75cf0cb11d4a8a.json} | 2 +- ...8eb60a06aeb.json => defdbaa3c0a6eace.json} | 2 +- ...1fa5a56c905.json => df6ed9e3e14c891a.json} | 2 +- .../data/test-cases/df9a9f68276bbb84.json | 1 - ...35ef3c791a0.json => dfb2b5c458a3460e.json} | 2 +- ...3086c8abd68.json => e032c4a87bedaab7.json} | 2 +- .../data/test-cases/e08a8a15da9b3ad.json | 1 + .../data/test-cases/e0d2f09c0da8121.json | 1 - .../data/test-cases/e0dd8dfaed76aa75.json | 1 + ...817978e9f1b.json => e15a7b3e54da206a.json} | 2 +- .../data/test-cases/e184ca1912266ffb.json | 1 + ...219a087e938f.json => e186908da5e6d7c.json} | 2 +- ...e54277654cc.json => e1aa1981a2c5874d.json} | 2 +- ...da2ac2c9bbd.json => e1b199f4400527d4.json} | 2 +- ...be0f5459a3d.json => e1fc0b63790bda69.json} | 2 +- .../data/test-cases/e21d0927a22c6c46.json | 1 + ...829429abf54.json => e28dd76561e769e2.json} | 2 +- ...c9c45304a0b.json => e298eeaddede77ad.json} | 2 +- .../data/test-cases/e2a8e239adf783da.json | 1 - ...34228180c1c.json => e3e2f391aab3cb96.json} | 2 +- ...526198a7a0a.json => e417d815465280e9.json} | 2 +- ...062133dbbbb.json => e427ef86cabe9ddd.json} | 2 +- .../data/test-cases/e42b69525abdede6.json | 1 + .../data/test-cases/e4473b95f40f5c92.json | 1 + ...686eb3e5a89.json => e463bf406b88f537.json} | 2 +- ...68275dac68e.json => e49d46057090e83e.json} | 2 +- ...f5e4d5380e4.json => e50290ceef277be1.json} | 2 +- ...e585c13bf38.json => e50cfef6d8bb4879.json} | 2 +- .../data/test-cases/e578dac1473f78ec.json | 1 + .../data/test-cases/e5a7c04cf0e6c2f9.json | 1 - ...7231bfb8a25.json => e5feb33263ee430e.json} | 2 +- ...c1c42d54a81.json => e60399983521438f.json} | 2 +- ...11bfb950e6e.json => e64a446631b3c9dc.json} | 2 +- ...4684cfaee8f.json => e697d79f20198964.json} | 2 +- .../data/test-cases/e6b67890527d37e6.json | 1 + ...11be4532248.json => e723e7f00f564943.json} | 2 +- .../data/test-cases/e7ac97a954c5e722.json | 1 + ...4482de170d3.json => e7d0a39712ee3eee.json} | 2 +- ...7d99fed99d0.json => e7e1c54963ba7bf7.json} | 2 +- ...074fbcb6ca1.json => e83e1a2466fbcf0b.json} | 2 +- ...8da53c540e6.json => e897eac5693df65e.json} | 2 +- ...e500ebdf146.json => e8a2735e9df336cb.json} | 2 +- .../data/test-cases/e8a3e54ef5fe796f.json | 1 - .../data/test-cases/e92026f4174cc7e.json | 1 + .../data/test-cases/e95ba363003599d.json | 1 + .../data/test-cases/e96aee50481acdd6.json | 1 + ...5990cdffa76.json => e97e117a0c1b5372.json} | 2 +- ...f9628fe90ff.json => e9c0a9198a3e1b18.json} | 2 +- .../data/test-cases/ea50e73cff32206e.json | 1 + .../data/test-cases/ea636867f014d21.json | 1 - ...5d93acc0bab.json => ea6a7fadbe04578a.json} | 2 +- .../data/test-cases/ea83ea1df97a1dc9.json | 1 + ...36adb97380b.json => ea9306ba22046ff3.json} | 2 +- .../data/test-cases/ead644ae8ee031c3.json | 1 + ...b555dd62215.json => eae8b41d97e1bc2d.json} | 2 +- ...7120123862f.json => eb28edf9a9f50007.json} | 2 +- ...1e47f6e349d.json => eb6afac49e3912b1.json} | 2 +- ...bee3cb403d3.json => eb79826fc1ce02b1.json} | 2 +- .../data/test-cases/eb8f6057b9598daa.json | 1 + .../data/test-cases/eb94d03877c16bb4.json | 1 + ...4140245a65d5.json => ebdfd3783858102.json} | 2 +- ...80cd7bb8f8d.json => ebf90564de7fa557.json} | 2 +- .../data/test-cases/ec0c7de9a70a5f5e.json | 1 + ...0b267cccc2b.json => ec1f79d5effe1aa9.json} | 2 +- .../data/test-cases/ec58e61448a9c6a8.json | 1 + .../data/test-cases/ecd778da0cbd3ef.json | 1 + .../data/test-cases/ece5bd16ef8bbe52.json | 1 + ...65df8dfb0ab.json => ed2f3c923fde4413.json} | 2 +- ...05963998c1b.json => ed375a568ef53727.json} | 2 +- ...298b06a2e8f.json => ed660ef652aeab86.json} | 2 +- ...9f46c25941f.json => ed7d0b3c14fd80c8.json} | 2 +- ...6bbed48ed91.json => edad07e580a5e4ff.json} | 2 +- .../data/test-cases/ee07ce647fa212f.json | 1 - ...136229ab9bf.json => ee166a73f40d3c20.json} | 2 +- .../data/test-cases/ee3705e6f9b5a9fb.json | 1 + .../data/test-cases/ee5910cfe65a88ee.json | 1 + ...15c7c751146.json => ee69e9682e62678d.json} | 2 +- ...7864855843c.json => ee6c548e8326102a.json} | 2 +- ...81eac70f265.json => ee7921cf820a84c7.json} | 2 +- ...8b44c0afc6f.json => eeeab72dd7b98f53.json} | 2 +- .../data/test-cases/ef2b00c02db84592.json | 1 - ...74be200bf39.json => ef31dfc3c5e1eba5.json} | 2 +- ...2dc2d3a7199.json => ef78b96af32d8f44.json} | 2 +- ...d563752b7d3.json => efb129a92346c1e2.json} | 2 +- ...429b652e3f0.json => efb8b59d749a7701.json} | 2 +- ...84ed941933a.json => f0006f98d015ae52.json} | 2 +- ...46b20790be2.json => f0137718eeb8b928.json} | 2 +- .../data/test-cases/f06328bb4646abe9.json | 1 + ...a6601a7cded.json => f06c10d847061aa8.json} | 2 +- ...c365b1f3e78.json => f0823718dfb5375c.json} | 2 +- .../data/test-cases/f0b0565c8c046b9.json | 1 + .../data/test-cases/f0be518507eb4be5.json | 1 + .../data/test-cases/f0d7d5d837d1a81d.json | 1 + ...b9d92f1ced5.json => f1a12ce167e16758.json} | 2 +- .../data/test-cases/f20c6ac583494462.json | 1 - ...f9b66669d76.json => f234151114f72d73.json} | 2 +- ...c7449825e20.json => f293182f40cb67e1.json} | 2 +- ...ffad3316fea.json => f2960499936046d9.json} | 2 +- .../data/test-cases/f2a1a9d494a0859.json | 1 + ...113649e95e6.json => f2bd505717a279f1.json} | 2 +- ...f3ddb316aa7.json => f2e80dca05a524c5.json} | 2 +- ...5de66192fb3.json => f30c1ecba64a2387.json} | 2 +- .../data/test-cases/f39847014d01db85.json | 1 + ...f94f198f2c7.json => f3b126d8812a5b41.json} | 2 +- .../data/test-cases/f41e10c3a1cb906c.json | 1 + ...ccbd9267527.json => f44e27fb1ad70c92.json} | 2 +- .../data/test-cases/f4915582d5908ed3.json | 1 + ...9efb1c04251.json => f4b278a94a1e847f.json} | 2 +- .../data/test-cases/f4e7ccb7c6ccb848.json | 1 + .../data/test-cases/f4f1b439f55706.json | 1 + ...0ff95f1c205.json => f50250db1c4c6a23.json} | 2 +- ...a7fe946ff07.json => f5045863352b0844.json} | 2 +- .../data/test-cases/f51b45f6ebc18bdf.json | 1 + ...364b75f844e.json => f52796969ad8c6a8.json} | 2 +- ...daea3850cc0.json => f530c22a860ae687.json} | 2 +- .../data/test-cases/f55783c4fa90131e.json | 1 + .../data/test-cases/f56ae5fa4f278c43.json | 1 + .../data/test-cases/f5898a8468d0cd4.json | 1 + ...ab28da55269.json => f5f644a4f4820d20.json} | 2 +- ...02a844f0715.json => f60f63436b65a2b8.json} | 2 +- ...c573ef8b7bb.json => f645f4897564ea6f.json} | 2 +- ...95f08de5e6c.json => f6a5ab1c4ff51693.json} | 2 +- .../data/test-cases/f70eefcf6fb13da.json | 1 + .../data/test-cases/f74116cee1d73fd7.json | 1 + .../data/test-cases/f74a1a4c19be5344.json | 1 + ...a3b0b784bd3.json => f798d0ae3c0161ae.json} | 2 +- .../data/test-cases/f7ab664600a360e4.json | 1 + ...72edd2dc54c.json => f7d62cc3e2943023.json} | 2 +- ...1f2226a901c.json => f7d85b85e5647233.json} | 2 +- .../data/test-cases/f807c10786110eac.json | 1 + ...5ebb9d90923.json => f8378587d25efdca.json} | 2 +- .../data/test-cases/f83b86d7cbc0ffa1.json | 1 + ...b407ce072f5.json => f83dd9e8b48c6bab.json} | 2 +- ...9ea69ba375b.json => f85747ab66ba1ea5.json} | 2 +- .../data/test-cases/f8789af2e0cead9e.json | 1 + .../data/test-cases/f87e2580dd045df5.json | 1 + .../data/test-cases/f8b721dfa4278fea.json | 1 + ...1ee7ec62257.json => f8f168b037580997.json} | 2 +- ...7cb7c15cb4e.json => f8f5ce581d6aa123.json} | 2 +- .../data/test-cases/f909236d8dbf12db.json | 1 + ...705106eff98.json => f997fb8bda584215.json} | 2 +- ...e964f1d2f5f.json => f9dcb27f6a2f5731.json} | 2 +- ...b72ebb12427.json => f9e3772c62ee9c71.json} | 2 +- ...e79aeea5636.json => fa6ca2a58e326e7c.json} | 2 +- ...eadff83cc0d.json => fa7a68ec7ece512f.json} | 2 +- ...6e34803d6c1.json => fa8c3ecdf2af6d24.json} | 2 +- .../data/test-cases/fb3c794e959e544.json | 1 + ...7b27c33cf44.json => fb5c1665d86892a0.json} | 2 +- .../data/test-cases/fb64f9c33c11676a.json | 1 - .../data/test-cases/fb676676627eae5f.json | 1 + ...0e0a129f035.json => fbd2d46d837906e7.json} | 2 +- ...4c17659aeca.json => fbe0584170aaf70b.json} | 2 +- ...d09c766442f.json => fc29d3ec888c78ca.json} | 2 +- ...23728fa2f2d.json => fc354bf003c2f263.json} | 2 +- ...dd0bc1f2f4e.json => fc440329cf5fac04.json} | 2 +- ...1b0bd82d5b1.json => fc74ffe2a6fa764b.json} | 2 +- ...bd2743d350e.json => fca8b44cee8413d5.json} | 2 +- ...aa4ce177c0a.json => fcdf7618a6de4bb6.json} | 2 +- ...f91e3478c29.json => fd479ce41ec7634c.json} | 2 +- ...dfb90ab4062.json => fd6070318b36fb6f.json} | 2 +- ...aa873a93d86.json => fe6da9468168286a.json} | 2 +- ...55d145895ca.json => feb720678835be31.json} | 2 +- ...d4c2aaf90e3.json => fee32280a5b8d3da.json} | 2 +- .../data/test-cases/fef6b9be2b6df65c.json | 1 + ...a2788645a5a.json => ff4e61f1c87a50e9.json} | 2 +- ...2d8e6c7fba2.json => ffafa17ec9b60c3d.json} | 2 +- ...cbbe1051e7b.json => ffb404aff6d39348.json} | 2 +- .../data/test-cases/ffb8e8f4eed50d14.json | 1 + allure-report/data/timeline.json | 2 +- allure-report/export/influxDbData.txt | 26 +- allure-report/export/prometheusData.txt | 14 +- allure-report/history/duration-trend.json | 2 +- allure-report/history/history-trend.json | 2 +- allure-report/history/history.json | 2 +- allure-report/history/retry-trend.json | 2 +- allure-report/index.html | 2 +- allure-report/widgets/duration-trend.json | 2 +- allure-report/widgets/duration.json | 2 +- allure-report/widgets/history-trend.json | 2 +- allure-report/widgets/retry-trend.json | 2 +- allure-report/widgets/severity.json | 2 +- allure-report/widgets/status-chart.json | 2 +- allure-report/widgets/suites.json | 2 +- allure-report/widgets/summary.json | 2 +- 1623 files changed, 2398 insertions(+), 2147 deletions(-) rename allure-report/data/attachments/{251fc94fc6c7a32c.txt => 109442e0bd8a1bf7.txt} (100%) rename allure-report/data/attachments/{4d30848274c8ad1.txt => 109a63364b1709cb.txt} (100%) rename allure-report/data/attachments/{5d705772211817a.txt => 10a01d4023ecf988.txt} (100%) rename allure-report/data/attachments/{3aa04a43be2f48f8.txt => 10ab1851bf24b8d6.txt} (100%) rename allure-report/data/attachments/{2857c06d429f0757.txt => 11f397a799a36e46.txt} (100%) rename allure-report/data/attachments/{70a5653f29871a87.txt => 125be537d5adaaca.txt} (100%) rename allure-report/data/attachments/{13227bd500cb42e3.txt => 12f8c2c15d255220.txt} (100%) rename allure-report/data/attachments/{3642f149df538341.txt => 1317b7c3ac9b35f3.txt} (100%) rename allure-report/data/attachments/{6ccbedecdc10bf7c.txt => 137f1698764a14f9.txt} (100%) rename allure-report/data/attachments/{41d5484e0bc70d7d.txt => 1396f0b44562fb.txt} (100%) rename allure-report/data/attachments/{6d437f4331d47546.txt => 1432622f91e93164.txt} (100%) rename allure-report/data/attachments/{796b2b673c5d0f8b.txt => 14a8f582bcfd592e.txt} (100%) rename allure-report/data/attachments/{2a2e64e7212768ad.txt => 14b7835dfcf5573.txt} (100%) rename allure-report/data/attachments/{41df37e97a182fa4.txt => 14eb68b01bad174e.txt} (100%) rename allure-report/data/attachments/{40d2195f3173474a.txt => 156bd3bd78bc6da3.txt} (100%) rename allure-report/data/attachments/{a8645f795d532c99.txt => 15ba330274e4476f.txt} (100%) rename allure-report/data/attachments/{2731ba669f341d4.txt => 160b559167718fe9.txt} (100%) rename allure-report/data/attachments/{8026ef3ff023cc9a.txt => 170e0e9c6fcebe10.txt} (100%) rename allure-report/data/attachments/{cff9f69ec70ee0f7.txt => 1711c955ae8ed0a7.txt} (100%) rename allure-report/data/attachments/{9fbeafabb75260d1.txt => 1731dec9bd704732.txt} (100%) rename allure-report/data/attachments/{a2484027e285a197.txt => 173c8b3804a43ebd.txt} (100%) rename allure-report/data/attachments/{27ebdb1cdb347243.txt => 1740535c6865a94c.txt} (100%) rename allure-report/data/attachments/{491da570f7a6ee0b.txt => 177ff12f105ad4fb.txt} (100%) rename allure-report/data/attachments/{4e1d630f27c230cc.txt => 178114092f1d89bc.txt} (100%) rename allure-report/data/attachments/{250e2e008fa1f7b7.txt => 17b2af932389b810.txt} (100%) rename allure-report/data/attachments/{3934a31f83c6b392.txt => 186311649e77f5c8.txt} (100%) rename allure-report/data/attachments/{943e8734629abe38.txt => 189cde1d0b42e48e.txt} (100%) rename allure-report/data/attachments/{5932d90eab3398ae.txt => 18d6da20137be417.txt} (100%) rename allure-report/data/attachments/{6c8cae3bc3627567.txt => 199bb2c039260176.txt} (100%) rename allure-report/data/attachments/{18e75387bd3b0160.txt => 19fe4b4b294825d2.txt} (100%) rename allure-report/data/attachments/{27790d440082a497.txt => 1a54a6c3a38e3980.txt} (100%) rename allure-report/data/attachments/{113f10167539853c.txt => 1a639fee286babca.txt} (100%) rename allure-report/data/attachments/{653d98a4ef66ecba.txt => 1abf48c153a1a17.txt} (100%) rename allure-report/data/attachments/{4f2668e4eadc4184.txt => 1b39872f125fb2ef.txt} (100%) rename allure-report/data/attachments/{763b805ca97b9cb4.txt => 1bbf8f89249006b7.txt} (100%) rename allure-report/data/attachments/{3fda8fe35c793420.txt => 1d9f9656a94c5b68.txt} (100%) rename allure-report/data/attachments/{716034871f152875.txt => 1ded455ca81b768f.txt} (100%) rename allure-report/data/attachments/{f9be06237574ec64.txt => 1f0ce1b1fd5fc576.txt} (100%) rename allure-report/data/attachments/{ba852967ab446eeb.txt => 1f2d499684f15ad9.txt} (100%) rename allure-report/data/attachments/{2f8e2ebe7761508b.txt => 1f432fb3d00b5421.txt} (100%) rename allure-report/data/attachments/{44f1e11e2ff687a2.txt => 1f751d5dc8f66594.txt} (100%) rename allure-report/data/attachments/{e707854c25108dd3.txt => 20620e6bfba57810.txt} (100%) rename allure-report/data/attachments/{f135592d4f270e5c.txt => 2096e2c2c39f7dc3.txt} (100%) rename allure-report/data/attachments/{6d177fc91cdd3978.txt => 222c482e7768a801.txt} (100%) rename allure-report/data/attachments/{85c42dfa3ebb2236.txt => 23973121b39ff210.txt} (100%) rename allure-report/data/attachments/{678cbfc79956849c.txt => 24199b96cc9c8ec3.txt} (100%) rename allure-report/data/attachments/{ef03ba760fe885c0.txt => 24f89618104eb19b.txt} (100%) rename allure-report/data/attachments/{eaf9f3a704742209.txt => 2519fe596c9290b5.txt} (100%) rename allure-report/data/attachments/{6003c650ea768633.txt => 2589fdae4962b015.txt} (100%) rename allure-report/data/attachments/{2d724952cd20b6e1.txt => 25bffeb92bc30f28.txt} (100%) rename allure-report/data/attachments/{3b202dd3c9afa278.txt => 261dd410d8763d0c.txt} (100%) rename allure-report/data/attachments/{50fb258de88c9004.txt => 269b686a0975db0c.txt} (100%) rename allure-report/data/attachments/{d07a2236fba5201a.txt => 26a3b25de30a9620.txt} (100%) rename allure-report/data/attachments/{15093916dbf3d716.txt => 27bed6305313af96.txt} (100%) rename allure-report/data/attachments/{be09c92a6fe0ac60.txt => 28132f88f00a1308.txt} (100%) rename allure-report/data/attachments/{358b4a5251243888.txt => 290c988fd03516ad.txt} (100%) rename allure-report/data/attachments/{38035331d2572599.txt => 29d2aeece76c7fe3.txt} (100%) rename allure-report/data/attachments/{3fb645b301593c3.txt => 2a05a507f0806707.txt} (100%) rename allure-report/data/attachments/{74cdc928e034d6b3.txt => 2c7e8a807d9268ca.txt} (100%) rename allure-report/data/attachments/{406f6d7cefafc12f.txt => 2dd32f5139296bc1.txt} (100%) rename allure-report/data/attachments/{45607bc70f60caca.txt => 2fdd029d73a8807a.txt} (100%) rename allure-report/data/attachments/{1ce4c0edbbe04f9e.txt => 301d26c401259420.txt} (100%) rename allure-report/data/attachments/{20671bf346c43317.txt => 3042b984a74017cb.txt} (100%) rename allure-report/data/attachments/{e6e24d1199424ffc.txt => 308712033617631b.txt} (100%) rename allure-report/data/attachments/{f146e27128e108d6.txt => 311050da7cc4ba1d.txt} (100%) rename allure-report/data/attachments/{b3d868139d71d5f7.txt => 31feec1cbe8e86eb.txt} (100%) rename allure-report/data/attachments/{2de6534e84498685.txt => 3253e81015ef9292.txt} (100%) rename allure-report/data/attachments/{8fe17348ea95e36a.txt => 330cef54d490c73e.txt} (100%) rename allure-report/data/attachments/{53f4bbebe56fedf8.txt => 3399e5458489501f.txt} (100%) rename allure-report/data/attachments/{f8693f25c4ee9e10.txt => 348342fa3ca36cd4.txt} (100%) rename allure-report/data/attachments/{b668f07fa0a63017.txt => 34970ab91dd4eb6c.txt} (100%) rename allure-report/data/attachments/{96d9a9c4b2d76831.txt => 3594eabb545be088.txt} (100%) rename allure-report/data/attachments/{26e6b6f5238c5b93.txt => 3608f48d89e26964.txt} (100%) rename allure-report/data/attachments/{214be7d831eff2b3.txt => 36d68ec5646bcd8f.txt} (100%) rename allure-report/data/attachments/{633abad852203ff8.txt => 36e3a300e20ebc68.txt} (100%) rename allure-report/data/attachments/{22c24dd6f011f9a2.txt => 36ecb19439af20bd.txt} (100%) rename allure-report/data/attachments/{662510f84e87d061.txt => 3770d294f14361b7.txt} (100%) rename allure-report/data/attachments/{55397a95b3056409.txt => 37cb2e943dd3d9fa.txt} (100%) rename allure-report/data/attachments/{3cf96ebaed3b737c.txt => 37e9edade389e962.txt} (100%) rename allure-report/data/attachments/{5bbee37443803595.txt => 38571528b67e0e01.txt} (100%) rename allure-report/data/attachments/{804c421dc94f15f8.txt => 394478f192e8a5de.txt} (100%) rename allure-report/data/attachments/{bcfe223ecfa6a3c6.txt => 39cdb5ecef1e6852.txt} (100%) rename allure-report/data/attachments/{14f2aef00cdbb284.txt => 39d04d48da97fae9.txt} (100%) rename allure-report/data/attachments/{3e106a35f51e50cd.txt => 3a7734f8c672bad4.txt} (100%) rename allure-report/data/attachments/{b7eae48ecc824334.txt => 3b3cd319fcba15f6.txt} (100%) rename allure-report/data/attachments/{e255c73086be3d07.txt => 3bb61b0a55d4385d.txt} (100%) rename allure-report/data/attachments/{157d07999fe8bb77.txt => 3cae79604aa7933a.txt} (100%) rename allure-report/data/attachments/{9905895b50875943.txt => 3cfc143b96c54cf6.txt} (100%) rename allure-report/data/attachments/{998c70b07f1415e5.txt => 3e07263d3e995602.txt} (100%) rename allure-report/data/attachments/{61ad30a7c0f382b9.txt => 3ecf2d6ad02962e9.txt} (100%) rename allure-report/data/attachments/{e084f22fa99f8e9d.txt => 3f0b8846373b1989.txt} (100%) rename allure-report/data/attachments/{420f806ee93872a1.txt => 3fc3f69bfdd6ff9f.txt} (100%) rename allure-report/data/attachments/{1f6883e774d20c18.txt => 425763916f5e21f0.txt} (100%) rename allure-report/data/attachments/{d9ffb014ecda8013.txt => 4279fe2563b48bb.txt} (100%) rename allure-report/data/attachments/{45f7f0c7806d7a5f.txt => 435e1e4d04469bf3.txt} (100%) rename allure-report/data/attachments/{506f9b1aa47477d8.txt => 444e3c5fd77d103.txt} (100%) rename allure-report/data/attachments/{ad735a94d30c45bf.txt => 44f2331d72fdaf9f.txt} (100%) rename allure-report/data/attachments/{87d3adc8617c894b.txt => 468a57056683ca0e.txt} (100%) rename allure-report/data/attachments/{fb0a5c86d6124176.txt => 46d017d45a55c05d.txt} (100%) rename allure-report/data/attachments/{f451e0abb748fcc1.txt => 4718f5d8ec029744.txt} (100%) rename allure-report/data/attachments/{abb95e0c50272d33.txt => 479ed89d4ea66fbb.txt} (100%) rename allure-report/data/attachments/{4b36d71052a1b866.txt => 47f787d5d2d88cb3.txt} (100%) rename allure-report/data/attachments/{2e61a28436ed8397.txt => 48efcf6226950113.txt} (100%) rename allure-report/data/attachments/{c9b22cc9dc28f439.txt => 49113f874a139db1.txt} (100%) rename allure-report/data/attachments/{ebde2b3c5f7bae47.txt => 491334107dd5238e.txt} (100%) rename allure-report/data/attachments/{ed45fb968677e918.txt => 496a8fc7c085caf4.txt} (100%) rename allure-report/data/attachments/{64228c9b0b57911a.txt => 49e08a4f979422ca.txt} (100%) rename allure-report/data/attachments/{60a8c5c2c7c00ce5.txt => 4ae64cfa18a7fe16.txt} (100%) rename allure-report/data/attachments/{4d7d20a8fa5049ef.txt => 4b7e6475d8bd7c13.txt} (100%) rename allure-report/data/attachments/{abff3e6ddecc6408.txt => 4bab5f3bdd559aa2.txt} (100%) rename allure-report/data/attachments/{b3fc324c4038294.txt => 4bd7ac0fc20fb6a1.txt} (100%) rename allure-report/data/attachments/{b75f0fc5a14ca4fd.txt => 4c101c06530a2e9e.txt} (100%) rename allure-report/data/attachments/{42c6735b0fe92ce1.txt => 4cb1b482ef5803db.txt} (100%) rename allure-report/data/attachments/{8bb1795fd7e9c165.txt => 4dd82faaba573e68.txt} (100%) rename allure-report/data/attachments/{f4832c8bd9f79614.txt => 4de55b4ae1f39108.txt} (100%) rename allure-report/data/attachments/{ec381cac44a14e7f.txt => 4eeb339282cdbad1.txt} (100%) rename allure-report/data/attachments/{1ad9ab8a22025032.txt => 50169eac5bf8084a.txt} (100%) rename allure-report/data/attachments/{17e1f12bcdd4240f.txt => 50e06d17e1c8d051.txt} (100%) rename allure-report/data/attachments/{58c4828262135699.txt => 51a20e306213f50c.txt} (100%) rename allure-report/data/attachments/{f965c0bd2baa205.txt => 51e235954e2b24e9.txt} (100%) rename allure-report/data/attachments/{479118fc0413c04b.txt => 5442f35428b86593.txt} (100%) rename allure-report/data/attachments/{97c0819228c5b269.txt => 551e85d4261ef859.txt} (100%) rename allure-report/data/attachments/{73fc8f8784290b40.txt => 5538d98488e22a1.txt} (100%) rename allure-report/data/attachments/{b3163cc1ff017e55.txt => 559adfb16322e47a.txt} (100%) rename allure-report/data/attachments/{afa2344a5891233b.txt => 566cb1395d2623ee.txt} (100%) rename allure-report/data/attachments/{b8984e5480e91547.txt => 599f4bf8dc375f2f.txt} (100%) rename allure-report/data/attachments/{fbbce307fc80ae94.txt => 5a674ed3663720ba.txt} (100%) rename allure-report/data/attachments/{1889e3b457f9320a.txt => 5aca5b8e45147f1d.txt} (100%) rename allure-report/data/attachments/{797fb7eadd505b53.txt => 5ae64153eb7d8fd5.txt} (100%) rename allure-report/data/attachments/{36a84ce1aa4434a.txt => 5bd79911afafb617.txt} (100%) rename allure-report/data/attachments/{78bed3c0bc3ed4a.txt => 5c46b88a061332b3.txt} (100%) rename allure-report/data/attachments/{c37932e6bf05499f.txt => 5e736eac717d48b8.txt} (100%) rename allure-report/data/attachments/{d3d4f5edff7b23a8.txt => 5f6fe8d21ab696a3.txt} (100%) rename allure-report/data/attachments/{349072694382d10e.txt => 604a50ef60eddbca.txt} (100%) rename allure-report/data/attachments/{6eedc0bd484f71d7.txt => 60551f07eabe2ff9.txt} (100%) rename allure-report/data/attachments/{d4f2ea957f6fd3d1.txt => 60ceec260ccbe12f.txt} (100%) rename allure-report/data/attachments/{3f196c8197b3dace.txt => 61278101606180d8.txt} (100%) rename allure-report/data/attachments/{2b2e74011774c312.txt => 6148a5719472274d.txt} (100%) rename allure-report/data/attachments/{bc75ae4e4dd30a2d.txt => 61c3ba5a703e8965.txt} (100%) rename allure-report/data/attachments/{27997c5236222053.txt => 622422493d650fdf.txt} (100%) rename allure-report/data/attachments/{312062c4d3ad84ef.txt => 6369af4634ea6437.txt} (100%) rename allure-report/data/attachments/{57e00ad1037160b6.txt => 64799626cd40a47b.txt} (100%) rename allure-report/data/attachments/{cbf43f2ebe410372.txt => 65939308dfa4b454.txt} (100%) rename allure-report/data/attachments/{f9925186cd87d138.txt => 65be7c61ca459627.txt} (100%) rename allure-report/data/attachments/{72a9f976cb96a98d.txt => 6724f660007b6f8f.txt} (100%) rename allure-report/data/attachments/{1d47ca07980ea016.txt => 68019be75248ce7a.txt} (100%) rename allure-report/data/attachments/{6de140d5a479d77f.txt => 68907a6eac7b7e79.txt} (100%) rename allure-report/data/attachments/{491bdfb319cbef56.txt => 69a85253be572104.txt} (100%) rename allure-report/data/attachments/{9ca1d978c6df1121.txt => 69ca1dfc95141b1.txt} (100%) rename allure-report/data/attachments/{f82dd65f45ebad45.txt => 6a89bd43066f4143.txt} (100%) rename allure-report/data/attachments/{30ae8f4eae56e738.txt => 6aac0d6477d82d49.txt} (100%) rename allure-report/data/attachments/{287eb5fa3fe3b8e6.txt => 6b06d8bb1f0d8ae7.txt} (100%) rename allure-report/data/attachments/{6362c8f15fc6c9c0.txt => 6b26647644a9011f.txt} (100%) rename allure-report/data/attachments/{1342cdaa6481456c.txt => 6c8ba92b05ceb5be.txt} (100%) rename allure-report/data/attachments/{c396a9cbff279a34.txt => 6e533a6d7b553e50.txt} (100%) rename allure-report/data/attachments/{250afdca61317e51.txt => 6e652aa73f38cf38.txt} (100%) rename allure-report/data/attachments/{613c4bb712b376ab.txt => 6f68f7e9f588442e.txt} (100%) rename allure-report/data/attachments/{2b123edd90aa8cfa.txt => 70549112d1201a37.txt} (100%) rename allure-report/data/attachments/{60553188e91eeef0.txt => 7059a7f2ea4f1d21.txt} (100%) rename allure-report/data/attachments/{a42bbda54a679e90.txt => 712c159a049ff459.txt} (100%) rename allure-report/data/attachments/{ea9613cb4c662f2e.txt => 71fc07a67416a0d6.txt} (100%) rename allure-report/data/attachments/{407f6f4c1f9bb5a2.txt => 72c5ae89672fcecc.txt} (100%) rename allure-report/data/attachments/{d31f2c0a44e75654.txt => 7324bd79d75b1976.txt} (100%) rename allure-report/data/attachments/{312dff4578efa314.txt => 7379dff7e25cb0a5.txt} (100%) rename allure-report/data/attachments/{d1ef36a16a608c99.txt => 73dfd6fcf3f0a2ae.txt} (100%) rename allure-report/data/attachments/{a45595e4822528c2.txt => 73e1a08147f0ff00.txt} (100%) rename allure-report/data/attachments/{f469dcf875239b3a.txt => 7425734ad14179e4.txt} (100%) rename allure-report/data/attachments/{780df00dc666cbbd.txt => 74fd4cb3a0d16df5.txt} (100%) rename allure-report/data/attachments/{40f2f98b11de943f.txt => 7548d350c45f54f6.txt} (100%) rename allure-report/data/attachments/{21b3833bd58160c1.txt => 757a12dc566d3a04.txt} (100%) rename allure-report/data/attachments/{47ad300a7de26866.txt => 761ccb0eac4691eb.txt} (100%) rename allure-report/data/attachments/{a3653a5d01cb978a.txt => 768a2542510e9424.txt} (100%) rename allure-report/data/attachments/{20e82e5aa37702bc.txt => 778d3397f8515034.txt} (100%) rename allure-report/data/attachments/{55f2f3a355e5f2ed.txt => 78536cfa8705ace3.txt} (100%) rename allure-report/data/attachments/{fcd71aa1ac7b19de.txt => 788d307008b11df5.txt} (100%) rename allure-report/data/attachments/{4163d90850028d14.txt => 78b67cc840d0f4a8.txt} (100%) rename allure-report/data/attachments/{4e693ea1a91f61ae.txt => 78ccb02d90c15e25.txt} (100%) rename allure-report/data/attachments/{94063c17619b52a4.txt => 7a6a4e0267245cc3.txt} (100%) rename allure-report/data/attachments/{d8a2a5280a09e0f4.txt => 7b9e000b6e8b6a60.txt} (100%) rename allure-report/data/attachments/{a93887f366c469bf.txt => 7bfcd285de663163.txt} (100%) rename allure-report/data/attachments/{4eb3eb579b763a8f.txt => 7c4d33961ba9ecde.txt} (100%) rename allure-report/data/attachments/{e932ac087f99689b.txt => 7cbc8ebd65fb8481.txt} (100%) rename allure-report/data/attachments/{e1032190833aaac7.txt => 7ce02846f9ac9e3d.txt} (100%) rename allure-report/data/attachments/{8afe9706a7ce18ad.txt => 7d82c31fb2485e49.txt} (100%) rename allure-report/data/attachments/{54520f78b41446af.txt => 7e6e0f3580253245.txt} (100%) rename allure-report/data/attachments/{cd47dccaf2814ffa.txt => 7f097b27d301b075.txt} (100%) rename allure-report/data/attachments/{a96837b21492cfc6.txt => 7f1e6261fe55f12.txt} (100%) rename allure-report/data/attachments/{850bcf9305b7e315.txt => 7f5a59d26508f55d.txt} (100%) rename allure-report/data/attachments/{835e4619c5013fd1.txt => 7f8244a44f0672b6.txt} (100%) rename allure-report/data/attachments/{dd8004b465c9b5f8.txt => 817385884ec20713.txt} (100%) rename allure-report/data/attachments/{5473bc31f56d9a8c.txt => 8276c421e6a39adf.txt} (100%) rename allure-report/data/attachments/{42b879e2f735a0ac.txt => 8333a44527f8bcd6.txt} (100%) rename allure-report/data/attachments/{9e567229f9ee12b7.txt => 833d260c3e69ae73.txt} (100%) rename allure-report/data/attachments/{bcefb385384ff8bd.txt => 835d7d8f35896535.txt} (100%) rename allure-report/data/attachments/{85813043366b6b90.txt => 843a9b33796b69ab.txt} (100%) rename allure-report/data/attachments/{cc1b1893c2b8b52d.txt => 8474eb0f72326e17.txt} (100%) rename allure-report/data/attachments/{5f8aca645c6a63be.txt => 87d604abdd1034ad.txt} (100%) rename allure-report/data/attachments/{6d3df2dabc5ae756.txt => 87f01e814f201b12.txt} (100%) rename allure-report/data/attachments/{38545087bdeef541.txt => 8824f11650f12248.txt} (100%) rename allure-report/data/attachments/{60b6667cdd104689.txt => 885315e2174c8284.txt} (100%) rename allure-report/data/attachments/{6dd9ffa61a5d6299.txt => 89e2dbaee5a08a8e.txt} (100%) rename allure-report/data/attachments/{ca809417038f1f70.txt => 8aceddf9a40c21c4.txt} (100%) rename allure-report/data/attachments/{a21b9ca1dd2e7b86.txt => 8b70cbce8e882192.txt} (100%) rename allure-report/data/attachments/{ed1895964a4f1dc3.txt => 8bf4ab3249d50d5d.txt} (100%) rename allure-report/data/attachments/{a77304cbd9f33e1a.txt => 8c9b413e90bf769f.txt} (100%) rename allure-report/data/attachments/{51739cb22fa4b9dd.txt => 8cf8917f49abc708.txt} (100%) rename allure-report/data/attachments/{8ecb0410a6ed3d7.txt => 8d8a3475c1ccc5fb.txt} (100%) rename allure-report/data/attachments/{894b6ecea0eca1b4.txt => 8e4c5f9ea62989e.txt} (100%) rename allure-report/data/attachments/{32bad6265b9c6d8f.txt => 8f0da0353e68cf34.txt} (100%) rename allure-report/data/attachments/{5d2b03d7ca85feb9.txt => 8f4bf05879c8645b.txt} (100%) rename allure-report/data/attachments/{81acaad5616d047a.txt => 8fc1f3f9e7136bfe.txt} (100%) rename allure-report/data/attachments/{657871840dfd173c.txt => 8ffb3d947babe2e5.txt} (100%) rename allure-report/data/attachments/{85d8941907447826.txt => 918ce551f75f4a0e.txt} (100%) rename allure-report/data/attachments/{df41cf6b46c44c9e.txt => 9639571481038f39.txt} (100%) rename allure-report/data/attachments/{fba7e6f7e7538915.txt => 9664dbae27a9df3.txt} (100%) rename allure-report/data/attachments/{30e865fe73fa5b27.txt => 9735ba411f0b6bb5.txt} (100%) rename allure-report/data/attachments/{a68de0f4d0253c8.txt => 97d568438480d957.txt} (100%) rename allure-report/data/attachments/{f4b8bcccd8e3d9a5.txt => 9817c9d821675f57.txt} (100%) rename allure-report/data/attachments/{47cbc31b80f9d83c.txt => 982c55cae2a7ef4a.txt} (100%) rename allure-report/data/attachments/{4562f85c852f0a97.txt => 9846fc0a17d839b.txt} (100%) rename allure-report/data/attachments/{74dc839f94675f1c.txt => 9adef8938da49aa4.txt} (100%) rename allure-report/data/attachments/{9e573d2ead28469f.txt => 9bd069e9e159fee7.txt} (100%) rename allure-report/data/attachments/{3228eb12f2ec789a.txt => 9c2f5fc2bb8b3db8.txt} (100%) rename allure-report/data/attachments/{c41bf0bbb023a57f.txt => 9da75d7f845f0505.txt} (100%) rename allure-report/data/attachments/{6152f64a0232194a.txt => 9e8a1dedd1940971.txt} (100%) rename allure-report/data/attachments/{72987b318aa88c6e.txt => 9febde34d0c00b2f.txt} (100%) rename allure-report/data/attachments/{67853a4b20ca2cdb.txt => a03148d44cb41cd1.txt} (100%) rename allure-report/data/attachments/{7cf8e66e6e1debdd.txt => a05e018d59cd8b23.txt} (100%) rename allure-report/data/attachments/{5e949b4a7c16c61.txt => a0d3807a4788c278.txt} (100%) rename allure-report/data/attachments/{c81a97703cb852b3.txt => a11058edff9d734d.txt} (100%) rename allure-report/data/attachments/{7ac45d8c1df7c43f.txt => a125eb4c92d61148.txt} (100%) rename allure-report/data/attachments/{ee8e3a23a26b4600.txt => a156897cab59d4a9.txt} (100%) rename allure-report/data/attachments/{dc735d6cbaa38cba.txt => a21d8bb488556a6f.txt} (100%) rename allure-report/data/attachments/{d5812afb446c78ce.txt => a23effdd1e0b0387.txt} (100%) rename allure-report/data/attachments/{ef5ba384071190d7.txt => a243f5a6e2aef08.txt} (100%) rename allure-report/data/attachments/{3fc74f16bec5bbf3.txt => a3650a70b5eae511.txt} (100%) rename allure-report/data/attachments/{145b065c02fb875.txt => a425815a2146be3f.txt} (100%) rename allure-report/data/attachments/{38a8ba45b2ebefd2.txt => a5312ee34a83472.txt} (100%) rename allure-report/data/attachments/{80cb92b2a68485aa.txt => a60431e704cfd67c.txt} (100%) rename allure-report/data/attachments/{ec0aa2198d4850df.txt => a6116dd9c620e39c.txt} (100%) rename allure-report/data/attachments/{d23d24d51ab0f2ec.txt => a6a60e5084ac1c11.txt} (100%) rename allure-report/data/attachments/{20cbc8ca27f67538.txt => a6bd6cbda8e220e3.txt} (100%) rename allure-report/data/attachments/{2f4fbc6ed8dc7bd7.txt => a892fb7f4ca8f546.txt} (100%) rename allure-report/data/attachments/{5fb2caa4cfa17eeb.txt => a99ebb2468b16b95.txt} (100%) rename allure-report/data/attachments/{fe10e73cc4ad9f0b.txt => aaa63d8350548106.txt} (100%) rename allure-report/data/attachments/{9d7d21f763543a21.txt => aad37f3b55b49e8b.txt} (100%) rename allure-report/data/attachments/{eb5eccf50db39cb4.txt => abf9a812b0a61e07.txt} (100%) rename allure-report/data/attachments/{f2a9e45ebf48d755.txt => ac454cba7b8ef897.txt} (100%) rename allure-report/data/attachments/{9999070a00162057.txt => ac7ee8f205d4305f.txt} (100%) rename allure-report/data/attachments/{ca30023d79faffff.txt => adebeeed90235942.txt} (100%) rename allure-report/data/attachments/{ff7405a34f99b6d6.txt => ae198d98d59aaf55.txt} (100%) rename allure-report/data/attachments/{57a50be8b38a35c0.txt => aedb47484495e540.txt} (100%) rename allure-report/data/attachments/{8778cf7e4eef01cb.txt => af19b50155e57570.txt} (100%) rename allure-report/data/attachments/{b38075c83e7baebb.txt => afb99113fdc97fa7.txt} (100%) rename allure-report/data/attachments/{d1599295a3f41ee0.txt => afc512e4954fc414.txt} (100%) rename allure-report/data/attachments/{bbc90d26ad4a4f8d.txt => b010e8f0a161de92.txt} (100%) rename allure-report/data/attachments/{d10d4fe51ef67a7e.txt => b024c4fc790da6a0.txt} (100%) rename allure-report/data/attachments/{485b7a7482b5d8a7.txt => b04de969348b1187.txt} (100%) rename allure-report/data/attachments/{e01af9821f0d361c.txt => b0ff98cda0b0c43.txt} (100%) rename allure-report/data/attachments/{3f0fa9f25e69b0db.txt => b2310e8820061774.txt} (100%) rename allure-report/data/attachments/{b9b51ca36b85ae94.txt => b278aa851a807748.txt} (100%) rename allure-report/data/attachments/{96a11dda30514e67.txt => b3f562db94371de7.txt} (100%) rename allure-report/data/attachments/{8e812b8e3303683b.txt => b5f1637aeba19ba4.txt} (100%) rename allure-report/data/attachments/{dfbdbb71de71756e.txt => b6c652a922a26947.txt} (100%) rename allure-report/data/attachments/{da21be7860f58cf6.txt => b71080d98c3c005a.txt} (100%) rename allure-report/data/attachments/{d0bc1ad841243b6a.txt => b8226dfed0d6a202.txt} (100%) rename allure-report/data/attachments/{f4f546882d08a1ac.txt => b8b7177b76c24b60.txt} (100%) rename allure-report/data/attachments/{9b1c37b21b76b29e.txt => b8eb00e308a84c71.txt} (100%) rename allure-report/data/attachments/{7269f46fd31058ea.txt => ba1557147d8416c1.txt} (100%) rename allure-report/data/attachments/{175a566935f714fc.txt => ba489e6f976c964f.txt} (100%) rename allure-report/data/attachments/{b1cd53c85d21b130.txt => bbfc3fd670d975ed.txt} (100%) rename allure-report/data/attachments/{db8507235524f855.txt => bc673310ad989d77.txt} (100%) rename allure-report/data/attachments/{59ffb265a3e6098c.txt => bda0913251ec8a7b.txt} (100%) rename allure-report/data/attachments/{9b3917a8b59d5897.txt => bf45d5ff12eeac.txt} (100%) rename allure-report/data/attachments/{6a40280d8ceb16cd.txt => bf99ecdb396f2260.txt} (100%) rename allure-report/data/attachments/{9f73c3d7a4d872db.txt => c2193538ea3afe0a.txt} (100%) rename allure-report/data/attachments/{524aa4f029baa8f0.txt => c2a52b208b761917.txt} (100%) rename allure-report/data/attachments/{66609ce44d720b41.txt => c2e67de795c89a5a.txt} (100%) rename allure-report/data/attachments/{9799e3f6110c5a32.txt => c2f1b1cb1ae72af.txt} (100%) rename allure-report/data/attachments/{2f87f52236c75608.txt => c3f7cfc63c7ff6c0.txt} (100%) rename allure-report/data/attachments/{8b971d66be6d6e40.txt => c44b1c3c0ffa10e2.txt} (100%) rename allure-report/data/attachments/{4a17336d068efc8d.txt => c451fef2d9e750cf.txt} (100%) rename allure-report/data/attachments/{29aa0c598c1f2d04.txt => c48ba88f01713cd9.txt} (100%) rename allure-report/data/attachments/{2a7e83a8939aa3ea.txt => c4c9e9114ad6559f.txt} (100%) rename allure-report/data/attachments/{5cd6ffe4ff4d743f.txt => c4ea8d9f8cc216b.txt} (100%) rename allure-report/data/attachments/{1dfb198a7253b941.txt => c59a8e0803dd0f2a.txt} (100%) rename allure-report/data/attachments/{d8719a36b49cd420.txt => c5bd55033a46cbd6.txt} (100%) rename allure-report/data/attachments/{912408d5d8c9a319.txt => c5e476dd4b6a20ba.txt} (100%) rename allure-report/data/attachments/{2e0ebd0ab799745b.txt => c74dda443bb93e16.txt} (100%) rename allure-report/data/attachments/{24af1d7a0c0925a.txt => c9f5f46a27073adb.txt} (100%) rename allure-report/data/attachments/{baaad4c171b47b9e.txt => cb0ee2e023f35346.txt} (100%) rename allure-report/data/attachments/{94e9d8b306bae268.txt => cb23a7b28fc18bd6.txt} (100%) rename allure-report/data/attachments/{8c55c5917aa6e797.txt => cb41782d94c9aab7.txt} (100%) rename allure-report/data/attachments/{f1567e8d01d8dfde.txt => cbd3c7018b67e8e4.txt} (100%) rename allure-report/data/attachments/{a3b3cc61f9d4e36a.txt => cc4cfb2dc7db30af.txt} (100%) rename allure-report/data/attachments/{d21731264b505a67.txt => cc63349648479638.txt} (100%) rename allure-report/data/attachments/{9e245b3b58a92040.txt => ccbd4e70fd917551.txt} (100%) rename allure-report/data/attachments/{2696faacdbe9d8c7.txt => cf72669419827310.txt} (100%) rename allure-report/data/attachments/{b56e36dfb1d3c6b9.txt => cf7f17d6f7fd036a.txt} (100%) rename allure-report/data/attachments/{a6b1894a1d267067.txt => cfe73955a863d89d.txt} (100%) rename allure-report/data/attachments/{5d69906a8709b5cf.txt => cfefef663b0332e5.txt} (100%) rename allure-report/data/attachments/{9f9ce9c609c0bc6d.txt => d00e203177644379.txt} (100%) rename allure-report/data/attachments/{102e6d56faf7b4e2.txt => d14e7908f9d07961.txt} (100%) rename allure-report/data/attachments/{d473fba435502d8.txt => d2045a3977b6446a.txt} (100%) rename allure-report/data/attachments/{ef0993259005a4f7.txt => d440fc5c222001d7.txt} (100%) rename allure-report/data/attachments/{e07fc7bf167a48cd.txt => d4a81151a0ff1cd3.txt} (100%) rename allure-report/data/attachments/{a85d028b53b2fa36.txt => d4e82428a3f7df08.txt} (100%) rename allure-report/data/attachments/{38c339de2200090.txt => d514a9b6a336ccd7.txt} (100%) rename allure-report/data/attachments/{7b12ebc1ff02117.txt => d548d3f08000ee3d.txt} (100%) rename allure-report/data/attachments/{7a82343faf93d23b.txt => d5ed21afa8637a26.txt} (100%) rename allure-report/data/attachments/{31e63916e4212e6.txt => d66cc433d6fd8732.txt} (100%) rename allure-report/data/attachments/{636126aa0fb68ef3.txt => d7c022e7514eebb0.txt} (100%) rename allure-report/data/attachments/{609bbc010bbea5b7.txt => d7e95fbbc7ae4edc.txt} (100%) rename allure-report/data/attachments/{eb2a7d798a0dd1d2.txt => d857b907a04662b0.txt} (100%) rename allure-report/data/attachments/{d53bb0f8a7466de9.txt => d85c19e058de9af1.txt} (100%) rename allure-report/data/attachments/{c5a486abc69fc1fc.txt => d9705198a9828f90.txt} (100%) rename allure-report/data/attachments/{f5e7c985bb14104f.txt => d98685c9fe133870.txt} (100%) rename allure-report/data/attachments/{aa1c2e562160f609.txt => da2e8ce75b901e82.txt} (100%) rename allure-report/data/attachments/{a9137c6294090d64.txt => dba3075441128a41.txt} (100%) rename allure-report/data/attachments/{cd297c98bb2f9177.txt => dba645bb71d6294b.txt} (100%) rename allure-report/data/attachments/{d497d06498897878.txt => dbdc65123191fc3f.txt} (100%) rename allure-report/data/attachments/{baac53f2bcc51cfd.txt => dcbab4e3ea8be2cb.txt} (100%) rename allure-report/data/attachments/{760dfa55370d45f9.txt => dcf012b2df6b781b.txt} (100%) rename allure-report/data/attachments/{408eed1715a3503c.txt => dd95f43103333bf7.txt} (100%) rename allure-report/data/attachments/{73b1a6171e8a5d4c.txt => dea29eab15838d9c.txt} (100%) rename allure-report/data/attachments/{e4c3264e25c98281.txt => df070dcdc10f9538.txt} (100%) rename allure-report/data/attachments/{379cf75cca245ee2.txt => dfcb4cec23e82cb9.txt} (100%) rename allure-report/data/attachments/{7bf0ce4c1ec59dfa.txt => e048c0e6bb06d724.txt} (100%) rename allure-report/data/attachments/{4b1abe2714e07e88.txt => e0680ee49daf3ecd.txt} (100%) rename allure-report/data/attachments/{cc532e29d77b891e.txt => e0c62dc3071fe329.txt} (100%) rename allure-report/data/attachments/{5f030da14b8e67d2.txt => e11f321ad70e66d6.txt} (100%) rename allure-report/data/attachments/{77ebc227660f6677.txt => e225c605af3cdfe6.txt} (100%) rename allure-report/data/attachments/{47825a7b608174fa.txt => e23896a75b3be671.txt} (100%) rename allure-report/data/attachments/{41608c9ef684cb1e.txt => e245408b463a8838.txt} (100%) rename allure-report/data/attachments/{72e5eb2953c41fef.txt => e3476f63fad27664.txt} (100%) rename allure-report/data/attachments/{16068cef6801ede5.txt => e355939f9d2af970.txt} (100%) rename allure-report/data/attachments/{e7a51c8d74f448fe.txt => e3a4cf54bcea79f.txt} (100%) rename allure-report/data/attachments/{b1edf41b3f6059d4.txt => e3e8b5194a02b840.txt} (100%) rename allure-report/data/attachments/{61785349fe52fbcf.txt => e41185e6a2547eda.txt} (100%) rename allure-report/data/attachments/{47a1750ca1ae0253.txt => e51eb49b458f8b30.txt} (100%) rename allure-report/data/attachments/{1de780c85f2aabb6.txt => e5b6ae7757c6e743.txt} (100%) rename allure-report/data/attachments/{f7cb1151a0bdf19c.txt => e5c727b0b5b40d52.txt} (100%) rename allure-report/data/attachments/{a66e2ef0dd5ae597.txt => e8051d2095f3e05f.txt} (100%) rename allure-report/data/attachments/{2c51ebffe286fde1.txt => ea2c55d1a71e4c1b.txt} (100%) rename allure-report/data/attachments/{72a8521de031df4e.txt => ea8ea3523c9226e8.txt} (100%) rename allure-report/data/attachments/{9473dcf11398d47e.txt => eacae423597e783.txt} (100%) rename allure-report/data/attachments/{b010be274d24546e.txt => eb7ef9838cd7cad8.txt} (100%) rename allure-report/data/attachments/{9e367429b8224516.txt => ee3a0764d3c252bb.txt} (100%) rename allure-report/data/attachments/{d2685b3f41e9f61c.txt => ef79b655f296972f.txt} (100%) rename allure-report/data/attachments/{5947f9b7e86e5fe4.txt => efe9c31cce4f2691.txt} (100%) rename allure-report/data/attachments/{efdc700a12236023.txt => f0b58c59c3feea05.txt} (100%) rename allure-report/data/attachments/{50b40a6b644cd21e.txt => f0e8db62b4d5a04e.txt} (100%) rename allure-report/data/attachments/{eecd5302084b69b0.txt => f0f675da06acca44.txt} (100%) rename allure-report/data/attachments/{fec9fd349f1d045f.txt => f1383a1298b478d1.txt} (100%) rename allure-report/data/attachments/{9970c74c966a73af.txt => f28cf2c881206bc7.txt} (100%) rename allure-report/data/attachments/{5a774371a2badce6.txt => f3103a75268ee27b.txt} (100%) rename allure-report/data/attachments/{c9000a1177d78061.txt => f40eb1a37e76915b.txt} (100%) rename allure-report/data/attachments/{6f187ca9e0f038e3.txt => f476dbef5564bf84.txt} (100%) rename allure-report/data/attachments/{8d340a810a5e354f.txt => f4fc65b495fcb88b.txt} (100%) rename allure-report/data/attachments/{6a90a8741dd8ba1f.txt => f5908886e3245af0.txt} (100%) rename allure-report/data/attachments/{84790cd414c0264a.txt => f5d9059f956d5013.txt} (100%) rename allure-report/data/attachments/{817f3cd0d39f56b9.txt => f5f071e3b309d77.txt} (100%) rename allure-report/data/attachments/{5967a008f3d7b308.txt => f63a818ce466a5d5.txt} (100%) rename allure-report/data/attachments/{78d708b30903548d.txt => f6add51b506494b4.txt} (100%) rename allure-report/data/attachments/{58062fc7761306e3.txt => f79d82c8ac8b6bda.txt} (100%) rename allure-report/data/attachments/{2f6f124c7be3a6e5.txt => f8ebdb80be997fde.txt} (100%) rename allure-report/data/attachments/{d38be6ef6dfa6828.txt => f9702a98b358e235.txt} (100%) rename allure-report/data/attachments/{e22a14740da9552.txt => f9e0beeb8300348.txt} (100%) rename allure-report/data/attachments/{d03a9a8c81cbe39f.txt => fa01ea71c168121d.txt} (100%) rename allure-report/data/attachments/{7899fdb7c4350c2b.txt => fac7406e86e2d594.txt} (100%) rename allure-report/data/attachments/{cfdd9038af68abcd.txt => fafd1746b13ebf11.txt} (100%) rename allure-report/data/attachments/{c2e7b358c14deeef.txt => fb0df6afc6219df9.txt} (100%) rename allure-report/data/attachments/{458fa73ae78d8720.txt => fb84be60b66700fa.txt} (100%) rename allure-report/data/attachments/{c9806239f448fcb9.txt => fbdaeda311992dcb.txt} (100%) rename allure-report/data/attachments/{fceb9ab1ca4c439c.txt => fd192e99e6a5065d.txt} (100%) rename allure-report/data/attachments/{41b26a3792b70bd8.txt => fd40fcf970ebd4c6.txt} (100%) rename allure-report/data/attachments/{fb983dadd4fd2138.txt => fec7d456d7e1f9e8.txt} (100%) rename allure-report/data/attachments/{d22073d8d3352f3e.txt => ff5fc916c91c2ec1.txt} (100%) rename allure-report/data/attachments/{f91cde579304f854.txt => ffe262df372f1494.txt} (100%) create mode 100644 allure-report/data/test-cases/101b76d3a18bb4c3.json rename allure-report/data/test-cases/{a355bc32a0d73da0.json => 1039c276c50498c7.json} (80%) delete mode 100644 allure-report/data/test-cases/11195fbf11e8bfc3.json delete mode 100644 allure-report/data/test-cases/112ca50049d27c.json create mode 100644 allure-report/data/test-cases/1137568979e0ed3a.json delete mode 100644 allure-report/data/test-cases/113e69c4ee0f071.json create mode 100644 allure-report/data/test-cases/115439469142590e.json rename allure-report/data/test-cases/{13c4343c88a790e8.json => 115f495bb01a1dcf.json} (77%) rename allure-report/data/test-cases/{d35364e5c638d89f.json => 1186c71e39a023da.json} (82%) rename allure-report/data/test-cases/{61e07c6ddcc506b1.json => 1191e503f4a01ba8.json} (71%) rename allure-report/data/test-cases/{3bb063d5045f38b5.json => 119afffc6f9f5da8.json} (81%) rename allure-report/data/test-cases/{49ad6a9c0404421b.json => 11b930e98296bcb5.json} (63%) rename allure-report/data/test-cases/{2dcba5fbac259354.json => 11dd46913546ab74.json} (82%) delete mode 100644 allure-report/data/test-cases/1212df96f6b2dc34.json rename allure-report/data/test-cases/{37af89538f752875.json => 12409260b34394eb.json} (81%) rename allure-report/data/test-cases/{1f21450476aa4c9a.json => 13b14c699e0075d9.json} (75%) rename allure-report/data/test-cases/{749bcfd3f56dec1a.json => 13bf02549cf3b6be.json} (83%) rename allure-report/data/test-cases/{8817b6c726fc2884.json => 13f07332e607443a.json} (78%) rename allure-report/data/test-cases/{a83b85c2e341a76c.json => 141816067eecf7ae.json} (92%) delete mode 100644 allure-report/data/test-cases/142b0c4f3754d996.json rename allure-report/data/test-cases/{b3f6328bce0de37c.json => 14a62b5662523525.json} (60%) create mode 100644 allure-report/data/test-cases/14c26803c1139e78.json delete mode 100644 allure-report/data/test-cases/14cdd8696beec9a.json rename allure-report/data/test-cases/{20301c2d6922300e.json => 14fe289b5296dbe2.json} (83%) rename allure-report/data/test-cases/{93cbb9687a6c19d2.json => 1527893d1e9640cd.json} (72%) rename allure-report/data/test-cases/{545394bf3fbbd64b.json => 154178490b84fb33.json} (82%) create mode 100644 allure-report/data/test-cases/157d23c0aff9e075.json rename allure-report/data/test-cases/{9b0ec4eb2cd2dde7.json => 158fcdb2f6fefbbc.json} (59%) rename allure-report/data/test-cases/{97bb72caed16dfa0.json => 15b13324091bd06f.json} (81%) rename allure-report/data/test-cases/{cfac23a989211fca.json => 15fb7a87bc12b45a.json} (86%) rename allure-report/data/test-cases/{99a774ce5ee6bba3.json => 160f56b842e7aedc.json} (81%) rename allure-report/data/test-cases/{3a617c2d20fe6a0a.json => 16c1a97c5d8eacc8.json} (84%) rename allure-report/data/test-cases/{e9f92529af3ab5ff.json => 16e8835412fb12dc.json} (81%) rename allure-report/data/test-cases/{dfa8d9395e9495b6.json => 1746b1293c111d5c.json} (81%) rename allure-report/data/test-cases/{ee182a5a1f4b39dc.json => 17e1393f574a0bd2.json} (79%) rename allure-report/data/test-cases/{fc6ce7cf48700667.json => 17e173f94ae42aac.json} (89%) rename allure-report/data/test-cases/{ba3e30be8784f086.json => 17e43c85790e0335.json} (81%) rename allure-report/data/test-cases/{1ddf203d8a3c498d.json => 17e84d8dd3123806.json} (85%) rename allure-report/data/test-cases/{783d8a205b731823.json => 1809b6a5abfda186.json} (58%) rename allure-report/data/test-cases/{b9f8e7d93793c0ea.json => 18128d81fd90263f.json} (78%) delete mode 100644 allure-report/data/test-cases/183ba5aa4a18280.json rename allure-report/data/test-cases/{63b822db5bae14d4.json => 184d3db7becc05d3.json} (62%) rename allure-report/data/test-cases/{f30b225377e5683d.json => 18ce21893b263766.json} (57%) delete mode 100644 allure-report/data/test-cases/190ed93e28b901b.json create mode 100644 allure-report/data/test-cases/19443f8320b2694c.json rename allure-report/data/test-cases/{3b9e344534b3c5db.json => 196d20a77b3bd50d.json} (68%) rename allure-report/data/test-cases/{388d9dc9fa1f1c3a.json => 19ea1d35de320e7d.json} (59%) rename allure-report/data/test-cases/{1bd3919646678e3f.json => 19edf49636f3f12c.json} (58%) rename allure-report/data/test-cases/{b8f5ce56991bbe59.json => 1a7cac845fe0b74b.json} (78%) delete mode 100644 allure-report/data/test-cases/1a8f12ae9a258bd1.json rename allure-report/data/test-cases/{1d02b155522c6119.json => 1aa02f860d14689a.json} (85%) delete mode 100644 allure-report/data/test-cases/1abde016dd7f5ee7.json delete mode 100644 allure-report/data/test-cases/1b7657273f039658.json rename allure-report/data/test-cases/{4430fa612ad99844.json => 1b90e35542bb0d33.json} (80%) delete mode 100644 allure-report/data/test-cases/1b9a7ef859e6370c.json rename allure-report/data/test-cases/{4d4729a99109106e.json => 1bbca055747eb3d5.json} (67%) rename allure-report/data/test-cases/{d1233b1a931bee1a.json => 1c311c9e8beb5e15.json} (78%) create mode 100644 allure-report/data/test-cases/1c66d03c44b01cf6.json create mode 100644 allure-report/data/test-cases/1cbe6a610fbdfd6.json create mode 100644 allure-report/data/test-cases/1cc5ce778c99d98.json create mode 100644 allure-report/data/test-cases/1d0688b018eb523.json create mode 100644 allure-report/data/test-cases/1d2cfb77eef4360e.json create mode 100644 allure-report/data/test-cases/1d49801d4e6b4921.json rename allure-report/data/test-cases/{6aeb83ca0df8b3d8.json => 1d6bdee17d8fe6b6.json} (81%) create mode 100644 allure-report/data/test-cases/1df66f77b1cc31ad.json rename allure-report/data/test-cases/{1d437c172b71c55f.json => 1e414e40d5aadc94.json} (82%) rename allure-report/data/test-cases/{24b136640bd96c68.json => 1ec22d6f24411c0a.json} (79%) rename allure-report/data/test-cases/{65b2cf00b86ce444.json => 1f322fed435e4c7b.json} (80%) rename allure-report/data/test-cases/{494bc5055e76bf71.json => 1fa1afd4ab27e4cb.json} (83%) create mode 100644 allure-report/data/test-cases/1fb0e4ddfae0bf06.json rename allure-report/data/test-cases/{6444bc59e77319f9.json => 1fbf7f076eee2a48.json} (75%) create mode 100644 allure-report/data/test-cases/1fc6416a9dae71a6.json delete mode 100644 allure-report/data/test-cases/2064c7d6b1732474.json rename allure-report/data/test-cases/{122ba025ebcea5dd.json => 206559a31da63112.json} (75%) create mode 100644 allure-report/data/test-cases/20bc61b759bd6ae3.json create mode 100644 allure-report/data/test-cases/21221b4a48a21055.json rename allure-report/data/test-cases/{875881a97b3fc375.json => 212bbd08068e155a.json} (80%) rename allure-report/data/test-cases/{9e017ac7fdaf6bf5.json => 213536a8a5597e91.json} (58%) rename allure-report/data/test-cases/{22f939e586318511.json => 213fb9c2969dbcfd.json} (78%) create mode 100644 allure-report/data/test-cases/2165433d4974d104.json delete mode 100644 allure-report/data/test-cases/2180a5f5e79006a1.json create mode 100644 allure-report/data/test-cases/218b156daee27f08.json rename allure-report/data/test-cases/{1b6eab50f2f722f5.json => 21e692bd1f008ebc.json} (73%) rename allure-report/data/test-cases/{80f314b70b306bd4.json => 2200ea2b7046c13e.json} (50%) create mode 100644 allure-report/data/test-cases/22bb7ddce4971121.json create mode 100644 allure-report/data/test-cases/230fd42f20a11e18.json create mode 100644 allure-report/data/test-cases/231a2a65aa8e32a.json rename allure-report/data/test-cases/{e2ed60d0ac53c788.json => 233e934352e9feff.json} (85%) rename allure-report/data/test-cases/{7e0fbf3b4505484b.json => 237d8af0ad05999a.json} (82%) rename allure-report/data/test-cases/{e7b4bfe5c117b0b5.json => 238aa65764e1d222.json} (81%) create mode 100644 allure-report/data/test-cases/23b533c70baf95c9.json rename allure-report/data/test-cases/{591cfdbc90cf4c5e.json => 23d88d3c634a9318.json} (65%) rename allure-report/data/test-cases/{adbbb2c26291ccd5.json => 247e42713d4388e5.json} (75%) rename allure-report/data/test-cases/{583a0190aa99ad42.json => 249dabf58e93eece.json} (77%) rename allure-report/data/test-cases/{79e5a850abe86297.json => 24b90ea9d401f78e.json} (83%) create mode 100644 allure-report/data/test-cases/24f0384efd85ae74.json create mode 100644 allure-report/data/test-cases/24fce2b7549fc46.json rename allure-report/data/test-cases/{43a8b37a1715c915.json => 250def6bd45574c1.json} (62%) create mode 100644 allure-report/data/test-cases/2571a6d17171a809.json rename allure-report/data/test-cases/{4c5cc35d3de0d6f4.json => 258638d82f4f543b.json} (63%) rename allure-report/data/test-cases/{4ca3cfa2d2c9d074.json => 259fe2f0923b6d92.json} (83%) create mode 100644 allure-report/data/test-cases/25c9ba69d5ac48c6.json rename allure-report/data/test-cases/{75a0786e7098fd84.json => 25e6937e43cdeebb.json} (75%) create mode 100644 allure-report/data/test-cases/25eb791ee007f15b.json create mode 100644 allure-report/data/test-cases/26189d3cfda1b8d1.json rename allure-report/data/test-cases/{741a61f0f9cb4c37.json => 2620650c036fa5d9.json} (84%) rename allure-report/data/test-cases/{510e078ddda4bd3c.json => 2687b62465687fa1.json} (86%) rename allure-report/data/test-cases/{a75aa53086c60820.json => 274cead41a0d037b.json} (78%) rename allure-report/data/test-cases/{f25197354d7a779d.json => 2752c76835c96fe1.json} (73%) rename allure-report/data/test-cases/{3d09efb523dadc81.json => 27ff7d9c249750c3.json} (77%) delete mode 100644 allure-report/data/test-cases/280752ec061c1457.json rename allure-report/data/test-cases/{c264906d7bf954d5.json => 28b8fa13ba65f773.json} (94%) create mode 100644 allure-report/data/test-cases/28baf5593cc14310.json create mode 100644 allure-report/data/test-cases/293f48722d8450df.json rename allure-report/data/test-cases/{641fd537e33a59ae.json => 295480517e9988a7.json} (82%) rename allure-report/data/test-cases/{632eacb89b6e193e.json => 297d8e250a3e646f.json} (80%) rename allure-report/data/test-cases/{5703befafee18856.json => 2989a8630844f025.json} (81%) rename allure-report/data/test-cases/{a12dc2585f9de41f.json => 299c2d5af116c0c6.json} (83%) rename allure-report/data/test-cases/{a3ca7d068d3e7d87.json => 29dbd6c095321046.json} (78%) rename allure-report/data/test-cases/{f26dca06c76121c7.json => 29ff0a22a55da068.json} (58%) create mode 100644 allure-report/data/test-cases/2a3aa78afffa487b.json create mode 100644 allure-report/data/test-cases/2a6bb93adc2b9500.json rename allure-report/data/test-cases/{cefd3a9afeec351e.json => 2a72b580d7da86a8.json} (75%) create mode 100644 allure-report/data/test-cases/2a82791553e70088.json rename allure-report/data/test-cases/{21dca02637c8027f.json => 2ae21ed716f07041.json} (87%) rename allure-report/data/test-cases/{f585eec372fcc899.json => 2b0cda84a7f3dae6.json} (81%) rename allure-report/data/test-cases/{895071e6126c1fbc.json => 2b0e5265fce841a7.json} (73%) create mode 100644 allure-report/data/test-cases/2c379ae83853bb2a.json delete mode 100644 allure-report/data/test-cases/2c38900f28571c1.json rename allure-report/data/test-cases/{9054a710a823b80a.json => 2c5d8621f6ad138a.json} (85%) rename allure-report/data/test-cases/{117e19024dff1cfd.json => 2c9576ef35dcd75d.json} (75%) create mode 100644 allure-report/data/test-cases/2cc31ac5154e0ba1.json rename allure-report/data/test-cases/{71a05925458c8736.json => 2cf064760bcef1c9.json} (75%) create mode 100644 allure-report/data/test-cases/2d7cf0b0c2f46c3.json rename allure-report/data/test-cases/{a329da92784fccae.json => 2dbb23fbcd106704.json} (82%) create mode 100644 allure-report/data/test-cases/2de9285990285353.json rename allure-report/data/test-cases/{9665a188a4944ac6.json => 2e552441092e62c5.json} (83%) rename allure-report/data/test-cases/{e63c100babc1267d.json => 2e82de27bb7feb41.json} (85%) rename allure-report/data/test-cases/{58bbccd3c8af3c06.json => 2ea180ad6a851a6d.json} (60%) rename allure-report/data/test-cases/{563a12b2ae66d10b.json => 2f5a6152612f841f.json} (81%) rename allure-report/data/test-cases/{caf985b2a75ee6b7.json => 2f7fe1d474868abf.json} (80%) create mode 100644 allure-report/data/test-cases/2fa689144ccb2725.json create mode 100644 allure-report/data/test-cases/2febaffd225102f.json rename allure-report/data/test-cases/{ce75fbdf4ccd46b8.json => 2ff548416f63af86.json} (79%) delete mode 100644 allure-report/data/test-cases/300c045916564a1.json rename allure-report/data/test-cases/{3ff87d981594c6f7.json => 305e207ab9e52150.json} (62%) create mode 100644 allure-report/data/test-cases/30779503c72bcec6.json rename allure-report/data/test-cases/{522a0d282fded9dd.json => 30782fdca988a45e.json} (73%) rename allure-report/data/test-cases/{f1908dde48e8dbb5.json => 30a51896f75b6d0e.json} (78%) delete mode 100644 allure-report/data/test-cases/30ebc2ebd440c488.json create mode 100644 allure-report/data/test-cases/315e825b7f114d5b.json create mode 100644 allure-report/data/test-cases/31667aebf4f2d5e.json rename allure-report/data/test-cases/{c87eac92a1b3b456.json => 31754715fc04b029.json} (59%) create mode 100644 allure-report/data/test-cases/31ce0fdb81c2daf6.json rename allure-report/data/test-cases/{1b57aafe4439b9a8.json => 31e5836e8c9c8975.json} (56%) rename allure-report/data/test-cases/{9ef5212b94420bba.json => 31fa8902feb5ac83.json} (75%) rename allure-report/data/test-cases/{99e68c3ce0169a01.json => 327e71002be993d7.json} (86%) rename allure-report/data/test-cases/{bb0cb59f0e1a4eca.json => 32c8f819a3205d1d.json} (69%) create mode 100644 allure-report/data/test-cases/32eaf956310a89b7.json create mode 100644 allure-report/data/test-cases/33444d7890f0540.json rename allure-report/data/test-cases/{ec528f5ba60e276b.json => 3352f60feb1f9712.json} (86%) rename allure-report/data/test-cases/{142f5165c8452d36.json => 335bbd097bcd7f07.json} (62%) rename allure-report/data/test-cases/{6b42b881fa048473.json => 3371b53ac373c146.json} (77%) rename allure-report/data/test-cases/{b7dd8f8438e567a9.json => 3376cc456abfb7e3.json} (63%) create mode 100644 allure-report/data/test-cases/33789c02e7e07041.json rename allure-report/data/test-cases/{732b9dd805d734b8.json => 338755bddf5c3394.json} (56%) rename allure-report/data/test-cases/{d5d01c4fe30779a0.json => 33cbde6b5c940b7b.json} (77%) create mode 100644 allure-report/data/test-cases/33cec918ed89f21.json rename allure-report/data/test-cases/{d0931e78c129f8d8.json => 33fde501ad5f49b7.json} (67%) delete mode 100644 allure-report/data/test-cases/34ca51906297ee6f.json rename allure-report/data/test-cases/{d4941a73e9c93a57.json => 353219a042e3862c.json} (76%) rename allure-report/data/test-cases/{1251fa1056fea3d4.json => 35a3e561b98b1660.json} (69%) rename allure-report/data/test-cases/{5364b62b05552f1e.json => 35bd830710547eb9.json} (94%) rename allure-report/data/test-cases/{28a9bedc22c54787.json => 35dae73baea1e718.json} (60%) delete mode 100644 allure-report/data/test-cases/35f4051adfa3517.json rename allure-report/data/test-cases/{4249127f6bff6f10.json => 36190d8eb76d5fc1.json} (72%) rename allure-report/data/test-cases/{ac35e86bb753fb8c.json => 362d2abd0db10461.json} (80%) rename allure-report/data/test-cases/{b0a6327af7d064cf.json => 36cf4add9af1788b.json} (83%) rename allure-report/data/test-cases/{994a4ad6b5f0c1e0.json => 3765df1aaa05656f.json} (80%) rename allure-report/data/test-cases/{ffc8d600f4ca1daf.json => 378737d914acf19c.json} (61%) create mode 100644 allure-report/data/test-cases/37fbb0401b01604d.json delete mode 100644 allure-report/data/test-cases/383972b39eec664a.json rename allure-report/data/test-cases/{25a19c539143ffc2.json => 38465b9126105022.json} (93%) rename allure-report/data/test-cases/{3c7a781e3674db5e.json => 3855d942abd2cdd4.json} (59%) rename allure-report/data/test-cases/{f3b1ea272cafb8c8.json => 387fcb0eb682916d.json} (81%) create mode 100644 allure-report/data/test-cases/3889b494a7c822e.json rename allure-report/data/test-cases/{e1af2c095108694d.json => 38a864ebd2e42623.json} (63%) delete mode 100644 allure-report/data/test-cases/38d84fb9239b5f2e.json rename allure-report/data/test-cases/{f253bf40e74f545d.json => 394fa56a4056d8b5.json} (81%) rename allure-report/data/test-cases/{44516baeffa03c9d.json => 39b35ac8d306cbda.json} (84%) rename allure-report/data/test-cases/{bcdd15975118f527.json => 39d768f6fda8fdf2.json} (85%) rename allure-report/data/test-cases/{b540357a03b90416.json => 39dc8cd28592a068.json} (78%) rename allure-report/data/test-cases/{3c99f2489842209e.json => 39eb5e3cc2f12413.json} (77%) create mode 100644 allure-report/data/test-cases/3a516b9dc7b53625.json rename allure-report/data/test-cases/{37c27a38809b08b4.json => 3a88934bc640802f.json} (65%) rename allure-report/data/test-cases/{f6c63ae7fdc54916.json => 3af8d9a34aaedf9e.json} (61%) rename allure-report/data/test-cases/{fe13696efb68455a.json => 3b9843a7de0fadce.json} (77%) rename allure-report/data/test-cases/{d34aca89a8362e7c.json => 3bcfd32a26f68acf.json} (93%) rename allure-report/data/test-cases/{f1c13dcc2ec25637.json => 3bdd18878d95b69a.json} (71%) rename allure-report/data/test-cases/{ac390c8ac17d8363.json => 3bf609775738b0d6.json} (91%) delete mode 100644 allure-report/data/test-cases/3c275e4650ef1fcb.json rename allure-report/data/test-cases/{2f46a2e41d4cb55.json => 3cf56b09b04e1e0.json} (81%) rename allure-report/data/test-cases/{7f05453c14dc1c4a.json => 3d317930834fc5a0.json} (75%) create mode 100644 allure-report/data/test-cases/3d6d6f8c83d1b77.json create mode 100644 allure-report/data/test-cases/3d9d773987a3ac09.json rename allure-report/data/test-cases/{6aa550180790876d.json => 3e0c67e156a2779f.json} (81%) rename allure-report/data/test-cases/{a3cba1eb012d0834.json => 3e3617735ee8a318.json} (61%) delete mode 100644 allure-report/data/test-cases/3e564e38813f1539.json rename allure-report/data/test-cases/{e687a692c2c18f1b.json => 3e7bb737d50c6ad2.json} (60%) rename allure-report/data/test-cases/{482801cdd802c850.json => 3e8030135d08e5ec.json} (78%) rename allure-report/data/test-cases/{cce644bc4fb0b16f.json => 3ed2084bc0b6f03d.json} (87%) rename allure-report/data/test-cases/{f293d4274aefdd43.json => 3f1d46f60fdb6ff1.json} (80%) create mode 100644 allure-report/data/test-cases/3f2e19b818fd15f5.json create mode 100644 allure-report/data/test-cases/3f3a4afa0166112e.json rename allure-report/data/test-cases/{23e7f7a9e25073fa.json => 3f9c404f9b9586bb.json} (82%) create mode 100644 allure-report/data/test-cases/3fc024845e1d1c6.json create mode 100644 allure-report/data/test-cases/3fd5a8d15bcf78fb.json delete mode 100644 allure-report/data/test-cases/3fe8a02ede1e6532.json create mode 100644 allure-report/data/test-cases/3ff093181cede851.json rename allure-report/data/test-cases/{6e4923e8771eebeb.json => 40205ec1b133a2fd.json} (82%) rename allure-report/data/test-cases/{3b453b26a6476828.json => 4026348dc538d851.json} (82%) rename allure-report/data/test-cases/{335c39c3e0f7aa15.json => 405571045d735c93.json} (83%) create mode 100644 allure-report/data/test-cases/40605a6b825041b.json rename allure-report/data/test-cases/{e71092ad871851c8.json => 4062058c45eaf899.json} (81%) create mode 100644 allure-report/data/test-cases/4092d3473f63825.json create mode 100644 allure-report/data/test-cases/4098e50c368546e.json create mode 100644 allure-report/data/test-cases/40b9b78f2d258cf9.json create mode 100644 allure-report/data/test-cases/40fa5a64adc09d6a.json rename allure-report/data/test-cases/{80a5eacfa2431348.json => 418db164c4b04ca4.json} (65%) rename allure-report/data/test-cases/{eb1b904b9e574ded.json => 41a0b3fc08086e96.json} (81%) create mode 100644 allure-report/data/test-cases/4223e436b2847599.json delete mode 100644 allure-report/data/test-cases/42452319aaa200ae.json rename allure-report/data/test-cases/{31802a90aeba5e97.json => 427e4e0e38cec3a1.json} (50%) delete mode 100644 allure-report/data/test-cases/42bd5b348187136c.json rename allure-report/data/test-cases/{fea5f749a1c464e4.json => 42eeca3ee9327f4d.json} (63%) rename allure-report/data/test-cases/{cc4dd11ea285cd92.json => 432b6e8e59506414.json} (56%) create mode 100644 allure-report/data/test-cases/43578fd4f74ce5d9.json create mode 100644 allure-report/data/test-cases/4391e2c86d08e20.json rename allure-report/data/test-cases/{880859ea02196db7.json => 4397ca89d4873d0b.json} (93%) create mode 100644 allure-report/data/test-cases/43a52f18fb3b8136.json create mode 100644 allure-report/data/test-cases/43ae83fa91833c8.json rename allure-report/data/test-cases/{200c9d07d930b3b1.json => 43e580c8ccbc2ae0.json} (80%) create mode 100644 allure-report/data/test-cases/44141b5da145c70a.json rename allure-report/data/test-cases/{6dfafb882d7cc41f.json => 44221036fb99a571.json} (59%) rename allure-report/data/test-cases/{756610bb1a8856d4.json => 442731f3c269dae1.json} (76%) rename allure-report/data/test-cases/{b02a54a0a8bd8284.json => 44275f12522bda28.json} (59%) rename allure-report/data/test-cases/{fd4ef8d041ff123e.json => 44684f939061cdde.json} (80%) rename allure-report/data/test-cases/{bded3837031681ca.json => 44dd7ed6ddd58149.json} (80%) delete mode 100644 allure-report/data/test-cases/44e584571b03be2.json delete mode 100644 allure-report/data/test-cases/450fbb27e2067be4.json rename allure-report/data/test-cases/{32a39f3c0fa23567.json => 453e6c562bbae4f7.json} (50%) create mode 100644 allure-report/data/test-cases/456a7345e9aeb905.json rename allure-report/data/test-cases/{60f7c96f923539a5.json => 458495e9a11139a4.json} (62%) rename allure-report/data/test-cases/{bf68fdf036dd98c9.json => 45a592633cd8d633.json} (81%) delete mode 100644 allure-report/data/test-cases/45bc1447720343e5.json create mode 100644 allure-report/data/test-cases/46352cf5111d5c61.json create mode 100644 allure-report/data/test-cases/469fb46dbe1a31d.json rename allure-report/data/test-cases/{a30a3ac9558d7a9c.json => 46c119be5111a687.json} (65%) rename allure-report/data/test-cases/{52402d5056a00e1d.json => 46d58d763aebfedc.json} (61%) delete mode 100644 allure-report/data/test-cases/4719969d944ed48a.json delete mode 100644 allure-report/data/test-cases/472edec34fd4cc19.json rename allure-report/data/test-cases/{47cf0745ec1b0964.json => 4736a066b330a3e5.json} (73%) create mode 100644 allure-report/data/test-cases/474912065ebca71.json rename allure-report/data/test-cases/{7f4f6ae800da8214.json => 476ac59c15a93d4b.json} (80%) rename allure-report/data/test-cases/{ed44c13e0e5a3954.json => 478b2bb987aa8c1c.json} (85%) create mode 100644 allure-report/data/test-cases/47e3461a4e252fc1.json create mode 100644 allure-report/data/test-cases/47eeb9c764763918.json rename allure-report/data/test-cases/{93b00a3d2e7b92c1.json => 4803d92c50fef81a.json} (60%) create mode 100644 allure-report/data/test-cases/482cc1b462231f44.json rename allure-report/data/test-cases/{bd28741372a5f921.json => 4875af937b850b1f.json} (82%) rename allure-report/data/test-cases/{80ba443311cb72ff.json => 48a3545f29b9b695.json} (75%) rename allure-report/data/test-cases/{817c95f8ac92a91e.json => 48e1ee32ef518911.json} (76%) create mode 100644 allure-report/data/test-cases/48f19bb58dd1432f.json rename allure-report/data/test-cases/{a07fccce3e37ee4a.json => 48f4ecefce5c7b7e.json} (82%) create mode 100644 allure-report/data/test-cases/49244d740987433.json rename allure-report/data/test-cases/{9d2b852ea94aa88a.json => 4928db7c01341cec.json} (78%) rename allure-report/data/test-cases/{3de5bbe9e7cab5b6.json => 49330a85ee41c454.json} (67%) rename allure-report/data/test-cases/{68e1fa91eff84fb2.json => 4968a6d06aaa9f9c.json} (78%) create mode 100644 allure-report/data/test-cases/4990a9f9fb7d9809.json rename allure-report/data/test-cases/{d39d2cfc8c05650c.json => 49d94e51d64718a4.json} (84%) rename allure-report/data/test-cases/{f71bd4516df37f52.json => 49fa9055aa757d7b.json} (87%) rename allure-report/data/test-cases/{c948f5411c74f4a1.json => 4a25f98e06778e12.json} (87%) rename allure-report/data/test-cases/{15315242cf60389c.json => 4a34b1c679ee3fc0.json} (73%) create mode 100644 allure-report/data/test-cases/4a970025f2147b3a.json delete mode 100644 allure-report/data/test-cases/4ab2fd070154adeb.json rename allure-report/data/test-cases/{51021ef4547a41f8.json => 4ac6613711439ff9.json} (85%) rename allure-report/data/test-cases/{4b22647a9cdd2bef.json => 4ade5d7baabdb848.json} (83%) rename allure-report/data/test-cases/{f1c17d8d31f590b0.json => 4aeb02bd06c6709d.json} (81%) delete mode 100644 allure-report/data/test-cases/4b2984e4fa36f94.json rename allure-report/data/test-cases/{d50213dc9ab240ff.json => 4b38126bac5fa484.json} (73%) create mode 100644 allure-report/data/test-cases/4b75654893666492.json rename allure-report/data/test-cases/{53eb34bc4e02fa07.json => 4b7f4ecd4f7fef24.json} (64%) create mode 100644 allure-report/data/test-cases/4b82056eac592aba.json rename allure-report/data/test-cases/{8edcba07a1a3ea56.json => 4ba6a0676ce201a1.json} (81%) rename allure-report/data/test-cases/{a2f70229e4c52322.json => 4bc08c1baeba1126.json} (75%) delete mode 100644 allure-report/data/test-cases/4c31a5ec99c6ca69.json rename allure-report/data/test-cases/{64001087ec7aaf2b.json => 4c4230f8e0e384cc.json} (83%) rename allure-report/data/test-cases/{fefeabf3e26a53bd.json => 4c8c8098a5ba0587.json} (79%) create mode 100644 allure-report/data/test-cases/4cc7d24b84024142.json rename allure-report/data/test-cases/{f6b3bc73a428b4db.json => 4d0543e962e43a97.json} (80%) create mode 100644 allure-report/data/test-cases/4d07449717f6193c.json rename allure-report/data/test-cases/{65f6b4f1195a0e9d.json => 4d2239036502cf20.json} (78%) create mode 100644 allure-report/data/test-cases/4d53eb58d77047e8.json delete mode 100644 allure-report/data/test-cases/4d57a8ddade5816.json create mode 100644 allure-report/data/test-cases/4d64a30c387b7743.json rename allure-report/data/test-cases/{965bac5a2c55f031.json => 4d86cc91fd1923ec.json} (60%) rename allure-report/data/test-cases/{95e685797940e119.json => 4db417c919f14dad.json} (84%) create mode 100644 allure-report/data/test-cases/4df2e31ca734bf47.json rename allure-report/data/test-cases/{90c1df398d2f201a.json => 4e0b9180415d7384.json} (75%) create mode 100644 allure-report/data/test-cases/4e3f7ea473e691d3.json create mode 100644 allure-report/data/test-cases/4e3fc5966ad47411.json create mode 100644 allure-report/data/test-cases/4e87d924fe50548.json rename allure-report/data/test-cases/{a22d4b8f003df599.json => 4ed891af5fcb8959.json} (82%) rename allure-report/data/test-cases/{c12e168b06d36fc7.json => 4eec4d08404980cd.json} (74%) rename allure-report/data/test-cases/{48e03b38164b77c2.json => 4f327dad8c4d7133.json} (65%) rename allure-report/data/test-cases/{4438dce845a8b680.json => 4f80880da2e426c8.json} (58%) delete mode 100644 allure-report/data/test-cases/500f182a6eedd000.json rename allure-report/data/test-cases/{ea733e6b4760e89e.json => 5016998388e149a3.json} (52%) rename allure-report/data/test-cases/{641b1ee7248b1557.json => 5052ffebbe9e5222.json} (71%) rename allure-report/data/test-cases/{c3e9cf6e477b7f80.json => 50577b0cb2a4b7be.json} (61%) create mode 100644 allure-report/data/test-cases/506e0ee504d23a05.json rename allure-report/data/test-cases/{f207a08521ff3dd3.json => 50aed2563bca9cb0.json} (73%) rename allure-report/data/test-cases/{941c0037b0b98fcf.json => 50d6552ddbe0d86a.json} (82%) rename allure-report/data/test-cases/{d8bbfaabd5a5300d.json => 51076f5a3e3475ad.json} (91%) rename allure-report/data/test-cases/{3719e4e464aa700e.json => 51801b1697e4932d.json} (75%) rename allure-report/data/test-cases/{395a8f7cfcd6a2c9.json => 51842db2fafc0136.json} (83%) rename allure-report/data/test-cases/{1bf4128bcf35143f.json => 520c156ef3917d19.json} (58%) rename allure-report/data/test-cases/{ff24b513a2221397.json => 522017a410240b47.json} (75%) rename allure-report/data/test-cases/{4b28b33a131eefd9.json => 522dabffb376b9c8.json} (74%) create mode 100644 allure-report/data/test-cases/5238b22fc20ccda9.json create mode 100644 allure-report/data/test-cases/523993bf26b2b2d.json rename allure-report/data/test-cases/{a456e8af4c590649.json => 5283421c34c2facb.json} (82%) rename allure-report/data/test-cases/{1be5b98a41807de8.json => 529f7f81e90deb17.json} (79%) rename allure-report/data/test-cases/{1d756394430052ee.json => 52a5dee2c595fefe.json} (83%) rename allure-report/data/test-cases/{711b3df283530a5b.json => 52c8b26b912e9951.json} (75%) rename allure-report/data/test-cases/{1e6c7d1c4189d9dd.json => 52e4a6d580ce5f36.json} (80%) create mode 100644 allure-report/data/test-cases/52e55a2445119fdd.json create mode 100644 allure-report/data/test-cases/52f852c4238fea22.json rename allure-report/data/test-cases/{9fea94ac2fbcf5b2.json => 530cf97bef900b31.json} (81%) rename allure-report/data/test-cases/{4617147ad7612076.json => 5319ce0d16f13f7e.json} (80%) delete mode 100644 allure-report/data/test-cases/532d8f53f92733e9.json create mode 100644 allure-report/data/test-cases/5364303890f7a5a1.json rename allure-report/data/test-cases/{67e470215248af57.json => 53900b5a556367f8.json} (80%) rename allure-report/data/test-cases/{e5d70f307aec9205.json => 539e48e315449d8e.json} (79%) delete mode 100644 allure-report/data/test-cases/53fa8d477eb42fd3.json rename allure-report/data/test-cases/{a35155a27bb8937d.json => 5421992f655c2a5d.json} (93%) rename allure-report/data/test-cases/{8ed1a17310170d88.json => 5444c88fc365358c.json} (59%) delete mode 100644 allure-report/data/test-cases/5471ece0090e3d4.json rename allure-report/data/test-cases/{e480fe95093fd8e7.json => 547e143b73834674.json} (83%) rename allure-report/data/test-cases/{e695b3f4b0bdd51b.json => 5488ed1b45d5018a.json} (71%) rename allure-report/data/test-cases/{a8ee14a37e5c3cb6.json => 5493a4d389a4b9e6.json} (78%) create mode 100644 allure-report/data/test-cases/5496efe2fd3e353.json rename allure-report/data/test-cases/{2488d38c1be516d6.json => 54d8fcc9aa407768.json} (93%) delete mode 100644 allure-report/data/test-cases/54fbe05c675f404a.json create mode 100644 allure-report/data/test-cases/5503b0de9149b0f0.json create mode 100644 allure-report/data/test-cases/555817f2fd5ba68f.json rename allure-report/data/test-cases/{162a4f2fa010c721.json => 5567075f87625777.json} (58%) rename allure-report/data/test-cases/{b3ade822e686b250.json => 55719c1a41a634a4.json} (84%) rename allure-report/data/test-cases/{6e173d8e5ff615be.json => 559abc951e1b2adf.json} (80%) rename allure-report/data/test-cases/{63ea9545d8dcd43f.json => 55bf5f341a824ad0.json} (56%) create mode 100644 allure-report/data/test-cases/5647d5db4078d707.json create mode 100644 allure-report/data/test-cases/564bcc936cf15d1a.json rename allure-report/data/test-cases/{5e4416fd32f6992f.json => 56a70ac6c19b5c2a.json} (67%) rename allure-report/data/test-cases/{4d8c29fe45d13f2d.json => 56d0c429ca5615e0.json} (67%) rename allure-report/data/test-cases/{af99dc37dcb7799b.json => 56d273815a84483f.json} (81%) rename allure-report/data/test-cases/{8bf0e4ddc17f51c8.json => 57c8e0dc2c8662c2.json} (81%) rename allure-report/data/test-cases/{85613c3b6c6421c4.json => 57eb8463acc316b7.json} (77%) rename allure-report/data/test-cases/{5ff3f93ff1ffe8b3.json => 57fc1349073137a7.json} (61%) create mode 100644 allure-report/data/test-cases/5814d63d4b392228.json create mode 100644 allure-report/data/test-cases/5880c730022f01ee.json rename allure-report/data/test-cases/{c8de14a6ed49ac6d.json => 592d9cd2b7f473ab.json} (80%) delete mode 100644 allure-report/data/test-cases/5956e80e98375be.json rename allure-report/data/test-cases/{c20970878e009fc6.json => 59b3d14f4d280871.json} (50%) create mode 100644 allure-report/data/test-cases/59cf1cc1a5cff79.json rename allure-report/data/test-cases/{f6dea82ce819c148.json => 59d6a997f5b4aca5.json} (77%) rename allure-report/data/test-cases/{2c7af88777002151.json => 5a12cd507dfc239d.json} (80%) rename allure-report/data/test-cases/{6c94325f55b8b56c.json => 5a1dd57eb64fa0aa.json} (80%) create mode 100644 allure-report/data/test-cases/5a5d0954bb249b69.json rename allure-report/data/test-cases/{1b95adcea61e4ef5.json => 5a6f2f90ae14c26f.json} (81%) delete mode 100644 allure-report/data/test-cases/5a88d917682070e.json rename allure-report/data/test-cases/{7312d30334dcfc0d.json => 5aa15cdd34cdd72f.json} (83%) rename allure-report/data/test-cases/{330a0128cd73780c.json => 5ac2db6b2e80def2.json} (79%) create mode 100644 allure-report/data/test-cases/5ac65e8dc17d86a.json create mode 100644 allure-report/data/test-cases/5af3592e93b232bc.json rename allure-report/data/test-cases/{5815fdb3e38780e6.json => 5b0d83830c13fe88.json} (82%) create mode 100644 allure-report/data/test-cases/5b36ed636679609b.json create mode 100644 allure-report/data/test-cases/5b5df6c66b23ba75.json rename allure-report/data/test-cases/{34931ad2bd045d0c.json => 5b87063c55d646fa.json} (76%) rename allure-report/data/test-cases/{ebad1371009d2223.json => 5ba553d4084ace90.json} (57%) rename allure-report/data/test-cases/{9f41894781b470ee.json => 5ba85cabbe7e4e64.json} (79%) rename allure-report/data/test-cases/{a4637a157e542cb8.json => 5bbc7cd8e2683c41.json} (71%) create mode 100644 allure-report/data/test-cases/5bee7e36f6e76857.json delete mode 100644 allure-report/data/test-cases/5c0380ec075dfe06.json create mode 100644 allure-report/data/test-cases/5c460b7e756cd57.json create mode 100644 allure-report/data/test-cases/5c8cbacba511411.json rename allure-report/data/test-cases/{c10fb0178a326f0a.json => 5c8e94c26f7e775d.json} (79%) create mode 100644 allure-report/data/test-cases/5cb1c27a6629db87.json rename allure-report/data/test-cases/{1f1df83d6cc10b66.json => 5cbc168dcad54c45.json} (68%) delete mode 100644 allure-report/data/test-cases/5cbf19148d05755c.json rename allure-report/data/test-cases/{c1447fd680942c58.json => 5cc568bcbc2453dc.json} (85%) rename allure-report/data/test-cases/{7f0995b9351caed2.json => 5cda4840465073d5.json} (73%) rename allure-report/data/test-cases/{46eea1e10beb3240.json => 5d6b33acb65bb93f.json} (61%) rename allure-report/data/test-cases/{4f2bbc07480f42a4.json => 5da43d3a303ec46a.json} (78%) create mode 100644 allure-report/data/test-cases/5ddbb977ec343693.json rename allure-report/data/test-cases/{ed242b4479970e98.json => 5e446730ae629c6c.json} (81%) rename allure-report/data/test-cases/{dc076040e5481dc9.json => 5e72598a5c064723.json} (65%) rename allure-report/data/test-cases/{f507fecee61d3d94.json => 5ef563c60f1007ea.json} (85%) rename allure-report/data/test-cases/{4a6083b6c2f5cc4b.json => 5f01b1bb86ec5e4a.json} (55%) rename allure-report/data/test-cases/{86173a2048ae1d24.json => 5f37f1e35250223f.json} (81%) rename allure-report/data/test-cases/{d1bc6da1a117f865.json => 5f3a50fbe3f45101.json} (60%) rename allure-report/data/test-cases/{46ad98eaed470ea7.json => 5f7165cd602afcbf.json} (78%) create mode 100644 allure-report/data/test-cases/5fb0fdc1cb454fb.json create mode 100644 allure-report/data/test-cases/5ff9cf70b259ca21.json rename allure-report/data/test-cases/{50b7ff1fe714521a.json => 5ffc12c38a719895.json} (84%) rename allure-report/data/test-cases/{6650fdbb71631571.json => 600ff9f84893303e.json} (82%) rename allure-report/data/test-cases/{80d57c86b12a37c4.json => 6044467509892ff0.json} (79%) rename allure-report/data/test-cases/{ee3233c4ab89c7ec.json => 6066d349be23d299.json} (93%) rename allure-report/data/test-cases/{cbe27b4f7111917c.json => 6081ff969f9ea72a.json} (81%) rename allure-report/data/test-cases/{f631ad3e8bb02244.json => 60f76b164a916b4e.json} (84%) rename allure-report/data/test-cases/{479b452abb7b813c.json => 610996d8ca2c99cc.json} (86%) rename allure-report/data/test-cases/{d9e0974c92057e94.json => 611d558a953db4dc.json} (87%) create mode 100644 allure-report/data/test-cases/61355273b18aad8.json rename allure-report/data/test-cases/{61f84f81177cf38b.json => 61b2bb726cd1f52e.json} (92%) rename allure-report/data/test-cases/{e776a97a9aadedfc.json => 61c11f4086f447bf.json} (85%) rename allure-report/data/test-cases/{e53952640c2c9e47.json => 61f607b52c867fb3.json} (67%) rename allure-report/data/test-cases/{14c8b0cd48caa4d6.json => 621a25121601fe95.json} (80%) rename allure-report/data/test-cases/{8672ab2817945b36.json => 62263e93a5cfddb4.json} (63%) rename allure-report/data/test-cases/{1e4e59f90ff35603.json => 622aea036e4cf24e.json} (85%) rename allure-report/data/test-cases/{2c53cc9448de91f2.json => 623e1f94af0b0a8a.json} (50%) rename allure-report/data/test-cases/{67a0bf67db9047ee.json => 627ac903c8bfc90f.json} (69%) delete mode 100644 allure-report/data/test-cases/62a6bbd8d87be20e.json rename allure-report/data/test-cases/{b7107b1da849121a.json => 62dca90ee3fbe009.json} (74%) rename allure-report/data/test-cases/{821065d4dc841edb.json => 630542b4d1ae1e45.json} (75%) rename allure-report/data/test-cases/{3846d19bb4975491.json => 630aba545cc07b30.json} (79%) rename allure-report/data/test-cases/{9164bf2c06bf8752.json => 6327808bac6df1db.json} (53%) rename allure-report/data/test-cases/{7b584cbfaa9e2f14.json => 634a6fc50b2ba707.json} (72%) rename allure-report/data/test-cases/{7fb0d954404a7411.json => 635a66b4aaab6101.json} (80%) rename allure-report/data/test-cases/{25b0f3d782a2ed03.json => 63600542edbb694a.json} (80%) create mode 100644 allure-report/data/test-cases/63b9cb3528bcd1e8.json rename allure-report/data/test-cases/{da222867360b442e.json => 640e02afdf541b21.json} (84%) rename allure-report/data/test-cases/{b36ca0513e4048a8.json => 6410dd1650b4faab.json} (60%) create mode 100644 allure-report/data/test-cases/644c808df55456e9.json rename allure-report/data/test-cases/{a9ecee1b4fc0ab11.json => 64e42fae205d69e4.json} (56%) rename allure-report/data/test-cases/{a0332cc6a682faac.json => 65318d64270bf167.json} (87%) create mode 100644 allure-report/data/test-cases/653d6409b929d554.json rename allure-report/data/test-cases/{64ddebaa5d6679fc.json => 65519c1899e60621.json} (70%) rename allure-report/data/test-cases/{9aaaa009f2bba8b1.json => 656d201041ba5817.json} (75%) rename allure-report/data/test-cases/{6902a5b0a224435c.json => 65ae520512a0a5fc.json} (80%) rename allure-report/data/test-cases/{fa5cd4b7c764fede.json => 65c57bdf9fea8094.json} (77%) rename allure-report/data/test-cases/{3f678007c09ea2b5.json => 65cae0d4eb0f95b8.json} (77%) rename allure-report/data/test-cases/{83b34d0610fd83c6.json => 6612fa568c338bff.json} (85%) create mode 100644 allure-report/data/test-cases/66b2d8dadf3898.json rename allure-report/data/test-cases/{22d82bbeb537c71a.json => 66dedca947415b6c.json} (85%) rename allure-report/data/test-cases/{b5cedd1e00782e11.json => 6722ace1ab285b1e.json} (82%) create mode 100644 allure-report/data/test-cases/67535419d885cbd9.json rename allure-report/data/test-cases/{3460c7a02debe899.json => 67590949db6da2ee.json} (78%) rename allure-report/data/test-cases/{1bcebf4fb624aad6.json => 67660b7a0592cf4d.json} (82%) delete mode 100644 allure-report/data/test-cases/67c96b92db3f1ee1.json rename allure-report/data/test-cases/{d86332e2eabe60c3.json => 67ecde96f288a7b2.json} (81%) delete mode 100644 allure-report/data/test-cases/681eea057133a7e0.json rename allure-report/data/test-cases/{ba71f124345447fc.json => 6826d14915228b29.json} (64%) rename allure-report/data/test-cases/{ed9cfa6ba87dba0e.json => 68fbe283acac1b6a.json} (64%) create mode 100644 allure-report/data/test-cases/690df5b9e2e97d3.json rename allure-report/data/test-cases/{1216cba41972f97c.json => 691c776616074a7a.json} (74%) rename allure-report/data/test-cases/{324d19209fbeb70d.json => 694927049ad61cd3.json} (62%) rename allure-report/data/test-cases/{980af150a499b4e9.json => 694d122063aa9b02.json} (68%) rename allure-report/data/test-cases/{56e6898f814c9a2c.json => 6959c64cdad7a79a.json} (83%) rename allure-report/data/test-cases/{d731ec2306766d91.json => 69bff1baf8829aa6.json} (63%) rename allure-report/data/test-cases/{bc6803e227b56151.json => 69c302e5122b751d.json} (80%) create mode 100644 allure-report/data/test-cases/69d8ca152b73c452.json create mode 100644 allure-report/data/test-cases/69f67038b11a4861.json rename allure-report/data/test-cases/{d86eb3695c9130c6.json => 6a0a7c65d5636a5c.json} (80%) create mode 100644 allure-report/data/test-cases/6a0ae436d7d72bb.json delete mode 100644 allure-report/data/test-cases/6a8f943df9cf325c.json rename allure-report/data/test-cases/{a672dac8835c46c1.json => 6b11699e388f2732.json} (73%) create mode 100644 allure-report/data/test-cases/6b2ccbd851ec600.json rename allure-report/data/test-cases/{f7ae1e1fc4481de3.json => 6b82f1725d1453b9.json} (81%) create mode 100644 allure-report/data/test-cases/6bcea3846719ead.json create mode 100644 allure-report/data/test-cases/6c1e65f294db5f89.json create mode 100644 allure-report/data/test-cases/6c8559b634a76bd8.json rename allure-report/data/test-cases/{7ec3425d5267a222.json => 6cc7dd91ca56d191.json} (60%) rename allure-report/data/test-cases/{7369f3dde824b045.json => 6cece42c72540e7a.json} (80%) rename allure-report/data/test-cases/{afc07e402ebe38d8.json => 6d57e0044d071709.json} (80%) create mode 100644 allure-report/data/test-cases/6d917e3e4d702f23.json rename allure-report/data/test-cases/{89c0be4978ed22ba.json => 6da9e4a8a463c592.json} (59%) rename allure-report/data/test-cases/{8388a8495a8b75af.json => 6db0502ca689b396.json} (62%) rename allure-report/data/test-cases/{d3ab7c4bfc7d171f.json => 6dd8a24f05e81d8d.json} (81%) delete mode 100644 allure-report/data/test-cases/6e91e404eb8e624.json create mode 100644 allure-report/data/test-cases/6f178467aa4ed9b7.json rename allure-report/data/test-cases/{170ac645fcf8229c.json => 6f2806a9130ac2bf.json} (87%) rename allure-report/data/test-cases/{91cb28173d925ce2.json => 6f95e3a968732946.json} (83%) rename allure-report/data/test-cases/{70c180d1e9f40ddc.json => 6fa9bd2fff491ec7.json} (72%) rename allure-report/data/test-cases/{5a4c9eb3dcb32bf5.json => 6fb97aca94ac90f1.json} (81%) rename allure-report/data/test-cases/{893f14f04872e4c5.json => 7019f73b053e7ae6.json} (75%) create mode 100644 allure-report/data/test-cases/701c3cee2d2ca0d.json rename allure-report/data/test-cases/{e29868febcecd61d.json => 703af1f2e157e358.json} (75%) rename allure-report/data/test-cases/{bae98e899f1ebab4.json => 705df14002b81e6d.json} (77%) rename allure-report/data/test-cases/{54122a7c8f1149b2.json => 705f3a50d2317813.json} (76%) rename allure-report/data/test-cases/{2991adec6435da10.json => 7062f727dbe31207.json} (58%) rename allure-report/data/test-cases/{2483ff464fe4ea07.json => 7086e3f0d0497484.json} (55%) create mode 100644 allure-report/data/test-cases/70a5d60b5abb1f3f.json create mode 100644 allure-report/data/test-cases/7250652c2d8bbae5.json create mode 100644 allure-report/data/test-cases/72c2edc2055d0da7.json delete mode 100644 allure-report/data/test-cases/72c86ca38c98258.json rename allure-report/data/test-cases/{b0df4a2c5fe59a12.json => 73191ac2ec23a302.json} (74%) create mode 100644 allure-report/data/test-cases/732bf4c64788dac.json create mode 100644 allure-report/data/test-cases/733b2334645f5c42.json create mode 100644 allure-report/data/test-cases/73654e59fd10df4d.json rename allure-report/data/test-cases/{777ba0c823c5a82a.json => 73b957e217c05b3b.json} (94%) rename allure-report/data/test-cases/{8a89827c471bc909.json => 73ceae1f03ba10a4.json} (73%) rename allure-report/data/test-cases/{edb0e461adb94f5b.json => 73ef94971e1ebc98.json} (83%) delete mode 100644 allure-report/data/test-cases/740e72b931a3ed2d.json rename allure-report/data/test-cases/{4df5cc35809df545.json => 7423494f63e5e438.json} (85%) rename allure-report/data/test-cases/{dd53e52e1ab13306.json => 74b0e8a5cfe71956.json} (84%) rename allure-report/data/test-cases/{c00621abb22a9be3.json => 74d08353b69572cc.json} (62%) delete mode 100644 allure-report/data/test-cases/74f816020df3559.json delete mode 100644 allure-report/data/test-cases/75040d42480a95e8.json rename allure-report/data/test-cases/{88851466a8ab5f44.json => 75b2a36530573b63.json} (73%) delete mode 100644 allure-report/data/test-cases/7612354cc3c699d.json rename allure-report/data/test-cases/{fa27e6e3693a7b83.json => 7616dbf2a034685c.json} (79%) rename allure-report/data/test-cases/{84ea3c3b3250393e.json => 761ca73c34549675.json} (81%) rename allure-report/data/test-cases/{f5725ff55458d02a.json => 763ac19ad87ac3cd.json} (80%) rename allure-report/data/test-cases/{d36e2f5707d2a6d3.json => 76a91c6ac0b40085.json} (82%) rename allure-report/data/test-cases/{de09867d078b6af4.json => 76e193dcfd9d956a.json} (80%) create mode 100644 allure-report/data/test-cases/777b1d9b55eb3ae9.json create mode 100644 allure-report/data/test-cases/77858b1148b2de9d.json rename allure-report/data/test-cases/{b22afbc33030e55f.json => 77a4cf3d728ec302.json} (69%) rename allure-report/data/test-cases/{8e9b4227c17ce17f.json => 77d417f099b71c46.json} (50%) rename allure-report/data/test-cases/{d6fd6e0593022837.json => 78770f3ff6d80a18.json} (92%) rename allure-report/data/test-cases/{6f37cee94115c50c.json => 7886d18807eb6c13.json} (90%) create mode 100644 allure-report/data/test-cases/78aec59881bd461e.json rename allure-report/data/test-cases/{6558b0da7e100d83.json => 78b238490a0d0c98.json} (82%) rename allure-report/data/test-cases/{7e36f3895c7e5ba3.json => 792ce345a0c4a9e1.json} (84%) create mode 100644 allure-report/data/test-cases/7940a8ba615e27f7.json rename allure-report/data/test-cases/{70008c90c6552144.json => 7a1146c2cbd99038.json} (81%) rename allure-report/data/test-cases/{c7165b4538deb01d.json => 7a5a4eebadaab126.json} (83%) rename allure-report/data/test-cases/{bfb03abe3203ecf1.json => 7a77e28352aaf1ca.json} (82%) create mode 100644 allure-report/data/test-cases/7aa3fbfc8218c54e.json rename allure-report/data/test-cases/{e9cabde1f2c64760.json => 7abec7f9960933cc.json} (93%) rename allure-report/data/test-cases/{65c772a236576a2d.json => 7b5c67e400b6b0a0.json} (75%) rename allure-report/data/test-cases/{579e5f45553c02f2.json => 7b7000404fe21186.json} (84%) rename allure-report/data/test-cases/{6641c9ab33f4ea66.json => 7b778b64af209b91.json} (68%) rename allure-report/data/test-cases/{d237c739f4b0c138.json => 7c3d4f705ded9146.json} (82%) rename allure-report/data/test-cases/{28083507c1397923.json => 7c60279d383e9d8b.json} (92%) rename allure-report/data/test-cases/{1c33446eccccc45a.json => 7c87151d683c2aad.json} (79%) rename allure-report/data/test-cases/{dc9bdff2273b81f8.json => 7cacdad83c7f5f10.json} (73%) rename allure-report/data/test-cases/{4736c243443acbf6.json => 7ce67f10ab4c86ee.json} (58%) create mode 100644 allure-report/data/test-cases/7d152505fce8fc34.json rename allure-report/data/test-cases/{5e8bbbba63c3bb75.json => 7d5b1a2ffe0a970a.json} (80%) rename allure-report/data/test-cases/{6463a9e3be0b4026.json => 7d777a45074a2435.json} (80%) rename allure-report/data/test-cases/{1b6850c9f0a02820.json => 7de3e61f9ee174a3.json} (83%) rename allure-report/data/test-cases/{23199ebc2c7c1fa2.json => 7de5228b774a8541.json} (79%) delete mode 100644 allure-report/data/test-cases/7de68906bfa0f18.json create mode 100644 allure-report/data/test-cases/7e7534020c406c41.json create mode 100644 allure-report/data/test-cases/7e8e53d16d69077.json create mode 100644 allure-report/data/test-cases/7ea8a8dc382128a4.json rename allure-report/data/test-cases/{156fc08ab7167514.json => 7edeace92746910e.json} (73%) rename allure-report/data/test-cases/{e6ed73d965a64ee5.json => 7f10132389bd0afd.json} (81%) rename allure-report/data/test-cases/{cedf72c8fbbfdfc5.json => 7f106ecb68257734.json} (82%) rename allure-report/data/test-cases/{d9e0d2d6c00c88e9.json => 7f28ecea13e4e886.json} (68%) rename allure-report/data/test-cases/{f2826391ba216705.json => 7f2fca7b02951542.json} (78%) rename allure-report/data/test-cases/{405b625cf95f9fbd.json => 7f6d50d19e0f3de2.json} (60%) rename allure-report/data/test-cases/{bda7ad5e74660b56.json => 7f8863141fd28835.json} (92%) create mode 100644 allure-report/data/test-cases/7fae1c49f318568.json create mode 100644 allure-report/data/test-cases/7fd83f8828bfb391.json rename allure-report/data/test-cases/{1ae269d449ac7d5e.json => 800e8bf322748e89.json} (78%) delete mode 100644 allure-report/data/test-cases/801881710b06074.json rename allure-report/data/test-cases/{e6abe3c64e54cb9f.json => 8081a31c05be488b.json} (80%) rename allure-report/data/test-cases/{3d4ef3b1faaf3c9d.json => 809e3691a3f26473.json} (79%) create mode 100644 allure-report/data/test-cases/80b7e762ad299367.json rename allure-report/data/test-cases/{c7b8f329dd40406f.json => 80f4fc862b13c5c8.json} (75%) create mode 100644 allure-report/data/test-cases/8146fd50051ac96b.json create mode 100644 allure-report/data/test-cases/81d67983376326e.json rename allure-report/data/test-cases/{cd536df0700f3bd3.json => 81fc21ff964037a2.json} (75%) rename allure-report/data/test-cases/{64abc8899e8e691d.json => 823872001ab9ba87.json} (71%) create mode 100644 allure-report/data/test-cases/823dff07664aaa4.json rename allure-report/data/test-cases/{e7035dc3ef8d99c0.json => 824bfc7518105d49.json} (63%) rename allure-report/data/test-cases/{f10852a0a46489bf.json => 82ae018d43c04f85.json} (93%) rename allure-report/data/test-cases/{3785819940a9985f.json => 82d90de1156cd48c.json} (81%) rename allure-report/data/test-cases/{24b32ad032525022.json => 82e02fa0cc46fda7.json} (76%) delete mode 100644 allure-report/data/test-cases/832c94aac84bf09.json rename allure-report/data/test-cases/{2ac4d21875a44bdb.json => 83385fc467b4a8e5.json} (87%) rename allure-report/data/test-cases/{5654bb5658921dcd.json => 839787eb550f06c0.json} (66%) create mode 100644 allure-report/data/test-cases/83ae1189d3669b33.json create mode 100644 allure-report/data/test-cases/83c9df798b4e44f.json rename allure-report/data/test-cases/{8c4c3ac3b9ddced3.json => 83da90e97e5349e6.json} (81%) rename allure-report/data/test-cases/{294aa341a28271bb.json => 83db549d27afd32b.json} (90%) rename allure-report/data/test-cases/{393b88e5ac625a50.json => 842c6d1ee8161eef.json} (78%) rename allure-report/data/test-cases/{efdfaccb93c4c6b4.json => 84d7e1eb21948129.json} (80%) rename allure-report/data/test-cases/{8e87cfc15c8260a3.json => 84e5ce529aafcfa9.json} (66%) create mode 100644 allure-report/data/test-cases/8572ffe92ddcaa11.json rename allure-report/data/test-cases/{71dc0d8169aaad6f.json => 857509cc66fb3470.json} (56%) rename allure-report/data/test-cases/{f40d2270a86983a1.json => 857dc75c5bd2dd17.json} (81%) rename allure-report/data/test-cases/{689b611d3c9a3124.json => 8603861216d7d4c6.json} (65%) delete mode 100644 allure-report/data/test-cases/864737f712b002ec.json create mode 100644 allure-report/data/test-cases/864ee426bf422b09.json delete mode 100644 allure-report/data/test-cases/867b171e961cc6e3.json rename allure-report/data/test-cases/{d56667f6ac1424a3.json => 867f27ef53f4ce43.json} (87%) rename allure-report/data/test-cases/{ab62ce2428f0e01f.json => 86bec9b105840355.json} (82%) delete mode 100644 allure-report/data/test-cases/86bf8b663d5828a.json rename allure-report/data/test-cases/{e532878179cb6f87.json => 86de6e64454fca19.json} (66%) rename allure-report/data/test-cases/{4f20da98ae3e1985.json => 8729b907b71b7609.json} (80%) create mode 100644 allure-report/data/test-cases/873ec1972fa36468.json rename allure-report/data/test-cases/{406377324fdf0256.json => 87664723e6f57cb6.json} (83%) delete mode 100644 allure-report/data/test-cases/879748b1d447d0a9.json create mode 100644 allure-report/data/test-cases/87b0b5de93d5cb12.json create mode 100644 allure-report/data/test-cases/87b2e8453406c3f.json rename allure-report/data/test-cases/{f7f7ddd6c717f082.json => 87df803cadfb61a6.json} (61%) rename allure-report/data/test-cases/{6a3f85e29591c654.json => 87f281129608ef41.json} (61%) rename allure-report/data/test-cases/{3ead41117d0ad5b6.json => 8809fca01a516cec.json} (61%) rename allure-report/data/test-cases/{ed783d7ab62f1ba4.json => 88501d2467af647f.json} (82%) create mode 100644 allure-report/data/test-cases/8878dccf56d36ba6.json rename allure-report/data/test-cases/{200b5f0b4ec790a3.json => 88b006bece2616b2.json} (68%) rename allure-report/data/test-cases/{f7d9041670997ad6.json => 88ca13ae93cc2b33.json} (81%) create mode 100644 allure-report/data/test-cases/8930ec9e348fd4d.json rename allure-report/data/test-cases/{86447fe348b226fe.json => 895846e60323f8ba.json} (74%) rename allure-report/data/test-cases/{2d49ce73ea45d7a1.json => 8966b735a3793409.json} (84%) rename allure-report/data/test-cases/{71a87e59b6648413.json => 89e4ffe6e2b4858c.json} (89%) rename allure-report/data/test-cases/{a25791815212e793.json => 89e6e7af226f3582.json} (80%) create mode 100644 allure-report/data/test-cases/8a0604fc927a7480.json rename allure-report/data/test-cases/{2399abc94e3173da.json => 8a29f61d53cfa694.json} (77%) rename allure-report/data/test-cases/{c8da32e94b736fef.json => 8ade4c7a0e59dd30.json} (78%) create mode 100644 allure-report/data/test-cases/8b066879dcf90ee.json rename allure-report/data/test-cases/{55a0094c41d10012.json => 8b09bdc5a519a070.json} (75%) rename allure-report/data/test-cases/{c5bce40c2868c787.json => 8b29a5334bdbc1b5.json} (70%) rename allure-report/data/test-cases/{2890c501d19b5f47.json => 8bb4333bde7b6f57.json} (51%) rename allure-report/data/test-cases/{fe07573cd07e1ed8.json => 8bbe92897a0837e7.json} (84%) delete mode 100644 allure-report/data/test-cases/8bd454f111efcd3e.json rename allure-report/data/test-cases/{875e90b046ec092c.json => 8c0ab77873b28b8f.json} (75%) rename allure-report/data/test-cases/{58a164b572fc5a50.json => 8c1749fbe9590e77.json} (80%) rename allure-report/data/test-cases/{bb7d4237e3a80dd7.json => 8c263832e40387fc.json} (81%) rename allure-report/data/test-cases/{634b88b34b81a74c.json => 8c2738ac8b329dff.json} (92%) create mode 100644 allure-report/data/test-cases/8c4575be21ff0ded.json create mode 100644 allure-report/data/test-cases/8c72b971279020f.json create mode 100644 allure-report/data/test-cases/8caf8fe76e46aa0f.json create mode 100644 allure-report/data/test-cases/8cb8fb70f937622b.json rename allure-report/data/test-cases/{e65c2aee0db2b724.json => 8d0f8b1f359d2e57.json} (77%) rename allure-report/data/test-cases/{ee50880cc545f1d3.json => 8d156d3e42d4375b.json} (60%) rename allure-report/data/test-cases/{31ab703bf65847e5.json => 8d4255e3e5d3d8a0.json} (82%) rename allure-report/data/test-cases/{98ca489a74667507.json => 8d44f2b97a47f0f3.json} (64%) rename allure-report/data/test-cases/{8271119e6077f333.json => 8da0b58109862b1b.json} (93%) create mode 100644 allure-report/data/test-cases/8da8c6de16bb179d.json create mode 100644 allure-report/data/test-cases/8db7c8bf0abe07bc.json rename allure-report/data/test-cases/{a5467cc7a05b3546.json => 8dc2c9fe3450d5a4.json} (76%) rename allure-report/data/test-cases/{eb60d649770273d6.json => 8dfb78838f25ea50.json} (73%) delete mode 100644 allure-report/data/test-cases/8e4b6f6bd251566.json create mode 100644 allure-report/data/test-cases/8eb80b15a6d6b848.json rename allure-report/data/test-cases/{8dcdfa9166c48fb8.json => 8ebc308a5806000e.json} (79%) rename allure-report/data/test-cases/{1bfd57b8cda6c028.json => 8f3c559eb697de75.json} (81%) rename allure-report/data/test-cases/{c3faad8d02b815fd.json => 8f411cd28b85874e.json} (79%) rename allure-report/data/test-cases/{2ba00773a1bfae2e.json => 8fc3e4e9309f61b9.json} (80%) rename allure-report/data/test-cases/{1d4c3341dfe8e289.json => 901ad6e6b17ea71d.json} (70%) create mode 100644 allure-report/data/test-cases/902288cde0f2109a.json rename allure-report/data/test-cases/{3f3bfc03f90689c3.json => 903c4d3d57375ecf.json} (78%) rename allure-report/data/test-cases/{416bb0c0ac58f7b6.json => 90548ade83f4ad3f.json} (68%) create mode 100644 allure-report/data/test-cases/90ca6a0c009b593.json create mode 100644 allure-report/data/test-cases/913fbd5c2da31308.json rename allure-report/data/test-cases/{aa1a2a69b8a9bf68.json => 91592072a42568a2.json} (77%) delete mode 100644 allure-report/data/test-cases/91aab0544068789.json create mode 100644 allure-report/data/test-cases/91c1d8a1fc37f84.json rename allure-report/data/test-cases/{11ff02c2df19530d.json => 9212c6b19c8a287e.json} (80%) create mode 100644 allure-report/data/test-cases/92695f36fc50d8a3.json rename allure-report/data/test-cases/{168d1058a213deae.json => 931a1e301c63c1a1.json} (73%) rename allure-report/data/test-cases/{bd65eae3991d6c2c.json => 9328d9c37e2386a6.json} (56%) rename allure-report/data/test-cases/{b9086c98d6d71504.json => 93600ea56dc1843a.json} (50%) create mode 100644 allure-report/data/test-cases/9400c2351555d83a.json rename allure-report/data/test-cases/{962ca80dcc908350.json => 94470fc1dd0d3d27.json} (77%) rename allure-report/data/test-cases/{552b72a0721ea486.json => 946874b940758475.json} (83%) rename allure-report/data/test-cases/{fa6c346b04c031d5.json => 94887fb9761f9305.json} (65%) rename allure-report/data/test-cases/{ac65ef6ef01656e6.json => 94a0f5c0bb41d73c.json} (76%) rename allure-report/data/test-cases/{c8a70d9350601da5.json => 94a29fbc0358d34a.json} (61%) rename allure-report/data/test-cases/{8605c2bc186d7f9a.json => 94aee1df5a6d75c7.json} (58%) rename allure-report/data/test-cases/{3846518071a02e50.json => 94d4bd5574aa8f7b.json} (65%) rename allure-report/data/test-cases/{68a2b9760a533e02.json => 94ea40491ebef366.json} (93%) rename allure-report/data/test-cases/{7331de8e7202ad57.json => 9546971ec41b8ce1.json} (71%) create mode 100644 allure-report/data/test-cases/95500b18da61d76.json rename allure-report/data/test-cases/{2ee59d9a8c304f3b.json => 9555c80771d907bb.json} (86%) rename allure-report/data/test-cases/{4d2d9b386eb6ebf2.json => 95b80642b494d437.json} (83%) rename allure-report/data/test-cases/{1c3655d4a978bd79.json => 95fe30b3b4a958d6.json} (59%) rename allure-report/data/test-cases/{fd85877ffe0d5722.json => 9675429ac75e0c11.json} (78%) create mode 100644 allure-report/data/test-cases/96938210802b960f.json create mode 100644 allure-report/data/test-cases/971c2aa5dd36f62c.json rename allure-report/data/test-cases/{77a9a3d99a741f47.json => 975470b122402791.json} (77%) delete mode 100644 allure-report/data/test-cases/97a2a77f06d4866c.json rename allure-report/data/test-cases/{97e1e8aa5714e13a.json => 97c98bd57653ce11.json} (78%) rename allure-report/data/test-cases/{88ed1c9da2d9b53b.json => 97d66dc06144a438.json} (73%) rename allure-report/data/test-cases/{f17cc6d65b0932fd.json => 981acdaf3faf1d8f.json} (78%) rename allure-report/data/test-cases/{6a636a909012a6f0.json => 9823bb7abc34f758.json} (61%) create mode 100644 allure-report/data/test-cases/984b8a80ce69773d.json rename allure-report/data/test-cases/{f520dc2a3cdded7a.json => 988614c511102150.json} (82%) rename allure-report/data/test-cases/{a7d954f4aff6f601.json => 99363c879a15b2c4.json} (79%) rename allure-report/data/test-cases/{5bf0909978db7e30.json => 99e1739d168a007c.json} (81%) delete mode 100644 allure-report/data/test-cases/99e31d655e3161a.json create mode 100644 allure-report/data/test-cases/99e95613ed424b35.json delete mode 100644 allure-report/data/test-cases/9a17297856f21a74.json rename allure-report/data/test-cases/{76614b580d9bd7f8.json => 9a76d6db19b09f54.json} (80%) rename allure-report/data/test-cases/{e248ed6a4ff28aaa.json => 9b26a570961ab395.json} (85%) rename allure-report/data/test-cases/{1857a7ece8075aa5.json => 9b5e6753141602b8.json} (64%) rename allure-report/data/test-cases/{42358797bb03e774.json => 9b6456a02fb8e586.json} (84%) create mode 100644 allure-report/data/test-cases/9b651a3e27842d38.json create mode 100644 allure-report/data/test-cases/9ba260a0149e6341.json rename allure-report/data/test-cases/{b2f619fce2ea028d.json => 9bb51a042d358695.json} (56%) create mode 100644 allure-report/data/test-cases/9c497f5f830a2958.json rename allure-report/data/test-cases/{9ee094a1f359821e.json => 9c58cd2f052b55a6.json} (77%) create mode 100644 allure-report/data/test-cases/9c7635c760d519cd.json create mode 100644 allure-report/data/test-cases/9cc2024d730e5f8a.json rename allure-report/data/test-cases/{afca78445b5fa23f.json => 9d0a0378192b3dfd.json} (82%) rename allure-report/data/test-cases/{30e62f45ee93d21d.json => 9d10648422f3aeed.json} (84%) rename allure-report/data/test-cases/{cf349408f505ed67.json => 9d243bfb1021bb63.json} (81%) rename allure-report/data/test-cases/{938f6f7ebecca4c3.json => 9d27d41bfa6de8dc.json} (79%) rename allure-report/data/test-cases/{f30d62828063f744.json => 9d4c9ba0aff07821.json} (83%) delete mode 100644 allure-report/data/test-cases/9d50fe36fd5059ab.json rename allure-report/data/test-cases/{574cb5d6827dca2a.json => 9d8106b104f30ee6.json} (84%) create mode 100644 allure-report/data/test-cases/9e10b0087e5b64c.json rename allure-report/data/test-cases/{3d40466198fa34e6.json => 9e4cc550b1ac8808.json} (66%) rename allure-report/data/test-cases/{1c217987ee1a1d39.json => 9e692004742b5469.json} (77%) create mode 100644 allure-report/data/test-cases/9e6eb35888cc4f59.json create mode 100644 allure-report/data/test-cases/9e884f6ea55b7c35.json create mode 100644 allure-report/data/test-cases/9eaae816682ea6e3.json rename allure-report/data/test-cases/{63a8ebd07b8fa1c4.json => 9edb2b589904d584.json} (64%) rename allure-report/data/test-cases/{fa69c95248558058.json => 9f56730a0e41c609.json} (82%) delete mode 100644 allure-report/data/test-cases/9f8d638b621270bd.json create mode 100644 allure-report/data/test-cases/9faa60a73c33e8b6.json rename allure-report/data/test-cases/{5abe74757b94997a.json => 9fb9fb1a0489c1a3.json} (85%) create mode 100644 allure-report/data/test-cases/a0445feeac697184.json create mode 100644 allure-report/data/test-cases/a088624abb606e0e.json rename allure-report/data/test-cases/{126c2e67245419a9.json => a124532204114d8a.json} (78%) delete mode 100644 allure-report/data/test-cases/a13c451f0f676900.json rename allure-report/data/test-cases/{b7108f3053cbc60d.json => a1726ce9583568d0.json} (79%) delete mode 100644 allure-report/data/test-cases/a1980ae57d2c7b3.json create mode 100644 allure-report/data/test-cases/a1c87b2c2a6c0bb7.json create mode 100644 allure-report/data/test-cases/a1e3818ccb62ed24.json rename allure-report/data/test-cases/{f6df3cbfc02e5094.json => a200977d521a9785.json} (84%) rename allure-report/data/test-cases/{27e5ed0c95dfc112.json => a24b90978f06ce4b.json} (78%) rename allure-report/data/test-cases/{9a9def5039f12f67.json => a24df28711252fb3.json} (72%) rename allure-report/data/test-cases/{7567c87108e55931.json => a293120689451651.json} (78%) rename allure-report/data/test-cases/{6de398181d9095ee.json => a2c0d72771fc18f1.json} (63%) create mode 100644 allure-report/data/test-cases/a2d5dff34138108f.json create mode 100644 allure-report/data/test-cases/a2e66c48b8347bd.json rename allure-report/data/test-cases/{edfd5d811972f420.json => a2ff67830434b9af.json} (71%) rename allure-report/data/test-cases/{c38b32e4e940b443.json => a30886bec4fc9e3b.json} (82%) rename allure-report/data/test-cases/{b3fa4d42fb1064a9.json => a30e32170a464ad0.json} (84%) rename allure-report/data/test-cases/{afe0c9a0972467a3.json => a32047be9db53ed6.json} (80%) rename allure-report/data/test-cases/{82f0a19d19bd8125.json => a394baafe8edd2c5.json} (65%) rename allure-report/data/test-cases/{707862d33841a8ff.json => a3b8656ba40e9af1.json} (81%) rename allure-report/data/test-cases/{6d2f9028315647c1.json => a3e36a462ba6b0e6.json} (81%) rename allure-report/data/test-cases/{b684b0c7250ecf6d.json => a3e837b6100ae0c4.json} (68%) rename allure-report/data/test-cases/{4ab01f4fc722fa2f.json => a42f9f61a6c45aa8.json} (77%) rename allure-report/data/test-cases/{765c2af6ca77e4e9.json => a43120edfc7294d0.json} (82%) create mode 100644 allure-report/data/test-cases/a492c358ecb2902d.json rename allure-report/data/test-cases/{6d9aec252d158762.json => a4aa1c9fe84c9cc9.json} (91%) create mode 100644 allure-report/data/test-cases/a4cb6a94c77f28ce.json delete mode 100644 allure-report/data/test-cases/a53e477b227bdf44.json create mode 100644 allure-report/data/test-cases/a5961784f4ddfa34.json create mode 100644 allure-report/data/test-cases/a5a7f52be4bf7369.json delete mode 100644 allure-report/data/test-cases/a5bb3631db18a9d9.json rename allure-report/data/test-cases/{3d05de3d43cf437d.json => a5ef1e97378ae643.json} (61%) rename allure-report/data/test-cases/{378b8959bf0b41a9.json => a65123311cff1206.json} (85%) rename allure-report/data/test-cases/{152d6167de0fb37e.json => a654bf006c33c2bc.json} (80%) rename allure-report/data/test-cases/{98366b42396826ce.json => a65eaf9a40469196.json} (77%) rename allure-report/data/test-cases/{1751fe3c0a6687c3.json => a66f07e5b377a93b.json} (78%) create mode 100644 allure-report/data/test-cases/a6a651d904577cf4.json create mode 100644 allure-report/data/test-cases/a6eaf13968162fc7.json rename allure-report/data/test-cases/{c52dc9ba56a64495.json => a6ecb3b474360e70.json} (63%) rename allure-report/data/test-cases/{56d019840f444cec.json => a6f615adf58af171.json} (75%) rename allure-report/data/test-cases/{a6a59cc8a0131a02.json => a712aa917a11c1d8.json} (78%) rename allure-report/data/test-cases/{17c9a97f8a5ea815.json => a72e2d4e966e7c09.json} (65%) rename allure-report/data/test-cases/{f9778b72019f6060.json => a7585b25b34695fe.json} (94%) rename allure-report/data/test-cases/{861fc17326f7d16a.json => a7645184155771ad.json} (79%) delete mode 100644 allure-report/data/test-cases/a78b9243c26a61bf.json rename allure-report/data/test-cases/{c0b1085f1fbfd7ed.json => a78dd64f3f2b4648.json} (62%) create mode 100644 allure-report/data/test-cases/a81b8ca7a7877717.json rename allure-report/data/test-cases/{1b24a6e8f9065ccb.json => a86267feca446780.json} (82%) create mode 100644 allure-report/data/test-cases/a890c2eb991483c.json create mode 100644 allure-report/data/test-cases/a8ac1a16737b16a.json rename allure-report/data/test-cases/{36552864c04c1cf9.json => a8ceda5e3158297c.json} (79%) create mode 100644 allure-report/data/test-cases/a90239b6ef90f6a6.json delete mode 100644 allure-report/data/test-cases/a908975bd67b2eca.json rename allure-report/data/test-cases/{a6f428498c7694b0.json => a912833bc91830ef.json} (75%) create mode 100644 allure-report/data/test-cases/a92222b0b7f4d601.json create mode 100644 allure-report/data/test-cases/a95c24b51d5c9432.json rename allure-report/data/test-cases/{9ece4d55c6bd3b35.json => a9aa7cc6bd5c34be.json} (82%) rename allure-report/data/test-cases/{1c9684bf403c80de.json => a9f0e43ae54089ff.json} (63%) rename allure-report/data/test-cases/{5f97df940bb3f46a.json => a9fe3e48d71bee45.json} (66%) rename allure-report/data/test-cases/{6035f0fe38b5a062.json => aa00c7be0a861177.json} (64%) rename allure-report/data/test-cases/{3cb7f65d354963ea.json => aa0a102aebb2ddf0.json} (69%) create mode 100644 allure-report/data/test-cases/aa0fd3e8d8009a95.json create mode 100644 allure-report/data/test-cases/aa7d2e5e86b66673.json rename allure-report/data/test-cases/{b9bf67d4df9c3970.json => aade1eebfa7ac9cf.json} (81%) rename allure-report/data/test-cases/{fe040c66880e0b15.json => aadfe826c6aeccf6.json} (81%) rename allure-report/data/test-cases/{a61ba5af03a1f296.json => ab2861d9bed3765e.json} (68%) rename allure-report/data/test-cases/{437936b48694b75d.json => ab6068d2916c95e9.json} (77%) rename allure-report/data/test-cases/{abf4f2031d384e78.json => ab7fe234dc976ac6.json} (74%) create mode 100644 allure-report/data/test-cases/ab9420b5e475e35.json rename allure-report/data/test-cases/{6ef44675aea47099.json => abbcc324b9e8a1ea.json} (55%) rename allure-report/data/test-cases/{288e814175ef5830.json => abe925767bdb0e39.json} (79%) rename allure-report/data/test-cases/{41a6baf598873d9b.json => abfe637076f1879d.json} (82%) rename allure-report/data/test-cases/{624b364c1e1f6bc7.json => ac366a2ecd02d5dd.json} (94%) rename allure-report/data/test-cases/{9a72e64592e0ae1b.json => ac4b8e11c3d56a6a.json} (80%) rename allure-report/data/test-cases/{747c525d425e0efa.json => ac66f87691632de7.json} (82%) create mode 100644 allure-report/data/test-cases/ac824f903545a6e7.json rename allure-report/data/test-cases/{d5aba2cd944d7efd.json => ac8d0c005e499da5.json} (66%) rename allure-report/data/test-cases/{256439519ef758bc.json => acad0a25b607c9fe.json} (76%) create mode 100644 allure-report/data/test-cases/ad3e6b6eddb975ef.json create mode 100644 allure-report/data/test-cases/ad642268f112be60.json rename allure-report/data/test-cases/{3e88e2d0381e105a.json => adba958b88eb7661.json} (83%) rename allure-report/data/test-cases/{c19e4739f2d4d64c.json => add9ef76ac7e1779.json} (60%) delete mode 100644 allure-report/data/test-cases/ae08758c48a63481.json create mode 100644 allure-report/data/test-cases/ae87022eb9b205bd.json rename allure-report/data/test-cases/{ff9c64bdd3b3fc0c.json => ae9c6bad3687824e.json} (56%) rename allure-report/data/test-cases/{ea77ab4395e92566.json => ae9de108d4c0920c.json} (59%) rename allure-report/data/test-cases/{584f8bdd5c7f3c16.json => aea42439e3c082b4.json} (77%) rename allure-report/data/test-cases/{68489cf8ea35171c.json => aeae161caad1a65f.json} (76%) rename allure-report/data/test-cases/{a29d5673ddcf7e8e.json => aeaf73e97e8c5fe3.json} (77%) delete mode 100644 allure-report/data/test-cases/aec2fb642901e92.json rename allure-report/data/test-cases/{359cda8d66959d20.json => aee1417e53524250.json} (76%) create mode 100644 allure-report/data/test-cases/aef6b82f43e1b4b4.json rename allure-report/data/test-cases/{1d7a8665bbc3ca3a.json => aef740a566ef8e93.json} (80%) create mode 100644 allure-report/data/test-cases/af16ce1f4d774662.json create mode 100644 allure-report/data/test-cases/af3a43fc31649664.json create mode 100644 allure-report/data/test-cases/afa4196b56245753.json create mode 100644 allure-report/data/test-cases/afc8e5dacd30bc41.json rename allure-report/data/test-cases/{edb8f84ee9c3dd36.json => b00d5d40ec75b250.json} (61%) rename allure-report/data/test-cases/{319c2fc51c0b8912.json => b01a24c8d7b81de4.json} (52%) create mode 100644 allure-report/data/test-cases/b0395834a1dc7266.json create mode 100644 allure-report/data/test-cases/b0da8ff80b8db87.json rename allure-report/data/test-cases/{e604a93a8ee1253f.json => b1b08a9c0991d73d.json} (67%) create mode 100644 allure-report/data/test-cases/b1b4ed481e88bb25.json rename allure-report/data/test-cases/{71f8f5b376b254cf.json => b1ed0faa67962e1c.json} (84%) rename allure-report/data/test-cases/{91d86d4a26e41755.json => b27497f64988d4cb.json} (87%) rename allure-report/data/test-cases/{d0ce09c4ba5ff697.json => b289d731e65d2b32.json} (75%) create mode 100644 allure-report/data/test-cases/b2b39aab9a2e66b.json rename allure-report/data/test-cases/{921715088233c4e7.json => b35458785abd4d83.json} (83%) create mode 100644 allure-report/data/test-cases/b3654581f89b5576.json rename allure-report/data/test-cases/{9689f8dcf21c7e63.json => b37405ca3882bd1c.json} (83%) rename allure-report/data/test-cases/{682ca0c47ecc45d4.json => b37adbf845502fe8.json} (72%) create mode 100644 allure-report/data/test-cases/b3baec89064c3983.json delete mode 100644 allure-report/data/test-cases/b3d5b9d863751a3f.json create mode 100644 allure-report/data/test-cases/b40f27be3da7edd7.json create mode 100644 allure-report/data/test-cases/b4318b89966fb16.json rename allure-report/data/test-cases/{329cbbd27ed228a7.json => b43edc8fd032be6e.json} (70%) rename allure-report/data/test-cases/{b4e0153f9704bfbb.json => b4423bcb7f125986.json} (86%) rename allure-report/data/test-cases/{66020f911b054e74.json => b4a93aab25c4b5f7.json} (62%) rename allure-report/data/test-cases/{e751c9c9dc3d04e6.json => b4b8e18ee349d818.json} (58%) delete mode 100644 allure-report/data/test-cases/b4bcf3d5a4367d8.json create mode 100644 allure-report/data/test-cases/b4c3bd7788c9f57d.json create mode 100644 allure-report/data/test-cases/b4cae88de9afaa55.json rename allure-report/data/test-cases/{eb4d3d652c38eb3f.json => b56ab9fe385db93a.json} (82%) rename allure-report/data/test-cases/{d6ad7a05187743ff.json => b56e159e9a8b128f.json} (60%) rename allure-report/data/test-cases/{4710cc2182eb85cb.json => b591ce46c92300fc.json} (63%) create mode 100644 allure-report/data/test-cases/b59318a9c97ef9f1.json create mode 100644 allure-report/data/test-cases/b5ba84846c075db5.json rename allure-report/data/test-cases/{aa37770dd2142a16.json => b69923e60de0964d.json} (60%) rename allure-report/data/test-cases/{935b6bf420709ca7.json => b6d612c29223f1e3.json} (72%) create mode 100644 allure-report/data/test-cases/b744224a1d89f44f.json create mode 100644 allure-report/data/test-cases/b74e7e51e0827a84.json rename allure-report/data/test-cases/{19cfe4000991e820.json => b759b096d671749a.json} (60%) delete mode 100644 allure-report/data/test-cases/b7874e896ca052d2.json rename allure-report/data/test-cases/{5194ad39db439d08.json => b79318ff2ae67fee.json} (67%) rename allure-report/data/test-cases/{dd86378e3a37dfe4.json => b7eddfa61552d783.json} (74%) rename allure-report/data/test-cases/{10f08e5166368fc8.json => b81b0ae77ee26a61.json} (73%) rename allure-report/data/test-cases/{4941703c69aa6dd8.json => b82b2a2c9febe0c6.json} (73%) rename allure-report/data/test-cases/{98e0aca6e090522b.json => b876874728bc13e3.json} (59%) create mode 100644 allure-report/data/test-cases/b87f80755bc77034.json rename allure-report/data/test-cases/{96ce14353b4f3e49.json => b89f1a91511e43fe.json} (93%) rename allure-report/data/test-cases/{ff18bec5c293c228.json => b8c210754da93c52.json} (62%) create mode 100644 allure-report/data/test-cases/b8f26140fdddc630.json rename allure-report/data/test-cases/{b054542ab329d2ac.json => b91b3028c146d7df.json} (79%) create mode 100644 allure-report/data/test-cases/b92f0db6c4ee4ff0.json rename allure-report/data/test-cases/{6f9dcb0c09ae9f13.json => b95dabcc1b6701ba.json} (82%) rename allure-report/data/test-cases/{b8a2da685a579f99.json => b9ceaeaa317803af.json} (65%) delete mode 100644 allure-report/data/test-cases/ba2c8f43220f0c44.json rename allure-report/data/test-cases/{13f340b5f893b4e2.json => ba4a3c35a46d9d79.json} (58%) rename allure-report/data/test-cases/{ccb7c5007831ab45.json => babd57c21b463d43.json} (56%) rename allure-report/data/test-cases/{664f2a2d41bf2bd8.json => badb2c1a8c5e2d2d.json} (67%) delete mode 100644 allure-report/data/test-cases/baf923b3ced2f0a.json rename allure-report/data/test-cases/{3de1512f067d459d.json => bb728a3601eecc02.json} (66%) create mode 100644 allure-report/data/test-cases/bb8e119491d2ebc3.json rename allure-report/data/test-cases/{77ce7ba6af0b177a.json => bb902a37816cc407.json} (62%) create mode 100644 allure-report/data/test-cases/bbb128976da4f18a.json rename allure-report/data/test-cases/{710a5d14f0382e2f.json => bc04b77b7c90af86.json} (85%) rename allure-report/data/test-cases/{9eac58d1342209e0.json => bc0d03d768c84e9a.json} (93%) create mode 100644 allure-report/data/test-cases/bc5f75e76b0bf63.json rename allure-report/data/test-cases/{303f99106d04e0c7.json => bc719674954c58b2.json} (84%) rename allure-report/data/test-cases/{4dfeb434e28153fe.json => bcbd2adc2b6db91f.json} (79%) rename allure-report/data/test-cases/{ee16b6e353dfd7cd.json => bcfec9a648915f6a.json} (82%) delete mode 100644 allure-report/data/test-cases/bd413f89b47699c.json rename allure-report/data/test-cases/{998a460e800cbb2b.json => bd6b8dc125a7712d.json} (93%) delete mode 100644 allure-report/data/test-cases/bdcd06f2ac6e82c9.json rename allure-report/data/test-cases/{c739525d6df646b0.json => bdfd73520247929b.json} (83%) rename allure-report/data/test-cases/{8f6f88ab23c0d630.json => be22b07b7195c319.json} (82%) create mode 100644 allure-report/data/test-cases/be79a08ed18e426.json rename allure-report/data/test-cases/{c359ea3a207c31eb.json => beae761fcafbcfaf.json} (78%) rename allure-report/data/test-cases/{c5cf96cca0ab2f52.json => bebb2bc7f67aea79.json} (72%) rename allure-report/data/test-cases/{c700736d12b44c86.json => bef296bdea9fd681.json} (63%) rename allure-report/data/test-cases/{b26a6745cd367097.json => bf262768264e0cc2.json} (61%) rename allure-report/data/test-cases/{88503943247ae8d5.json => bf2cbfcfafa25fb5.json} (83%) create mode 100644 allure-report/data/test-cases/bfe3079800be8e80.json rename allure-report/data/test-cases/{59e860fc2782867c.json => bff3d119847a95d6.json} (57%) delete mode 100644 allure-report/data/test-cases/c005f5247ce8619b.json rename allure-report/data/test-cases/{6209b3d491320ab9.json => c0bcf993972d49ba.json} (82%) rename allure-report/data/test-cases/{c7c4d343c90ce082.json => c1010dc09e66b779.json} (78%) rename allure-report/data/test-cases/{addec93357f6e501.json => c12d427c645c762f.json} (61%) create mode 100644 allure-report/data/test-cases/c1326d9a3ad9ddfb.json create mode 100644 allure-report/data/test-cases/c1393951861e51a9.json create mode 100644 allure-report/data/test-cases/c149947a189c0282.json delete mode 100644 allure-report/data/test-cases/c1ac88d1c8e8cadf.json rename allure-report/data/test-cases/{ebb627dfa50cb94d.json => c1dfde6c70281ff2.json} (63%) create mode 100644 allure-report/data/test-cases/c1f0d1467179d957.json create mode 100644 allure-report/data/test-cases/c1f90fc4edd70bea.json create mode 100644 allure-report/data/test-cases/c245bb8192a35073.json rename allure-report/data/test-cases/{b78b9d24e53cd100.json => c24c0d6b556365c6.json} (61%) delete mode 100644 allure-report/data/test-cases/c25f8210fdb51a41.json rename allure-report/data/test-cases/{616388e3d3f3ad4c.json => c2cb5c7eee700e38.json} (77%) rename allure-report/data/test-cases/{b9d60ed71764b7f4.json => c361fae801a29bfb.json} (81%) rename allure-report/data/test-cases/{23151e1dbdaacb09.json => c371f8df57328f01.json} (77%) rename allure-report/data/test-cases/{8dfef1ba8856d412.json => c3dd54ea07cba973.json} (66%) delete mode 100644 allure-report/data/test-cases/c3e164f822b7bae.json rename allure-report/data/test-cases/{696e651c40149097.json => c3f4680f378d24e0.json} (81%) rename allure-report/data/test-cases/{82d71f1a1b9a4c08.json => c3fd98c434ab7b3d.json} (77%) rename allure-report/data/test-cases/{767acc864b347295.json => c4045fa90cc64964.json} (94%) rename allure-report/data/test-cases/{c0b9bbb0a9f351b0.json => c409a300546c15a6.json} (77%) create mode 100644 allure-report/data/test-cases/c46f98a697de9b7.json rename allure-report/data/test-cases/{d8b4a2733a1f48dc.json => c4de7ce2ddbb42a4.json} (79%) rename allure-report/data/test-cases/{3400d1d080e82f75.json => c4eaee07c56e2bda.json} (83%) rename allure-report/data/test-cases/{8fd9fc1a4b426539.json => c50564bf93e2ebd9.json} (80%) create mode 100644 allure-report/data/test-cases/c50649c997228fe6.json create mode 100644 allure-report/data/test-cases/c515ef635fa26df1.json rename allure-report/data/test-cases/{c2a15dd126224894.json => c51d0888e1777a9e.json} (63%) delete mode 100644 allure-report/data/test-cases/c5bfa9ec903b7b32.json rename allure-report/data/test-cases/{7e066328cfed2428.json => c5e6a87af3754f9e.json} (60%) delete mode 100644 allure-report/data/test-cases/c61d34eb10bf204.json create mode 100644 allure-report/data/test-cases/c62025a79b33eb3.json rename allure-report/data/test-cases/{302e450946481df3.json => c666a2fc70e4969f.json} (60%) create mode 100644 allure-report/data/test-cases/c66ea864985e641.json create mode 100644 allure-report/data/test-cases/c678c03e12583e98.json rename allure-report/data/test-cases/{5aa7474450de295f.json => c6b40d117da688e8.json} (92%) rename allure-report/data/test-cases/{5ad5cb812fbd5d4a.json => c6c0fd894bae942b.json} (69%) rename allure-report/data/test-cases/{6c457590f118b700.json => c6f6863411d36c7a.json} (79%) delete mode 100644 allure-report/data/test-cases/c730b39a7cf9843.json rename allure-report/data/test-cases/{37bcd45d30c593a7.json => c77ad5c459e90990.json} (67%) rename allure-report/data/test-cases/{61de742601660eab.json => c77cd6e80c5f42f2.json} (77%) delete mode 100644 allure-report/data/test-cases/c78900977fa836.json rename allure-report/data/test-cases/{94e103957a6e541c.json => c78ec33b6fe131a0.json} (80%) rename allure-report/data/test-cases/{59a630e9120dbf2c.json => c793fa14312a7752.json} (78%) create mode 100644 allure-report/data/test-cases/c7a57b49fa57ab27.json rename allure-report/data/test-cases/{c0a4502fedd41667.json => c8141b2abd713c90.json} (61%) create mode 100644 allure-report/data/test-cases/c8680b20dd7e19d5.json rename allure-report/data/test-cases/{8bbe3b647eb4bfeb.json => c8aec766397234af.json} (81%) create mode 100644 allure-report/data/test-cases/c8c57e21dd6fea81.json rename allure-report/data/test-cases/{fef2d68159e448ff.json => c8d9a4d573dbda2b.json} (54%) rename allure-report/data/test-cases/{4fc00e9c47abe8d0.json => c9095528631735ce.json} (82%) delete mode 100644 allure-report/data/test-cases/c91f2e2d1c4e5a72.json rename allure-report/data/test-cases/{8bc93f78736d3a0e.json => c93838d5eefff03d.json} (76%) rename allure-report/data/test-cases/{eac7f340d73193c2.json => c9b5322357724fe7.json} (82%) rename allure-report/data/test-cases/{bf7dba429c84fe69.json => c9c9a6a75f3a249f.json} (52%) rename allure-report/data/test-cases/{814ad2f745782ad7.json => c9fb9d40396e984d.json} (82%) create mode 100644 allure-report/data/test-cases/ca1eccae180a083e.json rename allure-report/data/test-cases/{d0246537274067fb.json => caa8571433eea386.json} (66%) rename allure-report/data/test-cases/{1230413e064883bb.json => cab8fd48239210db.json} (85%) create mode 100644 allure-report/data/test-cases/cab9c25314cf754.json create mode 100644 allure-report/data/test-cases/cac786da5d1fffa.json rename allure-report/data/test-cases/{65e9477143af3f55.json => caf9670d0e0965a0.json} (59%) create mode 100644 allure-report/data/test-cases/cb005e45e7b312b5.json delete mode 100644 allure-report/data/test-cases/cb1927945c40fc3.json rename allure-report/data/test-cases/{4ea092b3f85ebfcb.json => cb1c1fa1e4f21add.json} (88%) rename allure-report/data/test-cases/{7677af29e8a1671e.json => cb1f986a714e3e2e.json} (87%) rename allure-report/data/test-cases/{d64758690dcdce52.json => cb74d5229c88c838.json} (82%) delete mode 100644 allure-report/data/test-cases/cb7d8edff0d47cc5.json rename allure-report/data/test-cases/{cf8fa237e5fc3101.json => cb921d8c86204096.json} (78%) rename allure-report/data/test-cases/{78450b76b8629fe6.json => cbaa99833f802aa6.json} (79%) rename allure-report/data/test-cases/{e91954f86960f5cf.json => cbad1c121fb6a6fb.json} (76%) create mode 100644 allure-report/data/test-cases/cbb9443875889585.json rename allure-report/data/test-cases/{b8bd7a062c96fe90.json => cbf123a6aa236a3b.json} (85%) rename allure-report/data/test-cases/{abed1b9a0913387d.json => cc051f6a400be208.json} (77%) rename allure-report/data/test-cases/{6aba04a431b7fd70.json => cc2dceff6dc83502.json} (94%) rename allure-report/data/test-cases/{a8e7ed0b9e8a05d4.json => ccac52878bec48b6.json} (81%) rename allure-report/data/test-cases/{3b252f71e94d60c3.json => ccc1ac75f035d282.json} (81%) create mode 100644 allure-report/data/test-cases/ccc6c3ffee5b9f76.json rename allure-report/data/test-cases/{3604ad2531e10e0a.json => cd3e27d521a2ebd0.json} (78%) create mode 100644 allure-report/data/test-cases/cd56af2e749c4e8a.json rename allure-report/data/test-cases/{d5360156ef396b6e.json => cd72a87cc33096c5.json} (81%) rename allure-report/data/test-cases/{24df9329b634133a.json => cd858786e595fd45.json} (79%) rename allure-report/data/test-cases/{a20726936132e0f6.json => cde33394de2ec155.json} (84%) rename allure-report/data/test-cases/{20569c47774cf3c7.json => cde4151d7e05fca5.json} (76%) rename allure-report/data/test-cases/{a6592dc6717fe514.json => ce004e41100b8867.json} (57%) create mode 100644 allure-report/data/test-cases/ce6714fc18aff8ec.json rename allure-report/data/test-cases/{4d0958f9149b5791.json => ce842a0bacb75304.json} (92%) create mode 100644 allure-report/data/test-cases/cef1ed2aef537de7.json rename allure-report/data/test-cases/{4df9c941adb35f26.json => cfba8b314ab82273.json} (80%) create mode 100644 allure-report/data/test-cases/cfca05e0b975fd2.json create mode 100644 allure-report/data/test-cases/d06d6d8db945d4d7.json create mode 100644 allure-report/data/test-cases/d0b6dccad411741e.json rename allure-report/data/test-cases/{28847243d9b7f290.json => d0c0a10a6587c56e.json} (79%) create mode 100644 allure-report/data/test-cases/d0cba34627dad034.json rename allure-report/data/test-cases/{68235061ff0b1d1d.json => d10b96136002b581.json} (81%) rename allure-report/data/test-cases/{1a13c6a89153460b.json => d12e38fc8c8ec4dd.json} (71%) rename allure-report/data/test-cases/{d9e7bf55554cd705.json => d157034757bf8b88.json} (79%) rename allure-report/data/test-cases/{610300a29faa4ee4.json => d1be51368671f899.json} (83%) rename allure-report/data/test-cases/{5392fbee850dfcf4.json => d208c625c151e61d.json} (80%) create mode 100644 allure-report/data/test-cases/d20d06b45fb65ddb.json rename allure-report/data/test-cases/{3b2be2c8b8f3d0bb.json => d20f10e7196a7103.json} (84%) rename allure-report/data/test-cases/{c4f63c652fed664c.json => d21849f45071cee3.json} (77%) rename allure-report/data/test-cases/{95e7a9865f127b46.json => d23a28a2b97dc203.json} (83%) create mode 100644 allure-report/data/test-cases/d2acdc5e027859f4.json create mode 100644 allure-report/data/test-cases/d2af0876e7f45a7f.json rename allure-report/data/test-cases/{fcb92722bb71757b.json => d2b6a960777edb8f.json} (63%) create mode 100644 allure-report/data/test-cases/d3b84ca939222bc6.json rename allure-report/data/test-cases/{5b904804aa9a6e53.json => d4260955f91337ec.json} (81%) rename allure-report/data/test-cases/{631ed8ca3aead56c.json => d4597108775e2ebb.json} (63%) rename allure-report/data/test-cases/{faf400d308fb1d4e.json => d4662f23ff8e6620.json} (79%) rename allure-report/data/test-cases/{4eb91d777aea105a.json => d49eccd60ce84feb.json} (57%) rename allure-report/data/test-cases/{41668c3c4e1a677a.json => d4bec70d6611b3f1.json} (66%) rename allure-report/data/test-cases/{950acbfbefb81796.json => d4ccdeadb2c9dbf3.json} (78%) delete mode 100644 allure-report/data/test-cases/d4f29bba77fd180.json create mode 100644 allure-report/data/test-cases/d518579b8137712e.json rename allure-report/data/test-cases/{6bf2acd0a0db42e5.json => d532fafc0994a83d.json} (86%) rename allure-report/data/test-cases/{ef53249dd3798b49.json => d56b8598f52532d4.json} (56%) rename allure-report/data/test-cases/{ae5dc2ec4f03f9e5.json => d579d28da21d0458.json} (81%) create mode 100644 allure-report/data/test-cases/d5cb7590517b0cc1.json rename allure-report/data/test-cases/{577d9e765fb39849.json => d645ef6b4817b107.json} (50%) create mode 100644 allure-report/data/test-cases/d6520bfb9bc036e4.json rename allure-report/data/test-cases/{c793ab5339736af5.json => d74e6ece91df2759.json} (80%) rename allure-report/data/test-cases/{dfae17616fb702cf.json => d7c080fc06195b6c.json} (79%) rename allure-report/data/test-cases/{9246dbe4ecdc42ce.json => d88ebfa77f8bc285.json} (69%) rename allure-report/data/test-cases/{e55f716219844475.json => d8938caa254e2720.json} (80%) rename allure-report/data/test-cases/{f6681b778f42e33c.json => d8a647ffef20d33c.json} (77%) rename allure-report/data/test-cases/{73622414b649e45a.json => d8c3cab37b2e7dbb.json} (80%) rename allure-report/data/test-cases/{30977e1fdeed6f0a.json => d9035fa8f853a08a.json} (62%) rename allure-report/data/test-cases/{946a2bd47c8adfbc.json => d94530c5ab1a7ba8.json} (81%) rename allure-report/data/test-cases/{a39b53ea962a31f1.json => d95f3589be6b0bcb.json} (77%) rename allure-report/data/test-cases/{e0e01cfda157cf01.json => d9826ef645180f7d.json} (80%) create mode 100644 allure-report/data/test-cases/d9d827d0af3ba710.json rename allure-report/data/test-cases/{c31558e9c7981ac7.json => da018a416a2e5798.json} (61%) create mode 100644 allure-report/data/test-cases/da0fce94db2e25fb.json rename allure-report/data/test-cases/{8d85f39401914c16.json => da31e11488208aed.json} (74%) rename allure-report/data/test-cases/{bca9ba5488466979.json => da622740411a3e7a.json} (61%) create mode 100644 allure-report/data/test-cases/da6f4b236162247c.json create mode 100644 allure-report/data/test-cases/da807d1d651bf07b.json rename allure-report/data/test-cases/{7ed5e03fb846420f.json => da87c785a6ba7322.json} (73%) rename allure-report/data/test-cases/{197e00510d3eb166.json => daa21ce701ca0a19.json} (58%) rename allure-report/data/test-cases/{720b65d3a7d8ec34.json => db31ba951eab96a9.json} (69%) create mode 100644 allure-report/data/test-cases/db9b592f660c3c08.json rename allure-report/data/test-cases/{f801b2352cd357fc.json => dba029f7988869ef.json} (85%) rename allure-report/data/test-cases/{9e3c99258a0c64df.json => dbc901f56e1e91ea.json} (80%) create mode 100644 allure-report/data/test-cases/dbd543834c91eda6.json rename allure-report/data/test-cases/{e78a552d574aad16.json => dbe420147c1da53b.json} (83%) rename allure-report/data/test-cases/{1dd416b71393e4f8.json => dbfb622c1ebb235b.json} (87%) rename allure-report/data/test-cases/{ceb0c3e5ec48d975.json => dc885b646bda3346.json} (82%) delete mode 100644 allure-report/data/test-cases/dc89f010c8fc632.json rename allure-report/data/test-cases/{9dc0ca62f1db510f.json => dcbe3576bc7fc285.json} (81%) rename allure-report/data/test-cases/{dee6c3b3d0dc73e4.json => ddab479d47dfd717.json} (74%) delete mode 100644 allure-report/data/test-cases/de0a077377bec456.json rename allure-report/data/test-cases/{c4d9587a3ff2d229.json => de63ba79b87d23ab.json} (79%) rename allure-report/data/test-cases/{9b5105f2c1baa9ed.json => de7442e95e2bcada.json} (76%) rename allure-report/data/test-cases/{497e27a7f74365e8.json => de75cf0cb11d4a8a.json} (83%) rename allure-report/data/test-cases/{be4d78eb60a06aeb.json => defdbaa3c0a6eace.json} (81%) rename allure-report/data/test-cases/{31a691fa5a56c905.json => df6ed9e3e14c891a.json} (85%) delete mode 100644 allure-report/data/test-cases/df9a9f68276bbb84.json rename allure-report/data/test-cases/{13c5e35ef3c791a0.json => dfb2b5c458a3460e.json} (87%) rename allure-report/data/test-cases/{aea343086c8abd68.json => e032c4a87bedaab7.json} (78%) create mode 100644 allure-report/data/test-cases/e08a8a15da9b3ad.json delete mode 100644 allure-report/data/test-cases/e0d2f09c0da8121.json create mode 100644 allure-report/data/test-cases/e0dd8dfaed76aa75.json rename allure-report/data/test-cases/{a0013817978e9f1b.json => e15a7b3e54da206a.json} (79%) create mode 100644 allure-report/data/test-cases/e184ca1912266ffb.json rename allure-report/data/test-cases/{764219a087e938f.json => e186908da5e6d7c.json} (82%) rename allure-report/data/test-cases/{40a0fe54277654cc.json => e1aa1981a2c5874d.json} (78%) rename allure-report/data/test-cases/{2da97da2ac2c9bbd.json => e1b199f4400527d4.json} (79%) rename allure-report/data/test-cases/{a7599be0f5459a3d.json => e1fc0b63790bda69.json} (81%) create mode 100644 allure-report/data/test-cases/e21d0927a22c6c46.json rename allure-report/data/test-cases/{1938d829429abf54.json => e28dd76561e769e2.json} (75%) rename allure-report/data/test-cases/{ed0b0c9c45304a0b.json => e298eeaddede77ad.json} (86%) delete mode 100644 allure-report/data/test-cases/e2a8e239adf783da.json rename allure-report/data/test-cases/{9e71e34228180c1c.json => e3e2f391aab3cb96.json} (59%) rename allure-report/data/test-cases/{d493d526198a7a0a.json => e417d815465280e9.json} (80%) rename allure-report/data/test-cases/{f5c9e062133dbbbb.json => e427ef86cabe9ddd.json} (57%) create mode 100644 allure-report/data/test-cases/e42b69525abdede6.json create mode 100644 allure-report/data/test-cases/e4473b95f40f5c92.json rename allure-report/data/test-cases/{c03eb686eb3e5a89.json => e463bf406b88f537.json} (72%) rename allure-report/data/test-cases/{582aa68275dac68e.json => e49d46057090e83e.json} (75%) rename allure-report/data/test-cases/{1531ff5e4d5380e4.json => e50290ceef277be1.json} (81%) rename allure-report/data/test-cases/{89d5ee585c13bf38.json => e50cfef6d8bb4879.json} (64%) create mode 100644 allure-report/data/test-cases/e578dac1473f78ec.json delete mode 100644 allure-report/data/test-cases/e5a7c04cf0e6c2f9.json rename allure-report/data/test-cases/{6bab07231bfb8a25.json => e5feb33263ee430e.json} (64%) rename allure-report/data/test-cases/{49044c1c42d54a81.json => e60399983521438f.json} (73%) rename allure-report/data/test-cases/{68ad711bfb950e6e.json => e64a446631b3c9dc.json} (79%) rename allure-report/data/test-cases/{4eaed4684cfaee8f.json => e697d79f20198964.json} (80%) create mode 100644 allure-report/data/test-cases/e6b67890527d37e6.json rename allure-report/data/test-cases/{8782c11be4532248.json => e723e7f00f564943.json} (80%) create mode 100644 allure-report/data/test-cases/e7ac97a954c5e722.json rename allure-report/data/test-cases/{5e2354482de170d3.json => e7d0a39712ee3eee.json} (70%) rename allure-report/data/test-cases/{ab3687d99fed99d0.json => e7e1c54963ba7bf7.json} (65%) rename allure-report/data/test-cases/{229dd074fbcb6ca1.json => e83e1a2466fbcf0b.json} (79%) rename allure-report/data/test-cases/{843678da53c540e6.json => e897eac5693df65e.json} (81%) rename allure-report/data/test-cases/{c244be500ebdf146.json => e8a2735e9df336cb.json} (60%) delete mode 100644 allure-report/data/test-cases/e8a3e54ef5fe796f.json create mode 100644 allure-report/data/test-cases/e92026f4174cc7e.json create mode 100644 allure-report/data/test-cases/e95ba363003599d.json create mode 100644 allure-report/data/test-cases/e96aee50481acdd6.json rename allure-report/data/test-cases/{ab7f75990cdffa76.json => e97e117a0c1b5372.json} (79%) rename allure-report/data/test-cases/{f48dcf9628fe90ff.json => e9c0a9198a3e1b18.json} (66%) create mode 100644 allure-report/data/test-cases/ea50e73cff32206e.json delete mode 100644 allure-report/data/test-cases/ea636867f014d21.json rename allure-report/data/test-cases/{2fb895d93acc0bab.json => ea6a7fadbe04578a.json} (85%) create mode 100644 allure-report/data/test-cases/ea83ea1df97a1dc9.json rename allure-report/data/test-cases/{d4d3736adb97380b.json => ea9306ba22046ff3.json} (73%) create mode 100644 allure-report/data/test-cases/ead644ae8ee031c3.json rename allure-report/data/test-cases/{4f999b555dd62215.json => eae8b41d97e1bc2d.json} (79%) rename allure-report/data/test-cases/{706d67120123862f.json => eb28edf9a9f50007.json} (92%) rename allure-report/data/test-cases/{a618a1e47f6e349d.json => eb6afac49e3912b1.json} (53%) rename allure-report/data/test-cases/{47f8dbee3cb403d3.json => eb79826fc1ce02b1.json} (84%) create mode 100644 allure-report/data/test-cases/eb8f6057b9598daa.json create mode 100644 allure-report/data/test-cases/eb94d03877c16bb4.json rename allure-report/data/test-cases/{60d4140245a65d5.json => ebdfd3783858102.json} (61%) rename allure-report/data/test-cases/{ee7ac80cd7bb8f8d.json => ebf90564de7fa557.json} (93%) create mode 100644 allure-report/data/test-cases/ec0c7de9a70a5f5e.json rename allure-report/data/test-cases/{197e80b267cccc2b.json => ec1f79d5effe1aa9.json} (74%) create mode 100644 allure-report/data/test-cases/ec58e61448a9c6a8.json create mode 100644 allure-report/data/test-cases/ecd778da0cbd3ef.json create mode 100644 allure-report/data/test-cases/ece5bd16ef8bbe52.json rename allure-report/data/test-cases/{be50565df8dfb0ab.json => ed2f3c923fde4413.json} (58%) rename allure-report/data/test-cases/{9c39905963998c1b.json => ed375a568ef53727.json} (59%) rename allure-report/data/test-cases/{46de5298b06a2e8f.json => ed660ef652aeab86.json} (75%) rename allure-report/data/test-cases/{65bb39f46c25941f.json => ed7d0b3c14fd80c8.json} (77%) rename allure-report/data/test-cases/{df5176bbed48ed91.json => edad07e580a5e4ff.json} (82%) delete mode 100644 allure-report/data/test-cases/ee07ce647fa212f.json rename allure-report/data/test-cases/{ebea1136229ab9bf.json => ee166a73f40d3c20.json} (79%) create mode 100644 allure-report/data/test-cases/ee3705e6f9b5a9fb.json create mode 100644 allure-report/data/test-cases/ee5910cfe65a88ee.json rename allure-report/data/test-cases/{a586415c7c751146.json => ee69e9682e62678d.json} (81%) rename allure-report/data/test-cases/{625a87864855843c.json => ee6c548e8326102a.json} (77%) rename allure-report/data/test-cases/{b98e581eac70f265.json => ee7921cf820a84c7.json} (88%) rename allure-report/data/test-cases/{1065b8b44c0afc6f.json => eeeab72dd7b98f53.json} (85%) delete mode 100644 allure-report/data/test-cases/ef2b00c02db84592.json rename allure-report/data/test-cases/{cad7274be200bf39.json => ef31dfc3c5e1eba5.json} (76%) rename allure-report/data/test-cases/{8bc712dc2d3a7199.json => ef78b96af32d8f44.json} (63%) rename allure-report/data/test-cases/{965e1d563752b7d3.json => efb129a92346c1e2.json} (79%) rename allure-report/data/test-cases/{e76c8429b652e3f0.json => efb8b59d749a7701.json} (82%) rename allure-report/data/test-cases/{ed5a184ed941933a.json => f0006f98d015ae52.json} (75%) rename allure-report/data/test-cases/{b28ff46b20790be2.json => f0137718eeb8b928.json} (81%) create mode 100644 allure-report/data/test-cases/f06328bb4646abe9.json rename allure-report/data/test-cases/{354cda6601a7cded.json => f06c10d847061aa8.json} (66%) rename allure-report/data/test-cases/{111dbc365b1f3e78.json => f0823718dfb5375c.json} (83%) create mode 100644 allure-report/data/test-cases/f0b0565c8c046b9.json create mode 100644 allure-report/data/test-cases/f0be518507eb4be5.json create mode 100644 allure-report/data/test-cases/f0d7d5d837d1a81d.json rename allure-report/data/test-cases/{95924b9d92f1ced5.json => f1a12ce167e16758.json} (76%) delete mode 100644 allure-report/data/test-cases/f20c6ac583494462.json rename allure-report/data/test-cases/{2be24f9b66669d76.json => f234151114f72d73.json} (61%) rename allure-report/data/test-cases/{7d3b7c7449825e20.json => f293182f40cb67e1.json} (73%) rename allure-report/data/test-cases/{30ac3ffad3316fea.json => f2960499936046d9.json} (79%) create mode 100644 allure-report/data/test-cases/f2a1a9d494a0859.json rename allure-report/data/test-cases/{2e0eb113649e95e6.json => f2bd505717a279f1.json} (86%) rename allure-report/data/test-cases/{6226ef3ddb316aa7.json => f2e80dca05a524c5.json} (52%) rename allure-report/data/test-cases/{aa8525de66192fb3.json => f30c1ecba64a2387.json} (86%) create mode 100644 allure-report/data/test-cases/f39847014d01db85.json rename allure-report/data/test-cases/{e41edf94f198f2c7.json => f3b126d8812a5b41.json} (85%) create mode 100644 allure-report/data/test-cases/f41e10c3a1cb906c.json rename allure-report/data/test-cases/{7eedfccbd9267527.json => f44e27fb1ad70c92.json} (77%) create mode 100644 allure-report/data/test-cases/f4915582d5908ed3.json rename allure-report/data/test-cases/{43c9c9efb1c04251.json => f4b278a94a1e847f.json} (84%) create mode 100644 allure-report/data/test-cases/f4e7ccb7c6ccb848.json create mode 100644 allure-report/data/test-cases/f4f1b439f55706.json rename allure-report/data/test-cases/{5bc730ff95f1c205.json => f50250db1c4c6a23.json} (79%) rename allure-report/data/test-cases/{63ceea7fe946ff07.json => f5045863352b0844.json} (91%) create mode 100644 allure-report/data/test-cases/f51b45f6ebc18bdf.json rename allure-report/data/test-cases/{5908d364b75f844e.json => f52796969ad8c6a8.json} (80%) rename allure-report/data/test-cases/{ae4ebdaea3850cc0.json => f530c22a860ae687.json} (78%) create mode 100644 allure-report/data/test-cases/f55783c4fa90131e.json create mode 100644 allure-report/data/test-cases/f56ae5fa4f278c43.json create mode 100644 allure-report/data/test-cases/f5898a8468d0cd4.json rename allure-report/data/test-cases/{f2a7bab28da55269.json => f5f644a4f4820d20.json} (76%) rename allure-report/data/test-cases/{bb6e602a844f0715.json => f60f63436b65a2b8.json} (83%) rename allure-report/data/test-cases/{4acb1c573ef8b7bb.json => f645f4897564ea6f.json} (86%) rename allure-report/data/test-cases/{555a795f08de5e6c.json => f6a5ab1c4ff51693.json} (81%) create mode 100644 allure-report/data/test-cases/f70eefcf6fb13da.json create mode 100644 allure-report/data/test-cases/f74116cee1d73fd7.json create mode 100644 allure-report/data/test-cases/f74a1a4c19be5344.json rename allure-report/data/test-cases/{76b07a3b0b784bd3.json => f798d0ae3c0161ae.json} (81%) create mode 100644 allure-report/data/test-cases/f7ab664600a360e4.json rename allure-report/data/test-cases/{6566372edd2dc54c.json => f7d62cc3e2943023.json} (94%) rename allure-report/data/test-cases/{5c0c21f2226a901c.json => f7d85b85e5647233.json} (87%) create mode 100644 allure-report/data/test-cases/f807c10786110eac.json rename allure-report/data/test-cases/{5bf735ebb9d90923.json => f8378587d25efdca.json} (59%) create mode 100644 allure-report/data/test-cases/f83b86d7cbc0ffa1.json rename allure-report/data/test-cases/{12c07b407ce072f5.json => f83dd9e8b48c6bab.json} (80%) rename allure-report/data/test-cases/{a5b469ea69ba375b.json => f85747ab66ba1ea5.json} (59%) create mode 100644 allure-report/data/test-cases/f8789af2e0cead9e.json create mode 100644 allure-report/data/test-cases/f87e2580dd045df5.json create mode 100644 allure-report/data/test-cases/f8b721dfa4278fea.json rename allure-report/data/test-cases/{f0cf41ee7ec62257.json => f8f168b037580997.json} (83%) rename allure-report/data/test-cases/{26a447cb7c15cb4e.json => f8f5ce581d6aa123.json} (79%) create mode 100644 allure-report/data/test-cases/f909236d8dbf12db.json rename allure-report/data/test-cases/{d9bbc705106eff98.json => f997fb8bda584215.json} (79%) rename allure-report/data/test-cases/{ef2ebe964f1d2f5f.json => f9dcb27f6a2f5731.json} (94%) rename allure-report/data/test-cases/{5c657b72ebb12427.json => f9e3772c62ee9c71.json} (81%) rename allure-report/data/test-cases/{99bd3e79aeea5636.json => fa6ca2a58e326e7c.json} (67%) rename allure-report/data/test-cases/{139cceadff83cc0d.json => fa7a68ec7ece512f.json} (82%) rename allure-report/data/test-cases/{296f86e34803d6c1.json => fa8c3ecdf2af6d24.json} (78%) create mode 100644 allure-report/data/test-cases/fb3c794e959e544.json rename allure-report/data/test-cases/{3714d7b27c33cf44.json => fb5c1665d86892a0.json} (83%) delete mode 100644 allure-report/data/test-cases/fb64f9c33c11676a.json create mode 100644 allure-report/data/test-cases/fb676676627eae5f.json rename allure-report/data/test-cases/{7c6af0e0a129f035.json => fbd2d46d837906e7.json} (67%) rename allure-report/data/test-cases/{d7ea74c17659aeca.json => fbe0584170aaf70b.json} (81%) rename allure-report/data/test-cases/{168ffd09c766442f.json => fc29d3ec888c78ca.json} (80%) rename allure-report/data/test-cases/{b0cc123728fa2f2d.json => fc354bf003c2f263.json} (63%) rename allure-report/data/test-cases/{b1056dd0bc1f2f4e.json => fc440329cf5fac04.json} (63%) rename allure-report/data/test-cases/{bdd8b1b0bd82d5b1.json => fc74ffe2a6fa764b.json} (50%) rename allure-report/data/test-cases/{ea018bd2743d350e.json => fca8b44cee8413d5.json} (79%) rename allure-report/data/test-cases/{14829aa4ce177c0a.json => fcdf7618a6de4bb6.json} (65%) rename allure-report/data/test-cases/{48fa5f91e3478c29.json => fd479ce41ec7634c.json} (64%) rename allure-report/data/test-cases/{a6d26dfb90ab4062.json => fd6070318b36fb6f.json} (69%) rename allure-report/data/test-cases/{1a204aa873a93d86.json => fe6da9468168286a.json} (79%) rename allure-report/data/test-cases/{842b955d145895ca.json => feb720678835be31.json} (81%) rename allure-report/data/test-cases/{cb9f6d4c2aaf90e3.json => fee32280a5b8d3da.json} (66%) create mode 100644 allure-report/data/test-cases/fef6b9be2b6df65c.json rename allure-report/data/test-cases/{acf18a2788645a5a.json => ff4e61f1c87a50e9.json} (79%) rename allure-report/data/test-cases/{a98592d8e6c7fba2.json => ffafa17ec9b60c3d.json} (60%) rename allure-report/data/test-cases/{210d6cbbe1051e7b.json => ffb404aff6d39348.json} (80%) create mode 100644 allure-report/data/test-cases/ffb8e8f4eed50d14.json diff --git a/allure-report/data/attachments/251fc94fc6c7a32c.txt b/allure-report/data/attachments/109442e0bd8a1bf7.txt similarity index 100% rename from allure-report/data/attachments/251fc94fc6c7a32c.txt rename to allure-report/data/attachments/109442e0bd8a1bf7.txt diff --git a/allure-report/data/attachments/4d30848274c8ad1.txt b/allure-report/data/attachments/109a63364b1709cb.txt similarity index 100% rename from allure-report/data/attachments/4d30848274c8ad1.txt rename to allure-report/data/attachments/109a63364b1709cb.txt diff --git a/allure-report/data/attachments/5d705772211817a.txt b/allure-report/data/attachments/10a01d4023ecf988.txt similarity index 100% rename from allure-report/data/attachments/5d705772211817a.txt rename to allure-report/data/attachments/10a01d4023ecf988.txt diff --git a/allure-report/data/attachments/3aa04a43be2f48f8.txt b/allure-report/data/attachments/10ab1851bf24b8d6.txt similarity index 100% rename from allure-report/data/attachments/3aa04a43be2f48f8.txt rename to allure-report/data/attachments/10ab1851bf24b8d6.txt diff --git a/allure-report/data/attachments/2857c06d429f0757.txt b/allure-report/data/attachments/11f397a799a36e46.txt similarity index 100% rename from allure-report/data/attachments/2857c06d429f0757.txt rename to allure-report/data/attachments/11f397a799a36e46.txt diff --git a/allure-report/data/attachments/70a5653f29871a87.txt b/allure-report/data/attachments/125be537d5adaaca.txt similarity index 100% rename from allure-report/data/attachments/70a5653f29871a87.txt rename to allure-report/data/attachments/125be537d5adaaca.txt diff --git a/allure-report/data/attachments/13227bd500cb42e3.txt b/allure-report/data/attachments/12f8c2c15d255220.txt similarity index 100% rename from allure-report/data/attachments/13227bd500cb42e3.txt rename to allure-report/data/attachments/12f8c2c15d255220.txt diff --git a/allure-report/data/attachments/3642f149df538341.txt b/allure-report/data/attachments/1317b7c3ac9b35f3.txt similarity index 100% rename from allure-report/data/attachments/3642f149df538341.txt rename to allure-report/data/attachments/1317b7c3ac9b35f3.txt diff --git a/allure-report/data/attachments/6ccbedecdc10bf7c.txt b/allure-report/data/attachments/137f1698764a14f9.txt similarity index 100% rename from allure-report/data/attachments/6ccbedecdc10bf7c.txt rename to allure-report/data/attachments/137f1698764a14f9.txt diff --git a/allure-report/data/attachments/41d5484e0bc70d7d.txt b/allure-report/data/attachments/1396f0b44562fb.txt similarity index 100% rename from allure-report/data/attachments/41d5484e0bc70d7d.txt rename to allure-report/data/attachments/1396f0b44562fb.txt diff --git a/allure-report/data/attachments/6d437f4331d47546.txt b/allure-report/data/attachments/1432622f91e93164.txt similarity index 100% rename from allure-report/data/attachments/6d437f4331d47546.txt rename to allure-report/data/attachments/1432622f91e93164.txt diff --git a/allure-report/data/attachments/796b2b673c5d0f8b.txt b/allure-report/data/attachments/14a8f582bcfd592e.txt similarity index 100% rename from allure-report/data/attachments/796b2b673c5d0f8b.txt rename to allure-report/data/attachments/14a8f582bcfd592e.txt diff --git a/allure-report/data/attachments/2a2e64e7212768ad.txt b/allure-report/data/attachments/14b7835dfcf5573.txt similarity index 100% rename from allure-report/data/attachments/2a2e64e7212768ad.txt rename to allure-report/data/attachments/14b7835dfcf5573.txt diff --git a/allure-report/data/attachments/41df37e97a182fa4.txt b/allure-report/data/attachments/14eb68b01bad174e.txt similarity index 100% rename from allure-report/data/attachments/41df37e97a182fa4.txt rename to allure-report/data/attachments/14eb68b01bad174e.txt diff --git a/allure-report/data/attachments/40d2195f3173474a.txt b/allure-report/data/attachments/156bd3bd78bc6da3.txt similarity index 100% rename from allure-report/data/attachments/40d2195f3173474a.txt rename to allure-report/data/attachments/156bd3bd78bc6da3.txt diff --git a/allure-report/data/attachments/a8645f795d532c99.txt b/allure-report/data/attachments/15ba330274e4476f.txt similarity index 100% rename from allure-report/data/attachments/a8645f795d532c99.txt rename to allure-report/data/attachments/15ba330274e4476f.txt diff --git a/allure-report/data/attachments/2731ba669f341d4.txt b/allure-report/data/attachments/160b559167718fe9.txt similarity index 100% rename from allure-report/data/attachments/2731ba669f341d4.txt rename to allure-report/data/attachments/160b559167718fe9.txt diff --git a/allure-report/data/attachments/8026ef3ff023cc9a.txt b/allure-report/data/attachments/170e0e9c6fcebe10.txt similarity index 100% rename from allure-report/data/attachments/8026ef3ff023cc9a.txt rename to allure-report/data/attachments/170e0e9c6fcebe10.txt diff --git a/allure-report/data/attachments/cff9f69ec70ee0f7.txt b/allure-report/data/attachments/1711c955ae8ed0a7.txt similarity index 100% rename from allure-report/data/attachments/cff9f69ec70ee0f7.txt rename to allure-report/data/attachments/1711c955ae8ed0a7.txt diff --git a/allure-report/data/attachments/9fbeafabb75260d1.txt b/allure-report/data/attachments/1731dec9bd704732.txt similarity index 100% rename from allure-report/data/attachments/9fbeafabb75260d1.txt rename to allure-report/data/attachments/1731dec9bd704732.txt diff --git a/allure-report/data/attachments/a2484027e285a197.txt b/allure-report/data/attachments/173c8b3804a43ebd.txt similarity index 100% rename from allure-report/data/attachments/a2484027e285a197.txt rename to allure-report/data/attachments/173c8b3804a43ebd.txt diff --git a/allure-report/data/attachments/27ebdb1cdb347243.txt b/allure-report/data/attachments/1740535c6865a94c.txt similarity index 100% rename from allure-report/data/attachments/27ebdb1cdb347243.txt rename to allure-report/data/attachments/1740535c6865a94c.txt diff --git a/allure-report/data/attachments/491da570f7a6ee0b.txt b/allure-report/data/attachments/177ff12f105ad4fb.txt similarity index 100% rename from allure-report/data/attachments/491da570f7a6ee0b.txt rename to allure-report/data/attachments/177ff12f105ad4fb.txt diff --git a/allure-report/data/attachments/4e1d630f27c230cc.txt b/allure-report/data/attachments/178114092f1d89bc.txt similarity index 100% rename from allure-report/data/attachments/4e1d630f27c230cc.txt rename to allure-report/data/attachments/178114092f1d89bc.txt diff --git a/allure-report/data/attachments/250e2e008fa1f7b7.txt b/allure-report/data/attachments/17b2af932389b810.txt similarity index 100% rename from allure-report/data/attachments/250e2e008fa1f7b7.txt rename to allure-report/data/attachments/17b2af932389b810.txt diff --git a/allure-report/data/attachments/3934a31f83c6b392.txt b/allure-report/data/attachments/186311649e77f5c8.txt similarity index 100% rename from allure-report/data/attachments/3934a31f83c6b392.txt rename to allure-report/data/attachments/186311649e77f5c8.txt diff --git a/allure-report/data/attachments/943e8734629abe38.txt b/allure-report/data/attachments/189cde1d0b42e48e.txt similarity index 100% rename from allure-report/data/attachments/943e8734629abe38.txt rename to allure-report/data/attachments/189cde1d0b42e48e.txt diff --git a/allure-report/data/attachments/5932d90eab3398ae.txt b/allure-report/data/attachments/18d6da20137be417.txt similarity index 100% rename from allure-report/data/attachments/5932d90eab3398ae.txt rename to allure-report/data/attachments/18d6da20137be417.txt diff --git a/allure-report/data/attachments/6c8cae3bc3627567.txt b/allure-report/data/attachments/199bb2c039260176.txt similarity index 100% rename from allure-report/data/attachments/6c8cae3bc3627567.txt rename to allure-report/data/attachments/199bb2c039260176.txt diff --git a/allure-report/data/attachments/18e75387bd3b0160.txt b/allure-report/data/attachments/19fe4b4b294825d2.txt similarity index 100% rename from allure-report/data/attachments/18e75387bd3b0160.txt rename to allure-report/data/attachments/19fe4b4b294825d2.txt diff --git a/allure-report/data/attachments/27790d440082a497.txt b/allure-report/data/attachments/1a54a6c3a38e3980.txt similarity index 100% rename from allure-report/data/attachments/27790d440082a497.txt rename to allure-report/data/attachments/1a54a6c3a38e3980.txt diff --git a/allure-report/data/attachments/113f10167539853c.txt b/allure-report/data/attachments/1a639fee286babca.txt similarity index 100% rename from allure-report/data/attachments/113f10167539853c.txt rename to allure-report/data/attachments/1a639fee286babca.txt diff --git a/allure-report/data/attachments/653d98a4ef66ecba.txt b/allure-report/data/attachments/1abf48c153a1a17.txt similarity index 100% rename from allure-report/data/attachments/653d98a4ef66ecba.txt rename to allure-report/data/attachments/1abf48c153a1a17.txt diff --git a/allure-report/data/attachments/4f2668e4eadc4184.txt b/allure-report/data/attachments/1b39872f125fb2ef.txt similarity index 100% rename from allure-report/data/attachments/4f2668e4eadc4184.txt rename to allure-report/data/attachments/1b39872f125fb2ef.txt diff --git a/allure-report/data/attachments/763b805ca97b9cb4.txt b/allure-report/data/attachments/1bbf8f89249006b7.txt similarity index 100% rename from allure-report/data/attachments/763b805ca97b9cb4.txt rename to allure-report/data/attachments/1bbf8f89249006b7.txt diff --git a/allure-report/data/attachments/3fda8fe35c793420.txt b/allure-report/data/attachments/1d9f9656a94c5b68.txt similarity index 100% rename from allure-report/data/attachments/3fda8fe35c793420.txt rename to allure-report/data/attachments/1d9f9656a94c5b68.txt diff --git a/allure-report/data/attachments/716034871f152875.txt b/allure-report/data/attachments/1ded455ca81b768f.txt similarity index 100% rename from allure-report/data/attachments/716034871f152875.txt rename to allure-report/data/attachments/1ded455ca81b768f.txt diff --git a/allure-report/data/attachments/f9be06237574ec64.txt b/allure-report/data/attachments/1f0ce1b1fd5fc576.txt similarity index 100% rename from allure-report/data/attachments/f9be06237574ec64.txt rename to allure-report/data/attachments/1f0ce1b1fd5fc576.txt diff --git a/allure-report/data/attachments/ba852967ab446eeb.txt b/allure-report/data/attachments/1f2d499684f15ad9.txt similarity index 100% rename from allure-report/data/attachments/ba852967ab446eeb.txt rename to allure-report/data/attachments/1f2d499684f15ad9.txt diff --git a/allure-report/data/attachments/2f8e2ebe7761508b.txt b/allure-report/data/attachments/1f432fb3d00b5421.txt similarity index 100% rename from allure-report/data/attachments/2f8e2ebe7761508b.txt rename to allure-report/data/attachments/1f432fb3d00b5421.txt diff --git a/allure-report/data/attachments/44f1e11e2ff687a2.txt b/allure-report/data/attachments/1f751d5dc8f66594.txt similarity index 100% rename from allure-report/data/attachments/44f1e11e2ff687a2.txt rename to allure-report/data/attachments/1f751d5dc8f66594.txt diff --git a/allure-report/data/attachments/e707854c25108dd3.txt b/allure-report/data/attachments/20620e6bfba57810.txt similarity index 100% rename from allure-report/data/attachments/e707854c25108dd3.txt rename to allure-report/data/attachments/20620e6bfba57810.txt diff --git a/allure-report/data/attachments/f135592d4f270e5c.txt b/allure-report/data/attachments/2096e2c2c39f7dc3.txt similarity index 100% rename from allure-report/data/attachments/f135592d4f270e5c.txt rename to allure-report/data/attachments/2096e2c2c39f7dc3.txt diff --git a/allure-report/data/attachments/6d177fc91cdd3978.txt b/allure-report/data/attachments/222c482e7768a801.txt similarity index 100% rename from allure-report/data/attachments/6d177fc91cdd3978.txt rename to allure-report/data/attachments/222c482e7768a801.txt diff --git a/allure-report/data/attachments/85c42dfa3ebb2236.txt b/allure-report/data/attachments/23973121b39ff210.txt similarity index 100% rename from allure-report/data/attachments/85c42dfa3ebb2236.txt rename to allure-report/data/attachments/23973121b39ff210.txt diff --git a/allure-report/data/attachments/678cbfc79956849c.txt b/allure-report/data/attachments/24199b96cc9c8ec3.txt similarity index 100% rename from allure-report/data/attachments/678cbfc79956849c.txt rename to allure-report/data/attachments/24199b96cc9c8ec3.txt diff --git a/allure-report/data/attachments/ef03ba760fe885c0.txt b/allure-report/data/attachments/24f89618104eb19b.txt similarity index 100% rename from allure-report/data/attachments/ef03ba760fe885c0.txt rename to allure-report/data/attachments/24f89618104eb19b.txt diff --git a/allure-report/data/attachments/eaf9f3a704742209.txt b/allure-report/data/attachments/2519fe596c9290b5.txt similarity index 100% rename from allure-report/data/attachments/eaf9f3a704742209.txt rename to allure-report/data/attachments/2519fe596c9290b5.txt diff --git a/allure-report/data/attachments/6003c650ea768633.txt b/allure-report/data/attachments/2589fdae4962b015.txt similarity index 100% rename from allure-report/data/attachments/6003c650ea768633.txt rename to allure-report/data/attachments/2589fdae4962b015.txt diff --git a/allure-report/data/attachments/2d724952cd20b6e1.txt b/allure-report/data/attachments/25bffeb92bc30f28.txt similarity index 100% rename from allure-report/data/attachments/2d724952cd20b6e1.txt rename to allure-report/data/attachments/25bffeb92bc30f28.txt diff --git a/allure-report/data/attachments/3b202dd3c9afa278.txt b/allure-report/data/attachments/261dd410d8763d0c.txt similarity index 100% rename from allure-report/data/attachments/3b202dd3c9afa278.txt rename to allure-report/data/attachments/261dd410d8763d0c.txt diff --git a/allure-report/data/attachments/50fb258de88c9004.txt b/allure-report/data/attachments/269b686a0975db0c.txt similarity index 100% rename from allure-report/data/attachments/50fb258de88c9004.txt rename to allure-report/data/attachments/269b686a0975db0c.txt diff --git a/allure-report/data/attachments/d07a2236fba5201a.txt b/allure-report/data/attachments/26a3b25de30a9620.txt similarity index 100% rename from allure-report/data/attachments/d07a2236fba5201a.txt rename to allure-report/data/attachments/26a3b25de30a9620.txt diff --git a/allure-report/data/attachments/15093916dbf3d716.txt b/allure-report/data/attachments/27bed6305313af96.txt similarity index 100% rename from allure-report/data/attachments/15093916dbf3d716.txt rename to allure-report/data/attachments/27bed6305313af96.txt diff --git a/allure-report/data/attachments/be09c92a6fe0ac60.txt b/allure-report/data/attachments/28132f88f00a1308.txt similarity index 100% rename from allure-report/data/attachments/be09c92a6fe0ac60.txt rename to allure-report/data/attachments/28132f88f00a1308.txt diff --git a/allure-report/data/attachments/358b4a5251243888.txt b/allure-report/data/attachments/290c988fd03516ad.txt similarity index 100% rename from allure-report/data/attachments/358b4a5251243888.txt rename to allure-report/data/attachments/290c988fd03516ad.txt diff --git a/allure-report/data/attachments/38035331d2572599.txt b/allure-report/data/attachments/29d2aeece76c7fe3.txt similarity index 100% rename from allure-report/data/attachments/38035331d2572599.txt rename to allure-report/data/attachments/29d2aeece76c7fe3.txt diff --git a/allure-report/data/attachments/3fb645b301593c3.txt b/allure-report/data/attachments/2a05a507f0806707.txt similarity index 100% rename from allure-report/data/attachments/3fb645b301593c3.txt rename to allure-report/data/attachments/2a05a507f0806707.txt diff --git a/allure-report/data/attachments/74cdc928e034d6b3.txt b/allure-report/data/attachments/2c7e8a807d9268ca.txt similarity index 100% rename from allure-report/data/attachments/74cdc928e034d6b3.txt rename to allure-report/data/attachments/2c7e8a807d9268ca.txt diff --git a/allure-report/data/attachments/406f6d7cefafc12f.txt b/allure-report/data/attachments/2dd32f5139296bc1.txt similarity index 100% rename from allure-report/data/attachments/406f6d7cefafc12f.txt rename to allure-report/data/attachments/2dd32f5139296bc1.txt diff --git a/allure-report/data/attachments/45607bc70f60caca.txt b/allure-report/data/attachments/2fdd029d73a8807a.txt similarity index 100% rename from allure-report/data/attachments/45607bc70f60caca.txt rename to allure-report/data/attachments/2fdd029d73a8807a.txt diff --git a/allure-report/data/attachments/1ce4c0edbbe04f9e.txt b/allure-report/data/attachments/301d26c401259420.txt similarity index 100% rename from allure-report/data/attachments/1ce4c0edbbe04f9e.txt rename to allure-report/data/attachments/301d26c401259420.txt diff --git a/allure-report/data/attachments/20671bf346c43317.txt b/allure-report/data/attachments/3042b984a74017cb.txt similarity index 100% rename from allure-report/data/attachments/20671bf346c43317.txt rename to allure-report/data/attachments/3042b984a74017cb.txt diff --git a/allure-report/data/attachments/e6e24d1199424ffc.txt b/allure-report/data/attachments/308712033617631b.txt similarity index 100% rename from allure-report/data/attachments/e6e24d1199424ffc.txt rename to allure-report/data/attachments/308712033617631b.txt diff --git a/allure-report/data/attachments/f146e27128e108d6.txt b/allure-report/data/attachments/311050da7cc4ba1d.txt similarity index 100% rename from allure-report/data/attachments/f146e27128e108d6.txt rename to allure-report/data/attachments/311050da7cc4ba1d.txt diff --git a/allure-report/data/attachments/b3d868139d71d5f7.txt b/allure-report/data/attachments/31feec1cbe8e86eb.txt similarity index 100% rename from allure-report/data/attachments/b3d868139d71d5f7.txt rename to allure-report/data/attachments/31feec1cbe8e86eb.txt diff --git a/allure-report/data/attachments/2de6534e84498685.txt b/allure-report/data/attachments/3253e81015ef9292.txt similarity index 100% rename from allure-report/data/attachments/2de6534e84498685.txt rename to allure-report/data/attachments/3253e81015ef9292.txt diff --git a/allure-report/data/attachments/8fe17348ea95e36a.txt b/allure-report/data/attachments/330cef54d490c73e.txt similarity index 100% rename from allure-report/data/attachments/8fe17348ea95e36a.txt rename to allure-report/data/attachments/330cef54d490c73e.txt diff --git a/allure-report/data/attachments/53f4bbebe56fedf8.txt b/allure-report/data/attachments/3399e5458489501f.txt similarity index 100% rename from allure-report/data/attachments/53f4bbebe56fedf8.txt rename to allure-report/data/attachments/3399e5458489501f.txt diff --git a/allure-report/data/attachments/f8693f25c4ee9e10.txt b/allure-report/data/attachments/348342fa3ca36cd4.txt similarity index 100% rename from allure-report/data/attachments/f8693f25c4ee9e10.txt rename to allure-report/data/attachments/348342fa3ca36cd4.txt diff --git a/allure-report/data/attachments/b668f07fa0a63017.txt b/allure-report/data/attachments/34970ab91dd4eb6c.txt similarity index 100% rename from allure-report/data/attachments/b668f07fa0a63017.txt rename to allure-report/data/attachments/34970ab91dd4eb6c.txt diff --git a/allure-report/data/attachments/96d9a9c4b2d76831.txt b/allure-report/data/attachments/3594eabb545be088.txt similarity index 100% rename from allure-report/data/attachments/96d9a9c4b2d76831.txt rename to allure-report/data/attachments/3594eabb545be088.txt diff --git a/allure-report/data/attachments/26e6b6f5238c5b93.txt b/allure-report/data/attachments/3608f48d89e26964.txt similarity index 100% rename from allure-report/data/attachments/26e6b6f5238c5b93.txt rename to allure-report/data/attachments/3608f48d89e26964.txt diff --git a/allure-report/data/attachments/214be7d831eff2b3.txt b/allure-report/data/attachments/36d68ec5646bcd8f.txt similarity index 100% rename from allure-report/data/attachments/214be7d831eff2b3.txt rename to allure-report/data/attachments/36d68ec5646bcd8f.txt diff --git a/allure-report/data/attachments/633abad852203ff8.txt b/allure-report/data/attachments/36e3a300e20ebc68.txt similarity index 100% rename from allure-report/data/attachments/633abad852203ff8.txt rename to allure-report/data/attachments/36e3a300e20ebc68.txt diff --git a/allure-report/data/attachments/22c24dd6f011f9a2.txt b/allure-report/data/attachments/36ecb19439af20bd.txt similarity index 100% rename from allure-report/data/attachments/22c24dd6f011f9a2.txt rename to allure-report/data/attachments/36ecb19439af20bd.txt diff --git a/allure-report/data/attachments/662510f84e87d061.txt b/allure-report/data/attachments/3770d294f14361b7.txt similarity index 100% rename from allure-report/data/attachments/662510f84e87d061.txt rename to allure-report/data/attachments/3770d294f14361b7.txt diff --git a/allure-report/data/attachments/55397a95b3056409.txt b/allure-report/data/attachments/37cb2e943dd3d9fa.txt similarity index 100% rename from allure-report/data/attachments/55397a95b3056409.txt rename to allure-report/data/attachments/37cb2e943dd3d9fa.txt diff --git a/allure-report/data/attachments/3cf96ebaed3b737c.txt b/allure-report/data/attachments/37e9edade389e962.txt similarity index 100% rename from allure-report/data/attachments/3cf96ebaed3b737c.txt rename to allure-report/data/attachments/37e9edade389e962.txt diff --git a/allure-report/data/attachments/5bbee37443803595.txt b/allure-report/data/attachments/38571528b67e0e01.txt similarity index 100% rename from allure-report/data/attachments/5bbee37443803595.txt rename to allure-report/data/attachments/38571528b67e0e01.txt diff --git a/allure-report/data/attachments/804c421dc94f15f8.txt b/allure-report/data/attachments/394478f192e8a5de.txt similarity index 100% rename from allure-report/data/attachments/804c421dc94f15f8.txt rename to allure-report/data/attachments/394478f192e8a5de.txt diff --git a/allure-report/data/attachments/bcfe223ecfa6a3c6.txt b/allure-report/data/attachments/39cdb5ecef1e6852.txt similarity index 100% rename from allure-report/data/attachments/bcfe223ecfa6a3c6.txt rename to allure-report/data/attachments/39cdb5ecef1e6852.txt diff --git a/allure-report/data/attachments/14f2aef00cdbb284.txt b/allure-report/data/attachments/39d04d48da97fae9.txt similarity index 100% rename from allure-report/data/attachments/14f2aef00cdbb284.txt rename to allure-report/data/attachments/39d04d48da97fae9.txt diff --git a/allure-report/data/attachments/3e106a35f51e50cd.txt b/allure-report/data/attachments/3a7734f8c672bad4.txt similarity index 100% rename from allure-report/data/attachments/3e106a35f51e50cd.txt rename to allure-report/data/attachments/3a7734f8c672bad4.txt diff --git a/allure-report/data/attachments/b7eae48ecc824334.txt b/allure-report/data/attachments/3b3cd319fcba15f6.txt similarity index 100% rename from allure-report/data/attachments/b7eae48ecc824334.txt rename to allure-report/data/attachments/3b3cd319fcba15f6.txt diff --git a/allure-report/data/attachments/e255c73086be3d07.txt b/allure-report/data/attachments/3bb61b0a55d4385d.txt similarity index 100% rename from allure-report/data/attachments/e255c73086be3d07.txt rename to allure-report/data/attachments/3bb61b0a55d4385d.txt diff --git a/allure-report/data/attachments/157d07999fe8bb77.txt b/allure-report/data/attachments/3cae79604aa7933a.txt similarity index 100% rename from allure-report/data/attachments/157d07999fe8bb77.txt rename to allure-report/data/attachments/3cae79604aa7933a.txt diff --git a/allure-report/data/attachments/9905895b50875943.txt b/allure-report/data/attachments/3cfc143b96c54cf6.txt similarity index 100% rename from allure-report/data/attachments/9905895b50875943.txt rename to allure-report/data/attachments/3cfc143b96c54cf6.txt diff --git a/allure-report/data/attachments/998c70b07f1415e5.txt b/allure-report/data/attachments/3e07263d3e995602.txt similarity index 100% rename from allure-report/data/attachments/998c70b07f1415e5.txt rename to allure-report/data/attachments/3e07263d3e995602.txt diff --git a/allure-report/data/attachments/61ad30a7c0f382b9.txt b/allure-report/data/attachments/3ecf2d6ad02962e9.txt similarity index 100% rename from allure-report/data/attachments/61ad30a7c0f382b9.txt rename to allure-report/data/attachments/3ecf2d6ad02962e9.txt diff --git a/allure-report/data/attachments/e084f22fa99f8e9d.txt b/allure-report/data/attachments/3f0b8846373b1989.txt similarity index 100% rename from allure-report/data/attachments/e084f22fa99f8e9d.txt rename to allure-report/data/attachments/3f0b8846373b1989.txt diff --git a/allure-report/data/attachments/420f806ee93872a1.txt b/allure-report/data/attachments/3fc3f69bfdd6ff9f.txt similarity index 100% rename from allure-report/data/attachments/420f806ee93872a1.txt rename to allure-report/data/attachments/3fc3f69bfdd6ff9f.txt diff --git a/allure-report/data/attachments/1f6883e774d20c18.txt b/allure-report/data/attachments/425763916f5e21f0.txt similarity index 100% rename from allure-report/data/attachments/1f6883e774d20c18.txt rename to allure-report/data/attachments/425763916f5e21f0.txt diff --git a/allure-report/data/attachments/d9ffb014ecda8013.txt b/allure-report/data/attachments/4279fe2563b48bb.txt similarity index 100% rename from allure-report/data/attachments/d9ffb014ecda8013.txt rename to allure-report/data/attachments/4279fe2563b48bb.txt diff --git a/allure-report/data/attachments/45f7f0c7806d7a5f.txt b/allure-report/data/attachments/435e1e4d04469bf3.txt similarity index 100% rename from allure-report/data/attachments/45f7f0c7806d7a5f.txt rename to allure-report/data/attachments/435e1e4d04469bf3.txt diff --git a/allure-report/data/attachments/506f9b1aa47477d8.txt b/allure-report/data/attachments/444e3c5fd77d103.txt similarity index 100% rename from allure-report/data/attachments/506f9b1aa47477d8.txt rename to allure-report/data/attachments/444e3c5fd77d103.txt diff --git a/allure-report/data/attachments/ad735a94d30c45bf.txt b/allure-report/data/attachments/44f2331d72fdaf9f.txt similarity index 100% rename from allure-report/data/attachments/ad735a94d30c45bf.txt rename to allure-report/data/attachments/44f2331d72fdaf9f.txt diff --git a/allure-report/data/attachments/87d3adc8617c894b.txt b/allure-report/data/attachments/468a57056683ca0e.txt similarity index 100% rename from allure-report/data/attachments/87d3adc8617c894b.txt rename to allure-report/data/attachments/468a57056683ca0e.txt diff --git a/allure-report/data/attachments/fb0a5c86d6124176.txt b/allure-report/data/attachments/46d017d45a55c05d.txt similarity index 100% rename from allure-report/data/attachments/fb0a5c86d6124176.txt rename to allure-report/data/attachments/46d017d45a55c05d.txt diff --git a/allure-report/data/attachments/f451e0abb748fcc1.txt b/allure-report/data/attachments/4718f5d8ec029744.txt similarity index 100% rename from allure-report/data/attachments/f451e0abb748fcc1.txt rename to allure-report/data/attachments/4718f5d8ec029744.txt diff --git a/allure-report/data/attachments/abb95e0c50272d33.txt b/allure-report/data/attachments/479ed89d4ea66fbb.txt similarity index 100% rename from allure-report/data/attachments/abb95e0c50272d33.txt rename to allure-report/data/attachments/479ed89d4ea66fbb.txt diff --git a/allure-report/data/attachments/4b36d71052a1b866.txt b/allure-report/data/attachments/47f787d5d2d88cb3.txt similarity index 100% rename from allure-report/data/attachments/4b36d71052a1b866.txt rename to allure-report/data/attachments/47f787d5d2d88cb3.txt diff --git a/allure-report/data/attachments/2e61a28436ed8397.txt b/allure-report/data/attachments/48efcf6226950113.txt similarity index 100% rename from allure-report/data/attachments/2e61a28436ed8397.txt rename to allure-report/data/attachments/48efcf6226950113.txt diff --git a/allure-report/data/attachments/c9b22cc9dc28f439.txt b/allure-report/data/attachments/49113f874a139db1.txt similarity index 100% rename from allure-report/data/attachments/c9b22cc9dc28f439.txt rename to allure-report/data/attachments/49113f874a139db1.txt diff --git a/allure-report/data/attachments/ebde2b3c5f7bae47.txt b/allure-report/data/attachments/491334107dd5238e.txt similarity index 100% rename from allure-report/data/attachments/ebde2b3c5f7bae47.txt rename to allure-report/data/attachments/491334107dd5238e.txt diff --git a/allure-report/data/attachments/ed45fb968677e918.txt b/allure-report/data/attachments/496a8fc7c085caf4.txt similarity index 100% rename from allure-report/data/attachments/ed45fb968677e918.txt rename to allure-report/data/attachments/496a8fc7c085caf4.txt diff --git a/allure-report/data/attachments/64228c9b0b57911a.txt b/allure-report/data/attachments/49e08a4f979422ca.txt similarity index 100% rename from allure-report/data/attachments/64228c9b0b57911a.txt rename to allure-report/data/attachments/49e08a4f979422ca.txt diff --git a/allure-report/data/attachments/60a8c5c2c7c00ce5.txt b/allure-report/data/attachments/4ae64cfa18a7fe16.txt similarity index 100% rename from allure-report/data/attachments/60a8c5c2c7c00ce5.txt rename to allure-report/data/attachments/4ae64cfa18a7fe16.txt diff --git a/allure-report/data/attachments/4d7d20a8fa5049ef.txt b/allure-report/data/attachments/4b7e6475d8bd7c13.txt similarity index 100% rename from allure-report/data/attachments/4d7d20a8fa5049ef.txt rename to allure-report/data/attachments/4b7e6475d8bd7c13.txt diff --git a/allure-report/data/attachments/abff3e6ddecc6408.txt b/allure-report/data/attachments/4bab5f3bdd559aa2.txt similarity index 100% rename from allure-report/data/attachments/abff3e6ddecc6408.txt rename to allure-report/data/attachments/4bab5f3bdd559aa2.txt diff --git a/allure-report/data/attachments/b3fc324c4038294.txt b/allure-report/data/attachments/4bd7ac0fc20fb6a1.txt similarity index 100% rename from allure-report/data/attachments/b3fc324c4038294.txt rename to allure-report/data/attachments/4bd7ac0fc20fb6a1.txt diff --git a/allure-report/data/attachments/b75f0fc5a14ca4fd.txt b/allure-report/data/attachments/4c101c06530a2e9e.txt similarity index 100% rename from allure-report/data/attachments/b75f0fc5a14ca4fd.txt rename to allure-report/data/attachments/4c101c06530a2e9e.txt diff --git a/allure-report/data/attachments/42c6735b0fe92ce1.txt b/allure-report/data/attachments/4cb1b482ef5803db.txt similarity index 100% rename from allure-report/data/attachments/42c6735b0fe92ce1.txt rename to allure-report/data/attachments/4cb1b482ef5803db.txt diff --git a/allure-report/data/attachments/8bb1795fd7e9c165.txt b/allure-report/data/attachments/4dd82faaba573e68.txt similarity index 100% rename from allure-report/data/attachments/8bb1795fd7e9c165.txt rename to allure-report/data/attachments/4dd82faaba573e68.txt diff --git a/allure-report/data/attachments/f4832c8bd9f79614.txt b/allure-report/data/attachments/4de55b4ae1f39108.txt similarity index 100% rename from allure-report/data/attachments/f4832c8bd9f79614.txt rename to allure-report/data/attachments/4de55b4ae1f39108.txt diff --git a/allure-report/data/attachments/ec381cac44a14e7f.txt b/allure-report/data/attachments/4eeb339282cdbad1.txt similarity index 100% rename from allure-report/data/attachments/ec381cac44a14e7f.txt rename to allure-report/data/attachments/4eeb339282cdbad1.txt diff --git a/allure-report/data/attachments/1ad9ab8a22025032.txt b/allure-report/data/attachments/50169eac5bf8084a.txt similarity index 100% rename from allure-report/data/attachments/1ad9ab8a22025032.txt rename to allure-report/data/attachments/50169eac5bf8084a.txt diff --git a/allure-report/data/attachments/17e1f12bcdd4240f.txt b/allure-report/data/attachments/50e06d17e1c8d051.txt similarity index 100% rename from allure-report/data/attachments/17e1f12bcdd4240f.txt rename to allure-report/data/attachments/50e06d17e1c8d051.txt diff --git a/allure-report/data/attachments/58c4828262135699.txt b/allure-report/data/attachments/51a20e306213f50c.txt similarity index 100% rename from allure-report/data/attachments/58c4828262135699.txt rename to allure-report/data/attachments/51a20e306213f50c.txt diff --git a/allure-report/data/attachments/f965c0bd2baa205.txt b/allure-report/data/attachments/51e235954e2b24e9.txt similarity index 100% rename from allure-report/data/attachments/f965c0bd2baa205.txt rename to allure-report/data/attachments/51e235954e2b24e9.txt diff --git a/allure-report/data/attachments/479118fc0413c04b.txt b/allure-report/data/attachments/5442f35428b86593.txt similarity index 100% rename from allure-report/data/attachments/479118fc0413c04b.txt rename to allure-report/data/attachments/5442f35428b86593.txt diff --git a/allure-report/data/attachments/97c0819228c5b269.txt b/allure-report/data/attachments/551e85d4261ef859.txt similarity index 100% rename from allure-report/data/attachments/97c0819228c5b269.txt rename to allure-report/data/attachments/551e85d4261ef859.txt diff --git a/allure-report/data/attachments/73fc8f8784290b40.txt b/allure-report/data/attachments/5538d98488e22a1.txt similarity index 100% rename from allure-report/data/attachments/73fc8f8784290b40.txt rename to allure-report/data/attachments/5538d98488e22a1.txt diff --git a/allure-report/data/attachments/b3163cc1ff017e55.txt b/allure-report/data/attachments/559adfb16322e47a.txt similarity index 100% rename from allure-report/data/attachments/b3163cc1ff017e55.txt rename to allure-report/data/attachments/559adfb16322e47a.txt diff --git a/allure-report/data/attachments/afa2344a5891233b.txt b/allure-report/data/attachments/566cb1395d2623ee.txt similarity index 100% rename from allure-report/data/attachments/afa2344a5891233b.txt rename to allure-report/data/attachments/566cb1395d2623ee.txt diff --git a/allure-report/data/attachments/b8984e5480e91547.txt b/allure-report/data/attachments/599f4bf8dc375f2f.txt similarity index 100% rename from allure-report/data/attachments/b8984e5480e91547.txt rename to allure-report/data/attachments/599f4bf8dc375f2f.txt diff --git a/allure-report/data/attachments/fbbce307fc80ae94.txt b/allure-report/data/attachments/5a674ed3663720ba.txt similarity index 100% rename from allure-report/data/attachments/fbbce307fc80ae94.txt rename to allure-report/data/attachments/5a674ed3663720ba.txt diff --git a/allure-report/data/attachments/1889e3b457f9320a.txt b/allure-report/data/attachments/5aca5b8e45147f1d.txt similarity index 100% rename from allure-report/data/attachments/1889e3b457f9320a.txt rename to allure-report/data/attachments/5aca5b8e45147f1d.txt diff --git a/allure-report/data/attachments/797fb7eadd505b53.txt b/allure-report/data/attachments/5ae64153eb7d8fd5.txt similarity index 100% rename from allure-report/data/attachments/797fb7eadd505b53.txt rename to allure-report/data/attachments/5ae64153eb7d8fd5.txt diff --git a/allure-report/data/attachments/36a84ce1aa4434a.txt b/allure-report/data/attachments/5bd79911afafb617.txt similarity index 100% rename from allure-report/data/attachments/36a84ce1aa4434a.txt rename to allure-report/data/attachments/5bd79911afafb617.txt diff --git a/allure-report/data/attachments/78bed3c0bc3ed4a.txt b/allure-report/data/attachments/5c46b88a061332b3.txt similarity index 100% rename from allure-report/data/attachments/78bed3c0bc3ed4a.txt rename to allure-report/data/attachments/5c46b88a061332b3.txt diff --git a/allure-report/data/attachments/c37932e6bf05499f.txt b/allure-report/data/attachments/5e736eac717d48b8.txt similarity index 100% rename from allure-report/data/attachments/c37932e6bf05499f.txt rename to allure-report/data/attachments/5e736eac717d48b8.txt diff --git a/allure-report/data/attachments/d3d4f5edff7b23a8.txt b/allure-report/data/attachments/5f6fe8d21ab696a3.txt similarity index 100% rename from allure-report/data/attachments/d3d4f5edff7b23a8.txt rename to allure-report/data/attachments/5f6fe8d21ab696a3.txt diff --git a/allure-report/data/attachments/349072694382d10e.txt b/allure-report/data/attachments/604a50ef60eddbca.txt similarity index 100% rename from allure-report/data/attachments/349072694382d10e.txt rename to allure-report/data/attachments/604a50ef60eddbca.txt diff --git a/allure-report/data/attachments/6eedc0bd484f71d7.txt b/allure-report/data/attachments/60551f07eabe2ff9.txt similarity index 100% rename from allure-report/data/attachments/6eedc0bd484f71d7.txt rename to allure-report/data/attachments/60551f07eabe2ff9.txt diff --git a/allure-report/data/attachments/d4f2ea957f6fd3d1.txt b/allure-report/data/attachments/60ceec260ccbe12f.txt similarity index 100% rename from allure-report/data/attachments/d4f2ea957f6fd3d1.txt rename to allure-report/data/attachments/60ceec260ccbe12f.txt diff --git a/allure-report/data/attachments/3f196c8197b3dace.txt b/allure-report/data/attachments/61278101606180d8.txt similarity index 100% rename from allure-report/data/attachments/3f196c8197b3dace.txt rename to allure-report/data/attachments/61278101606180d8.txt diff --git a/allure-report/data/attachments/2b2e74011774c312.txt b/allure-report/data/attachments/6148a5719472274d.txt similarity index 100% rename from allure-report/data/attachments/2b2e74011774c312.txt rename to allure-report/data/attachments/6148a5719472274d.txt diff --git a/allure-report/data/attachments/bc75ae4e4dd30a2d.txt b/allure-report/data/attachments/61c3ba5a703e8965.txt similarity index 100% rename from allure-report/data/attachments/bc75ae4e4dd30a2d.txt rename to allure-report/data/attachments/61c3ba5a703e8965.txt diff --git a/allure-report/data/attachments/27997c5236222053.txt b/allure-report/data/attachments/622422493d650fdf.txt similarity index 100% rename from allure-report/data/attachments/27997c5236222053.txt rename to allure-report/data/attachments/622422493d650fdf.txt diff --git a/allure-report/data/attachments/312062c4d3ad84ef.txt b/allure-report/data/attachments/6369af4634ea6437.txt similarity index 100% rename from allure-report/data/attachments/312062c4d3ad84ef.txt rename to allure-report/data/attachments/6369af4634ea6437.txt diff --git a/allure-report/data/attachments/57e00ad1037160b6.txt b/allure-report/data/attachments/64799626cd40a47b.txt similarity index 100% rename from allure-report/data/attachments/57e00ad1037160b6.txt rename to allure-report/data/attachments/64799626cd40a47b.txt diff --git a/allure-report/data/attachments/cbf43f2ebe410372.txt b/allure-report/data/attachments/65939308dfa4b454.txt similarity index 100% rename from allure-report/data/attachments/cbf43f2ebe410372.txt rename to allure-report/data/attachments/65939308dfa4b454.txt diff --git a/allure-report/data/attachments/f9925186cd87d138.txt b/allure-report/data/attachments/65be7c61ca459627.txt similarity index 100% rename from allure-report/data/attachments/f9925186cd87d138.txt rename to allure-report/data/attachments/65be7c61ca459627.txt diff --git a/allure-report/data/attachments/72a9f976cb96a98d.txt b/allure-report/data/attachments/6724f660007b6f8f.txt similarity index 100% rename from allure-report/data/attachments/72a9f976cb96a98d.txt rename to allure-report/data/attachments/6724f660007b6f8f.txt diff --git a/allure-report/data/attachments/1d47ca07980ea016.txt b/allure-report/data/attachments/68019be75248ce7a.txt similarity index 100% rename from allure-report/data/attachments/1d47ca07980ea016.txt rename to allure-report/data/attachments/68019be75248ce7a.txt diff --git a/allure-report/data/attachments/6de140d5a479d77f.txt b/allure-report/data/attachments/68907a6eac7b7e79.txt similarity index 100% rename from allure-report/data/attachments/6de140d5a479d77f.txt rename to allure-report/data/attachments/68907a6eac7b7e79.txt diff --git a/allure-report/data/attachments/491bdfb319cbef56.txt b/allure-report/data/attachments/69a85253be572104.txt similarity index 100% rename from allure-report/data/attachments/491bdfb319cbef56.txt rename to allure-report/data/attachments/69a85253be572104.txt diff --git a/allure-report/data/attachments/9ca1d978c6df1121.txt b/allure-report/data/attachments/69ca1dfc95141b1.txt similarity index 100% rename from allure-report/data/attachments/9ca1d978c6df1121.txt rename to allure-report/data/attachments/69ca1dfc95141b1.txt diff --git a/allure-report/data/attachments/f82dd65f45ebad45.txt b/allure-report/data/attachments/6a89bd43066f4143.txt similarity index 100% rename from allure-report/data/attachments/f82dd65f45ebad45.txt rename to allure-report/data/attachments/6a89bd43066f4143.txt diff --git a/allure-report/data/attachments/30ae8f4eae56e738.txt b/allure-report/data/attachments/6aac0d6477d82d49.txt similarity index 100% rename from allure-report/data/attachments/30ae8f4eae56e738.txt rename to allure-report/data/attachments/6aac0d6477d82d49.txt diff --git a/allure-report/data/attachments/287eb5fa3fe3b8e6.txt b/allure-report/data/attachments/6b06d8bb1f0d8ae7.txt similarity index 100% rename from allure-report/data/attachments/287eb5fa3fe3b8e6.txt rename to allure-report/data/attachments/6b06d8bb1f0d8ae7.txt diff --git a/allure-report/data/attachments/6362c8f15fc6c9c0.txt b/allure-report/data/attachments/6b26647644a9011f.txt similarity index 100% rename from allure-report/data/attachments/6362c8f15fc6c9c0.txt rename to allure-report/data/attachments/6b26647644a9011f.txt diff --git a/allure-report/data/attachments/1342cdaa6481456c.txt b/allure-report/data/attachments/6c8ba92b05ceb5be.txt similarity index 100% rename from allure-report/data/attachments/1342cdaa6481456c.txt rename to allure-report/data/attachments/6c8ba92b05ceb5be.txt diff --git a/allure-report/data/attachments/c396a9cbff279a34.txt b/allure-report/data/attachments/6e533a6d7b553e50.txt similarity index 100% rename from allure-report/data/attachments/c396a9cbff279a34.txt rename to allure-report/data/attachments/6e533a6d7b553e50.txt diff --git a/allure-report/data/attachments/250afdca61317e51.txt b/allure-report/data/attachments/6e652aa73f38cf38.txt similarity index 100% rename from allure-report/data/attachments/250afdca61317e51.txt rename to allure-report/data/attachments/6e652aa73f38cf38.txt diff --git a/allure-report/data/attachments/613c4bb712b376ab.txt b/allure-report/data/attachments/6f68f7e9f588442e.txt similarity index 100% rename from allure-report/data/attachments/613c4bb712b376ab.txt rename to allure-report/data/attachments/6f68f7e9f588442e.txt diff --git a/allure-report/data/attachments/2b123edd90aa8cfa.txt b/allure-report/data/attachments/70549112d1201a37.txt similarity index 100% rename from allure-report/data/attachments/2b123edd90aa8cfa.txt rename to allure-report/data/attachments/70549112d1201a37.txt diff --git a/allure-report/data/attachments/60553188e91eeef0.txt b/allure-report/data/attachments/7059a7f2ea4f1d21.txt similarity index 100% rename from allure-report/data/attachments/60553188e91eeef0.txt rename to allure-report/data/attachments/7059a7f2ea4f1d21.txt diff --git a/allure-report/data/attachments/a42bbda54a679e90.txt b/allure-report/data/attachments/712c159a049ff459.txt similarity index 100% rename from allure-report/data/attachments/a42bbda54a679e90.txt rename to allure-report/data/attachments/712c159a049ff459.txt diff --git a/allure-report/data/attachments/ea9613cb4c662f2e.txt b/allure-report/data/attachments/71fc07a67416a0d6.txt similarity index 100% rename from allure-report/data/attachments/ea9613cb4c662f2e.txt rename to allure-report/data/attachments/71fc07a67416a0d6.txt diff --git a/allure-report/data/attachments/407f6f4c1f9bb5a2.txt b/allure-report/data/attachments/72c5ae89672fcecc.txt similarity index 100% rename from allure-report/data/attachments/407f6f4c1f9bb5a2.txt rename to allure-report/data/attachments/72c5ae89672fcecc.txt diff --git a/allure-report/data/attachments/d31f2c0a44e75654.txt b/allure-report/data/attachments/7324bd79d75b1976.txt similarity index 100% rename from allure-report/data/attachments/d31f2c0a44e75654.txt rename to allure-report/data/attachments/7324bd79d75b1976.txt diff --git a/allure-report/data/attachments/312dff4578efa314.txt b/allure-report/data/attachments/7379dff7e25cb0a5.txt similarity index 100% rename from allure-report/data/attachments/312dff4578efa314.txt rename to allure-report/data/attachments/7379dff7e25cb0a5.txt diff --git a/allure-report/data/attachments/d1ef36a16a608c99.txt b/allure-report/data/attachments/73dfd6fcf3f0a2ae.txt similarity index 100% rename from allure-report/data/attachments/d1ef36a16a608c99.txt rename to allure-report/data/attachments/73dfd6fcf3f0a2ae.txt diff --git a/allure-report/data/attachments/a45595e4822528c2.txt b/allure-report/data/attachments/73e1a08147f0ff00.txt similarity index 100% rename from allure-report/data/attachments/a45595e4822528c2.txt rename to allure-report/data/attachments/73e1a08147f0ff00.txt diff --git a/allure-report/data/attachments/f469dcf875239b3a.txt b/allure-report/data/attachments/7425734ad14179e4.txt similarity index 100% rename from allure-report/data/attachments/f469dcf875239b3a.txt rename to allure-report/data/attachments/7425734ad14179e4.txt diff --git a/allure-report/data/attachments/780df00dc666cbbd.txt b/allure-report/data/attachments/74fd4cb3a0d16df5.txt similarity index 100% rename from allure-report/data/attachments/780df00dc666cbbd.txt rename to allure-report/data/attachments/74fd4cb3a0d16df5.txt diff --git a/allure-report/data/attachments/40f2f98b11de943f.txt b/allure-report/data/attachments/7548d350c45f54f6.txt similarity index 100% rename from allure-report/data/attachments/40f2f98b11de943f.txt rename to allure-report/data/attachments/7548d350c45f54f6.txt diff --git a/allure-report/data/attachments/21b3833bd58160c1.txt b/allure-report/data/attachments/757a12dc566d3a04.txt similarity index 100% rename from allure-report/data/attachments/21b3833bd58160c1.txt rename to allure-report/data/attachments/757a12dc566d3a04.txt diff --git a/allure-report/data/attachments/47ad300a7de26866.txt b/allure-report/data/attachments/761ccb0eac4691eb.txt similarity index 100% rename from allure-report/data/attachments/47ad300a7de26866.txt rename to allure-report/data/attachments/761ccb0eac4691eb.txt diff --git a/allure-report/data/attachments/a3653a5d01cb978a.txt b/allure-report/data/attachments/768a2542510e9424.txt similarity index 100% rename from allure-report/data/attachments/a3653a5d01cb978a.txt rename to allure-report/data/attachments/768a2542510e9424.txt diff --git a/allure-report/data/attachments/20e82e5aa37702bc.txt b/allure-report/data/attachments/778d3397f8515034.txt similarity index 100% rename from allure-report/data/attachments/20e82e5aa37702bc.txt rename to allure-report/data/attachments/778d3397f8515034.txt diff --git a/allure-report/data/attachments/55f2f3a355e5f2ed.txt b/allure-report/data/attachments/78536cfa8705ace3.txt similarity index 100% rename from allure-report/data/attachments/55f2f3a355e5f2ed.txt rename to allure-report/data/attachments/78536cfa8705ace3.txt diff --git a/allure-report/data/attachments/fcd71aa1ac7b19de.txt b/allure-report/data/attachments/788d307008b11df5.txt similarity index 100% rename from allure-report/data/attachments/fcd71aa1ac7b19de.txt rename to allure-report/data/attachments/788d307008b11df5.txt diff --git a/allure-report/data/attachments/4163d90850028d14.txt b/allure-report/data/attachments/78b67cc840d0f4a8.txt similarity index 100% rename from allure-report/data/attachments/4163d90850028d14.txt rename to allure-report/data/attachments/78b67cc840d0f4a8.txt diff --git a/allure-report/data/attachments/4e693ea1a91f61ae.txt b/allure-report/data/attachments/78ccb02d90c15e25.txt similarity index 100% rename from allure-report/data/attachments/4e693ea1a91f61ae.txt rename to allure-report/data/attachments/78ccb02d90c15e25.txt diff --git a/allure-report/data/attachments/94063c17619b52a4.txt b/allure-report/data/attachments/7a6a4e0267245cc3.txt similarity index 100% rename from allure-report/data/attachments/94063c17619b52a4.txt rename to allure-report/data/attachments/7a6a4e0267245cc3.txt diff --git a/allure-report/data/attachments/d8a2a5280a09e0f4.txt b/allure-report/data/attachments/7b9e000b6e8b6a60.txt similarity index 100% rename from allure-report/data/attachments/d8a2a5280a09e0f4.txt rename to allure-report/data/attachments/7b9e000b6e8b6a60.txt diff --git a/allure-report/data/attachments/a93887f366c469bf.txt b/allure-report/data/attachments/7bfcd285de663163.txt similarity index 100% rename from allure-report/data/attachments/a93887f366c469bf.txt rename to allure-report/data/attachments/7bfcd285de663163.txt diff --git a/allure-report/data/attachments/4eb3eb579b763a8f.txt b/allure-report/data/attachments/7c4d33961ba9ecde.txt similarity index 100% rename from allure-report/data/attachments/4eb3eb579b763a8f.txt rename to allure-report/data/attachments/7c4d33961ba9ecde.txt diff --git a/allure-report/data/attachments/e932ac087f99689b.txt b/allure-report/data/attachments/7cbc8ebd65fb8481.txt similarity index 100% rename from allure-report/data/attachments/e932ac087f99689b.txt rename to allure-report/data/attachments/7cbc8ebd65fb8481.txt diff --git a/allure-report/data/attachments/e1032190833aaac7.txt b/allure-report/data/attachments/7ce02846f9ac9e3d.txt similarity index 100% rename from allure-report/data/attachments/e1032190833aaac7.txt rename to allure-report/data/attachments/7ce02846f9ac9e3d.txt diff --git a/allure-report/data/attachments/8afe9706a7ce18ad.txt b/allure-report/data/attachments/7d82c31fb2485e49.txt similarity index 100% rename from allure-report/data/attachments/8afe9706a7ce18ad.txt rename to allure-report/data/attachments/7d82c31fb2485e49.txt diff --git a/allure-report/data/attachments/54520f78b41446af.txt b/allure-report/data/attachments/7e6e0f3580253245.txt similarity index 100% rename from allure-report/data/attachments/54520f78b41446af.txt rename to allure-report/data/attachments/7e6e0f3580253245.txt diff --git a/allure-report/data/attachments/cd47dccaf2814ffa.txt b/allure-report/data/attachments/7f097b27d301b075.txt similarity index 100% rename from allure-report/data/attachments/cd47dccaf2814ffa.txt rename to allure-report/data/attachments/7f097b27d301b075.txt diff --git a/allure-report/data/attachments/a96837b21492cfc6.txt b/allure-report/data/attachments/7f1e6261fe55f12.txt similarity index 100% rename from allure-report/data/attachments/a96837b21492cfc6.txt rename to allure-report/data/attachments/7f1e6261fe55f12.txt diff --git a/allure-report/data/attachments/850bcf9305b7e315.txt b/allure-report/data/attachments/7f5a59d26508f55d.txt similarity index 100% rename from allure-report/data/attachments/850bcf9305b7e315.txt rename to allure-report/data/attachments/7f5a59d26508f55d.txt diff --git a/allure-report/data/attachments/835e4619c5013fd1.txt b/allure-report/data/attachments/7f8244a44f0672b6.txt similarity index 100% rename from allure-report/data/attachments/835e4619c5013fd1.txt rename to allure-report/data/attachments/7f8244a44f0672b6.txt diff --git a/allure-report/data/attachments/dd8004b465c9b5f8.txt b/allure-report/data/attachments/817385884ec20713.txt similarity index 100% rename from allure-report/data/attachments/dd8004b465c9b5f8.txt rename to allure-report/data/attachments/817385884ec20713.txt diff --git a/allure-report/data/attachments/5473bc31f56d9a8c.txt b/allure-report/data/attachments/8276c421e6a39adf.txt similarity index 100% rename from allure-report/data/attachments/5473bc31f56d9a8c.txt rename to allure-report/data/attachments/8276c421e6a39adf.txt diff --git a/allure-report/data/attachments/42b879e2f735a0ac.txt b/allure-report/data/attachments/8333a44527f8bcd6.txt similarity index 100% rename from allure-report/data/attachments/42b879e2f735a0ac.txt rename to allure-report/data/attachments/8333a44527f8bcd6.txt diff --git a/allure-report/data/attachments/9e567229f9ee12b7.txt b/allure-report/data/attachments/833d260c3e69ae73.txt similarity index 100% rename from allure-report/data/attachments/9e567229f9ee12b7.txt rename to allure-report/data/attachments/833d260c3e69ae73.txt diff --git a/allure-report/data/attachments/bcefb385384ff8bd.txt b/allure-report/data/attachments/835d7d8f35896535.txt similarity index 100% rename from allure-report/data/attachments/bcefb385384ff8bd.txt rename to allure-report/data/attachments/835d7d8f35896535.txt diff --git a/allure-report/data/attachments/85813043366b6b90.txt b/allure-report/data/attachments/843a9b33796b69ab.txt similarity index 100% rename from allure-report/data/attachments/85813043366b6b90.txt rename to allure-report/data/attachments/843a9b33796b69ab.txt diff --git a/allure-report/data/attachments/cc1b1893c2b8b52d.txt b/allure-report/data/attachments/8474eb0f72326e17.txt similarity index 100% rename from allure-report/data/attachments/cc1b1893c2b8b52d.txt rename to allure-report/data/attachments/8474eb0f72326e17.txt diff --git a/allure-report/data/attachments/5f8aca645c6a63be.txt b/allure-report/data/attachments/87d604abdd1034ad.txt similarity index 100% rename from allure-report/data/attachments/5f8aca645c6a63be.txt rename to allure-report/data/attachments/87d604abdd1034ad.txt diff --git a/allure-report/data/attachments/6d3df2dabc5ae756.txt b/allure-report/data/attachments/87f01e814f201b12.txt similarity index 100% rename from allure-report/data/attachments/6d3df2dabc5ae756.txt rename to allure-report/data/attachments/87f01e814f201b12.txt diff --git a/allure-report/data/attachments/38545087bdeef541.txt b/allure-report/data/attachments/8824f11650f12248.txt similarity index 100% rename from allure-report/data/attachments/38545087bdeef541.txt rename to allure-report/data/attachments/8824f11650f12248.txt diff --git a/allure-report/data/attachments/60b6667cdd104689.txt b/allure-report/data/attachments/885315e2174c8284.txt similarity index 100% rename from allure-report/data/attachments/60b6667cdd104689.txt rename to allure-report/data/attachments/885315e2174c8284.txt diff --git a/allure-report/data/attachments/6dd9ffa61a5d6299.txt b/allure-report/data/attachments/89e2dbaee5a08a8e.txt similarity index 100% rename from allure-report/data/attachments/6dd9ffa61a5d6299.txt rename to allure-report/data/attachments/89e2dbaee5a08a8e.txt diff --git a/allure-report/data/attachments/ca809417038f1f70.txt b/allure-report/data/attachments/8aceddf9a40c21c4.txt similarity index 100% rename from allure-report/data/attachments/ca809417038f1f70.txt rename to allure-report/data/attachments/8aceddf9a40c21c4.txt diff --git a/allure-report/data/attachments/a21b9ca1dd2e7b86.txt b/allure-report/data/attachments/8b70cbce8e882192.txt similarity index 100% rename from allure-report/data/attachments/a21b9ca1dd2e7b86.txt rename to allure-report/data/attachments/8b70cbce8e882192.txt diff --git a/allure-report/data/attachments/ed1895964a4f1dc3.txt b/allure-report/data/attachments/8bf4ab3249d50d5d.txt similarity index 100% rename from allure-report/data/attachments/ed1895964a4f1dc3.txt rename to allure-report/data/attachments/8bf4ab3249d50d5d.txt diff --git a/allure-report/data/attachments/a77304cbd9f33e1a.txt b/allure-report/data/attachments/8c9b413e90bf769f.txt similarity index 100% rename from allure-report/data/attachments/a77304cbd9f33e1a.txt rename to allure-report/data/attachments/8c9b413e90bf769f.txt diff --git a/allure-report/data/attachments/51739cb22fa4b9dd.txt b/allure-report/data/attachments/8cf8917f49abc708.txt similarity index 100% rename from allure-report/data/attachments/51739cb22fa4b9dd.txt rename to allure-report/data/attachments/8cf8917f49abc708.txt diff --git a/allure-report/data/attachments/8ecb0410a6ed3d7.txt b/allure-report/data/attachments/8d8a3475c1ccc5fb.txt similarity index 100% rename from allure-report/data/attachments/8ecb0410a6ed3d7.txt rename to allure-report/data/attachments/8d8a3475c1ccc5fb.txt diff --git a/allure-report/data/attachments/894b6ecea0eca1b4.txt b/allure-report/data/attachments/8e4c5f9ea62989e.txt similarity index 100% rename from allure-report/data/attachments/894b6ecea0eca1b4.txt rename to allure-report/data/attachments/8e4c5f9ea62989e.txt diff --git a/allure-report/data/attachments/32bad6265b9c6d8f.txt b/allure-report/data/attachments/8f0da0353e68cf34.txt similarity index 100% rename from allure-report/data/attachments/32bad6265b9c6d8f.txt rename to allure-report/data/attachments/8f0da0353e68cf34.txt diff --git a/allure-report/data/attachments/5d2b03d7ca85feb9.txt b/allure-report/data/attachments/8f4bf05879c8645b.txt similarity index 100% rename from allure-report/data/attachments/5d2b03d7ca85feb9.txt rename to allure-report/data/attachments/8f4bf05879c8645b.txt diff --git a/allure-report/data/attachments/81acaad5616d047a.txt b/allure-report/data/attachments/8fc1f3f9e7136bfe.txt similarity index 100% rename from allure-report/data/attachments/81acaad5616d047a.txt rename to allure-report/data/attachments/8fc1f3f9e7136bfe.txt diff --git a/allure-report/data/attachments/657871840dfd173c.txt b/allure-report/data/attachments/8ffb3d947babe2e5.txt similarity index 100% rename from allure-report/data/attachments/657871840dfd173c.txt rename to allure-report/data/attachments/8ffb3d947babe2e5.txt diff --git a/allure-report/data/attachments/85d8941907447826.txt b/allure-report/data/attachments/918ce551f75f4a0e.txt similarity index 100% rename from allure-report/data/attachments/85d8941907447826.txt rename to allure-report/data/attachments/918ce551f75f4a0e.txt diff --git a/allure-report/data/attachments/df41cf6b46c44c9e.txt b/allure-report/data/attachments/9639571481038f39.txt similarity index 100% rename from allure-report/data/attachments/df41cf6b46c44c9e.txt rename to allure-report/data/attachments/9639571481038f39.txt diff --git a/allure-report/data/attachments/fba7e6f7e7538915.txt b/allure-report/data/attachments/9664dbae27a9df3.txt similarity index 100% rename from allure-report/data/attachments/fba7e6f7e7538915.txt rename to allure-report/data/attachments/9664dbae27a9df3.txt diff --git a/allure-report/data/attachments/30e865fe73fa5b27.txt b/allure-report/data/attachments/9735ba411f0b6bb5.txt similarity index 100% rename from allure-report/data/attachments/30e865fe73fa5b27.txt rename to allure-report/data/attachments/9735ba411f0b6bb5.txt diff --git a/allure-report/data/attachments/a68de0f4d0253c8.txt b/allure-report/data/attachments/97d568438480d957.txt similarity index 100% rename from allure-report/data/attachments/a68de0f4d0253c8.txt rename to allure-report/data/attachments/97d568438480d957.txt diff --git a/allure-report/data/attachments/f4b8bcccd8e3d9a5.txt b/allure-report/data/attachments/9817c9d821675f57.txt similarity index 100% rename from allure-report/data/attachments/f4b8bcccd8e3d9a5.txt rename to allure-report/data/attachments/9817c9d821675f57.txt diff --git a/allure-report/data/attachments/47cbc31b80f9d83c.txt b/allure-report/data/attachments/982c55cae2a7ef4a.txt similarity index 100% rename from allure-report/data/attachments/47cbc31b80f9d83c.txt rename to allure-report/data/attachments/982c55cae2a7ef4a.txt diff --git a/allure-report/data/attachments/4562f85c852f0a97.txt b/allure-report/data/attachments/9846fc0a17d839b.txt similarity index 100% rename from allure-report/data/attachments/4562f85c852f0a97.txt rename to allure-report/data/attachments/9846fc0a17d839b.txt diff --git a/allure-report/data/attachments/74dc839f94675f1c.txt b/allure-report/data/attachments/9adef8938da49aa4.txt similarity index 100% rename from allure-report/data/attachments/74dc839f94675f1c.txt rename to allure-report/data/attachments/9adef8938da49aa4.txt diff --git a/allure-report/data/attachments/9e573d2ead28469f.txt b/allure-report/data/attachments/9bd069e9e159fee7.txt similarity index 100% rename from allure-report/data/attachments/9e573d2ead28469f.txt rename to allure-report/data/attachments/9bd069e9e159fee7.txt diff --git a/allure-report/data/attachments/3228eb12f2ec789a.txt b/allure-report/data/attachments/9c2f5fc2bb8b3db8.txt similarity index 100% rename from allure-report/data/attachments/3228eb12f2ec789a.txt rename to allure-report/data/attachments/9c2f5fc2bb8b3db8.txt diff --git a/allure-report/data/attachments/c41bf0bbb023a57f.txt b/allure-report/data/attachments/9da75d7f845f0505.txt similarity index 100% rename from allure-report/data/attachments/c41bf0bbb023a57f.txt rename to allure-report/data/attachments/9da75d7f845f0505.txt diff --git a/allure-report/data/attachments/6152f64a0232194a.txt b/allure-report/data/attachments/9e8a1dedd1940971.txt similarity index 100% rename from allure-report/data/attachments/6152f64a0232194a.txt rename to allure-report/data/attachments/9e8a1dedd1940971.txt diff --git a/allure-report/data/attachments/72987b318aa88c6e.txt b/allure-report/data/attachments/9febde34d0c00b2f.txt similarity index 100% rename from allure-report/data/attachments/72987b318aa88c6e.txt rename to allure-report/data/attachments/9febde34d0c00b2f.txt diff --git a/allure-report/data/attachments/67853a4b20ca2cdb.txt b/allure-report/data/attachments/a03148d44cb41cd1.txt similarity index 100% rename from allure-report/data/attachments/67853a4b20ca2cdb.txt rename to allure-report/data/attachments/a03148d44cb41cd1.txt diff --git a/allure-report/data/attachments/7cf8e66e6e1debdd.txt b/allure-report/data/attachments/a05e018d59cd8b23.txt similarity index 100% rename from allure-report/data/attachments/7cf8e66e6e1debdd.txt rename to allure-report/data/attachments/a05e018d59cd8b23.txt diff --git a/allure-report/data/attachments/5e949b4a7c16c61.txt b/allure-report/data/attachments/a0d3807a4788c278.txt similarity index 100% rename from allure-report/data/attachments/5e949b4a7c16c61.txt rename to allure-report/data/attachments/a0d3807a4788c278.txt diff --git a/allure-report/data/attachments/c81a97703cb852b3.txt b/allure-report/data/attachments/a11058edff9d734d.txt similarity index 100% rename from allure-report/data/attachments/c81a97703cb852b3.txt rename to allure-report/data/attachments/a11058edff9d734d.txt diff --git a/allure-report/data/attachments/7ac45d8c1df7c43f.txt b/allure-report/data/attachments/a125eb4c92d61148.txt similarity index 100% rename from allure-report/data/attachments/7ac45d8c1df7c43f.txt rename to allure-report/data/attachments/a125eb4c92d61148.txt diff --git a/allure-report/data/attachments/ee8e3a23a26b4600.txt b/allure-report/data/attachments/a156897cab59d4a9.txt similarity index 100% rename from allure-report/data/attachments/ee8e3a23a26b4600.txt rename to allure-report/data/attachments/a156897cab59d4a9.txt diff --git a/allure-report/data/attachments/dc735d6cbaa38cba.txt b/allure-report/data/attachments/a21d8bb488556a6f.txt similarity index 100% rename from allure-report/data/attachments/dc735d6cbaa38cba.txt rename to allure-report/data/attachments/a21d8bb488556a6f.txt diff --git a/allure-report/data/attachments/d5812afb446c78ce.txt b/allure-report/data/attachments/a23effdd1e0b0387.txt similarity index 100% rename from allure-report/data/attachments/d5812afb446c78ce.txt rename to allure-report/data/attachments/a23effdd1e0b0387.txt diff --git a/allure-report/data/attachments/ef5ba384071190d7.txt b/allure-report/data/attachments/a243f5a6e2aef08.txt similarity index 100% rename from allure-report/data/attachments/ef5ba384071190d7.txt rename to allure-report/data/attachments/a243f5a6e2aef08.txt diff --git a/allure-report/data/attachments/3fc74f16bec5bbf3.txt b/allure-report/data/attachments/a3650a70b5eae511.txt similarity index 100% rename from allure-report/data/attachments/3fc74f16bec5bbf3.txt rename to allure-report/data/attachments/a3650a70b5eae511.txt diff --git a/allure-report/data/attachments/145b065c02fb875.txt b/allure-report/data/attachments/a425815a2146be3f.txt similarity index 100% rename from allure-report/data/attachments/145b065c02fb875.txt rename to allure-report/data/attachments/a425815a2146be3f.txt diff --git a/allure-report/data/attachments/38a8ba45b2ebefd2.txt b/allure-report/data/attachments/a5312ee34a83472.txt similarity index 100% rename from allure-report/data/attachments/38a8ba45b2ebefd2.txt rename to allure-report/data/attachments/a5312ee34a83472.txt diff --git a/allure-report/data/attachments/80cb92b2a68485aa.txt b/allure-report/data/attachments/a60431e704cfd67c.txt similarity index 100% rename from allure-report/data/attachments/80cb92b2a68485aa.txt rename to allure-report/data/attachments/a60431e704cfd67c.txt diff --git a/allure-report/data/attachments/ec0aa2198d4850df.txt b/allure-report/data/attachments/a6116dd9c620e39c.txt similarity index 100% rename from allure-report/data/attachments/ec0aa2198d4850df.txt rename to allure-report/data/attachments/a6116dd9c620e39c.txt diff --git a/allure-report/data/attachments/d23d24d51ab0f2ec.txt b/allure-report/data/attachments/a6a60e5084ac1c11.txt similarity index 100% rename from allure-report/data/attachments/d23d24d51ab0f2ec.txt rename to allure-report/data/attachments/a6a60e5084ac1c11.txt diff --git a/allure-report/data/attachments/20cbc8ca27f67538.txt b/allure-report/data/attachments/a6bd6cbda8e220e3.txt similarity index 100% rename from allure-report/data/attachments/20cbc8ca27f67538.txt rename to allure-report/data/attachments/a6bd6cbda8e220e3.txt diff --git a/allure-report/data/attachments/2f4fbc6ed8dc7bd7.txt b/allure-report/data/attachments/a892fb7f4ca8f546.txt similarity index 100% rename from allure-report/data/attachments/2f4fbc6ed8dc7bd7.txt rename to allure-report/data/attachments/a892fb7f4ca8f546.txt diff --git a/allure-report/data/attachments/5fb2caa4cfa17eeb.txt b/allure-report/data/attachments/a99ebb2468b16b95.txt similarity index 100% rename from allure-report/data/attachments/5fb2caa4cfa17eeb.txt rename to allure-report/data/attachments/a99ebb2468b16b95.txt diff --git a/allure-report/data/attachments/fe10e73cc4ad9f0b.txt b/allure-report/data/attachments/aaa63d8350548106.txt similarity index 100% rename from allure-report/data/attachments/fe10e73cc4ad9f0b.txt rename to allure-report/data/attachments/aaa63d8350548106.txt diff --git a/allure-report/data/attachments/9d7d21f763543a21.txt b/allure-report/data/attachments/aad37f3b55b49e8b.txt similarity index 100% rename from allure-report/data/attachments/9d7d21f763543a21.txt rename to allure-report/data/attachments/aad37f3b55b49e8b.txt diff --git a/allure-report/data/attachments/eb5eccf50db39cb4.txt b/allure-report/data/attachments/abf9a812b0a61e07.txt similarity index 100% rename from allure-report/data/attachments/eb5eccf50db39cb4.txt rename to allure-report/data/attachments/abf9a812b0a61e07.txt diff --git a/allure-report/data/attachments/f2a9e45ebf48d755.txt b/allure-report/data/attachments/ac454cba7b8ef897.txt similarity index 100% rename from allure-report/data/attachments/f2a9e45ebf48d755.txt rename to allure-report/data/attachments/ac454cba7b8ef897.txt diff --git a/allure-report/data/attachments/9999070a00162057.txt b/allure-report/data/attachments/ac7ee8f205d4305f.txt similarity index 100% rename from allure-report/data/attachments/9999070a00162057.txt rename to allure-report/data/attachments/ac7ee8f205d4305f.txt diff --git a/allure-report/data/attachments/ca30023d79faffff.txt b/allure-report/data/attachments/adebeeed90235942.txt similarity index 100% rename from allure-report/data/attachments/ca30023d79faffff.txt rename to allure-report/data/attachments/adebeeed90235942.txt diff --git a/allure-report/data/attachments/ff7405a34f99b6d6.txt b/allure-report/data/attachments/ae198d98d59aaf55.txt similarity index 100% rename from allure-report/data/attachments/ff7405a34f99b6d6.txt rename to allure-report/data/attachments/ae198d98d59aaf55.txt diff --git a/allure-report/data/attachments/57a50be8b38a35c0.txt b/allure-report/data/attachments/aedb47484495e540.txt similarity index 100% rename from allure-report/data/attachments/57a50be8b38a35c0.txt rename to allure-report/data/attachments/aedb47484495e540.txt diff --git a/allure-report/data/attachments/8778cf7e4eef01cb.txt b/allure-report/data/attachments/af19b50155e57570.txt similarity index 100% rename from allure-report/data/attachments/8778cf7e4eef01cb.txt rename to allure-report/data/attachments/af19b50155e57570.txt diff --git a/allure-report/data/attachments/b38075c83e7baebb.txt b/allure-report/data/attachments/afb99113fdc97fa7.txt similarity index 100% rename from allure-report/data/attachments/b38075c83e7baebb.txt rename to allure-report/data/attachments/afb99113fdc97fa7.txt diff --git a/allure-report/data/attachments/d1599295a3f41ee0.txt b/allure-report/data/attachments/afc512e4954fc414.txt similarity index 100% rename from allure-report/data/attachments/d1599295a3f41ee0.txt rename to allure-report/data/attachments/afc512e4954fc414.txt diff --git a/allure-report/data/attachments/bbc90d26ad4a4f8d.txt b/allure-report/data/attachments/b010e8f0a161de92.txt similarity index 100% rename from allure-report/data/attachments/bbc90d26ad4a4f8d.txt rename to allure-report/data/attachments/b010e8f0a161de92.txt diff --git a/allure-report/data/attachments/d10d4fe51ef67a7e.txt b/allure-report/data/attachments/b024c4fc790da6a0.txt similarity index 100% rename from allure-report/data/attachments/d10d4fe51ef67a7e.txt rename to allure-report/data/attachments/b024c4fc790da6a0.txt diff --git a/allure-report/data/attachments/485b7a7482b5d8a7.txt b/allure-report/data/attachments/b04de969348b1187.txt similarity index 100% rename from allure-report/data/attachments/485b7a7482b5d8a7.txt rename to allure-report/data/attachments/b04de969348b1187.txt diff --git a/allure-report/data/attachments/e01af9821f0d361c.txt b/allure-report/data/attachments/b0ff98cda0b0c43.txt similarity index 100% rename from allure-report/data/attachments/e01af9821f0d361c.txt rename to allure-report/data/attachments/b0ff98cda0b0c43.txt diff --git a/allure-report/data/attachments/3f0fa9f25e69b0db.txt b/allure-report/data/attachments/b2310e8820061774.txt similarity index 100% rename from allure-report/data/attachments/3f0fa9f25e69b0db.txt rename to allure-report/data/attachments/b2310e8820061774.txt diff --git a/allure-report/data/attachments/b9b51ca36b85ae94.txt b/allure-report/data/attachments/b278aa851a807748.txt similarity index 100% rename from allure-report/data/attachments/b9b51ca36b85ae94.txt rename to allure-report/data/attachments/b278aa851a807748.txt diff --git a/allure-report/data/attachments/96a11dda30514e67.txt b/allure-report/data/attachments/b3f562db94371de7.txt similarity index 100% rename from allure-report/data/attachments/96a11dda30514e67.txt rename to allure-report/data/attachments/b3f562db94371de7.txt diff --git a/allure-report/data/attachments/8e812b8e3303683b.txt b/allure-report/data/attachments/b5f1637aeba19ba4.txt similarity index 100% rename from allure-report/data/attachments/8e812b8e3303683b.txt rename to allure-report/data/attachments/b5f1637aeba19ba4.txt diff --git a/allure-report/data/attachments/dfbdbb71de71756e.txt b/allure-report/data/attachments/b6c652a922a26947.txt similarity index 100% rename from allure-report/data/attachments/dfbdbb71de71756e.txt rename to allure-report/data/attachments/b6c652a922a26947.txt diff --git a/allure-report/data/attachments/da21be7860f58cf6.txt b/allure-report/data/attachments/b71080d98c3c005a.txt similarity index 100% rename from allure-report/data/attachments/da21be7860f58cf6.txt rename to allure-report/data/attachments/b71080d98c3c005a.txt diff --git a/allure-report/data/attachments/d0bc1ad841243b6a.txt b/allure-report/data/attachments/b8226dfed0d6a202.txt similarity index 100% rename from allure-report/data/attachments/d0bc1ad841243b6a.txt rename to allure-report/data/attachments/b8226dfed0d6a202.txt diff --git a/allure-report/data/attachments/f4f546882d08a1ac.txt b/allure-report/data/attachments/b8b7177b76c24b60.txt similarity index 100% rename from allure-report/data/attachments/f4f546882d08a1ac.txt rename to allure-report/data/attachments/b8b7177b76c24b60.txt diff --git a/allure-report/data/attachments/9b1c37b21b76b29e.txt b/allure-report/data/attachments/b8eb00e308a84c71.txt similarity index 100% rename from allure-report/data/attachments/9b1c37b21b76b29e.txt rename to allure-report/data/attachments/b8eb00e308a84c71.txt diff --git a/allure-report/data/attachments/7269f46fd31058ea.txt b/allure-report/data/attachments/ba1557147d8416c1.txt similarity index 100% rename from allure-report/data/attachments/7269f46fd31058ea.txt rename to allure-report/data/attachments/ba1557147d8416c1.txt diff --git a/allure-report/data/attachments/175a566935f714fc.txt b/allure-report/data/attachments/ba489e6f976c964f.txt similarity index 100% rename from allure-report/data/attachments/175a566935f714fc.txt rename to allure-report/data/attachments/ba489e6f976c964f.txt diff --git a/allure-report/data/attachments/b1cd53c85d21b130.txt b/allure-report/data/attachments/bbfc3fd670d975ed.txt similarity index 100% rename from allure-report/data/attachments/b1cd53c85d21b130.txt rename to allure-report/data/attachments/bbfc3fd670d975ed.txt diff --git a/allure-report/data/attachments/db8507235524f855.txt b/allure-report/data/attachments/bc673310ad989d77.txt similarity index 100% rename from allure-report/data/attachments/db8507235524f855.txt rename to allure-report/data/attachments/bc673310ad989d77.txt diff --git a/allure-report/data/attachments/59ffb265a3e6098c.txt b/allure-report/data/attachments/bda0913251ec8a7b.txt similarity index 100% rename from allure-report/data/attachments/59ffb265a3e6098c.txt rename to allure-report/data/attachments/bda0913251ec8a7b.txt diff --git a/allure-report/data/attachments/9b3917a8b59d5897.txt b/allure-report/data/attachments/bf45d5ff12eeac.txt similarity index 100% rename from allure-report/data/attachments/9b3917a8b59d5897.txt rename to allure-report/data/attachments/bf45d5ff12eeac.txt diff --git a/allure-report/data/attachments/6a40280d8ceb16cd.txt b/allure-report/data/attachments/bf99ecdb396f2260.txt similarity index 100% rename from allure-report/data/attachments/6a40280d8ceb16cd.txt rename to allure-report/data/attachments/bf99ecdb396f2260.txt diff --git a/allure-report/data/attachments/9f73c3d7a4d872db.txt b/allure-report/data/attachments/c2193538ea3afe0a.txt similarity index 100% rename from allure-report/data/attachments/9f73c3d7a4d872db.txt rename to allure-report/data/attachments/c2193538ea3afe0a.txt diff --git a/allure-report/data/attachments/524aa4f029baa8f0.txt b/allure-report/data/attachments/c2a52b208b761917.txt similarity index 100% rename from allure-report/data/attachments/524aa4f029baa8f0.txt rename to allure-report/data/attachments/c2a52b208b761917.txt diff --git a/allure-report/data/attachments/66609ce44d720b41.txt b/allure-report/data/attachments/c2e67de795c89a5a.txt similarity index 100% rename from allure-report/data/attachments/66609ce44d720b41.txt rename to allure-report/data/attachments/c2e67de795c89a5a.txt diff --git a/allure-report/data/attachments/9799e3f6110c5a32.txt b/allure-report/data/attachments/c2f1b1cb1ae72af.txt similarity index 100% rename from allure-report/data/attachments/9799e3f6110c5a32.txt rename to allure-report/data/attachments/c2f1b1cb1ae72af.txt diff --git a/allure-report/data/attachments/2f87f52236c75608.txt b/allure-report/data/attachments/c3f7cfc63c7ff6c0.txt similarity index 100% rename from allure-report/data/attachments/2f87f52236c75608.txt rename to allure-report/data/attachments/c3f7cfc63c7ff6c0.txt diff --git a/allure-report/data/attachments/8b971d66be6d6e40.txt b/allure-report/data/attachments/c44b1c3c0ffa10e2.txt similarity index 100% rename from allure-report/data/attachments/8b971d66be6d6e40.txt rename to allure-report/data/attachments/c44b1c3c0ffa10e2.txt diff --git a/allure-report/data/attachments/4a17336d068efc8d.txt b/allure-report/data/attachments/c451fef2d9e750cf.txt similarity index 100% rename from allure-report/data/attachments/4a17336d068efc8d.txt rename to allure-report/data/attachments/c451fef2d9e750cf.txt diff --git a/allure-report/data/attachments/29aa0c598c1f2d04.txt b/allure-report/data/attachments/c48ba88f01713cd9.txt similarity index 100% rename from allure-report/data/attachments/29aa0c598c1f2d04.txt rename to allure-report/data/attachments/c48ba88f01713cd9.txt diff --git a/allure-report/data/attachments/2a7e83a8939aa3ea.txt b/allure-report/data/attachments/c4c9e9114ad6559f.txt similarity index 100% rename from allure-report/data/attachments/2a7e83a8939aa3ea.txt rename to allure-report/data/attachments/c4c9e9114ad6559f.txt diff --git a/allure-report/data/attachments/5cd6ffe4ff4d743f.txt b/allure-report/data/attachments/c4ea8d9f8cc216b.txt similarity index 100% rename from allure-report/data/attachments/5cd6ffe4ff4d743f.txt rename to allure-report/data/attachments/c4ea8d9f8cc216b.txt diff --git a/allure-report/data/attachments/1dfb198a7253b941.txt b/allure-report/data/attachments/c59a8e0803dd0f2a.txt similarity index 100% rename from allure-report/data/attachments/1dfb198a7253b941.txt rename to allure-report/data/attachments/c59a8e0803dd0f2a.txt diff --git a/allure-report/data/attachments/d8719a36b49cd420.txt b/allure-report/data/attachments/c5bd55033a46cbd6.txt similarity index 100% rename from allure-report/data/attachments/d8719a36b49cd420.txt rename to allure-report/data/attachments/c5bd55033a46cbd6.txt diff --git a/allure-report/data/attachments/912408d5d8c9a319.txt b/allure-report/data/attachments/c5e476dd4b6a20ba.txt similarity index 100% rename from allure-report/data/attachments/912408d5d8c9a319.txt rename to allure-report/data/attachments/c5e476dd4b6a20ba.txt diff --git a/allure-report/data/attachments/2e0ebd0ab799745b.txt b/allure-report/data/attachments/c74dda443bb93e16.txt similarity index 100% rename from allure-report/data/attachments/2e0ebd0ab799745b.txt rename to allure-report/data/attachments/c74dda443bb93e16.txt diff --git a/allure-report/data/attachments/24af1d7a0c0925a.txt b/allure-report/data/attachments/c9f5f46a27073adb.txt similarity index 100% rename from allure-report/data/attachments/24af1d7a0c0925a.txt rename to allure-report/data/attachments/c9f5f46a27073adb.txt diff --git a/allure-report/data/attachments/baaad4c171b47b9e.txt b/allure-report/data/attachments/cb0ee2e023f35346.txt similarity index 100% rename from allure-report/data/attachments/baaad4c171b47b9e.txt rename to allure-report/data/attachments/cb0ee2e023f35346.txt diff --git a/allure-report/data/attachments/94e9d8b306bae268.txt b/allure-report/data/attachments/cb23a7b28fc18bd6.txt similarity index 100% rename from allure-report/data/attachments/94e9d8b306bae268.txt rename to allure-report/data/attachments/cb23a7b28fc18bd6.txt diff --git a/allure-report/data/attachments/8c55c5917aa6e797.txt b/allure-report/data/attachments/cb41782d94c9aab7.txt similarity index 100% rename from allure-report/data/attachments/8c55c5917aa6e797.txt rename to allure-report/data/attachments/cb41782d94c9aab7.txt diff --git a/allure-report/data/attachments/f1567e8d01d8dfde.txt b/allure-report/data/attachments/cbd3c7018b67e8e4.txt similarity index 100% rename from allure-report/data/attachments/f1567e8d01d8dfde.txt rename to allure-report/data/attachments/cbd3c7018b67e8e4.txt diff --git a/allure-report/data/attachments/a3b3cc61f9d4e36a.txt b/allure-report/data/attachments/cc4cfb2dc7db30af.txt similarity index 100% rename from allure-report/data/attachments/a3b3cc61f9d4e36a.txt rename to allure-report/data/attachments/cc4cfb2dc7db30af.txt diff --git a/allure-report/data/attachments/d21731264b505a67.txt b/allure-report/data/attachments/cc63349648479638.txt similarity index 100% rename from allure-report/data/attachments/d21731264b505a67.txt rename to allure-report/data/attachments/cc63349648479638.txt diff --git a/allure-report/data/attachments/9e245b3b58a92040.txt b/allure-report/data/attachments/ccbd4e70fd917551.txt similarity index 100% rename from allure-report/data/attachments/9e245b3b58a92040.txt rename to allure-report/data/attachments/ccbd4e70fd917551.txt diff --git a/allure-report/data/attachments/2696faacdbe9d8c7.txt b/allure-report/data/attachments/cf72669419827310.txt similarity index 100% rename from allure-report/data/attachments/2696faacdbe9d8c7.txt rename to allure-report/data/attachments/cf72669419827310.txt diff --git a/allure-report/data/attachments/b56e36dfb1d3c6b9.txt b/allure-report/data/attachments/cf7f17d6f7fd036a.txt similarity index 100% rename from allure-report/data/attachments/b56e36dfb1d3c6b9.txt rename to allure-report/data/attachments/cf7f17d6f7fd036a.txt diff --git a/allure-report/data/attachments/a6b1894a1d267067.txt b/allure-report/data/attachments/cfe73955a863d89d.txt similarity index 100% rename from allure-report/data/attachments/a6b1894a1d267067.txt rename to allure-report/data/attachments/cfe73955a863d89d.txt diff --git a/allure-report/data/attachments/5d69906a8709b5cf.txt b/allure-report/data/attachments/cfefef663b0332e5.txt similarity index 100% rename from allure-report/data/attachments/5d69906a8709b5cf.txt rename to allure-report/data/attachments/cfefef663b0332e5.txt diff --git a/allure-report/data/attachments/9f9ce9c609c0bc6d.txt b/allure-report/data/attachments/d00e203177644379.txt similarity index 100% rename from allure-report/data/attachments/9f9ce9c609c0bc6d.txt rename to allure-report/data/attachments/d00e203177644379.txt diff --git a/allure-report/data/attachments/102e6d56faf7b4e2.txt b/allure-report/data/attachments/d14e7908f9d07961.txt similarity index 100% rename from allure-report/data/attachments/102e6d56faf7b4e2.txt rename to allure-report/data/attachments/d14e7908f9d07961.txt diff --git a/allure-report/data/attachments/d473fba435502d8.txt b/allure-report/data/attachments/d2045a3977b6446a.txt similarity index 100% rename from allure-report/data/attachments/d473fba435502d8.txt rename to allure-report/data/attachments/d2045a3977b6446a.txt diff --git a/allure-report/data/attachments/ef0993259005a4f7.txt b/allure-report/data/attachments/d440fc5c222001d7.txt similarity index 100% rename from allure-report/data/attachments/ef0993259005a4f7.txt rename to allure-report/data/attachments/d440fc5c222001d7.txt diff --git a/allure-report/data/attachments/e07fc7bf167a48cd.txt b/allure-report/data/attachments/d4a81151a0ff1cd3.txt similarity index 100% rename from allure-report/data/attachments/e07fc7bf167a48cd.txt rename to allure-report/data/attachments/d4a81151a0ff1cd3.txt diff --git a/allure-report/data/attachments/a85d028b53b2fa36.txt b/allure-report/data/attachments/d4e82428a3f7df08.txt similarity index 100% rename from allure-report/data/attachments/a85d028b53b2fa36.txt rename to allure-report/data/attachments/d4e82428a3f7df08.txt diff --git a/allure-report/data/attachments/38c339de2200090.txt b/allure-report/data/attachments/d514a9b6a336ccd7.txt similarity index 100% rename from allure-report/data/attachments/38c339de2200090.txt rename to allure-report/data/attachments/d514a9b6a336ccd7.txt diff --git a/allure-report/data/attachments/7b12ebc1ff02117.txt b/allure-report/data/attachments/d548d3f08000ee3d.txt similarity index 100% rename from allure-report/data/attachments/7b12ebc1ff02117.txt rename to allure-report/data/attachments/d548d3f08000ee3d.txt diff --git a/allure-report/data/attachments/7a82343faf93d23b.txt b/allure-report/data/attachments/d5ed21afa8637a26.txt similarity index 100% rename from allure-report/data/attachments/7a82343faf93d23b.txt rename to allure-report/data/attachments/d5ed21afa8637a26.txt diff --git a/allure-report/data/attachments/31e63916e4212e6.txt b/allure-report/data/attachments/d66cc433d6fd8732.txt similarity index 100% rename from allure-report/data/attachments/31e63916e4212e6.txt rename to allure-report/data/attachments/d66cc433d6fd8732.txt diff --git a/allure-report/data/attachments/636126aa0fb68ef3.txt b/allure-report/data/attachments/d7c022e7514eebb0.txt similarity index 100% rename from allure-report/data/attachments/636126aa0fb68ef3.txt rename to allure-report/data/attachments/d7c022e7514eebb0.txt diff --git a/allure-report/data/attachments/609bbc010bbea5b7.txt b/allure-report/data/attachments/d7e95fbbc7ae4edc.txt similarity index 100% rename from allure-report/data/attachments/609bbc010bbea5b7.txt rename to allure-report/data/attachments/d7e95fbbc7ae4edc.txt diff --git a/allure-report/data/attachments/eb2a7d798a0dd1d2.txt b/allure-report/data/attachments/d857b907a04662b0.txt similarity index 100% rename from allure-report/data/attachments/eb2a7d798a0dd1d2.txt rename to allure-report/data/attachments/d857b907a04662b0.txt diff --git a/allure-report/data/attachments/d53bb0f8a7466de9.txt b/allure-report/data/attachments/d85c19e058de9af1.txt similarity index 100% rename from allure-report/data/attachments/d53bb0f8a7466de9.txt rename to allure-report/data/attachments/d85c19e058de9af1.txt diff --git a/allure-report/data/attachments/c5a486abc69fc1fc.txt b/allure-report/data/attachments/d9705198a9828f90.txt similarity index 100% rename from allure-report/data/attachments/c5a486abc69fc1fc.txt rename to allure-report/data/attachments/d9705198a9828f90.txt diff --git a/allure-report/data/attachments/f5e7c985bb14104f.txt b/allure-report/data/attachments/d98685c9fe133870.txt similarity index 100% rename from allure-report/data/attachments/f5e7c985bb14104f.txt rename to allure-report/data/attachments/d98685c9fe133870.txt diff --git a/allure-report/data/attachments/aa1c2e562160f609.txt b/allure-report/data/attachments/da2e8ce75b901e82.txt similarity index 100% rename from allure-report/data/attachments/aa1c2e562160f609.txt rename to allure-report/data/attachments/da2e8ce75b901e82.txt diff --git a/allure-report/data/attachments/a9137c6294090d64.txt b/allure-report/data/attachments/dba3075441128a41.txt similarity index 100% rename from allure-report/data/attachments/a9137c6294090d64.txt rename to allure-report/data/attachments/dba3075441128a41.txt diff --git a/allure-report/data/attachments/cd297c98bb2f9177.txt b/allure-report/data/attachments/dba645bb71d6294b.txt similarity index 100% rename from allure-report/data/attachments/cd297c98bb2f9177.txt rename to allure-report/data/attachments/dba645bb71d6294b.txt diff --git a/allure-report/data/attachments/d497d06498897878.txt b/allure-report/data/attachments/dbdc65123191fc3f.txt similarity index 100% rename from allure-report/data/attachments/d497d06498897878.txt rename to allure-report/data/attachments/dbdc65123191fc3f.txt diff --git a/allure-report/data/attachments/baac53f2bcc51cfd.txt b/allure-report/data/attachments/dcbab4e3ea8be2cb.txt similarity index 100% rename from allure-report/data/attachments/baac53f2bcc51cfd.txt rename to allure-report/data/attachments/dcbab4e3ea8be2cb.txt diff --git a/allure-report/data/attachments/760dfa55370d45f9.txt b/allure-report/data/attachments/dcf012b2df6b781b.txt similarity index 100% rename from allure-report/data/attachments/760dfa55370d45f9.txt rename to allure-report/data/attachments/dcf012b2df6b781b.txt diff --git a/allure-report/data/attachments/408eed1715a3503c.txt b/allure-report/data/attachments/dd95f43103333bf7.txt similarity index 100% rename from allure-report/data/attachments/408eed1715a3503c.txt rename to allure-report/data/attachments/dd95f43103333bf7.txt diff --git a/allure-report/data/attachments/73b1a6171e8a5d4c.txt b/allure-report/data/attachments/dea29eab15838d9c.txt similarity index 100% rename from allure-report/data/attachments/73b1a6171e8a5d4c.txt rename to allure-report/data/attachments/dea29eab15838d9c.txt diff --git a/allure-report/data/attachments/e4c3264e25c98281.txt b/allure-report/data/attachments/df070dcdc10f9538.txt similarity index 100% rename from allure-report/data/attachments/e4c3264e25c98281.txt rename to allure-report/data/attachments/df070dcdc10f9538.txt diff --git a/allure-report/data/attachments/379cf75cca245ee2.txt b/allure-report/data/attachments/dfcb4cec23e82cb9.txt similarity index 100% rename from allure-report/data/attachments/379cf75cca245ee2.txt rename to allure-report/data/attachments/dfcb4cec23e82cb9.txt diff --git a/allure-report/data/attachments/7bf0ce4c1ec59dfa.txt b/allure-report/data/attachments/e048c0e6bb06d724.txt similarity index 100% rename from allure-report/data/attachments/7bf0ce4c1ec59dfa.txt rename to allure-report/data/attachments/e048c0e6bb06d724.txt diff --git a/allure-report/data/attachments/4b1abe2714e07e88.txt b/allure-report/data/attachments/e0680ee49daf3ecd.txt similarity index 100% rename from allure-report/data/attachments/4b1abe2714e07e88.txt rename to allure-report/data/attachments/e0680ee49daf3ecd.txt diff --git a/allure-report/data/attachments/cc532e29d77b891e.txt b/allure-report/data/attachments/e0c62dc3071fe329.txt similarity index 100% rename from allure-report/data/attachments/cc532e29d77b891e.txt rename to allure-report/data/attachments/e0c62dc3071fe329.txt diff --git a/allure-report/data/attachments/5f030da14b8e67d2.txt b/allure-report/data/attachments/e11f321ad70e66d6.txt similarity index 100% rename from allure-report/data/attachments/5f030da14b8e67d2.txt rename to allure-report/data/attachments/e11f321ad70e66d6.txt diff --git a/allure-report/data/attachments/77ebc227660f6677.txt b/allure-report/data/attachments/e225c605af3cdfe6.txt similarity index 100% rename from allure-report/data/attachments/77ebc227660f6677.txt rename to allure-report/data/attachments/e225c605af3cdfe6.txt diff --git a/allure-report/data/attachments/47825a7b608174fa.txt b/allure-report/data/attachments/e23896a75b3be671.txt similarity index 100% rename from allure-report/data/attachments/47825a7b608174fa.txt rename to allure-report/data/attachments/e23896a75b3be671.txt diff --git a/allure-report/data/attachments/41608c9ef684cb1e.txt b/allure-report/data/attachments/e245408b463a8838.txt similarity index 100% rename from allure-report/data/attachments/41608c9ef684cb1e.txt rename to allure-report/data/attachments/e245408b463a8838.txt diff --git a/allure-report/data/attachments/72e5eb2953c41fef.txt b/allure-report/data/attachments/e3476f63fad27664.txt similarity index 100% rename from allure-report/data/attachments/72e5eb2953c41fef.txt rename to allure-report/data/attachments/e3476f63fad27664.txt diff --git a/allure-report/data/attachments/16068cef6801ede5.txt b/allure-report/data/attachments/e355939f9d2af970.txt similarity index 100% rename from allure-report/data/attachments/16068cef6801ede5.txt rename to allure-report/data/attachments/e355939f9d2af970.txt diff --git a/allure-report/data/attachments/e7a51c8d74f448fe.txt b/allure-report/data/attachments/e3a4cf54bcea79f.txt similarity index 100% rename from allure-report/data/attachments/e7a51c8d74f448fe.txt rename to allure-report/data/attachments/e3a4cf54bcea79f.txt diff --git a/allure-report/data/attachments/b1edf41b3f6059d4.txt b/allure-report/data/attachments/e3e8b5194a02b840.txt similarity index 100% rename from allure-report/data/attachments/b1edf41b3f6059d4.txt rename to allure-report/data/attachments/e3e8b5194a02b840.txt diff --git a/allure-report/data/attachments/61785349fe52fbcf.txt b/allure-report/data/attachments/e41185e6a2547eda.txt similarity index 100% rename from allure-report/data/attachments/61785349fe52fbcf.txt rename to allure-report/data/attachments/e41185e6a2547eda.txt diff --git a/allure-report/data/attachments/47a1750ca1ae0253.txt b/allure-report/data/attachments/e51eb49b458f8b30.txt similarity index 100% rename from allure-report/data/attachments/47a1750ca1ae0253.txt rename to allure-report/data/attachments/e51eb49b458f8b30.txt diff --git a/allure-report/data/attachments/1de780c85f2aabb6.txt b/allure-report/data/attachments/e5b6ae7757c6e743.txt similarity index 100% rename from allure-report/data/attachments/1de780c85f2aabb6.txt rename to allure-report/data/attachments/e5b6ae7757c6e743.txt diff --git a/allure-report/data/attachments/f7cb1151a0bdf19c.txt b/allure-report/data/attachments/e5c727b0b5b40d52.txt similarity index 100% rename from allure-report/data/attachments/f7cb1151a0bdf19c.txt rename to allure-report/data/attachments/e5c727b0b5b40d52.txt diff --git a/allure-report/data/attachments/a66e2ef0dd5ae597.txt b/allure-report/data/attachments/e8051d2095f3e05f.txt similarity index 100% rename from allure-report/data/attachments/a66e2ef0dd5ae597.txt rename to allure-report/data/attachments/e8051d2095f3e05f.txt diff --git a/allure-report/data/attachments/2c51ebffe286fde1.txt b/allure-report/data/attachments/ea2c55d1a71e4c1b.txt similarity index 100% rename from allure-report/data/attachments/2c51ebffe286fde1.txt rename to allure-report/data/attachments/ea2c55d1a71e4c1b.txt diff --git a/allure-report/data/attachments/72a8521de031df4e.txt b/allure-report/data/attachments/ea8ea3523c9226e8.txt similarity index 100% rename from allure-report/data/attachments/72a8521de031df4e.txt rename to allure-report/data/attachments/ea8ea3523c9226e8.txt diff --git a/allure-report/data/attachments/9473dcf11398d47e.txt b/allure-report/data/attachments/eacae423597e783.txt similarity index 100% rename from allure-report/data/attachments/9473dcf11398d47e.txt rename to allure-report/data/attachments/eacae423597e783.txt diff --git a/allure-report/data/attachments/b010be274d24546e.txt b/allure-report/data/attachments/eb7ef9838cd7cad8.txt similarity index 100% rename from allure-report/data/attachments/b010be274d24546e.txt rename to allure-report/data/attachments/eb7ef9838cd7cad8.txt diff --git a/allure-report/data/attachments/9e367429b8224516.txt b/allure-report/data/attachments/ee3a0764d3c252bb.txt similarity index 100% rename from allure-report/data/attachments/9e367429b8224516.txt rename to allure-report/data/attachments/ee3a0764d3c252bb.txt diff --git a/allure-report/data/attachments/d2685b3f41e9f61c.txt b/allure-report/data/attachments/ef79b655f296972f.txt similarity index 100% rename from allure-report/data/attachments/d2685b3f41e9f61c.txt rename to allure-report/data/attachments/ef79b655f296972f.txt diff --git a/allure-report/data/attachments/5947f9b7e86e5fe4.txt b/allure-report/data/attachments/efe9c31cce4f2691.txt similarity index 100% rename from allure-report/data/attachments/5947f9b7e86e5fe4.txt rename to allure-report/data/attachments/efe9c31cce4f2691.txt diff --git a/allure-report/data/attachments/efdc700a12236023.txt b/allure-report/data/attachments/f0b58c59c3feea05.txt similarity index 100% rename from allure-report/data/attachments/efdc700a12236023.txt rename to allure-report/data/attachments/f0b58c59c3feea05.txt diff --git a/allure-report/data/attachments/50b40a6b644cd21e.txt b/allure-report/data/attachments/f0e8db62b4d5a04e.txt similarity index 100% rename from allure-report/data/attachments/50b40a6b644cd21e.txt rename to allure-report/data/attachments/f0e8db62b4d5a04e.txt diff --git a/allure-report/data/attachments/eecd5302084b69b0.txt b/allure-report/data/attachments/f0f675da06acca44.txt similarity index 100% rename from allure-report/data/attachments/eecd5302084b69b0.txt rename to allure-report/data/attachments/f0f675da06acca44.txt diff --git a/allure-report/data/attachments/fec9fd349f1d045f.txt b/allure-report/data/attachments/f1383a1298b478d1.txt similarity index 100% rename from allure-report/data/attachments/fec9fd349f1d045f.txt rename to allure-report/data/attachments/f1383a1298b478d1.txt diff --git a/allure-report/data/attachments/9970c74c966a73af.txt b/allure-report/data/attachments/f28cf2c881206bc7.txt similarity index 100% rename from allure-report/data/attachments/9970c74c966a73af.txt rename to allure-report/data/attachments/f28cf2c881206bc7.txt diff --git a/allure-report/data/attachments/5a774371a2badce6.txt b/allure-report/data/attachments/f3103a75268ee27b.txt similarity index 100% rename from allure-report/data/attachments/5a774371a2badce6.txt rename to allure-report/data/attachments/f3103a75268ee27b.txt diff --git a/allure-report/data/attachments/c9000a1177d78061.txt b/allure-report/data/attachments/f40eb1a37e76915b.txt similarity index 100% rename from allure-report/data/attachments/c9000a1177d78061.txt rename to allure-report/data/attachments/f40eb1a37e76915b.txt diff --git a/allure-report/data/attachments/6f187ca9e0f038e3.txt b/allure-report/data/attachments/f476dbef5564bf84.txt similarity index 100% rename from allure-report/data/attachments/6f187ca9e0f038e3.txt rename to allure-report/data/attachments/f476dbef5564bf84.txt diff --git a/allure-report/data/attachments/8d340a810a5e354f.txt b/allure-report/data/attachments/f4fc65b495fcb88b.txt similarity index 100% rename from allure-report/data/attachments/8d340a810a5e354f.txt rename to allure-report/data/attachments/f4fc65b495fcb88b.txt diff --git a/allure-report/data/attachments/6a90a8741dd8ba1f.txt b/allure-report/data/attachments/f5908886e3245af0.txt similarity index 100% rename from allure-report/data/attachments/6a90a8741dd8ba1f.txt rename to allure-report/data/attachments/f5908886e3245af0.txt diff --git a/allure-report/data/attachments/84790cd414c0264a.txt b/allure-report/data/attachments/f5d9059f956d5013.txt similarity index 100% rename from allure-report/data/attachments/84790cd414c0264a.txt rename to allure-report/data/attachments/f5d9059f956d5013.txt diff --git a/allure-report/data/attachments/817f3cd0d39f56b9.txt b/allure-report/data/attachments/f5f071e3b309d77.txt similarity index 100% rename from allure-report/data/attachments/817f3cd0d39f56b9.txt rename to allure-report/data/attachments/f5f071e3b309d77.txt diff --git a/allure-report/data/attachments/5967a008f3d7b308.txt b/allure-report/data/attachments/f63a818ce466a5d5.txt similarity index 100% rename from allure-report/data/attachments/5967a008f3d7b308.txt rename to allure-report/data/attachments/f63a818ce466a5d5.txt diff --git a/allure-report/data/attachments/78d708b30903548d.txt b/allure-report/data/attachments/f6add51b506494b4.txt similarity index 100% rename from allure-report/data/attachments/78d708b30903548d.txt rename to allure-report/data/attachments/f6add51b506494b4.txt diff --git a/allure-report/data/attachments/58062fc7761306e3.txt b/allure-report/data/attachments/f79d82c8ac8b6bda.txt similarity index 100% rename from allure-report/data/attachments/58062fc7761306e3.txt rename to allure-report/data/attachments/f79d82c8ac8b6bda.txt diff --git a/allure-report/data/attachments/2f6f124c7be3a6e5.txt b/allure-report/data/attachments/f8ebdb80be997fde.txt similarity index 100% rename from allure-report/data/attachments/2f6f124c7be3a6e5.txt rename to allure-report/data/attachments/f8ebdb80be997fde.txt diff --git a/allure-report/data/attachments/d38be6ef6dfa6828.txt b/allure-report/data/attachments/f9702a98b358e235.txt similarity index 100% rename from allure-report/data/attachments/d38be6ef6dfa6828.txt rename to allure-report/data/attachments/f9702a98b358e235.txt diff --git a/allure-report/data/attachments/e22a14740da9552.txt b/allure-report/data/attachments/f9e0beeb8300348.txt similarity index 100% rename from allure-report/data/attachments/e22a14740da9552.txt rename to allure-report/data/attachments/f9e0beeb8300348.txt diff --git a/allure-report/data/attachments/d03a9a8c81cbe39f.txt b/allure-report/data/attachments/fa01ea71c168121d.txt similarity index 100% rename from allure-report/data/attachments/d03a9a8c81cbe39f.txt rename to allure-report/data/attachments/fa01ea71c168121d.txt diff --git a/allure-report/data/attachments/7899fdb7c4350c2b.txt b/allure-report/data/attachments/fac7406e86e2d594.txt similarity index 100% rename from allure-report/data/attachments/7899fdb7c4350c2b.txt rename to allure-report/data/attachments/fac7406e86e2d594.txt diff --git a/allure-report/data/attachments/cfdd9038af68abcd.txt b/allure-report/data/attachments/fafd1746b13ebf11.txt similarity index 100% rename from allure-report/data/attachments/cfdd9038af68abcd.txt rename to allure-report/data/attachments/fafd1746b13ebf11.txt diff --git a/allure-report/data/attachments/c2e7b358c14deeef.txt b/allure-report/data/attachments/fb0df6afc6219df9.txt similarity index 100% rename from allure-report/data/attachments/c2e7b358c14deeef.txt rename to allure-report/data/attachments/fb0df6afc6219df9.txt diff --git a/allure-report/data/attachments/458fa73ae78d8720.txt b/allure-report/data/attachments/fb84be60b66700fa.txt similarity index 100% rename from allure-report/data/attachments/458fa73ae78d8720.txt rename to allure-report/data/attachments/fb84be60b66700fa.txt diff --git a/allure-report/data/attachments/c9806239f448fcb9.txt b/allure-report/data/attachments/fbdaeda311992dcb.txt similarity index 100% rename from allure-report/data/attachments/c9806239f448fcb9.txt rename to allure-report/data/attachments/fbdaeda311992dcb.txt diff --git a/allure-report/data/attachments/fceb9ab1ca4c439c.txt b/allure-report/data/attachments/fd192e99e6a5065d.txt similarity index 100% rename from allure-report/data/attachments/fceb9ab1ca4c439c.txt rename to allure-report/data/attachments/fd192e99e6a5065d.txt diff --git a/allure-report/data/attachments/41b26a3792b70bd8.txt b/allure-report/data/attachments/fd40fcf970ebd4c6.txt similarity index 100% rename from allure-report/data/attachments/41b26a3792b70bd8.txt rename to allure-report/data/attachments/fd40fcf970ebd4c6.txt diff --git a/allure-report/data/attachments/fb983dadd4fd2138.txt b/allure-report/data/attachments/fec7d456d7e1f9e8.txt similarity index 100% rename from allure-report/data/attachments/fb983dadd4fd2138.txt rename to allure-report/data/attachments/fec7d456d7e1f9e8.txt diff --git a/allure-report/data/attachments/d22073d8d3352f3e.txt b/allure-report/data/attachments/ff5fc916c91c2ec1.txt similarity index 100% rename from allure-report/data/attachments/d22073d8d3352f3e.txt rename to allure-report/data/attachments/ff5fc916c91c2ec1.txt diff --git a/allure-report/data/attachments/f91cde579304f854.txt b/allure-report/data/attachments/ffe262df372f1494.txt similarity index 100% rename from allure-report/data/attachments/f91cde579304f854.txt rename to allure-report/data/attachments/ffe262df372f1494.txt diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index 56d7ab60e14..7a2b3180c58 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,158 +1,159 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" -"0","6 kyu","0","String","3","0","Character frequency","0" -"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" -"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" -"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" -"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" -"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" -"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" "0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" -"0","8 kyu","0","String","3","0","Reversed Strings","0" -"0","7 kyu","0","Square Calculation","6","0","You're a square","0" "0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" -"0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" -"0","7 kyu","0","String","2","0","Help Bob count letters and digits.","0" -"0","3 kyu","0","String","1","0","Calculator","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","Math","1","0","Number Zoo Patrol","0" -"0","5 kyu","0","String","1","0","Where my anagrams at?","0" -"0","7 kyu","0","Lists","1","0","Always perfect","0" -"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" -"0","3 kyu","0","String","2","2","Line Safari - Is that a line?","0" -"0","5 kyu","0","Lists","3","0","Find the safest places in town","0" -"0","6 kyu","0","String","1","0","String subpattern recognition III","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","String","1","0","Next bigger number with the same digits","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","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" -"0","7 kyu","0","String","1","0","Password validator","0" -"0","4 kyu","0","Lists","1","0","Sum by Factors","0" -"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" -"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" -"0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" -"0","5 kyu","0","Math","0","4","Diophantine Equation","0" -"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","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","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" -"0","6 kyu","0","Lists","1","0","Array to HTML table","0" -"0","6 kyu","0","Algorithms","1","0","Sums of Parts","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","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","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" -"0","7 kyu","0","Math","3","0","Easy Line","0" -"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" -"0","4 kyu","0","Lists","1","0","Snail","0" -"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" -"0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" -"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" -"0","5 kyu","0","Lists","0","1","Find the smallest","0" -"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" -"0","5 kyu","0","String","1","0","Simple Pig Latin","0" -"0","8 kyu","0","Lists","3","0","Logical Calculator","0" -"0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" -"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" -"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" -"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" -"0","6 kyu","0","String","6","0","First character that repeats","0" "0","7 kyu","0","String","1","0","Pull your words together, man!","0" -"0","4 kyu","0","String","1","0","Human readable duration format","0" -"0","6 kyu","0","Lists","1","0","Pyramid Array","0" -"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" -"0","7 kyu","0","String","1","0","Find the longest gap!","0" -"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" -"0","6 kyu","0","String","1","0","Numericals of a String","0" -"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" -"0","4 kyu","0","String","1","0","Strip Comments","0" -"0","8 kyu","0","Date","2","0","Is your period late","0" -"0","No kyu","0","Utils","2","0","Testing is_prime util","0" -"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" -"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" -"0","6 kyu","0","Algorithms","1","0","Scheduling (Shortest Job First or SJF)","0" -"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" -"0","8 kyu","0","Math","1","0","Century From Year","0" -"0","6 kyu","0","Algorithms","1","0","Valid Braces","0" -"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" -"0","6 kyu","0","String","1","0","Count letters in string","0" -"0","No kyu","0","Utils","2","0","Testing gen_primes util","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","Classes","1","0","Make Class","0" -"0","8 kyu","0","Lists","4","0","Counting sheep...","0" -"0","4 kyu","0","String","0","1","Permutations","0" -"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" -"0","4 kyu","0","String","1","0","Range Extraction","0" -"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" -"0","6 kyu","0","String","3","0","Permute a Palindrome","0" -"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" -"0","8 kyu","0","Tuple","1","0","Greek Sort","0" -"0","8 kyu","0","String","1","0","MakeUpperCase","0" -"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" -"0","5 kyu","0","String","1","0","The Hashtag Generator","0" -"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" -"0","6 kyu","0","Math","1","0","Disease Spread","0" "0","7 kyu","0","String","2","0","Jaden Casing Strings","0" -"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" -"0","5 kyu","0","Lists","1","0","flatten()","0" -"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","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","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" -"0","8 kyu","0","String","1","0","Remove First and Last 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","Formatting","1","0","Formatting decimal places #1","0" -"0","5 kyu","0","Math","0","1","Josephus Survivor","0" -"0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" -"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" -"0","8 kyu","0","Lists","1","0","Check the exam","0" -"0","7 kyu","0","String","1","0","Isograms","0" -"0","6 kyu","0","Algorithms","1","0","Unique In Order","0" +"0","7 kyu","0","String","1","0","Find the longest gap!","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","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","6 kyu","0","Lists","1","0","Find the odd int","0" -"0","3 kyu","0","Lists","1","0","Make a spiral","0" -"0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" -"0","6 kyu","0","Lists","1","0","Array.diff","0" -"0","5 kyu","0","String","1","0","Not very secure","0" -"0","6 kyu","0","Factorial","1","0","Color Choice","0" -"0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" -"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" -"0","6 kyu","0","String","1","0","Your order, please","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","4 kyu","0","String","1","0","Strings Mix","0" -"0","5 kyu","0","Math","1","0","Human Readable Time","0" -"0","6 kyu","0","Lists","1","0","Sort the odd","0" -"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" -"0","6 kyu","0","String","1","0","String subpattern recognition II","0" -"0","5 kyu","0","Memoization","1","0","Sum of Pairs","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","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","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","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" -"0","4 kyu","0","String","1","0","Next smaller number with the same digits","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","8 kyu","0","Addition","1","0","Messi goals function","0" +"0","4 kyu","0","Lists","1","0","Sum by Factors","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","6 kyu","0","Algorithms","1","0","Encrypt this!","0" -"0","7 kyu","0","String","1","0","Significant Figures","0" +"0","8 kyu","0","Lists","1","0","Swap Values","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","6 kyu","0","String","1","0","String transformer","0" -"0","5 kyu","0","Lists","1","0","Directions Reduction","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","String","1","0","Is it a palindrome?","0" "0","8 kyu","0","String","1","0","Remove String Spaces","0" -"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" -"0","6 kyu","0","Math","1","0","Casino chips","0" -"0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" -"0","6 kyu","0","Algorithms","1","0","Decipher this!","0" -"0","8 kyu","0","Multiplication","1","0","Multiply","0" -"0","8 kyu","0","Math","1","0","Will you make it?","0" "0","6 kyu","0","String","1","0","String subpattern recognition I","0" -"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" +"0","4 kyu","0","String","1","0","Strings Mix","0" "0","7 kyu","0","Math","1","0","Share prices","0" -"0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" -"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","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","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","Alphabet wars - nuclear strike","0" -"0","7 kyu","0","String","1","0","V A P O R C O D E","0" -"0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" -"0","3 kyu","0","Lists","1","0","Battleship field validator","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","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" -"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" -"0","8 kyu","0","String","1","0","Is it a palindrome?","0" -"0","6 kyu","0","Algorithms","1","0","Easy Diagonal","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","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","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","MakeUpperCase","0" +"0","6 kyu","0","Math","1","0","Casino chips","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","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","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","8 kyu","0","Lists","1","0","Count the Monkeys!","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 086758d9458..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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"732b9dd805d734b8","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c700736d12b44c86","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 (negative)","uid":"7e066328cfed2428","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c52dc9ba56a64495","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e695b3f4b0bdd51b","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":"183ba5aa4a18280","parentUid":"2c812329d9b34f7fcedf688bc9c33806","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"405b625cf95f9fbd","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"cb9f6d4c2aaf90e3","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f48dcf9628fe90ff","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"a3cba1eb012d0834","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"9a0c160871c69941729fb974987bc16e"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3e00c2c35d282154598febaf022db8e7"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"5215ad6eb474a73c045aec07a6a3c16b"},{"name":"Sum of odd numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"fa6c346b04c031d5","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9246dbe4ecdc42ce","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"56d019840f444cec","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"631ed8ca3aead56c","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1abde016dd7f5ee7","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"addec93357f6e501","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1bd3919646678e3f","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"197e80b267cccc2b","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":"9e017ac7fdaf6bf5","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Directions Reduction","children":[{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"String","children":[{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6a3f85e29591c654","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ad5cb812fbd5d4a","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"60f7c96f923539a5","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"dc076040e5481dc9","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3de1512f067d459d","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1251fa1056fea3d4","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5654bb5658921dcd","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3c7a781e3674db5e","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ef2b00c02db84592","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8e4b6f6bd251566","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5194ad39db439d08","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Line Safari - Is that a line?","children":[{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4249127f6bff6f10","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"450fbb27e2067be4","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d5aba2cd944d7efd","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"61e07c6ddcc506b1","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c00621abb22a9be3","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"25f6d563b3f222fd3637ec178f1b3829"}],"uid":"1b88ab8e8506eaa709573095130a441e"},{"name":"Control Flow","children":[{"name":"Validate Sudoku with size `NxN`","children":[{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b22afbc33030e55f","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"354cda6601a7cded","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"59e860fc2782867c","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e53952640c2c9e47","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b0cc123728fa2f2d","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"d6ad7a05187743ff","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c3655d4a978bd79","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c5bce40c2868c787","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63a8ebd07b8fa1c4","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4d8c29fe45d13f2d","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"64ddebaa5d6679fc","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Scheduling (Shortest Job First or SJF)","children":[{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"84a5fe3bfc444bfb52c89833f8b6b28e","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"84a5fe3bfc444bfb52c89833f8b6b28e"},{"name":"Sums of Parts","children":[{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"f2707c42d3822b9eaf4ba0c414ab6249","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"f2707c42d3822b9eaf4ba0c414ab6249"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Valid Braces","children":[{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"fda66cb9e919f6eb1da529d16b4523e0","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"]}],"uid":"fda66cb9e919f6eb1da529d16b4523e0"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"8a24f091ab8ff2e6405b466c1e4a82b3"}],"uid":"d1c03c9ab51dd09075f7a945d20660c1"},{"name":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f30b225377e5683d","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63b822db5bae14d4","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Reversed Strings","children":[{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7c6af0e0a129f035","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Lists","children":[{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8672ab2817945b36","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: positive flow","uid":"302e450946481df3","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1f1df83d6cc10b66","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6dfafb882d7cc41f","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a61ba5af03a1f296","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ff18bec5c293c228","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b02a54a0a8bd8284","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d0246537274067fb","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"2be24f9b66669d76","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"}],"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":"4710cc2182eb85cb","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9b0ec4eb2cd2dde7","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"fe77bba421870077d5d6e0fa886c7cb5"}],"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 7e984f0e765..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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"732b9dd805d734b8","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"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":"e695b3f4b0bdd51b","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":"183ba5aa4a18280","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"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":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"always_perfect.test_check_root"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"405b625cf95f9fbd","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b1056dd0bc1f2f4e","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"cb9f6d4c2aaf90e3","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9246dbe4ecdc42ce","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c87eac92a1b3b456","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"56d019840f444cec","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"growing_plant.test_growing_plant"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1abde016dd7f5ee7","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"password_validator.test_password"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"powers_of_3.test_largest_power"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","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":"c700736d12b44c86","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"share_prices.test_share_price"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"edfd5d811972f420","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5f97df940bb3f46a","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"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 big number as an input","uid":"fa6c346b04c031d5","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"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":"c52dc9ba56a64495","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"vaporcode.test_vaporcode"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Square numbers (positive)","uid":"1bd3919646678e3f","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_5","children":[{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"197e80b267cccc2b","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":"9e017ac7fdaf6bf5","parentUid":"3e59bcb34719d71bd9719866840227a7","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"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":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"diophantine_equation.test_solution","children":[{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 dir_reduc function","uid":"4eb91d777aea105a","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6a3f85e29591c654","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"720b65d3a7d8ec34","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"bb0cb59f0e1a4eca","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ad5cb812fbd5d4a","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"fef2d68159e448ff","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b7dd8f8438e567a9","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6ef44675aea47099","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c9684bf403c80de","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"14829aa4ce177c0a","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3c7a781e3674db5e","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"60f7c96f923539a5","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"dc076040e5481dc9","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"300c045916564a1","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5194ad39db439d08","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_line_negative","children":[{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"32a39f3c0fa23567","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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_decoding","children":[{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"},{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"450fbb27e2067be4","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d5aba2cd944d7efd","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7331de8e7202ad57","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"61e07c6ddcc506b1","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c00621abb22a9be3","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"8649c3105decfce4138f9d41edf0cec5"},{"name":"test_warrior","children":[{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]}],"uid":"0d62047a621cabeef8af32bce4e63018"}],"uid":"833d211f8698ccfc8f9c16129c62c235"},{"name":"validate_sudoku_with_size.test_sudoku","children":[{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"354cda6601a7cded","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e687a692c2c18f1b","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4d4729a99109106e","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 upper case","uid":"b0cc123728fa2f2d","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"character_frequency.test_character_frequency"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d6ad7a05187743ff","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"37bcd45d30c593a7","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: append","uid":"a78b9243c26a61bf","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"default_list.test_default_list"},{"name":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1c3655d4a978bd79","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"2890c501d19b5f47","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b22afbc33030e55f","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b36ca0513e4048a8","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]}],"uid":"numericals_of_string.test_numericals"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ee07ce647fa212f","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"416bb0c0ac58f7b6","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"scheduling.test_solution","children":[{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"7da07fec565898f0b48598a1fee6b886","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"scheduling.test_solution"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"5ff3f93ff1ffe8b3","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c5bce40c2868c787","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63a8ebd07b8fa1c4","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"sums_of_parts.test_solution","children":[{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"62a001897925dea7414ec58a1095f23c","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"sums_of_parts.test_solution"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"valid_braces.test_valid_braces","children":[{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"11736fc2b9c82a80098d60bb185fad78","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"]}],"uid":"valid_braces.test_valid_braces"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"vasya_clerk.test_tickets"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"8a89827c471bc909","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"f30b225377e5683d","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d9e0d2d6c00c88e9","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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: positive flow","uid":"302e450946481df3","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"98e0aca6e090522b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a61ba5af03a1f296","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ff18bec5c293c228","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"965bac5a2c55f031","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1b57aafe4439b9a8","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3de5bbe9e7cab5b6","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","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":"e532878179cb6f87","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 (negative)","uid":"2be24f9b66669d76","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"591cfdbc90cf4c5e","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"b2f619fce2ea028d","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1f1df83d6cc10b66","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c2a15dd126224894","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"63b822db5bae14d4","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 regular string","uid":"a5b469ea69ba375b","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"77ce7ba6af0b177a","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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 'Fail!'s","uid":"112ca50049d27c","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"c31558e9c7981ac7","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"7c6af0e0a129f035","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"6dfafb882d7cc41f","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"4710cc2182eb85cb","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"9b0ec4eb2cd2dde7","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"20f0deee24a1e834e03a32549c14c866"}],"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 39086d36f2d..25ac3219d59 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,556 +1,501 @@ "DESCRIPTION","DURATION IN MS","NAME","PARENT SUITE","START TIME","STATUS","STOP TIME","SUB SUITE","SUITE","TEST CLASS","TEST METHOD" " - Testing letter_frequency function - where all chars are in upper case + Testing list_squared function + :return: - ","0","All chars are in upper case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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 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. + Returns a list that misses only one element :return: - ","0","Testing Sudoku class","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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 'factorial' function + Testing 'feast' function with various test inputs - 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. + 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. - 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","Testing 'factorial' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" -" - Testing fix_the_meerkat function with various test data - :return: - ","0","fix_the_meerkat function function verification","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" -" - Testing the function with various test data + 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. + + 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 take function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing letter_frequency function - where all chars are in mixed case + 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 + + ""()"" => true + "")(()))"" => false + ""("" => false + ""(())((()())())"" => true :return: - ","1","All chars are in mixed case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Basic test case + 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"". + :return: - ","3","test_triangle","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 namelist + Testing is_solved function - Given: - an array containing hashes of names + The function should return whether the + board's current state is solved. - 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. + 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","String with no duplicate chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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 list_squared function + 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: - ","145","Testing list_squared function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Test with one char only + 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","Test with one char only","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - -1: Negative numbers cannot be square numbers + Testing the 'unique_in_order' function + with various test data :return: - ","0","Negative numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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","","" " - Returns a list that misses only one element + Testing easy line function exception :return: - ","1","'multiply' function verification with random list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 potion function with various test inputs + Verify that the function returns Messi's + total number of goals in all three leagues. :return: - ","2","Testing Potion class","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Classes","","" + ","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","","" " - 25 is a square number + Testing easy_line function :return: - ","0","Square numbers (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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 the function with various test data + 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). + :return: - ","0","Testing count_letters_and_digits function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 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","","" " - 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 using empty test data :return: - ","0","Wolf at the end of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" + ","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","","" " - 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 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","Testing the 'find_missing_number' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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. + Testing litres function with various test inputs :return: - ","0","Testing anagrams function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing check_root function with various test inputs + 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 - 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 we list all the natural numbers below 10 + that are multiples of 3 or 5, we get 3, 5, 6 and 9. + The sum of these multiples is 23. - If string contains other characters than number or - it has more or less than 4 numbers separated by comma - function returns ""incorrect input"". + Finish the solution so that it returns the sum of + all the multiples of 3 or 5 below the number passed in. - If string contains 4 numbers but not consecutive it - returns ""not consecutive"". - :return: - ","1","Testing check_root function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - Testing 'sum_triangular_numbers' function - with negative numbers + Note: If the number is a multiple of both 3 and 5, + only count it once. :return: - ","0","Testing 'sum_triangular_numbers' with negative numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - Testing Walker class - Testing starting position property based on positive grids - ","1","Testing Walker class - position property from positive grids","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - 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. + Test a function which formats a duration, + given as a number of seconds, in a human-friendly way. - The function should generate city map with coordinates. + 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 create_city_map function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Verify that 'has_subpattern' function - - 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). + Testing array_diff function :return: - ","0","Testing 'has_subpattern' (part 3) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" + ","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 Decoding functionality - ","0","Testing Decoding functionality","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 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","","" " - 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 + 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. - If no bigger number can be composed using those digits, return -1 - ","0","Testing next_bigger function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 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 litres function with various test inputs + Testing 'DefaultList' class: extend :return: - ","0","Testing litres function with various test inputs","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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","","" " - 0 is a square number + 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: - ","1","Zero","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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 binary_to_string function - with various test data + 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 binary_to_string function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Character Encodings","","" + ","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 password function with various test inputs + 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: - ","1","Testing password function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing sum_for_list function + Simple positive test :return: - ","55","Testing sum_for_list function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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 + And (∧) is the truth-functional + operator of logical conjunction - - 10 or more hoops, return ""Great, now move on to tricks"". + The and of a set of operands is true + if and only if all of its operands are true. - - Not 10 hoops, return ""Keep at it until you get it"". + Source: + https://en.wikipedia.org/wiki/Logical_conjunction :return: - ","0","Testing hoop_count function (positive test case)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" + ","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 sum_of_intervals function - - The function should accept an array of intervals, - and return the sum of all the interval lengths. + 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 - Overlapping intervals should only be counted once. + You have to test a function that takes a positive integer number + and returns the next smaller number formed by the same digits: - 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: - ","1","Testing sum_of_intervals function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 21 ==> 12 + 531 ==> 513 + 2071 ==> 2017 + + If no smaller number can be composed using those digits, return -1 + ","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 check_for_factor function. + 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. - This function should test if the - factor is a factor of base. + 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. - Return true if it is a factor. - :return: - ","0","Testing check_for_factor function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" -" - Testing using big test data - :return: - ","0","test_solution_big","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" -" - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) + 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: - ","1","Testing invite_more_women function (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 ips_between function + Testing men_from_boys function with + various test inputs - Testing a function that receives two IPv4 addresses, - and returns the number of addresses between them - (including the first one, excluding the last one). + Scenario + Now that the competition gets tough it + will Sort out the men from the boys . - 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","test_ips_between","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - Test with regular string - :return: - ","0","Test with regular string","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" -" - Testing two_decimal_places function - with various test inputs. + Men are the Even numbers and Boys are + the odd !alt !alt - 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 two_decimal_places function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - Testing to_table with various test data + 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: - ","1","Testing to_table function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + ","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 'parts_sums' function with various test data + Testing using basic test data :return: - ","0","Testing 'parts_sums' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 'DefaultList' class: append - :return: - ","0","Testing 'DefaultList' class: append","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + 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","","" " - Testing done_or_not function + 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 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: - ","0","Testing done_or_not function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - Advanced/random test case - :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","","" -" - Testing easy line function exception :return: - ","0","Testing easy_line function exception message","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 shark function -> negative + Testing the function with various test data :return: - ","1","Testing shark function (negative)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - Test top_3_words function - ","0","Testing top_3_words function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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 'save' function: negative - - 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","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - The string ""This website is for losers LOL!"" - should become ""Ths wbst s fr lsrs LL!"" - :return: - ","0","a and b are equal","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" -" - 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","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - Testing the function with various test data - :return: - ","0","Testing row_sum_odd_numbers function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - Testing pig_it function + Testing tickets function with various test inputs. - 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: - ","1","Testing pig_it function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" -" - And (∧) is the truth-functional - operator of logical conjunction + 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. - The and of a set of operands is true - if and only if all of its operands are true. + Vasya is currently working as a clerk. + He wants to sell a ticket to every single person + in this line. - Source: - https://en.wikipedia.org/wiki/Logical_conjunction + 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","AND logical operator","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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 set_alarm function with various test inputs. + Testing gap function with various test inputs - The function should return true if you are employed - and not on vacation (because these are the circumstances - under which you need to set an alarm). It should return - false otherwise. + A binary gap within a positive number num is + any sequence of consecutive zeros that is + surrounded by ones at both ends in the binary + representation of num. - Examples: + The gap function should return the length of + its longest binary gap. - setAlarm(true, true) -> false - setAlarm(false, true) -> false - setAlarm(false, false) -> false - setAlarm(true, false) -> true + The function should return 0 if num doesn't + contain a binary gap. :return: - ","0","Testing set_alarm function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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 to_alternating_case function + Test with regular string :return: - ","0","Testing to_alternating_case function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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 Walker class - Testing starting position property based on negative grids - ","0","Testing Walker class - position property from negative grids","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - The function powers takes a single parameter, - the number n, and should return an array of - unique numbers. + Testing number_of_sigfigs function + with various test inputs :return: - ","4","powers function should return an array of unique numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing using basic test data + 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","test_solution_basic","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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 growing_plant function - - Task - - Each day a plant is growing by upSpeed meters. - Each night that plant's height decreases by downSpeed - meters due to the lack of sun heat. Initially, plant - is 0 meters tall. We plant the seed at the beginning - of a day. We want to know when the height of the plant - will reach a certain level. - - Example - - For upSpeed = 100, downSpeed = 10 and desiredHeight = 910, - the output should be 10. - - For upSpeed = 10, downSpeed = 9 and desiredHeight = 4, - the output should be 1. Because the plant reach to the desired - height at day 1(10 meters). - - Input/Output - - [input] integer upSpeed - A positive integer representing the daily growth. - Constraints: 5 ≤ upSpeed ≤ 100. - - [input] integer downSpeed - A positive integer representing the nightly decline. - Constraints: 2 ≤ downSpeed < upSpeed. - - [input] integer desiredHeight - A positive integer representing the threshold. - Constraints: 4 ≤ desiredHeight ≤ 1000. - - [output] an integer - - 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","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + 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","","" " - Test string with mixed type of chars. + 3 is not a square number :return: - ","1","String with mixed type of chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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. - + Large lists :return: - ","0","Testing 'solution' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - 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. + Testing largestPower function :return: - ","5","Testing format_duration","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - The 'pyramid' function should return - an Array of ascending length subarrays. - - Note: the subarrays should be filled with 1s. + Testing easy_diagonal function + :param self: :return: - ","0","Testing the 'pyramid' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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: + Testing enough function + with various test data - Source: - https://en.wikipedia.org/wiki/Exclusive_or + If there is enough space, return 0, + and if there isn't, return the number + of passengers he can't take. :return: - ","0","XOR logical operator","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing shark function -> positive + Testing the 'valid_braces' function + with various test data :return: - ","0","Testing shark function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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","","" " - Testing Encoding functionality - ","0","Testing Encoding functionality","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - A function f(n), should returns the n-th member of sequence. + 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_sequence","Novice","Wed Nov 27 19:23:40 PST 2024","skipped","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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 gap function with various test inputs - - A binary gap within a positive number num is - any sequence of consecutive zeros that is - surrounded by ones at both ends in the binary - representation of num. + 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. - The gap function should return the length of - its longest binary gap. + 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; - The function should return 0 if num doesn't - contain a binary gap. + 2. the strings you will be given might or might not + be created repeating a given subpattern, then + shuffling the result. :return: - ","0","Testing gap function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" -" - Testing Line Safari functionality - Positive test cases - ","0","test_line_positive","Competent","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing length function + Testing Sudoku class - The method length, which accepts a linked list - (head), and returns the length of the list. + 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 length function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 'numericals' function + Testing stock_list function with various test data :return: - ","0","Testing 'numericals' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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 - - ""()"" => true - "")(()))"" => false - ""("" => false - ""(())((()())())"" => true + Test string with no duplicate chars. :return: - ","0","Testing valid_parentheses function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 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","","" " - 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. - ","1","Testing 'solution' function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + Testing first_non_repeated function + :return: + ","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","","" " - Negative tests + Verify that multiply function + returns correct result :return: - ","0","Testing period_is_late function (negative)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing letter_frequency function - where all chars are in lower case + Repeating char is a space. :return: - ","1","All chars are in lower case","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Negative test cases for is_prime function testing + Testing 'letter_count' function :return: - ","1","Negative test cases for is_prime function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" + ","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","","" " - Testing string_to_array function. - - A function to split a string and - convert it into an array of words. + Test a function `smallest` which will return an array or a tuple or a string + depending on the language (see ""Sample Tests""). :return: - ","0","Testing string_to_array function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 @@ -562,669 +507,733 @@ The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9. :return: - ","0","Testing validSolution","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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","","" " - Testing 'shortest_job_first' function with various test data + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like null/undefined :return: - ","0","Testing 'shortest_job_first(' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Testing Warrior class >>> tom - ","0","Testing Warrior class >>> tom","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" + 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 Battle method - ","0","Testing Battle method","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" + Testing binary_to_string function + with various test data + :return: + ","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 'DefaultList' class: extend + a or b is negative :return: - ","2","Testing 'DefaultList' class: extend","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","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 century function - ","0","Testing century function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Numbers","","" + 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","","" " - Testing the 'valid_braces' function - with various test data + Sample testing. :return: - ","2","Testing the 'valid_braces' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 is_solved function + 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","","" +" + Testing pig_it function - The function should return whether the - board's current state is solved. + 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","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","","" +" + The 'pyramid' function should return + an Array of ascending length subarrays. - We want our function to return: + Note: the subarrays should be filled with 1s. + :return: + ","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 - -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). - ","2","Testing done_or_not function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + Each floating-point number should be + formatted that only the first two + decimal places are returned. + + You don't need to check whether the input + is a valid number because only valid numbers + are used in the tests. + + Don't round the numbers! Just cut them + after two decimal places! + + :return: + ","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 'letter_count' function + Testing shark function -> positive :return: - ","1","Testing 'letter_count' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Positive test cases for gen_primes function testing + 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: - ","1","Positive test cases for gen_primes function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" + ","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_triangular_numbers' function - with zero as an input + Testing epidemic function :return: - ","0","Testing 'sum_triangular_numbers' with zero","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - 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: + Use conditionals to to verify that greet + function returns the proper message. + :return: + ","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","","" +" + Simple Fun #152: Invite More Women? + Testing invite_more_women function (positive) + :return: + ","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","","" +" + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". + :return: + ","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 ips_between function - - Points - - Scoring differential (the difference between goals scored and those conceded) - - Goals scored + Testing a function that receives two IPv4 addresses, + and returns the number of addresses between them + (including the first one, excluding the last one). + 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 compute_ranks","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 make_class function + Testing 'parts_sums' function with various test data + :return: + ","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 'sum_triangular_numbers' function + with zero as an input :return: - ","0","Testing make_class function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","OOP","","" + ","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 'count_sheeps' function - Hint: Don't forget to check for - bad values like mixed list + Testing summation function + with various test inputs :return: - ","0","Testing 'count_sheeps' function: mixed list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - a an b are positive numbers + Testing sum_for_list function :return: - ","0","a an b are positive numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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 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","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + Testing get_size function with various inputs + :return: + ","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","","" " - Test string with no alphabet chars. + Testing letter_frequency function + where all chars are in mixed case :return: - ","0","String with no alphabet chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing 'sum_triangular_numbers' function - with big number as an input + a an b are positive numbers :return: - ","1","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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, + 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 return a list of coordinates that are the furthest - away (by Manhattan distance) from all agents. + The function should remove all agents that are outside of the city boundaries. :return: - ","14","Testing advice function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing encrypt_this function + :param self: :return: - ","0","Testing invite_more_women function (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 calculate function with various test data + 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 + :return: - ","0","Testing calculate function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 solution function - ","0","Testing solution function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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 'zeros' program that should calculate the number - of trailing zeros in a factorial of a given number. - :return: None - ","2","Testing zeros function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + Test lists with multiple digits + :return: + ","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","","" " - Testing permute_a_palindrome function with empty string + Testing potion function with various test inputs :return: - ","0","Testing permute_a_palindrome (empty string)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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 calc class - Given a mathematical expression as a string you - must return the result as a number. - ","0","Testing calc function","Proficient","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + In this kata, you must create a digital root function. + + 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 digital_root function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing Line Safari functionality - Negative test cases - ","0","test_line_negative","Competent","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + Simple Fun #152: Invite More Women? + Testing invite_more_women function (negative) + :return: + ","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","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like empty list + Testing a function named increment_string :return: - ","2","Testing 'count_sheeps' function: empty list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 greek_comparator function with various test inputs :return: - ","1","Testing 'greek_comparator' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + Testing alphabet_war function + + 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. + + Task + Write a function that accepts battlefield string + and returns letters that survived the nuclear strike. + + 1. The battlefield string consists of only small letters, #,[ and ]. + + 2. The nuclear shelter is represented by square brackets []. + The letters inside the square brackets represent letters + inside the shelter. + + 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","Wolf at the beginning of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" + ","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","","" " - Sample Tests for make_upper_case function + 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 '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 make_upper_case function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 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","","" " - Assert that 'domain_name' function - returns domain name from given URL string. + 26 is not a square number :return: - ","2","Testing domain_name function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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","","" " - Testing 'generate_hashtag' function - ","0","Testing 'generate_hashtag' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 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. + :return: + ","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","","" " - Testing enough function - with various test data + 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. - If there is enough space, return 0, - and if there isn't, return the number - of passengers he can't take. + 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","STesting enough function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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","","" " - Testing epidemic function + Testing to_alternating_case function :return: - ","6","Testing epidemic function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Simple positive test + 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. :return: - ","1","Testing toJadenCase function (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - 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. + The function powers takes a single parameter, + the number n, and should return an array of + unique numbers. :return: - ","1","Non consecutive number should be returned","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - a or b is negative + a and b are equal :return: - ","1","a or b is negative","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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'] + if there are more than 2 return + 'I smell a series!'. :return: - ","0","Testing flatten function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing odd_row function with various test data + Advanced/random test case :return: - ","0","Testing odd_row function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Performance","","" + ","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","","" " - 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. + 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. - 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. + The task is to sort ascending odd numbers but + even numbers must be on their places. - 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'. + Zero isn't an odd number and you don't need to + move it. If you have an empty array, you need + to return it. - 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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 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. + Testing 'sum_triangular_numbers' function + with negative numbers :return: - ","3","Testing the 'group_cities' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - Test that 'remove_char' function - removes the first and - last characters of a string. + Basic test case :return: - ","0","Testing remove_char function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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 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. + Testing is_palindrome function + with various test inputs - Vasya is currently working as a clerk. - He wants to sell a ticket to every single person - in this line. + 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","","" +" + 3 is not a square number + :return: + ","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","","" +" + Test that no_space function removes the spaces + from the string, then return the resultant string. + :return: + ","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","","" +" + If there are one or two good ideas, + return 'Publish!', + :return: + ","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","","" +" + String subpattern recognition I - 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? + 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","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" +" + Testing 'mix' function - 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. + 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","","" +" + Testing share_price function + with multiple test inputs :return: - ","0","Testing tickets function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" + ","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","","" " - 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. + Negative test cases for gen_primes function testing :return: - ","0","Testing compute_ranks","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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 'DefaultList' class: __getitem__ + Testing 'save' function: positive - 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. + The function should determine how many + files of the copy queue you will be able + to save into your Hard Disk Drive. :return: - ","1","Testing 'DefaultList' class: __getitem__","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","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","","" " - Testing check_for_factor function. - - This function should test if the - factor is a factor of base. - - Return false if it is not a factor. + 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: - ","2","Testing check_for_factor function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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","","" " - Test with empty list + Test string with no alphabet chars. :return: - ","1","'multiply' function verification with empty list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing two_decimal_places function - with various test inputs + 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","","" +" + Testing 'numericals' function + :return: + ","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","","" +" + Testing string_transformer function + with multiple test data. - Each floating-point number should be - formatted that only the first two - decimal places are returned. + Given a string, return a new string that has + transformed based on the input: - You don't need to check whether the input - is a valid number because only valid numbers - are used in the tests. + 1. Change case of every character, ie. lower + case to upper case, upper case to lower case. - Don't round the numbers! Just cut them - after two decimal places! + 2. Reverse the order of words from the input. :return: - ","0","Testing two_decimal_places function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - Test lists with multiple digits + 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. + :return: - ","0","'multiply' function verification: lists with multiple digits","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - In this kata you have to correctly return who - is the ""survivor"", ie: the last element of a - Josephus permutation. + Testing length function + + The method length, which accepts a linked list + (head), and returns the length of the list. :return: - ","0","test_josephus_survivor","Novice","Wed Nov 27 19:23:39 PST 2024","skipped","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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 all_fibonacci_numbers function - - You're going to provide a needy programmer a - utility method that generates an infinite sized, - sequential IntStream (in Python generator) - which contains all the numbers in a fibonacci - sequence. - - A fibonacci sequence starts with two 1s. - Every element afterwards is the sum of - the two previous elements. + Testing shark function -> negative :return: - ","0","Testing all_fibonacci_numbers function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing max_multiple function with - various test data + Testing 'DefaultList' class: remove + :return: + ","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","","" +" + Test valid_parentheses function with + invalid large string + :return: + ","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 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!' :return: - ","0","Testing max_multiple function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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 check_exam function + Verify that 'has_subpattern' 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). + 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","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 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). :return: - ","0","Testing check_exam function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 'is_isogram' function - ","0","Testing 'is_isogram' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + 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","","" " - Testing the 'unique_in_order' function - with various test data + Testing make_class function :return: - ","0","Testing the 'unique_in_order' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Testing stock_list function with various test data + -1: Negative numbers cannot be square numbers :return: - ","0","Testing stock_list function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Sample testing. + Returns [] if list has only one element :return: - ","0","Find the int that appears an odd number of times","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing using medium test data + Testing letter_frequency function + where all chars are in lower case :return: - ","0","test_solution_medium","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" -" - Testing spiralize function - ","1","Testing spiralize function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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 solution function - - If we list all the natural numbers below 10 - that are multiples of 3 or 5, we get 3, 5, 6 and 9. - The sum of these multiples is 23. - - Finish the solution so that it returns the sum of - all the multiples of 3 or 5 below the number passed in. + Testing 'sum_pairs' function - Note: If the number is a multiple of both 3 and 5, - only count it once. + 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","","" +" + Positive test cases for gen_primes function testing :return: - ","0","Testing the 'solution' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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 array_diff function + Testing odd_row function with various test data :return: - ","0","Testing array_diff function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + ","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 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Advanced Language Features","","" + 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 '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","","" " - 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + non-consecutive is a negative number. + :return: + ","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","","" " - Test string with alphabet chars only. + Testing calc_combinations_per_row function :return: - ","1","String with alphabet chars only","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - You are given two angles (in degrees) of a triangle. - Find the 3rd. + Testing 'shortest_job_first' function with various test data :return: - ","0","You are given two angles -> find the 3rd.","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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 sum_two_smallest_numbers function - The function should return the sum of - the two lowest positive numbers + Testing likes function with various test data :return: - ","1","Two smallest numbers in the start of the list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - 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 password function with various test inputs :return: - ","1","Testing 'order' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 first_non_repeated function + Testing 'sum_triangular_numbers' function + with big number as an input :return: - ","0","Testing first_non_repeated function with various inputs","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 swap_values function - ","1","Testing swap_values function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + 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","","" " - Simple negative test + Testing duplicate_encode function + with various test inputs :return: - ","0","Testing toJadenCase function (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Fundamentals","","" + Testing calculate_damage with various test data + :return: + ","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","","" " - In logic and mathematics, or is the - truth-functional operator of (inclusive) - disjunction, also known as alternation. + Test namelist - The or of a set of operands is true if - and only if one or more of its operands is true. + Given: + an array containing hashes of names - Source: - https://en.wikipedia.org/wiki/Logical_disjunction + 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","OR logical operator","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" -" - Positive tests - :return: - ","2","Testing period_is_late function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 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 'save' function: positive + Testing growing_plant function + + Task + + Each day a plant is growing by upSpeed meters. + Each night that plant's height decreases by downSpeed + meters due to the lack of sun heat. Initially, plant + is 0 meters tall. We plant the seed at the beginning + of a day. We want to know when the height of the plant + will reach a certain level. + + Example + + For upSpeed = 100, downSpeed = 10 and desiredHeight = 910, + the output should be 10. + + For upSpeed = 10, downSpeed = 9 and desiredHeight = 4, + the output should be 1. Because the plant reach to the desired + height at day 1(10 meters). + + Input/Output + + [input] integer upSpeed + A positive integer representing the daily growth. + Constraints: 5 ≤ upSpeed ≤ 100. - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. - :return: - ","1","Testing 'save' function: positive","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - Testing make_readable function + [input] integer downSpeed + A positive integer representing the nightly decline. + Constraints: 2 ≤ downSpeed < upSpeed. - Write a function, which takes a non-negative integer - (seconds) as input and returns the time in a human-readable - format (HH:MM:SS) + [input] integer desiredHeight + A positive integer representing the threshold. + Constraints: 4 ≤ desiredHeight ≤ 1000. - 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 + [output] an integer - The maximum time never exceeds 359999 (99:59:59) - :return: - ","0","Testing make_readable function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 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","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - The 'sort_array' function. - - The task is to sort ascending odd numbers but - even numbers must be on their places. + 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. - Zero isn't an odd number and you don't need to - move it. If you have an empty array, you need - to return it. + 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'] :return: - ","0","Testing the 'sort_array' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - if there are more than 2 return - 'I smell a series!'. + 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","Should return 'I smell a series!'","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 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","","" " - 26 is not a square number + Testing decipher_this function + :param self: :return: - ","1","Non square numbers (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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","","" " - If the whole array is consecutive then return - null or Nothing or None. + Testing 'DefaultList' class: insert :return: - ","2","Non is expected","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - 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. - :return: - ","0","Testing 'has_subpattern' (part 2) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" + 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 '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). + Simple negative test :return: - ","0","Testing 'count_sheeps' function: positive flow","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - 4 is a square number + Sample Tests for make_upper_case function :return: - ","1","Square numbers (positive)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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","","" " - 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","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + Testing 'solve' function with various test data + :return: + ","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","","" " - Use conditionals to to verify that greet - function returns the proper message. + Test with empty string :return: - ","0","Verify that greet function returns the proper message","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Control Flow","","" + ","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","","" " - Testing get_size function with various inputs + Assert that 'domain_name' function + returns domain name from given URL string. :return: - ","0","get_size function tests","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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 next_smaller 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 - ","0","Testing next_smaller function","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + 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 'sum_triangular_numbers' function with positive numbers :return: - ","0","Testing 'sum_triangular_numbers' with positive numbers","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" -" - Testing summation function - with various test inputs - :return: - ","2","Testing 'summation' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" -" - Verify that the function returns Messi's - total number of goals in all three leagues. - :return: - ","0","goals function verification","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" -" - Testing shark function -> positive - :return: - ","0","Testing shark function (positive)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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 encrypt_this function - :param self: - :return: - ","0","Testing encrypt_this function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 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","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - If there are one or two good ideas, - return 'Publish!', + Test with empty list :return: - ","1","Should return 'Publish!'","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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 number_of_sigfigs function - with various test inputs + Testing hoop_count function (negative) :return: - ","0","Testing number_of_sigfigs function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - Negative test cases for gen_primes function testing + Basic test case :return: - ","0","Negative test cases for gen_primes function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" + ","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","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + Testing the function with various test data :return: - ","0","Wolf in the middle of the queue","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Control Flow","","" + ","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","","" " - Positive test cases for is_prime function testing + Testing length function + where head = None + + The method length, which accepts a linked list + (head), and returns the length of the list. :return: - ","1","Positive test cases for is_prime function testing","Helper methods","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","No kyu helper methods","","" + ","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 a function named increment_string + Testing to_table with various test data :return: - ","2","Testing increment_string function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 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 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 'save' function: negative + 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 string_transformer function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 @@ -1239,321 +1248,334 @@ The Rust version takes a slice of enum Direction {NORTH, SOUTH, EAST, WEST}. :return: - ","0","Testing dir_reduc function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 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","","" " - Test that no_space function removes the spaces - from the string, then return the resultant string. - :return: - ","0","Test that no_space function removes the spaces","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" -" - Large lists - :return: - ","0","Large lists","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" -" - Negative testing permute_a_palindrome function - :return: - ","1","Testing permute_a_palindrome (negative)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" -" - Returns [] if list has only one element + Testing all_fibonacci_numbers function + + You're going to provide a needy programmer a + utility method that generates an infinite sized, + sequential IntStream (in Python generator) + which contains all the numbers in a fibonacci + sequence. + + A fibonacci sequence starts with two 1s. + Every element afterwards is the sum of + the two previous elements. :return: - ","9","'multiply' function verification with one element list","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 length function - where head = None + Testing max_multiple function with + various test data - The method length, which accepts a linked list - (head), and returns the length of the list. :return: - ","1","Testing length function where head = None","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 calc_combinations_per_row function + 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: - ","1","Testing calc_combinations_per_row function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - In this kata, you must create a digital root function. + Testing Battleship field validator - 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 digital_root function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - a and b are equal + Testing letter_frequency function + where all chars are in upper case :return: - ","0","a and b are equal","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - Testing 'solve' function with various test data + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like empty list :return: - ","0","Testing solve function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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 monkey_count function + Testing set_alarm function with various test inputs. - You take your son to the forest to see the monkeys. - You know that there are a certain number there (n), - but your son is too young to just appreciate the full - number, he has to start counting them from 1. + The function should return true if you are employed + and not on vacation (because these are the circumstances + under which you need to set an alarm). It should return + false otherwise. - As a good parent, you will sit and count with him. - Given the number (n), populate an array with all - numbers up to and including that number, but excluding - zero. + Examples: + + setAlarm(true, true) -> false + setAlarm(false, true) -> false + setAlarm(false, false) -> false + setAlarm(true, false) -> true :return: - ","0","Testing monkey_count function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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","","" " - 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 two_decimal_places function + with various test inputs. - For empty string return: ('', 0) + 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: - ","1","Testing 'longest_repetition' function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 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 permute_a_palindrome function + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :return: - ","0","Testing permute_a_palindrome (positive)","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing decipher_this function - :param self: + The string ""This website is for losers LOL!"" + should become ""Ths wbst s fr lsrs LL!"" :return: - ","0","Testing decipher_this function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Verify that multiply function - returns correct result + 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. :return: - ","0","'multiply' function verification","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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","","" " - Testing 'DefaultList' class: pop + Negative test cases for is_prime function testing :return: - ","2","Testing 'DefaultList' class: pop","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","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","","" " Testing the function with various test data :return: - ","0","Testing zero_fuel function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 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","","" " - String subpattern recognition I - - 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. + Testing the function with various test data :return: - ","0","Testing 'has_subpattern' (part 1) function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Advanced Language Features","","" + ","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 largestPower function + Testing permute_a_palindrome function :return: - ","0","Testing largestPower function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Repeating char is a space. + Testing 'thirt' function with various test data :return: - ","1","String alphabet chars and spaces","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing 'DefaultList' class: remove + Test sum_two_smallest_numbers function + The function should return the sum of + the two lowest positive numbers :return: - ","1","Testing 'DefaultList' class: remove","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","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 share_price function - with multiple test inputs - :return: - ","0","Testing share_price function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + 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","","" " - Basic test case + Testing check_for_factor function. + + This function should test if the + factor is a factor of base. + + Return false if it is not a factor. :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 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 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 calculate_damage with various test data + Testing fix_the_meerkat function with various test data :return: - ","0","Testing calculate_damage function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Games","","" + ","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 'thirt' function with various test data + You are given two angles (in degrees) of a triangle. + Find the 3rd. :return: - ","0","Testing 'thirt' function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Fundamentals","","" + ","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 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). - + 0 is a square number :return: - ","0","Testing is_prime function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","0","Zero","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Testing alphabet_war function - - 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. - - Task - Write a function that accepts battlefield string - and returns letters that survived the nuclear strike. - - 1. The battlefield string consists of only small letters, #,[ and ]. - - 2. The nuclear shelter is represented by square brackets []. - The letters inside the square brackets represent letters - inside the shelter. - - 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. + 0 is a square number :return: - ","0","Testing alphabet_war function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Advanced Language Features","","" + ","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","","" " - Test string with no duplicate chars. - :return: - ","1","String with no duplicate chars","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Algorithms","","" + 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 'vaporcode' function + Testing 'DefaultList' class: pop :return: - ","0","Testing 'vaporcode' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing Warrior class >>> bruce_lee - ","1","Testing Warrior class >>> bruce_lee","Competent","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","OOP","","" + 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","","" " - If there are no good ideas, - as is often the case, return 'Fail!'. + Test with one char only :return: - ","2","Should return 'Fail!'s","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - The function should return a formatted string. - The return value should equal ""Value is VALUE"" - where value is a 5 digit padded number. + Negative tests :return: - ","0","Testing 'solution' function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 agents_cleanup where: - - agents: is an array of agent coordinates - - n: defines the size of the city that Bassi needs to hide in, + 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 remove all agents that are outside of the city boundaries. + The function should generate city map with coordinates. :return: - ","0","Testing agents_cleanup function","Novice","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - Testing Battleship field validator + Testing using medium test data + :return: + ","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 - 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","Wed Nov 27 19:23:38 PST 2024","passed","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + You take your son to the forest to see the monkeys. + You know that there are a certain number there (n), + but your son is too young to just appreciate the full + number, he has to start counting them from 1. + + As a good parent, you will sit and count with him. + Given the number (n), populate an array with all + numbers up to and including that number, but excluding + zero. + :return: + ","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","","" " Testing 'count_sheeps' function Hint: Don't forget to check for - bad values like null/undefined + bad values like mixed list :return: - ","1","Testing 'count_sheeps' function: bad input","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - non-consecutive is a negative number. + Testing check_root function with various test inputs + + 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","Negative non consecutive number should be returned","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing duplicate_encode function - with various test inputs + Test string with mixed type of chars. :return: - ","0","Testing duplicate_encode function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Algorithms","","" + ","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","","" " - 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. - - 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. + 4 is a square number :return: - ","0","Testing 'feast' function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - 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 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: - ","1","move function tests","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Math","","" + ","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 men_from_boys function with - various test inputs - - Scenario - Now that the competition gets tough it - will Sort out the men from the boys . + Testing make_readable function - Men are the Even numbers and Boys are - the odd !alt !alt + Write a function, which takes a non-negative integer + (seconds) as input and returns the time in a human-readable + format (HH:MM:SS) - Task - Given an array/list [] of n integers , - Separate The even numbers from the odds , - or Separate the men from the boys !alt !alt + 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 - 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. + The maximum time never exceeds 359999 (99:59:59) :return: - ","0","Testing men_from_boys function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Data Structures","","" + ","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 is_palindrome function - with various test inputs + Testing check_for_factor function. - The function should check if a - given string (case insensitive) - is a palindrome. - ","0","Testing is_palindrome function","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" -" - Testing 'DefaultList' class: insert + This function should test if the + factor is a factor of base. + + Return true if it is a factor. :return: - ","1","Testing 'DefaultList' class: insert","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:39 PST 2024","Unit Tests","Object-Oriented Programming","","" + ","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","","" " - Test with empty string + Test valid_parentheses function with + valid large string :return: - ","1","Test with empty string","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Data Structures","","" + ","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","","" " - Testing hoop_count function (negative) + 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","Testing hoop_count function (negative test case)","Beginner","Wed Nov 27 19:23:41 PST 2024","passed","Wed Nov 27 19:23:41 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - 3 is not a square number + A function f(n), should returns the n-th member of sequence. :return: - ","1","Non square numbers (negative)","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Math","","" + ","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 using empty test data + Testing shark function -> positive :return: - ","0","test_solution_empty","Novice","Wed Nov 27 19:23:38 PST 2024","skipped","Wed Nov 27 19:23:38 PST 2024","Unit Tests","Algorithms","","" + ","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 easy_line function + Testing using big test data :return: - ","0","Testing easy_line function","Beginner","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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","","" " - Testing easy_diagonal function - :param self: + Test that 'remove_char' function + removes the first and + last characters of a string. :return: - ","745","Testing easy_diagonal function","Novice","Wed Nov 27 19:23:39 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 likes function with various test data + 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","Testing likes function","Novice","Wed Nov 27 19:23:40 PST 2024","passed","Wed Nov 27 19:23:40 PST 2024","Unit Tests","Fundamentals","","" + ","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 03ebf3a3157..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":"664f2a2d41bf2bd8","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":"ed9cfa6ba87dba0e","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":"ba71f124345447fc","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"732b9dd805d734b8","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"9246dbe4ecdc42ce","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"c700736d12b44c86","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Two smallest numbers in the start of the list","uid":"c52dc9ba56a64495","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"f30b225377e5683d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"302e450946481df3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"a61ba5af03a1f296","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"2be24f9b66669d76","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"fix_the_meerkat function function verification","uid":"1f1df83d6cc10b66","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test that no_space function removes the spaces","uid":"63b822db5bae14d4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e695b3f4b0bdd51b","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":"1857a7ece8075aa5","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"183ba5aa4a18280","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"56d019840f444cec","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"1abde016dd7f5ee7","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"fa6c346b04c031d5","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"7c6af0e0a129f035","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"405b625cf95f9fbd","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"cb9f6d4c2aaf90e3","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"ab3687d99fed99d0","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1bd3919646678e3f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"ff18bec5c293c228","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"190ed93e28b901b","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Wolf at the end of the queue","uid":"6dfafb882d7cc41f","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"197e80b267cccc2b","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":"93b00a3d2e7b92c1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing domain_name function","uid":"6a3f85e29591c654","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeating_letter function","uid":"5ad5cb812fbd5d4a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"142f5165c8452d36","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"3c7a781e3674db5e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"60f7c96f923539a5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"9e017ac7fdaf6bf5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"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":"dc076040e5481dc9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"b0cc123728fa2f2d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"1c3655d4a978bd79","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'find_missing_number' function","uid":"b22afbc33030e55f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"e91954f86960f5cf","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c5bce40c2868c787","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"63a8ebd07b8fa1c4","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"62a6bbd8d87be20e","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"354cda6601a7cded","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","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":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"67a0bf67db9047ee","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"d6ad7a05187743ff","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"a6d26dfb90ab4062","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"1a13c6a89153460b","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"5194ad39db439d08","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3e564e38813f1539","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"450fbb27e2067be4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"d5aba2cd944d7efd","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"61e07c6ddcc506b1","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"3b9e344534b3c5db","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"c00621abb22a9be3","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","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":"4710cc2182eb85cb","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for gen_primes function testing","uid":"9b0ec4eb2cd2dde7","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030100325,"stop":1733030100325,"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_StringTransformerTestCase::0","time":{"start":1733030100325,"stop":1733030100325,"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":"6 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"56d0c429ca5615e0","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0}},{"uid":"8b066879dcf90ee","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0}},{"uid":"a654bf006c33c2bc","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"f2e80dca05a524c5","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"101b76d3a18bb4c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a355bc32a0d73da0.json b/allure-report/data/test-cases/1039c276c50498c7.json similarity index 80% rename from allure-report/data/test-cases/a355bc32a0d73da0.json rename to allure-report/data/test-cases/1039c276c50498c7.json index 622346b2b45..12bcaa7538d 100644 --- a/allure-report/data/test-cases/a355bc32a0d73da0.json +++ b/allure-report/data/test-cases/1039c276c50498c7.json @@ -1 +1 @@ -{"uid":"a355bc32a0d73da0","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f87f52236c75608","name":"stdout","source":"2f87f52236c75608.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"a355bc32a0d73da0.json","parameterValues":[]} \ No newline at end of file +{"uid":"1039c276c50498c7","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":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f0e8db62b4d5a04e","name":"stdout","source":"f0e8db62b4d5a04e.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"1039c276c50498c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11195fbf11e8bfc3.json b/allure-report/data/test-cases/11195fbf11e8bfc3.json deleted file mode 100644 index 8062a46f94d..00000000000 --- a/allure-report/data/test-cases/11195fbf11e8bfc3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"11195fbf11e8bfc3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d9ffb014ecda8013","name":"stdout","source":"d9ffb014ecda8013.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"11195fbf11e8bfc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/112ca50049d27c.json b/allure-report/data/test-cases/112ca50049d27c.json deleted file mode 100644 index 539394fd953..00000000000 --- a/allure-report/data/test-cases/112ca50049d27c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"112ca50049d27c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732764221288,"stop":1732764221288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9689f8dcf21c7e63","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0}},{"uid":"a355bc32a0d73da0","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"65b2cf00b86ce444","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"112ca50049d27c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1137568979e0ed3a.json b/allure-report/data/test-cases/1137568979e0ed3a.json new file mode 100644 index 00000000000..de3dfdb4e18 --- /dev/null +++ b/allure-report/data/test-cases/1137568979e0ed3a.json @@ -0,0 +1 @@ +{"uid":"1137568979e0ed3a","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1733030100169,"stop":1733030100169,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"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_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"46c119be5111a687","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1}},{"uid":"4b75654893666492","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0}},{"uid":"ac4b8e11c3d56a6a","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"89e6e7af226f3582","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"1137568979e0ed3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/113e69c4ee0f071.json b/allure-report/data/test-cases/113e69c4ee0f071.json deleted file mode 100644 index c95f76c9dd8..00000000000 --- a/allure-report/data/test-cases/113e69c4ee0f071.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"113e69c4ee0f071","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"113e69c4ee0f071.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7d82c31fb2485e49","name":"stdout","source":"7d82c31fb2485e49.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"115439469142590e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13c4343c88a790e8.json b/allure-report/data/test-cases/115f495bb01a1dcf.json similarity index 77% rename from allure-report/data/test-cases/13c4343c88a790e8.json rename to allure-report/data/test-cases/115f495bb01a1dcf.json index d45875d7899..6085acb7089 100644 --- a/allure-report/data/test-cases/13c4343c88a790e8.json +++ b/allure-report/data/test-cases/115f495bb01a1dcf.json @@ -1 +1 @@ -{"uid":"13c4343c88a790e8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"287eb5fa3fe3b8e6","name":"stdout","source":"287eb5fa3fe3b8e6.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"13c4343c88a790e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"115f495bb01a1dcf","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d35364e5c638d89f.json b/allure-report/data/test-cases/1186c71e39a023da.json similarity index 82% rename from allure-report/data/test-cases/d35364e5c638d89f.json rename to allure-report/data/test-cases/1186c71e39a023da.json index 487f1106b1b..419bd5fa27b 100644 --- a/allure-report/data/test-cases/d35364e5c638d89f.json +++ b/allure-report/data/test-cases/1186c71e39a023da.json @@ -1 +1 @@ -{"uid":"d35364e5c638d89f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"d35364e5c638d89f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1186c71e39a023da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61e07c6ddcc506b1.json b/allure-report/data/test-cases/1191e503f4a01ba8.json similarity index 71% rename from allure-report/data/test-cases/61e07c6ddcc506b1.json rename to allure-report/data/test-cases/1191e503f4a01ba8.json index ba89a2a9121..754499db9ea 100644 --- a/allure-report/data/test-cases/61e07c6ddcc506b1.json +++ b/allure-report/data/test-cases/1191e503f4a01ba8.json @@ -1 +1 @@ -{"uid":"61e07c6ddcc506b1","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":1732764218771,"stop":1732764218772,"duration":1},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732764218769,"stop":1732764218769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84ea3c3b3250393e","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1}},{"uid":"99a774ce5ee6bba3","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"8c4c3ac3b9ddced3","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"61e07c6ddcc506b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"1191e503f4a01ba8","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":1732764218771,"stop":1732764218772,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3bb063d5045f38b5.json b/allure-report/data/test-cases/119afffc6f9f5da8.json similarity index 81% rename from allure-report/data/test-cases/3bb063d5045f38b5.json rename to allure-report/data/test-cases/119afffc6f9f5da8.json index c7638b5b85c..f2b1337ab7a 100644 --- a/allure-report/data/test-cases/3bb063d5045f38b5.json +++ b/allure-report/data/test-cases/119afffc6f9f5da8.json @@ -1 +1 @@ -{"uid":"3bb063d5045f38b5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"66609ce44d720b41","name":"stdout","source":"66609ce44d720b41.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3bb063d5045f38b5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/49ad6a9c0404421b.json b/allure-report/data/test-cases/11b930e98296bcb5.json similarity index 63% rename from allure-report/data/test-cases/49ad6a9c0404421b.json rename to allure-report/data/test-cases/11b930e98296bcb5.json index eef75408f6e..d47738feca6 100644 --- a/allure-report/data/test-cases/49ad6a9c0404421b.json +++ b/allure-report/data/test-cases/11b930e98296bcb5.json @@ -1 +1 @@ -{"uid":"49ad6a9c0404421b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed44c13e0e5a3954","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0}},{"uid":"9b5105f2c1baa9ed","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"8bc93f78736d3a0e","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"49ad6a9c0404421b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219291,"stop":1732764219291,"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_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"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":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"11b930e98296bcb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2dcba5fbac259354.json b/allure-report/data/test-cases/11dd46913546ab74.json similarity index 82% rename from allure-report/data/test-cases/2dcba5fbac259354.json rename to allure-report/data/test-cases/11dd46913546ab74.json index 25f89bd9b2e..2d44af9341a 100644 --- a/allure-report/data/test-cases/2dcba5fbac259354.json +++ b/allure-report/data/test-cases/11dd46913546ab74.json @@ -1 +1 @@ -{"uid":"2dcba5fbac259354","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20cbc8ca27f67538","name":"stdout","source":"20cbc8ca27f67538.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2dcba5fbac259354.json","parameterValues":[]} \ No newline at end of file +{"uid":"11dd46913546ab74","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a6bd6cbda8e220e3","name":"stdout","source":"a6bd6cbda8e220e3.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"11dd46913546ab74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1212df96f6b2dc34.json b/allure-report/data/test-cases/1212df96f6b2dc34.json deleted file mode 100644 index 266e6c65736..00000000000 --- a/allure-report/data/test-cases/1212df96f6b2dc34.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1212df96f6b2dc34","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b1edf41b3f6059d4","name":"stdout","source":"b1edf41b3f6059d4.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1212df96f6b2dc34.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37af89538f752875.json b/allure-report/data/test-cases/12409260b34394eb.json similarity index 81% rename from allure-report/data/test-cases/37af89538f752875.json rename to allure-report/data/test-cases/12409260b34394eb.json index 2bafe307117..7755cda8bc1 100644 --- a/allure-report/data/test-cases/37af89538f752875.json +++ b/allure-report/data/test-cases/12409260b34394eb.json @@ -1 +1 @@ -{"uid":"37af89538f752875","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a66e2ef0dd5ae597","name":"stdout","source":"a66e2ef0dd5ae597.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"37af89538f752875.json","parameterValues":[]} \ No newline at end of file +{"uid":"12409260b34394eb","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724735129102,"stop":1724735129102,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e8051d2095f3e05f","name":"stdout","source":"e8051d2095f3e05f.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"12409260b34394eb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f21450476aa4c9a.json b/allure-report/data/test-cases/13b14c699e0075d9.json similarity index 75% rename from allure-report/data/test-cases/1f21450476aa4c9a.json rename to allure-report/data/test-cases/13b14c699e0075d9.json index b69b240b0d7..3f04ff6797a 100644 --- a/allure-report/data/test-cases/1f21450476aa4c9a.json +++ b/allure-report/data/test-cases/13b14c699e0075d9.json @@ -1 +1 @@ -{"uid":"1f21450476aa4c9a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1f21450476aa4c9a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/749bcfd3f56dec1a.json b/allure-report/data/test-cases/13bf02549cf3b6be.json similarity index 83% rename from allure-report/data/test-cases/749bcfd3f56dec1a.json rename to allure-report/data/test-cases/13bf02549cf3b6be.json index 1007c47a518..ca8b2b7c9ef 100644 --- a/allure-report/data/test-cases/749bcfd3f56dec1a.json +++ b/allure-report/data/test-cases/13bf02549cf3b6be.json @@ -1 +1 @@ -{"uid":"749bcfd3f56dec1a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732428196436,"stop":1732428196436,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"749bcfd3f56dec1a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732428196436,"stop":1732428196436,"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_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"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":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"13bf02549cf3b6be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8817b6c726fc2884.json b/allure-report/data/test-cases/13f07332e607443a.json similarity index 78% rename from allure-report/data/test-cases/8817b6c726fc2884.json rename to allure-report/data/test-cases/13f07332e607443a.json index 4c1216a717a..2d1ca49e18d 100644 --- a/allure-report/data/test-cases/8817b6c726fc2884.json +++ b/allure-report/data/test-cases/13f07332e607443a.json @@ -1 +1 @@ -{"uid":"8817b6c726fc2884","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eecd5302084b69b0","name":"stdout","source":"eecd5302084b69b0.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8817b6c726fc2884.json","parameterValues":[]} \ No newline at end of file +{"uid":"13f07332e607443a","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":1724733474663,"stop":1724733474663,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"137f1698764a14f9","name":"stdout","source":"137f1698764a14f9.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"13f07332e607443a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a83b85c2e341a76c.json b/allure-report/data/test-cases/141816067eecf7ae.json similarity index 92% rename from allure-report/data/test-cases/a83b85c2e341a76c.json rename to allure-report/data/test-cases/141816067eecf7ae.json index f4430bfab9d..03847d0f2fe 100644 --- a/allure-report/data/test-cases/a83b85c2e341a76c.json +++ b/allure-report/data/test-cases/141816067eecf7ae.json @@ -1 +1 @@ -{"uid":"a83b85c2e341a76c","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"a83b85c2e341a76c.json","parameterValues":[]} \ No newline at end of file +{"uid":"141816067eecf7ae","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"141816067eecf7ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/142b0c4f3754d996.json b/allure-report/data/test-cases/142b0c4f3754d996.json deleted file mode 100644 index c13f342bed9..00000000000 --- a/allure-report/data/test-cases/142b0c4f3754d996.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"142b0c4f3754d996","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc1b1893c2b8b52d","name":"stdout","source":"cc1b1893c2b8b52d.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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 PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"142b0c4f3754d996.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3f6328bce0de37c.json b/allure-report/data/test-cases/14a62b5662523525.json similarity index 60% rename from allure-report/data/test-cases/b3f6328bce0de37c.json rename to allure-report/data/test-cases/14a62b5662523525.json index e8c8e2a2123..a96c8472997 100644 --- a/allure-report/data/test-cases/b3f6328bce0de37c.json +++ b/allure-report/data/test-cases/14a62b5662523525.json @@ -1 +1 @@ -{"uid":"b3f6328bce0de37c","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":1732764220676,"stop":1732764220677,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220676,"stop":1732764220676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bded3837031681ca","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1}},{"uid":"938f6f7ebecca4c3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"24b136640bd96c68","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"b3f6328bce0de37c.json","parameterValues":[]} \ No newline at end of file +{"uid":"14a62b5662523525","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":1732764220676,"stop":1732764220677,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220676,"stop":1732764220676,"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_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"14a62b5662523525.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14c26803c1139e78.json b/allure-report/data/test-cases/14c26803c1139e78.json new file mode 100644 index 00000000000..2aa7a2cb134 --- /dev/null +++ b/allure-report/data/test-cases/14c26803c1139e78.json @@ -0,0 +1 @@ +{"uid":"14c26803c1139e78","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":1733030100836,"stop":1733030100836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::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":"story","value":"Counting sheep..."},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9328d9c37e2386a6","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2}},{"uid":"6f95e3a968732946","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0}},{"uid":"86bec9b105840355","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"b744224a1d89f44f","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"14c26803c1139e78.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14cdd8696beec9a.json b/allure-report/data/test-cases/14cdd8696beec9a.json deleted file mode 100644 index cd3c3734dd9..00000000000 --- a/allure-report/data/test-cases/14cdd8696beec9a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"14cdd8696beec9a","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":1732428195568,"stop":1732428195568,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"14cdd8696beec9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20301c2d6922300e.json b/allure-report/data/test-cases/14fe289b5296dbe2.json similarity index 83% rename from allure-report/data/test-cases/20301c2d6922300e.json rename to allure-report/data/test-cases/14fe289b5296dbe2.json index 47cb58cb7f6..f03a88f8def 100644 --- a/allure-report/data/test-cases/20301c2d6922300e.json +++ b/allure-report/data/test-cases/14fe289b5296dbe2.json @@ -1 +1 @@ -{"uid":"20301c2d6922300e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"20301c2d6922300e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"14fe289b5296dbe2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93cbb9687a6c19d2.json b/allure-report/data/test-cases/1527893d1e9640cd.json similarity index 72% rename from allure-report/data/test-cases/93cbb9687a6c19d2.json rename to allure-report/data/test-cases/1527893d1e9640cd.json index 054c282dc20..75bb98e49e7 100644 --- a/allure-report/data/test-cases/93cbb9687a6c19d2.json +++ b/allure-report/data/test-cases/1527893d1e9640cd.json @@ -1 +1 @@ -{"uid":"93cbb9687a6c19d2","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a90a8741dd8ba1f","name":"stdout","source":"6a90a8741dd8ba1f.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"93cbb9687a6c19d2.json","parameterValues":[]} \ No newline at end of file +{"uid":"1527893d1e9640cd","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f5908886e3245af0","name":"stdout","source":"f5908886e3245af0.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"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":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1527893d1e9640cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/545394bf3fbbd64b.json b/allure-report/data/test-cases/154178490b84fb33.json similarity index 82% rename from allure-report/data/test-cases/545394bf3fbbd64b.json rename to allure-report/data/test-cases/154178490b84fb33.json index 179e976d0a6..4494f6b0850 100644 --- a/allure-report/data/test-cases/545394bf3fbbd64b.json +++ b/allure-report/data/test-cases/154178490b84fb33.json @@ -1 +1 @@ -{"uid":"545394bf3fbbd64b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"72987b318aa88c6e","name":"stdout","source":"72987b318aa88c6e.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"545394bf3fbbd64b.json","parameterValues":[]} \ No newline at end of file +{"uid":"154178490b84fb33","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ae198d98d59aaf55","name":"stdout","source":"ae198d98d59aaf55.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"154178490b84fb33.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/157d23c0aff9e075.json b/allure-report/data/test-cases/157d23c0aff9e075.json new file mode 100644 index 00000000000..0dd7eb07e99 --- /dev/null +++ b/allure-report/data/test-cases/157d23c0aff9e075.json @@ -0,0 +1 @@ +{"uid":"157d23c0aff9e075","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","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 duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099411,"stop":1733030099411,"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_DuplicateEncodeTestCase::0","time":{"start":1733030099411,"stop":1733030099411,"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":"Duplicate Encoder"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5f3a50fbe3f45101","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0}},{"uid":"9d4c9ba0aff07821","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0}},{"uid":"b95dabcc1b6701ba","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"9f56730a0e41c609","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"157d23c0aff9e075.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b0ec4eb2cd2dde7.json b/allure-report/data/test-cases/158fcdb2f6fefbbc.json similarity index 59% rename from allure-report/data/test-cases/9b0ec4eb2cd2dde7.json rename to allure-report/data/test-cases/158fcdb2f6fefbbc.json index 8349dccd2b2..26639cb319e 100644 --- a/allure-report/data/test-cases/9b0ec4eb2cd2dde7.json +++ b/allure-report/data/test-cases/158fcdb2f6fefbbc.json @@ -1 +1 @@ -{"uid":"9b0ec4eb2cd2dde7","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":"

Codewars badge:

Test Description:

Negative test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"f585eec372fcc899","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0}},{"uid":"65f6b4f1195a0e9d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"e2a8e239adf783da","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"9b0ec4eb2cd2dde7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/97bb72caed16dfa0.json b/allure-report/data/test-cases/15b13324091bd06f.json similarity index 81% rename from allure-report/data/test-cases/97bb72caed16dfa0.json rename to allure-report/data/test-cases/15b13324091bd06f.json index 0707f70427d..9644f9440d0 100644 --- a/allure-report/data/test-cases/97bb72caed16dfa0.json +++ b/allure-report/data/test-cases/15b13324091bd06f.json @@ -1 +1 @@ -{"uid":"97bb72caed16dfa0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"81acaad5616d047a","name":"stdout","source":"81acaad5616d047a.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"97bb72caed16dfa0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2193538ea3afe0a","name":"stdout","source":"c2193538ea3afe0a.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"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":"epic","value":"8 kyu"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Multiplication"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"15b13324091bd06f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cfac23a989211fca.json b/allure-report/data/test-cases/15fb7a87bc12b45a.json similarity index 86% rename from allure-report/data/test-cases/cfac23a989211fca.json rename to allure-report/data/test-cases/15fb7a87bc12b45a.json index 9823dbcb09e..eab23802ea4 100644 --- a/allure-report/data/test-cases/cfac23a989211fca.json +++ b/allure-report/data/test-cases/15fb7a87bc12b45a.json @@ -1 +1 @@ -{"uid":"cfac23a989211fca","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":1732428196461,"stop":1732428196461,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"cfac23a989211fca.json","parameterValues":[]} \ No newline at end of file +{"uid":"15fb7a87bc12b45a","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":1732428196461,"stop":1732428196461,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"15fb7a87bc12b45a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99a774ce5ee6bba3.json b/allure-report/data/test-cases/160f56b842e7aedc.json similarity index 81% rename from allure-report/data/test-cases/99a774ce5ee6bba3.json rename to allure-report/data/test-cases/160f56b842e7aedc.json index 1228f95e1ce..9df5604c37b 100644 --- a/allure-report/data/test-cases/99a774ce5ee6bba3.json +++ b/allure-report/data/test-cases/160f56b842e7aedc.json @@ -1 +1 @@ -{"uid":"99a774ce5ee6bba3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72e5eb2953c41fef","name":"stdout","source":"72e5eb2953c41fef.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"99a774ce5ee6bba3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3a617c2d20fe6a0a.json b/allure-report/data/test-cases/16c1a97c5d8eacc8.json similarity index 84% rename from allure-report/data/test-cases/3a617c2d20fe6a0a.json rename to allure-report/data/test-cases/16c1a97c5d8eacc8.json index 41d314a2d81..d8bf09e657c 100644 --- a/allure-report/data/test-cases/3a617c2d20fe6a0a.json +++ b/allure-report/data/test-cases/16c1a97c5d8eacc8.json @@ -1 +1 @@ -{"uid":"3a617c2d20fe6a0a","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"524aa4f029baa8f0","name":"stdout","source":"524aa4f029baa8f0.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3a617c2d20fe6a0a.json","parameterValues":[]} \ No newline at end of file +{"uid":"16c1a97c5d8eacc8","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724735128836,"stop":1724735128836,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e652aa73f38cf38","name":"stdout","source":"6e652aa73f38cf38.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735128836,"stop":1724735128836,"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":"Multiples of 3 or 5"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"16c1a97c5d8eacc8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9f92529af3ab5ff.json b/allure-report/data/test-cases/16e8835412fb12dc.json similarity index 81% rename from allure-report/data/test-cases/e9f92529af3ab5ff.json rename to allure-report/data/test-cases/16e8835412fb12dc.json index 79ef023f473..cbeda7da816 100644 --- a/allure-report/data/test-cases/e9f92529af3ab5ff.json +++ b/allure-report/data/test-cases/16e8835412fb12dc.json @@ -1 +1 @@ -{"uid":"e9f92529af3ab5ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fe10e73cc4ad9f0b","name":"stdout","source":"fe10e73cc4ad9f0b.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e9f92529af3ab5ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"16e8835412fb12dc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aaa63d8350548106","name":"stdout","source":"aaa63d8350548106.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"16e8835412fb12dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dfa8d9395e9495b6.json b/allure-report/data/test-cases/1746b1293c111d5c.json similarity index 81% rename from allure-report/data/test-cases/dfa8d9395e9495b6.json rename to allure-report/data/test-cases/1746b1293c111d5c.json index c924c4a16f7..94d3046d4f8 100644 --- a/allure-report/data/test-cases/dfa8d9395e9495b6.json +++ b/allure-report/data/test-cases/1746b1293c111d5c.json @@ -1 +1 @@ -{"uid":"dfa8d9395e9495b6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9f73c3d7a4d872db","name":"stdout","source":"9f73c3d7a4d872db.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"dfa8d9395e9495b6.json","parameterValues":[]} \ No newline at end of file +{"uid":"1746b1293c111d5c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8fc1f3f9e7136bfe","name":"stdout","source":"8fc1f3f9e7136bfe.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::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":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"1746b1293c111d5c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee182a5a1f4b39dc.json b/allure-report/data/test-cases/17e1393f574a0bd2.json similarity index 79% rename from allure-report/data/test-cases/ee182a5a1f4b39dc.json rename to allure-report/data/test-cases/17e1393f574a0bd2.json index d262d145b83..b40716b99eb 100644 --- a/allure-report/data/test-cases/ee182a5a1f4b39dc.json +++ b/allure-report/data/test-cases/17e1393f574a0bd2.json @@ -1 +1 @@ -{"uid":"ee182a5a1f4b39dc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7cf8e66e6e1debdd","name":"stdout","source":"7cf8e66e6e1debdd.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ee182a5a1f4b39dc.json","parameterValues":[]} \ No newline at end of file +{"uid":"17e1393f574a0bd2","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/fc6ce7cf48700667.json b/allure-report/data/test-cases/17e173f94ae42aac.json similarity index 89% rename from allure-report/data/test-cases/fc6ce7cf48700667.json rename to allure-report/data/test-cases/17e173f94ae42aac.json index ef9a3b52044..2041c3d1b3a 100644 --- a/allure-report/data/test-cases/fc6ce7cf48700667.json +++ b/allure-report/data/test-cases/17e173f94ae42aac.json @@ -1 +1 @@ -{"uid":"fc6ce7cf48700667","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428196189,"stop":1732428196189,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fc6ce7cf48700667.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428196187,"stop":1732428196187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428196187,"stop":1732428196187,"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_TwoDecimalPlacesTestCase::0","time":{"start":1732428196189,"stop":1732428196189,"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":"feature","value":"Formatting"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"17e173f94ae42aac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba3e30be8784f086.json b/allure-report/data/test-cases/17e43c85790e0335.json similarity index 81% rename from allure-report/data/test-cases/ba3e30be8784f086.json rename to allure-report/data/test-cases/17e43c85790e0335.json index fcb396af152..5551e0ddf52 100644 --- a/allure-report/data/test-cases/ba3e30be8784f086.json +++ b/allure-report/data/test-cases/17e43c85790e0335.json @@ -1 +1 @@ -{"uid":"ba3e30be8784f086","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78d708b30903548d","name":"stdout","source":"78d708b30903548d.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ba3e30be8784f086.json","parameterValues":[]} \ No newline at end of file +{"uid":"17e43c85790e0335","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1ddf203d8a3c498d.json b/allure-report/data/test-cases/17e84d8dd3123806.json similarity index 85% rename from allure-report/data/test-cases/1ddf203d8a3c498d.json rename to allure-report/data/test-cases/17e84d8dd3123806.json index a1d374fe858..ad461a73210 100644 --- a/allure-report/data/test-cases/1ddf203d8a3c498d.json +++ b/allure-report/data/test-cases/17e84d8dd3123806.json @@ -1 +1 @@ -{"uid":"1ddf203d8a3c498d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732428196119,"stop":1732428196119,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Convert a string to an array"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1ddf203d8a3c498d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428196116,"stop":1732428196116,"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_StringToArrayTestCase::0","time":{"start":1732428196119,"stop":1732428196119,"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":"story","value":"Convert a string to an array"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"17e84d8dd3123806.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/783d8a205b731823.json b/allure-report/data/test-cases/1809b6a5abfda186.json similarity index 58% rename from allure-report/data/test-cases/783d8a205b731823.json rename to allure-report/data/test-cases/1809b6a5abfda186.json index e42139b7eff..4687f8c47d8 100644 --- a/allure-report/data/test-cases/783d8a205b731823.json +++ b/allure-report/data/test-cases/1809b6a5abfda186.json @@ -1 +1 @@ -{"uid":"783d8a205b731823","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":1732764220176,"stop":1732764220176,"duration":0},"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5c0380ec075dfe06","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0}},{"uid":"7f05453c14dc1c4a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"a2f70229e4c52322","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"783d8a205b731823.json","parameterValues":[]} \ No newline at end of file +{"uid":"1809b6a5abfda186","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":1732764220176,"stop":1732764220176,"duration":0},"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732764220176,"stop":1732764220176,"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_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"1809b6a5abfda186.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9f8e7d93793c0ea.json b/allure-report/data/test-cases/18128d81fd90263f.json similarity index 78% rename from allure-report/data/test-cases/b9f8e7d93793c0ea.json rename to allure-report/data/test-cases/18128d81fd90263f.json index 0dbf48aebab..f51b5522d70 100644 --- a/allure-report/data/test-cases/b9f8e7d93793c0ea.json +++ b/allure-report/data/test-cases/18128d81fd90263f.json @@ -1 +1 @@ -{"uid":"b9f8e7d93793c0ea","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5bbee37443803595","name":"stdout","source":"5bbee37443803595.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b9f8e7d93793c0ea.json","parameterValues":[]} \ No newline at end of file +{"uid":"18128d81fd90263f","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":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38571528b67e0e01","name":"stdout","source":"38571528b67e0e01.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"18128d81fd90263f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/183ba5aa4a18280.json b/allure-report/data/test-cases/183ba5aa4a18280.json deleted file mode 100644 index 45303676eab..00000000000 --- a/allure-report/data/test-cases/183ba5aa4a18280.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"183ba5aa4a18280","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":1732764220545,"stop":1732764220545,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":1732764220544,"stop":1732764220544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"126c2e67245419a9","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"183ba5aa4a18280.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63b822db5bae14d4.json b/allure-report/data/test-cases/184d3db7becc05d3.json similarity index 62% rename from allure-report/data/test-cases/63b822db5bae14d4.json rename to allure-report/data/test-cases/184d3db7becc05d3.json index d27fe33ebf7..e478b98c60b 100644 --- a/allure-report/data/test-cases/63b822db5bae14d4.json +++ b/allure-report/data/test-cases/184d3db7becc05d3.json @@ -1 +1 @@ -{"uid":"63b822db5bae14d4","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":1732764221193,"stop":1732764221193,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732764221197,"stop":1732764221197,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Remove String Spaces"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97a2a77f06d4866c","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0}},{"uid":"49044c1c42d54a81","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"1b6eab50f2f722f5","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"63b822db5bae14d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"184d3db7becc05d3","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":1732764221193,"stop":1732764221193,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732764221193,"stop":1732764221193,"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_NoSpaceTestCase::0","time":{"start":1732764221197,"stop":1732764221197,"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":"Remove String Spaces"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"184d3db7becc05d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f30b225377e5683d.json b/allure-report/data/test-cases/18ce21893b263766.json similarity index 57% rename from allure-report/data/test-cases/f30b225377e5683d.json rename to allure-report/data/test-cases/18ce21893b263766.json index 4a53b547793..b0b0055d461 100644 --- a/allure-report/data/test-cases/f30b225377e5683d.json +++ b/allure-report/data/test-cases/18ce21893b263766.json @@ -1 +1 @@ -{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732764220840,"stop":1732764220840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"baf923b3ced2f0a","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0}},{"uid":"c1ac88d1c8e8cadf","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"24df9329b634133a","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"f30b225377e5683d.json","parameterValues":[]} \ No newline at end of file +{"uid":"18ce21893b263766","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220837,"stop":1732764220837,"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_AlternatingCaseTestCase::0","time":{"start":1732764220840,"stop":1732764220840,"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":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"18ce21893b263766.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/190ed93e28b901b.json b/allure-report/data/test-cases/190ed93e28b901b.json deleted file mode 100644 index f8388ce96c0..00000000000 --- a/allure-report/data/test-cases/190ed93e28b901b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"190ed93e28b901b","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":1732764220999,"stop":1732764220999,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732764221002,"stop":1732764221002,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Personalized greeting"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3714d7b27c33cf44","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0}},{"uid":"6902a5b0a224435c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"12c07b407ce072f5","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"190ed93e28b901b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19443f8320b2694c.json b/allure-report/data/test-cases/19443f8320b2694c.json new file mode 100644 index 00000000000..572a03a460c --- /dev/null +++ b/allure-report/data/test-cases/19443f8320b2694c.json @@ -0,0 +1 @@ +{"uid":"19443f8320b2694c","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1733030099192,"stop":1733030099192,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099192,"stop":1733030099192,"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_AlphanumericTestCase::0","time":{"start":1733030099192,"stop":1733030099192,"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":"story","value":"Not very secure"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fcdf7618a6de4bb6","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0}},{"uid":"dbe420147c1da53b","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0}},{"uid":"cfba8b314ab82273","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"c4de7ce2ddbb42a4","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"19443f8320b2694c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b9e344534b3c5db.json b/allure-report/data/test-cases/196d20a77b3bd50d.json similarity index 68% rename from allure-report/data/test-cases/3b9e344534b3c5db.json rename to allure-report/data/test-cases/196d20a77b3bd50d.json index 1307f577e3e..f28d5c12769 100644 --- a/allure-report/data/test-cases/3b9e344534b3c5db.json +++ b/allure-report/data/test-cases/196d20a77b3bd50d.json @@ -1 +1 @@ -{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732764218673,"stop":1732764218673,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d36e2f5707d2a6d3","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2}},{"uid":"9ee094a1f359821e","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"584f8bdd5c7f3c16","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3b9e344534b3c5db.json","parameterValues":[]} \ No newline at end of file +{"uid":"196d20a77b3bd50d","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732764218673,"stop":1732764218673,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/388d9dc9fa1f1c3a.json b/allure-report/data/test-cases/19ea1d35de320e7d.json similarity index 59% rename from allure-report/data/test-cases/388d9dc9fa1f1c3a.json rename to allure-report/data/test-cases/19ea1d35de320e7d.json index 888a56b3965..44cc8267609 100644 --- a/allure-report/data/test-cases/388d9dc9fa1f1c3a.json +++ b/allure-report/data/test-cases/19ea1d35de320e7d.json @@ -1 +1 @@ -{"uid":"388d9dc9fa1f1c3a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732764221086,"stop":1732764221087,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732764221088,"stop":1732764221088,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep Hydrated!"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5bf0909978db7e30","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0}},{"uid":"df9a9f68276bbb84","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"53fa8d477eb42fd3","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"388d9dc9fa1f1c3a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732764221086,"stop":1732764221087,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732764221087,"stop":1732764221087,"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_KeepHydratedTestCase::0","time":{"start":1732764221088,"stop":1732764221088,"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":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep Hydrated!"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"19ea1d35de320e7d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bd3919646678e3f.json b/allure-report/data/test-cases/19edf49636f3f12c.json similarity index 58% rename from allure-report/data/test-cases/1bd3919646678e3f.json rename to allure-report/data/test-cases/19edf49636f3f12c.json index 5cf72781175..24c5b71771c 100644 --- a/allure-report/data/test-cases/1bd3919646678e3f.json +++ b/allure-report/data/test-cases/19edf49636f3f12c.json @@ -1 +1 @@ -{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d86332e2eabe60c3","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0}},{"uid":"a5bb3631db18a9d9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"1531ff5e4d5380e4","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"1bd3919646678e3f.json","parameterValues":[]} \ No newline at end of file +{"uid":"19edf49636f3f12c","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732764220786,"stop":1732764220786,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"19edf49636f3f12c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8f5ce56991bbe59.json b/allure-report/data/test-cases/1a7cac845fe0b74b.json similarity index 78% rename from allure-report/data/test-cases/b8f5ce56991bbe59.json rename to allure-report/data/test-cases/1a7cac845fe0b74b.json index c766e7155e6..e6d0761b394 100644 --- a/allure-report/data/test-cases/b8f5ce56991bbe59.json +++ b/allure-report/data/test-cases/1a7cac845fe0b74b.json @@ -1 +1 @@ -{"uid":"b8f5ce56991bbe59","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"251fc94fc6c7a32c","name":"stdout","source":"251fc94fc6c7a32c.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"b8f5ce56991bbe59.json","parameterValues":[]} \ No newline at end of file +{"uid":"1a7cac845fe0b74b","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"109442e0bd8a1bf7","name":"stdout","source":"109442e0bd8a1bf7.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"1a7cac845fe0b74b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a8f12ae9a258bd1.json b/allure-report/data/test-cases/1a8f12ae9a258bd1.json deleted file mode 100644 index ddac1b9cac1..00000000000 --- a/allure-report/data/test-cases/1a8f12ae9a258bd1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1a8f12ae9a258bd1","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a68de0f4d0253c8","name":"stdout","source":"a68de0f4d0253c8.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1a8f12ae9a258bd1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d02b155522c6119.json b/allure-report/data/test-cases/1aa02f860d14689a.json similarity index 85% rename from allure-report/data/test-cases/1d02b155522c6119.json rename to allure-report/data/test-cases/1aa02f860d14689a.json index bae3cdd7b51..f3afe05d418 100644 --- a/allure-report/data/test-cases/1d02b155522c6119.json +++ b/allure-report/data/test-cases/1aa02f860d14689a.json @@ -1 +1 @@ -{"uid":"1d02b155522c6119","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732428194496,"stop":1732428194496,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732428194497,"stop":1732428194497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"1d02b155522c6119.json","parameterValues":[]} \ No newline at end of file +{"uid":"1aa02f860d14689a","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732428194496,"stop":1732428194496,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732428194496,"stop":1732428194496,"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 result:","time":{"start":1732428194496,"stop":1732428194496,"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 result:","time":{"start":1732428194496,"stop":1732428194496,"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 result:","time":{"start":1732428194496,"stop":1732428194496,"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 result:","time":{"start":1732428194496,"stop":1732428194496,"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_ComputeRanksTestCase::0","time":{"start":1732428194497,"stop":1732428194497,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"1aa02f860d14689a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1abde016dd7f5ee7.json b/allure-report/data/test-cases/1abde016dd7f5ee7.json deleted file mode 100644 index 020d5cbc480..00000000000 --- a/allure-report/data/test-cases/1abde016dd7f5ee7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1abde016dd7f5ee7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732764220591,"stop":1732764220591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Maximum Multiple"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"710a5d14f0382e2f","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0}},{"uid":"a1980ae57d2c7b3","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"da222867360b442e","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"1abde016dd7f5ee7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b7657273f039658.json b/allure-report/data/test-cases/1b7657273f039658.json deleted file mode 100644 index 2e2490c35d8..00000000000 --- a/allure-report/data/test-cases/1b7657273f039658.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1b7657273f039658","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":1732428195544,"stop":1732428195544,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1b7657273f039658.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4430fa612ad99844.json b/allure-report/data/test-cases/1b90e35542bb0d33.json similarity index 80% rename from allure-report/data/test-cases/4430fa612ad99844.json rename to allure-report/data/test-cases/1b90e35542bb0d33.json index 9065d2dbe64..c91cabe3729 100644 --- a/allure-report/data/test-cases/4430fa612ad99844.json +++ b/allure-report/data/test-cases/1b90e35542bb0d33.json @@ -1 +1 @@ -{"uid":"4430fa612ad99844","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"491bdfb319cbef56","name":"stdout","source":"491bdfb319cbef56.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4430fa612ad99844.json","parameterValues":[]} \ No newline at end of file +{"uid":"1b90e35542bb0d33","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1b9a7ef859e6370c.json b/allure-report/data/test-cases/1b9a7ef859e6370c.json deleted file mode 100644 index 860f6eedd79..00000000000 --- a/allure-report/data/test-cases/1b9a7ef859e6370c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1b9a7ef859e6370c","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"113f10167539853c","name":"stdout","source":"113f10167539853c.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"1b9a7ef859e6370c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d4729a99109106e.json b/allure-report/data/test-cases/1bbca055747eb3d5.json similarity index 67% rename from allure-report/data/test-cases/4d4729a99109106e.json rename to allure-report/data/test-cases/1bbca055747eb3d5.json index d1d45da4906..110d5eddb11 100644 --- a/allure-report/data/test-cases/4d4729a99109106e.json +++ b/allure-report/data/test-cases/1bbca055747eb3d5.json @@ -1 +1 @@ -{"uid":"4d4729a99109106e","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732764219268,"stop":1732764219268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23151e1dbdaacb09","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0}},{"uid":"c61d34eb10bf204","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"7ec3425d5267a222","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4d4729a99109106e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d1233b1a931bee1a.json b/allure-report/data/test-cases/1c311c9e8beb5e15.json similarity index 78% rename from allure-report/data/test-cases/d1233b1a931bee1a.json rename to allure-report/data/test-cases/1c311c9e8beb5e15.json index d86e319179d..ab6a8b3295d 100644 --- a/allure-report/data/test-cases/d1233b1a931bee1a.json +++ b/allure-report/data/test-cases/1c311c9e8beb5e15.json @@ -1 +1 @@ -{"uid":"d1233b1a931bee1a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"94e9d8b306bae268","name":"stdout","source":"94e9d8b306bae268.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d1233b1a931bee1a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cb23a7b28fc18bd6","name":"stdout","source":"cb23a7b28fc18bd6.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1c311c9e8beb5e15.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c66d03c44b01cf6.json b/allure-report/data/test-cases/1c66d03c44b01cf6.json new file mode 100644 index 00000000000..fe6c5d1209f --- /dev/null +++ b/allure-report/data/test-cases/1c66d03c44b01cf6.json @@ -0,0 +1 @@ +{"uid":"1c66d03c44b01cf6","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":1733030100247,"stop":1733030100247,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1cbe6a610fbdfd6.json b/allure-report/data/test-cases/1cbe6a610fbdfd6.json new file mode 100644 index 00000000000..a702b9b75d5 --- /dev/null +++ b/allure-report/data/test-cases/1cbe6a610fbdfd6.json @@ -0,0 +1 @@ +{"uid":"1cbe6a610fbdfd6","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":1733030099302,"stop":1733030099302,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1733030101070,"stop":1733030101070,"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_GetSizeTestCase::0","time":{"start":1733030101070,"stop":1733030101070,"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":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"94a29fbc0358d34a","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0}},{"uid":"f44e27fb1ad70c92","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0}},{"uid":"703af1f2e157e358","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"aeae161caad1a65f","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"1cc5ce778c99d98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d0688b018eb523.json b/allure-report/data/test-cases/1d0688b018eb523.json new file mode 100644 index 00000000000..86f7234f282 --- /dev/null +++ b/allure-report/data/test-cases/1d0688b018eb523.json @@ -0,0 +1 @@ +{"uid":"1d0688b018eb523","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1732764218932,"stop":1732764218932,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"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_FlattenTestCase::0","time":{"start":1732764218935,"stop":1732764218935,"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":"flatten()"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"1d0688b018eb523.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1733030100137,"stop":1733030100137,"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_FirstDupTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"94aee1df5a6d75c7","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1}},{"uid":"aeaf73e97e8c5fe3","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1}},{"uid":"2b0e5265fce841a7","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"e95ba363003599d","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"1d2cfb77eef4360e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d49801d4e6b4921.json b/allure-report/data/test-cases/1d49801d4e6b4921.json new file mode 100644 index 00000000000..2d428398bcf --- /dev/null +++ b/allure-report/data/test-cases/1d49801d4e6b4921.json @@ -0,0 +1 @@ +{"uid":"1d49801d4e6b4921","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6aeb83ca0df8b3d8.json b/allure-report/data/test-cases/1d6bdee17d8fe6b6.json similarity index 81% rename from allure-report/data/test-cases/6aeb83ca0df8b3d8.json rename to allure-report/data/test-cases/1d6bdee17d8fe6b6.json index 5d37f1577b7..91a8bea41dd 100644 --- a/allure-report/data/test-cases/6aeb83ca0df8b3d8.json +++ b/allure-report/data/test-cases/1d6bdee17d8fe6b6.json @@ -1 +1 @@ -{"uid":"6aeb83ca0df8b3d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6aeb83ca0df8b3d8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1d6bdee17d8fe6b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1df66f77b1cc31ad.json b/allure-report/data/test-cases/1df66f77b1cc31ad.json new file mode 100644 index 00000000000..9fb9f3bb5b0 --- /dev/null +++ b/allure-report/data/test-cases/1df66f77b1cc31ad.json @@ -0,0 +1 @@ +{"uid":"1df66f77b1cc31ad","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732764219222,"stop":1732764219222,"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_AnagramsTestCase::0","time":{"start":1732764219225,"stop":1732764219225,"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":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"1df66f77b1cc31ad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d437c172b71c55f.json b/allure-report/data/test-cases/1e414e40d5aadc94.json similarity index 82% rename from allure-report/data/test-cases/1d437c172b71c55f.json rename to allure-report/data/test-cases/1e414e40d5aadc94.json index a8b793c760e..d0f1fbd0c63 100644 --- a/allure-report/data/test-cases/1d437c172b71c55f.json +++ b/allure-report/data/test-cases/1e414e40d5aadc94.json @@ -1 +1 @@ -{"uid":"1d437c172b71c55f","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8b971d66be6d6e40","name":"stdout","source":"8b971d66be6d6e40.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"1d437c172b71c55f.json","parameterValues":[]} \ No newline at end of file +{"uid":"1e414e40d5aadc94","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c44b1c3c0ffa10e2","name":"stdout","source":"c44b1c3c0ffa10e2.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724735129414,"stop":1724735129414,"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":"story","value":"Count the Monkeys!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"1e414e40d5aadc94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24b136640bd96c68.json b/allure-report/data/test-cases/1ec22d6f24411c0a.json similarity index 79% rename from allure-report/data/test-cases/24b136640bd96c68.json rename to allure-report/data/test-cases/1ec22d6f24411c0a.json index 769b23970db..49116c5461d 100644 --- a/allure-report/data/test-cases/24b136640bd96c68.json +++ b/allure-report/data/test-cases/1ec22d6f24411c0a.json @@ -1 +1 @@ -{"uid":"24b136640bd96c68","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5fb2caa4cfa17eeb","name":"stdout","source":"5fb2caa4cfa17eeb.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"24b136640bd96c68.json","parameterValues":[]} \ No newline at end of file +{"uid":"1ec22d6f24411c0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87d604abdd1034ad","name":"stdout","source":"87d604abdd1034ad.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"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":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1ec22d6f24411c0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65b2cf00b86ce444.json b/allure-report/data/test-cases/1f322fed435e4c7b.json similarity index 80% rename from allure-report/data/test-cases/65b2cf00b86ce444.json rename to allure-report/data/test-cases/1f322fed435e4c7b.json index a852709b6b2..b257d3b1a98 100644 --- a/allure-report/data/test-cases/65b2cf00b86ce444.json +++ b/allure-report/data/test-cases/1f322fed435e4c7b.json @@ -1 +1 @@ -{"uid":"65b2cf00b86ce444","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50b40a6b644cd21e","name":"stdout","source":"50b40a6b644cd21e.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"65b2cf00b86ce444.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c3f7cfc63c7ff6c0","name":"stdout","source":"c3f7cfc63c7ff6c0.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"1f322fed435e4c7b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/494bc5055e76bf71.json b/allure-report/data/test-cases/1fa1afd4ab27e4cb.json similarity index 83% rename from allure-report/data/test-cases/494bc5055e76bf71.json rename to allure-report/data/test-cases/1fa1afd4ab27e4cb.json index e2a18d1f45a..d493b1c047a 100644 --- a/allure-report/data/test-cases/494bc5055e76bf71.json +++ b/allure-report/data/test-cases/1fa1afd4ab27e4cb.json @@ -1 +1 @@ -{"uid":"494bc5055e76bf71","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"494bc5055e76bf71.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1fb0e4ddfae0bf06.json b/allure-report/data/test-cases/1fb0e4ddfae0bf06.json new file mode 100644 index 00000000000..e4330bf0b24 --- /dev/null +++ b/allure-report/data/test-cases/1fb0e4ddfae0bf06.json @@ -0,0 +1 @@ +{"uid":"1fb0e4ddfae0bf06","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1733030098958,"stop":1733030098958,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6444bc59e77319f9.json b/allure-report/data/test-cases/1fbf7f076eee2a48.json similarity index 75% rename from allure-report/data/test-cases/6444bc59e77319f9.json rename to allure-report/data/test-cases/1fbf7f076eee2a48.json index c99072b9adb..a964a57cfb3 100644 --- a/allure-report/data/test-cases/6444bc59e77319f9.json +++ b/allure-report/data/test-cases/1fbf7f076eee2a48.json @@ -1 +1 @@ -{"uid":"6444bc59e77319f9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b668f07fa0a63017","name":"stdout","source":"b668f07fa0a63017.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6444bc59e77319f9.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b278aa851a807748","name":"stdout","source":"b278aa851a807748.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1fbf7f076eee2a48.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fc6416a9dae71a6.json b/allure-report/data/test-cases/1fc6416a9dae71a6.json new file mode 100644 index 00000000000..c369fdeb8e0 --- /dev/null +++ b/allure-report/data/test-cases/1fc6416a9dae71a6.json @@ -0,0 +1 @@ +{"uid":"1fc6416a9dae71a6","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2064c7d6b1732474.json b/allure-report/data/test-cases/2064c7d6b1732474.json deleted file mode 100644 index 91c441359b6..00000000000 --- a/allure-report/data/test-cases/2064c7d6b1732474.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2064c7d6b1732474","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5932d90eab3398ae","name":"stdout","source":"5932d90eab3398ae.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2064c7d6b1732474.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/122ba025ebcea5dd.json b/allure-report/data/test-cases/206559a31da63112.json similarity index 75% rename from allure-report/data/test-cases/122ba025ebcea5dd.json rename to allure-report/data/test-cases/206559a31da63112.json index 52ffe61d363..1624f114781 100644 --- a/allure-report/data/test-cases/122ba025ebcea5dd.json +++ b/allure-report/data/test-cases/206559a31da63112.json @@ -1 +1 @@ -{"uid":"122ba025ebcea5dd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ed1895964a4f1dc3","name":"stdout","source":"ed1895964a4f1dc3.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"122ba025ebcea5dd.json","parameterValues":[]} \ No newline at end of file +{"uid":"206559a31da63112","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8bf4ab3249d50d5d","name":"stdout","source":"8bf4ab3249d50d5d.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"206559a31da63112.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20bc61b759bd6ae3.json b/allure-report/data/test-cases/20bc61b759bd6ae3.json new file mode 100644 index 00000000000..245501aac20 --- /dev/null +++ b/allure-report/data/test-cases/20bc61b759bd6ae3.json @@ -0,0 +1 @@ +{"uid":"20bc61b759bd6ae3","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/875881a97b3fc375.json b/allure-report/data/test-cases/212bbd08068e155a.json similarity index 80% rename from allure-report/data/test-cases/875881a97b3fc375.json rename to allure-report/data/test-cases/212bbd08068e155a.json index 79573cdb989..8896b3d8187 100644 --- a/allure-report/data/test-cases/875881a97b3fc375.json +++ b/allure-report/data/test-cases/212bbd08068e155a.json @@ -1 +1 @@ -{"uid":"875881a97b3fc375","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d177fc91cdd3978","name":"stdout","source":"6d177fc91cdd3978.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"875881a97b3fc375.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"222c482e7768a801","name":"stdout","source":"222c482e7768a801.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"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":"story","value":"Swap Values"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"212bbd08068e155a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e017ac7fdaf6bf5.json b/allure-report/data/test-cases/213536a8a5597e91.json similarity index 58% rename from allure-report/data/test-cases/9e017ac7fdaf6bf5.json rename to allure-report/data/test-cases/213536a8a5597e91.json index 16d8dd460a8..457421639da 100644 --- a/allure-report/data/test-cases/9e017ac7fdaf6bf5.json +++ b/allure-report/data/test-cases/213536a8a5597e91.json @@ -1 +1 @@ -{"uid":"9e017ac7fdaf6bf5","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1732764219168,"stop":1732764219168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sports League Table Ranking"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d02b155522c6119","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"d7d1e3c0f9370311","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9e017ac7fdaf6bf5.json","parameterValues":[]} \ No newline at end of file +{"uid":"213536a8a5597e91","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1733030099208,"stop":1733030099208,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1733030099208,"stop":1733030099208,"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 result:","time":{"start":1733030099208,"stop":1733030099208,"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 result:","time":{"start":1733030099208,"stop":1733030099208,"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 result:","time":{"start":1733030099208,"stop":1733030099208,"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 result:","time":{"start":1733030099208,"stop":1733030099208,"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_ComputeRanksTestCase::0","time":{"start":1733030099208,"stop":1733030099208,"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":"SORTING"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sports League Table Ranking"},{"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_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"43ae83fa91833c8","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0}},{"uid":"1aa02f860d14689a","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"9e017ac7fdaf6bf5","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0}},{"uid":"d7d1e3c0f9370311","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"213536a8a5597e91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/22f939e586318511.json b/allure-report/data/test-cases/213fb9c2969dbcfd.json similarity index 78% rename from allure-report/data/test-cases/22f939e586318511.json rename to allure-report/data/test-cases/213fb9c2969dbcfd.json index fb88e472992..365d7dd4370 100644 --- a/allure-report/data/test-cases/22f939e586318511.json +++ b/allure-report/data/test-cases/213fb9c2969dbcfd.json @@ -1 +1 @@ -{"uid":"22f939e586318511","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"358b4a5251243888","name":"stdout","source":"358b4a5251243888.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"22f939e586318511.json","parameterValues":[]} \ No newline at end of file +{"uid":"213fb9c2969dbcfd","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a05a507f0806707","name":"stdout","source":"2a05a507f0806707.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2165433d4974d104.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2180a5f5e79006a1.json b/allure-report/data/test-cases/2180a5f5e79006a1.json deleted file mode 100644 index 3875457eff5..00000000000 --- a/allure-report/data/test-cases/2180a5f5e79006a1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2180a5f5e79006a1","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"6eedc0bd484f71d7","name":"stdout","source":"6eedc0bd484f71d7.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"2180a5f5e79006a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/218b156daee27f08.json b/allure-report/data/test-cases/218b156daee27f08.json new file mode 100644 index 00000000000..2d02d8f47a3 --- /dev/null +++ b/allure-report/data/test-cases/218b156daee27f08.json @@ -0,0 +1 @@ +{"uid":"218b156daee27f08","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1733030100559,"stop":1733030100559,"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_LargestPowerTestCase::0","time":{"start":1733030100559,"stop":1733030100559,"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":"story","value":"Powers of 3"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Flow Control"},{"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.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c12d427c645c762f","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0}},{"uid":"52a5dee2c595fefe","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0}},{"uid":"d0c0a10a6587c56e","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"cbaa99833f802aa6","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"218b156daee27f08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b6eab50f2f722f5.json b/allure-report/data/test-cases/21e692bd1f008ebc.json similarity index 73% rename from allure-report/data/test-cases/1b6eab50f2f722f5.json rename to allure-report/data/test-cases/21e692bd1f008ebc.json index 68e95235e1a..60aa3835687 100644 --- a/allure-report/data/test-cases/1b6eab50f2f722f5.json +++ b/allure-report/data/test-cases/21e692bd1f008ebc.json @@ -1 +1 @@ -{"uid":"1b6eab50f2f722f5","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"479118fc0413c04b","name":"stdout","source":"479118fc0413c04b.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1b6eab50f2f722f5.json","parameterValues":[]} \ No newline at end of file +{"uid":"21e692bd1f008ebc","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":1724733474866,"stop":1724733474866,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"559adfb16322e47a","name":"stdout","source":"559adfb16322e47a.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"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":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove String Spaces"},{"name":"feature","value":"String"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"21e692bd1f008ebc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80f314b70b306bd4.json b/allure-report/data/test-cases/2200ea2b7046c13e.json similarity index 50% rename from allure-report/data/test-cases/80f314b70b306bd4.json rename to allure-report/data/test-cases/2200ea2b7046c13e.json index e45ca134a09..e7ddeeaf752 100644 --- a/allure-report/data/test-cases/80f314b70b306bd4.json +++ b/allure-report/data/test-cases/2200ea2b7046c13e.json @@ -1 +1 @@ -{"uid":"80f314b70b306bd4","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"description":"\n Testing using empty test data\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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"880859ea02196db7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194194,"stop":1732428194194,"duration":0}},{"uid":"706d67120123862f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"61f84f81177cf38b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"80f314b70b306bd4.json","parameterValues":[]} \ No newline at end of file +{"uid":"2200ea2b7046c13e","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"description":"\n Testing using empty test data\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/22bb7ddce4971121.json b/allure-report/data/test-cases/22bb7ddce4971121.json new file mode 100644 index 00000000000..d06d851e334 --- /dev/null +++ b/allure-report/data/test-cases/22bb7ddce4971121.json @@ -0,0 +1 @@ +{"uid":"22bb7ddce4971121","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1733030099208,"stop":1733030099208,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099208,"stop":1733030099208,"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_PigItTestCase::0","time":{"start":1733030099208,"stop":1733030099208,"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":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"458495e9a11139a4","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1}},{"uid":"f60f63436b65a2b8","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1}},{"uid":"2f7fe1d474868abf","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"d9826ef645180f7d","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"22bb7ddce4971121.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/230fd42f20a11e18.json b/allure-report/data/test-cases/230fd42f20a11e18.json new file mode 100644 index 00000000000..ad66278c196 --- /dev/null +++ b/allure-report/data/test-cases/230fd42f20a11e18.json @@ -0,0 +1 @@ +{"uid":"230fd42f20a11e18","name":"Testing number_of_sigfigs function","fullName":"kyu_7.significant_figures.test_number_of_sigfigs.NumberOfSigFigsTestCase#test_number_of_sigfigs","historyId":"3b2ebb1924dbc4e6a73dc5dda19dd323","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"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_NumberOfSigFigsTestCase::0","time":{"start":1733030100633,"stop":1733030100633,"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":"Significant Figures"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5444c88fc365358c","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0}},{"uid":"5fb0fdc1cb454fb","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0}},{"uid":"d74e6ece91df2759","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"362d2abd0db10461","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","ALGORITHMS"]},"source":"230fd42f20a11e18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/231a2a65aa8e32a.json b/allure-report/data/test-cases/231a2a65aa8e32a.json new file mode 100644 index 00000000000..38ff434de34 --- /dev/null +++ b/allure-report/data/test-cases/231a2a65aa8e32a.json @@ -0,0 +1 @@ +{"uid":"231a2a65aa8e32a","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732428193998,"stop":1732428193998,"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', 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/e2ed60d0ac53c788.json b/allure-report/data/test-cases/233e934352e9feff.json similarity index 85% rename from allure-report/data/test-cases/e2ed60d0ac53c788.json rename to allure-report/data/test-cases/233e934352e9feff.json index 4355764b638..46e794d07b9 100644 --- a/allure-report/data/test-cases/e2ed60d0ac53c788.json +++ b/allure-report/data/test-cases/233e934352e9feff.json @@ -1 +1 @@ -{"uid":"e2ed60d0ac53c788","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e2ed60d0ac53c788.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/7e0fbf3b4505484b.json b/allure-report/data/test-cases/237d8af0ad05999a.json similarity index 82% rename from allure-report/data/test-cases/7e0fbf3b4505484b.json rename to allure-report/data/test-cases/237d8af0ad05999a.json index 3adcb8325eb..363307834d6 100644 --- a/allure-report/data/test-cases/7e0fbf3b4505484b.json +++ b/allure-report/data/test-cases/237d8af0ad05999a.json @@ -1 +1 @@ -{"uid":"7e0fbf3b4505484b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7e0fbf3b4505484b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e7b4bfe5c117b0b5.json b/allure-report/data/test-cases/238aa65764e1d222.json similarity index 81% rename from allure-report/data/test-cases/e7b4bfe5c117b0b5.json rename to allure-report/data/test-cases/238aa65764e1d222.json index 1eb452a4406..b795091555f 100644 --- a/allure-report/data/test-cases/e7b4bfe5c117b0b5.json +++ b/allure-report/data/test-cases/238aa65764e1d222.json @@ -1 +1 @@ -{"uid":"e7b4bfe5c117b0b5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"912408d5d8c9a319","name":"stdout","source":"912408d5d8c9a319.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7b4bfe5c117b0b5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c5e476dd4b6a20ba","name":"stdout","source":"c5e476dd4b6a20ba.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::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":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"238aa65764e1d222.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23b533c70baf95c9.json b/allure-report/data/test-cases/23b533c70baf95c9.json new file mode 100644 index 00000000000..e9373638913 --- /dev/null +++ b/allure-report/data/test-cases/23b533c70baf95c9.json @@ -0,0 +1 @@ +{"uid":"23b533c70baf95c9","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1733030100804,"stop":1733030100804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::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":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3af8d9a34aaedf9e","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0}},{"uid":"f0be518507eb4be5","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0}},{"uid":"476ac59c15a93d4b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"6cece42c72540e7a","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":"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}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"23b533c70baf95c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/591cfdbc90cf4c5e.json b/allure-report/data/test-cases/23d88d3c634a9318.json similarity index 65% rename from allure-report/data/test-cases/591cfdbc90cf4c5e.json rename to allure-report/data/test-cases/23d88d3c634a9318.json index 255c487264c..d1117818ac8 100644 --- a/allure-report/data/test-cases/591cfdbc90cf4c5e.json +++ b/allure-report/data/test-cases/23d88d3c634a9318.json @@ -1 +1 @@ -{"uid":"591cfdbc90cf4c5e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"946a2bd47c8adfbc","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0}},{"uid":"c78900977fa836","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"a618a1e47f6e349d","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"591cfdbc90cf4c5e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732764221117,"stop":1732764221117,"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_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"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":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"23d88d3c634a9318.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/adbbb2c26291ccd5.json b/allure-report/data/test-cases/247e42713d4388e5.json similarity index 75% rename from allure-report/data/test-cases/adbbb2c26291ccd5.json rename to allure-report/data/test-cases/247e42713d4388e5.json index 403c5b28001..e55ed76d6c6 100644 --- a/allure-report/data/test-cases/adbbb2c26291ccd5.json +++ b/allure-report/data/test-cases/247e42713d4388e5.json @@ -1 +1 @@ -{"uid":"adbbb2c26291ccd5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8984e5480e91547","name":"stdout","source":"b8984e5480e91547.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"adbbb2c26291ccd5.json","parameterValues":[]} \ No newline at end of file +{"uid":"247e42713d4388e5","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/583a0190aa99ad42.json b/allure-report/data/test-cases/249dabf58e93eece.json similarity index 77% rename from allure-report/data/test-cases/583a0190aa99ad42.json rename to allure-report/data/test-cases/249dabf58e93eece.json index b20149bdd5d..4af83978fc2 100644 --- a/allure-report/data/test-cases/583a0190aa99ad42.json +++ b/allure-report/data/test-cases/249dabf58e93eece.json @@ -1 +1 @@ -{"uid":"583a0190aa99ad42","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a85d028b53b2fa36","name":"stdout","source":"a85d028b53b2fa36.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"583a0190aa99ad42.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/79e5a850abe86297.json b/allure-report/data/test-cases/24b90ea9d401f78e.json similarity index 83% rename from allure-report/data/test-cases/79e5a850abe86297.json rename to allure-report/data/test-cases/24b90ea9d401f78e.json index d314a07257b..69b33b575fe 100644 --- a/allure-report/data/test-cases/79e5a850abe86297.json +++ b/allure-report/data/test-cases/24b90ea9d401f78e.json @@ -1 +1 @@ -{"uid":"79e5a850abe86297","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"79e5a850abe86297.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1733030100617,"stop":1733030100617,"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_SharePriceTestCase::0","time":{"start":1733030100617,"stop":1733030100617,"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":"story","value":"Share prices"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f8378587d25efdca","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0}},{"uid":"a890c2eb991483c","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1}},{"uid":"70a5d60b5abb1f3f","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"5bbc7cd8e2683c41","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"24f0384efd85ae74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24fce2b7549fc46.json b/allure-report/data/test-cases/24fce2b7549fc46.json new file mode 100644 index 00000000000..aaef4ee339e --- /dev/null +++ b/allure-report/data/test-cases/24fce2b7549fc46.json @@ -0,0 +1 @@ +{"uid":"24fce2b7549fc46","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/43a8b37a1715c915.json b/allure-report/data/test-cases/250def6bd45574c1.json similarity index 62% rename from allure-report/data/test-cases/43a8b37a1715c915.json rename to allure-report/data/test-cases/250def6bd45574c1.json index da38cbe4da7..c88d3bad7bf 100644 --- a/allure-report/data/test-cases/43a8b37a1715c915.json +++ b/allure-report/data/test-cases/250def6bd45574c1.json @@ -1 +1 @@ -{"uid":"43a8b37a1715c915","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":"

Codewars badge:

Test Description:

The function should create a NxN spiral with a given size.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732764218582,"stop":1732764218582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"aea343086c8abd68","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1}},{"uid":"47cf0745ec1b0964","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"f207a08521ff3dd3","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"43a8b37a1715c915.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2571a6d17171a809.json b/allure-report/data/test-cases/2571a6d17171a809.json new file mode 100644 index 00000000000..aa8107c15bc --- /dev/null +++ b/allure-report/data/test-cases/2571a6d17171a809.json @@ -0,0 +1 @@ +{"uid":"2571a6d17171a809","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1733030100325,"stop":1733030100325,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1733030100325,"stop":1733030100325,"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_DigitalRootTestCase::0","time":{"start":1733030100325,"stop":1733030100325,"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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"42eeca3ee9327f4d","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0}},{"uid":"a86267feca446780","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0}},{"uid":"30a51896f75b6d0e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"9675429ac75e0c11","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"2571a6d17171a809.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c5cc35d3de0d6f4.json b/allure-report/data/test-cases/258638d82f4f543b.json similarity index 63% rename from allure-report/data/test-cases/4c5cc35d3de0d6f4.json rename to allure-report/data/test-cases/258638d82f4f543b.json index 568216d8bed..60d5bf7aed0 100644 --- a/allure-report/data/test-cases/4c5cc35d3de0d6f4.json +++ b/allure-report/data/test-cases/258638d82f4f543b.json @@ -1 +1 @@ -{"uid":"4c5cc35d3de0d6f4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"749bcfd3f56dec1a","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1}},{"uid":"68e1fa91eff84fb2","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"b8f5ce56991bbe59","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"4c5cc35d3de0d6f4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1732764221298,"stop":1732764221298,"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_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"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":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"258638d82f4f543b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ca3cfa2d2c9d074.json b/allure-report/data/test-cases/259fe2f0923b6d92.json similarity index 83% rename from allure-report/data/test-cases/4ca3cfa2d2c9d074.json rename to allure-report/data/test-cases/259fe2f0923b6d92.json index d0ccf385b38..c21b93d5153 100644 --- a/allure-report/data/test-cases/4ca3cfa2d2c9d074.json +++ b/allure-report/data/test-cases/259fe2f0923b6d92.json @@ -1 +1 @@ -{"uid":"4ca3cfa2d2c9d074","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732428194283,"stop":1732428194283,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732428194285,"stop":1732428194285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Human Readable Time"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"4ca3cfa2d2c9d074.json","parameterValues":[]} \ No newline at end of file +{"uid":"259fe2f0923b6d92","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732428194283,"stop":1732428194283,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194283,"stop":1732428194283,"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_MakeReadableTestCase::0","time":{"start":1732428194285,"stop":1732428194285,"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":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Human Readable Time"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"259fe2f0923b6d92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25c9ba69d5ac48c6.json b/allure-report/data/test-cases/25c9ba69d5ac48c6.json new file mode 100644 index 00000000000..df847992c54 --- /dev/null +++ b/allure-report/data/test-cases/25c9ba69d5ac48c6.json @@ -0,0 +1 @@ +{"uid":"25c9ba69d5ac48c6","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1733030100450,"stop":1733030100450,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","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_FactorialTestCase::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":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a394baafe8edd2c5","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0}},{"uid":"bc719674954c58b2","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0}},{"uid":"ea83ea1df97a1dc9","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"5da43d3a303ec46a","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"25c9ba69d5ac48c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/75a0786e7098fd84.json b/allure-report/data/test-cases/25e6937e43cdeebb.json similarity index 75% rename from allure-report/data/test-cases/75a0786e7098fd84.json rename to allure-report/data/test-cases/25e6937e43cdeebb.json index 850570585dd..473a515d59f 100644 --- a/allure-report/data/test-cases/75a0786e7098fd84.json +++ b/allure-report/data/test-cases/25e6937e43cdeebb.json @@ -1 +1 @@ -{"uid":"75a0786e7098fd84","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":1732428196265,"stop":1732428196265,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"75a0786e7098fd84.json","parameterValues":[]} \ No newline at end of file +{"uid":"25e6937e43cdeebb","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":1732428196265,"stop":1732428196265,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196265,"stop":1732428196265,"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_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"25e6937e43cdeebb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25eb791ee007f15b.json b/allure-report/data/test-cases/25eb791ee007f15b.json new file mode 100644 index 00000000000..bca00d61062 --- /dev/null +++ b/allure-report/data/test-cases/25eb791ee007f15b.json @@ -0,0 +1 @@ +{"uid":"25eb791ee007f15b","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/741a61f0f9cb4c37.json b/allure-report/data/test-cases/2620650c036fa5d9.json similarity index 84% rename from allure-report/data/test-cases/741a61f0f9cb4c37.json rename to allure-report/data/test-cases/2620650c036fa5d9.json index 096a239b7ef..a0f3b78c73f 100644 --- a/allure-report/data/test-cases/741a61f0f9cb4c37.json +++ b/allure-report/data/test-cases/2620650c036fa5d9.json @@ -1 +1 @@ -{"uid":"741a61f0f9cb4c37","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"250afdca61317e51","name":"stdout","source":"250afdca61317e51.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"741a61f0f9cb4c37.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733473976,"stop":1724733473976,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2a52b208b761917","name":"stdout","source":"c2a52b208b761917.txt","type":"text/plain","size":34}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"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":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"2620650c036fa5d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/510e078ddda4bd3c.json b/allure-report/data/test-cases/2687b62465687fa1.json similarity index 86% rename from allure-report/data/test-cases/510e078ddda4bd3c.json rename to allure-report/data/test-cases/2687b62465687fa1.json index 3b62d2024c4..444e0e7997a 100644 --- a/allure-report/data/test-cases/510e078ddda4bd3c.json +++ b/allure-report/data/test-cases/2687b62465687fa1.json @@ -1 +1 @@ -{"uid":"510e078ddda4bd3c","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"510e078ddda4bd3c.json","parameterValues":[]} \ No newline at end of file +{"uid":"2687b62465687fa1","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2687b62465687fa1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a75aa53086c60820.json b/allure-report/data/test-cases/274cead41a0d037b.json similarity index 78% rename from allure-report/data/test-cases/a75aa53086c60820.json rename to allure-report/data/test-cases/274cead41a0d037b.json index d95416e83cc..890911ad990 100644 --- a/allure-report/data/test-cases/a75aa53086c60820.json +++ b/allure-report/data/test-cases/274cead41a0d037b.json @@ -1 +1 @@ -{"uid":"a75aa53086c60820","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732428195769,"stop":1732428195769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"a75aa53086c60820.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732428195767,"stop":1732428195767,"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_DisemvowelTestCase::0","time":{"start":1732428195769,"stop":1732428195769,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"274cead41a0d037b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f25197354d7a779d.json b/allure-report/data/test-cases/2752c76835c96fe1.json similarity index 73% rename from allure-report/data/test-cases/f25197354d7a779d.json rename to allure-report/data/test-cases/2752c76835c96fe1.json index 5ee6ed6e515..48f2ec9260f 100644 --- a/allure-report/data/test-cases/f25197354d7a779d.json +++ b/allure-report/data/test-cases/2752c76835c96fe1.json @@ -1 +1 @@ -{"uid":"f25197354d7a779d","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abb95e0c50272d33","name":"stdout","source":"abb95e0c50272d33.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f25197354d7a779d.json","parameterValues":[]} \ No newline at end of file +{"uid":"2752c76835c96fe1","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3d09efb523dadc81.json b/allure-report/data/test-cases/27ff7d9c249750c3.json similarity index 77% rename from allure-report/data/test-cases/3d09efb523dadc81.json rename to allure-report/data/test-cases/27ff7d9c249750c3.json index 6b7d11c1d48..63ab76391f5 100644 --- a/allure-report/data/test-cases/3d09efb523dadc81.json +++ b/allure-report/data/test-cases/27ff7d9c249750c3.json @@ -1 +1 @@ -{"uid":"3d09efb523dadc81","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":1732428194628,"stop":1732428194628,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732428194630,"stop":1732428194630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"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":"HASHES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"3d09efb523dadc81.json","parameterValues":[]} \ No newline at end of file +{"uid":"27ff7d9c249750c3","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":1732428194628,"stop":1732428194628,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194628,"stop":1732428194628,"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":1732428194628,"stop":1732428194628,"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":1732428194628,"stop":1732428194628,"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":1732428194628,"stop":1732428194628,"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":1732428194628,"stop":1732428194628,"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_CountLettersInStringTestCase::0","time":{"start":1732428194630,"stop":1732428194630,"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":"Count letters in string"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"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":"HASHES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"27ff7d9c249750c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/280752ec061c1457.json b/allure-report/data/test-cases/280752ec061c1457.json deleted file mode 100644 index cd5f2ed7193..00000000000 --- a/allure-report/data/test-cases/280752ec061c1457.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"280752ec061c1457","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732428195727,"stop":1732428195727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Always perfect"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"280752ec061c1457.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c264906d7bf954d5.json b/allure-report/data/test-cases/28b8fa13ba65f773.json similarity index 94% rename from allure-report/data/test-cases/c264906d7bf954d5.json rename to allure-report/data/test-cases/28b8fa13ba65f773.json index daa4e8232f3..7cd62b453f8 100644 --- a/allure-report/data/test-cases/c264906d7bf954d5.json +++ b/allure-report/data/test-cases/28b8fa13ba65f773.json @@ -1 +1 @@ -{"uid":"c264906d7bf954d5","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"c264906d7bf954d5.json","parameterValues":[]} \ No newline at end of file +{"uid":"28b8fa13ba65f773","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724733472921,"stop":1724733472921,"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":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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1733030101101,"stop":1733030101101,"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_OtherAngleTestCase::0","time":{"start":1733030101101,"stop":1733030101101,"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Third Angle of a Triangle"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb902a37816cc407","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0}},{"uid":"97c98bd57653ce11","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1}},{"uid":"442731f3c269dae1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"cde4151d7e05fca5","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"28baf5593cc14310.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/293f48722d8450df.json b/allure-report/data/test-cases/293f48722d8450df.json new file mode 100644 index 00000000000..ee016cbe1c5 --- /dev/null +++ b/allure-report/data/test-cases/293f48722d8450df.json @@ -0,0 +1 @@ +{"uid":"293f48722d8450df","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1733030099317,"stop":1733030099317,"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_LetterFrequencyTestCase::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":"tag","value":"UTILITIES"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"11b930e98296bcb5","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1}},{"uid":"478b2bb987aa8c1c","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0}},{"uid":"de7442e95e2bcada","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"c93838d5eefff03d","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"293f48722d8450df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/641fd537e33a59ae.json b/allure-report/data/test-cases/295480517e9988a7.json similarity index 82% rename from allure-report/data/test-cases/641fd537e33a59ae.json rename to allure-report/data/test-cases/295480517e9988a7.json index a3b5435c3da..98fb04ea55e 100644 --- a/allure-report/data/test-cases/641fd537e33a59ae.json +++ b/allure-report/data/test-cases/295480517e9988a7.json @@ -1 +1 @@ -{"uid":"641fd537e33a59ae","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9f9ce9c609c0bc6d","name":"stdout","source":"9f9ce9c609c0bc6d.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"641fd537e33a59ae.json","parameterValues":[]} \ No newline at end of file +{"uid":"295480517e9988a7","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724733472624,"stop":1724733472624,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/632eacb89b6e193e.json b/allure-report/data/test-cases/297d8e250a3e646f.json similarity index 80% rename from allure-report/data/test-cases/632eacb89b6e193e.json rename to allure-report/data/test-cases/297d8e250a3e646f.json index b649b7b1926..c18bbc9db13 100644 --- a/allure-report/data/test-cases/632eacb89b6e193e.json +++ b/allure-report/data/test-cases/297d8e250a3e646f.json @@ -1 +1 @@ -{"uid":"632eacb89b6e193e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"96a11dda30514e67","name":"stdout","source":"96a11dda30514e67.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"632eacb89b6e193e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5703befafee18856.json b/allure-report/data/test-cases/2989a8630844f025.json similarity index 81% rename from allure-report/data/test-cases/5703befafee18856.json rename to allure-report/data/test-cases/2989a8630844f025.json index 769d1e2c12c..60e825ffea4 100644 --- a/allure-report/data/test-cases/5703befafee18856.json +++ b/allure-report/data/test-cases/2989a8630844f025.json @@ -1 +1 @@ -{"uid":"5703befafee18856","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5703befafee18856.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195751,"stop":1732428195751,"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_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"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 Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"2989a8630844f025.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a12dc2585f9de41f.json b/allure-report/data/test-cases/299c2d5af116c0c6.json similarity index 83% rename from allure-report/data/test-cases/a12dc2585f9de41f.json rename to allure-report/data/test-cases/299c2d5af116c0c6.json index e1f2ee41e70..ad771b8304f 100644 --- a/allure-report/data/test-cases/a12dc2585f9de41f.json +++ b/allure-report/data/test-cases/299c2d5af116c0c6.json @@ -1 +1 @@ -{"uid":"a12dc2585f9de41f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"312062c4d3ad84ef","name":"stdout","source":"312062c4d3ad84ef.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a12dc2585f9de41f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a3ca7d068d3e7d87.json b/allure-report/data/test-cases/29dbd6c095321046.json similarity index 78% rename from allure-report/data/test-cases/a3ca7d068d3e7d87.json rename to allure-report/data/test-cases/29dbd6c095321046.json index c7adb43a423..5217d9d9787 100644 --- a/allure-report/data/test-cases/a3ca7d068d3e7d87.json +++ b/allure-report/data/test-cases/29dbd6c095321046.json @@ -1 +1 @@ -{"uid":"a3ca7d068d3e7d87","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a3ca7d068d3e7d87.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f26dca06c76121c7.json b/allure-report/data/test-cases/29ff0a22a55da068.json similarity index 58% rename from allure-report/data/test-cases/f26dca06c76121c7.json rename to allure-report/data/test-cases/29ff0a22a55da068.json index fdd4387b5e0..914ba8b9c68 100644 --- a/allure-report/data/test-cases/f26dca06c76121c7.json +++ b/allure-report/data/test-cases/29ff0a22a55da068.json @@ -1 +1 @@ -{"uid":"f26dca06c76121c7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220572,"stop":1732764220572,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bc6803e227b56151","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1}},{"uid":"faf400d308fb1d4e","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"ba2c8f43220f0c44","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f26dca06c76121c7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220572,"stop":1732764220572,"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_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"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":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"29ff0a22a55da068.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2a3aa78afffa487b.json b/allure-report/data/test-cases/2a3aa78afffa487b.json new file mode 100644 index 00000000000..e3d8554a245 --- /dev/null +++ b/allure-report/data/test-cases/2a3aa78afffa487b.json @@ -0,0 +1 @@ +{"uid":"2a3aa78afffa487b","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1733030101054,"stop":1733030101054,"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_ReversedStringsTestCase::0","time":{"start":1733030101070,"stop":1733030101070,"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":"Reversed Strings"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"46d58d763aebfedc","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1}},{"uid":"ea6a7fadbe04578a","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0}},{"uid":"2a72b580d7da86a8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"80f4fc862b13c5c8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"2a3aa78afffa487b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2a6bb93adc2b9500.json b/allure-report/data/test-cases/2a6bb93adc2b9500.json new file mode 100644 index 00000000000..e06eadcb93f --- /dev/null +++ b/allure-report/data/test-cases/2a6bb93adc2b9500.json @@ -0,0 +1 @@ +{"uid":"2a6bb93adc2b9500","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1733030101007,"stop":1733030101007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1733030101007,"stop":1733030101007,"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_LogicalCalculatorTestCase::0","time":{"start":1733030101007,"stop":1733030101007,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b9ceaeaa317803af","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0}},{"uid":"e417d815465280e9","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1}},{"uid":"f4f1b439f55706","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"16e8835412fb12dc","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2a6bb93adc2b9500.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cefd3a9afeec351e.json b/allure-report/data/test-cases/2a72b580d7da86a8.json similarity index 75% rename from allure-report/data/test-cases/cefd3a9afeec351e.json rename to allure-report/data/test-cases/2a72b580d7da86a8.json index fa11270813d..31fd7c1d4b9 100644 --- a/allure-report/data/test-cases/cefd3a9afeec351e.json +++ b/allure-report/data/test-cases/2a72b580d7da86a8.json @@ -1 +1 @@ -{"uid":"cefd3a9afeec351e","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"407f6f4c1f9bb5a2","name":"stdout","source":"407f6f4c1f9bb5a2.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"cefd3a9afeec351e.json","parameterValues":[]} \ No newline at end of file +{"uid":"2a72b580d7da86a8","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72c5ae89672fcecc","name":"stdout","source":"72c5ae89672fcecc.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2a72b580d7da86a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2a82791553e70088.json b/allure-report/data/test-cases/2a82791553e70088.json new file mode 100644 index 00000000000..321d559d383 --- /dev/null +++ b/allure-report/data/test-cases/2a82791553e70088.json @@ -0,0 +1 @@ +{"uid":"2a82791553e70088","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/21dca02637c8027f.json b/allure-report/data/test-cases/2ae21ed716f07041.json similarity index 87% rename from allure-report/data/test-cases/21dca02637c8027f.json rename to allure-report/data/test-cases/2ae21ed716f07041.json index 2e720a10d06..2bb9365b128 100644 --- a/allure-report/data/test-cases/21dca02637c8027f.json +++ b/allure-report/data/test-cases/2ae21ed716f07041.json @@ -1 +1 @@ -{"uid":"21dca02637c8027f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"21dca02637c8027f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"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_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2ae21ed716f07041.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f585eec372fcc899.json b/allure-report/data/test-cases/2b0cda84a7f3dae6.json similarity index 81% rename from allure-report/data/test-cases/f585eec372fcc899.json rename to allure-report/data/test-cases/2b0cda84a7f3dae6.json index 9b9058c4ab2..dcb87b5692e 100644 --- a/allure-report/data/test-cases/f585eec372fcc899.json +++ b/allure-report/data/test-cases/2b0cda84a7f3dae6.json @@ -1 +1 @@ -{"uid":"f585eec372fcc899","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f585eec372fcc899.json","parameterValues":[]} \ No newline at end of file +{"uid":"2b0cda84a7f3dae6","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/895071e6126c1fbc.json b/allure-report/data/test-cases/2b0e5265fce841a7.json similarity index 73% rename from allure-report/data/test-cases/895071e6126c1fbc.json rename to allure-report/data/test-cases/2b0e5265fce841a7.json index 2132e8a8ccc..776a0c40043 100644 --- a/allure-report/data/test-cases/895071e6126c1fbc.json +++ b/allure-report/data/test-cases/2b0e5265fce841a7.json @@ -1 +1 @@ -{"uid":"895071e6126c1fbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8693f25c4ee9e10","name":"stdout","source":"f8693f25c4ee9e10.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"895071e6126c1fbc.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"348342fa3ca36cd4","name":"stdout","source":"348342fa3ca36cd4.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2b0e5265fce841a7.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1733030101117,"stop":1733030101117,"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_WellTestCase::0","time":{"start":1733030101117,"stop":1733030101117,"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":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"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.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b69923e60de0964d","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1}},{"uid":"5a1dd57eb64fa0aa","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0}},{"uid":"90ca6a0c009b593","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"ed660ef652aeab86","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"2c379ae83853bb2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c38900f28571c1.json b/allure-report/data/test-cases/2c38900f28571c1.json deleted file mode 100644 index 3fa356c22e4..00000000000 --- a/allure-report/data/test-cases/2c38900f28571c1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2c38900f28571c1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d69906a8709b5cf","name":"stdout","source":"5d69906a8709b5cf.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2c38900f28571c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9054a710a823b80a.json b/allure-report/data/test-cases/2c5d8621f6ad138a.json similarity index 85% rename from allure-report/data/test-cases/9054a710a823b80a.json rename to allure-report/data/test-cases/2c5d8621f6ad138a.json index 28b7c1ceb4d..f70f5c6a1c9 100644 --- a/allure-report/data/test-cases/9054a710a823b80a.json +++ b/allure-report/data/test-cases/2c5d8621f6ad138a.json @@ -1 +1 @@ -{"uid":"9054a710a823b80a","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732428195898,"stop":1732428195898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9054a710a823b80a.json","parameterValues":[]} \ No newline at end of file +{"uid":"2c5d8621f6ad138a","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195897,"stop":1732428195897,"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_PasswordTestCase::0","time":{"start":1732428195898,"stop":1732428195898,"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":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"2c5d8621f6ad138a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/117e19024dff1cfd.json b/allure-report/data/test-cases/2c9576ef35dcd75d.json similarity index 75% rename from allure-report/data/test-cases/117e19024dff1cfd.json rename to allure-report/data/test-cases/2c9576ef35dcd75d.json index 8435268529a..96cbda0b518 100644 --- a/allure-report/data/test-cases/117e19024dff1cfd.json +++ b/allure-report/data/test-cases/2c9576ef35dcd75d.json @@ -1 +1 @@ -{"uid":"117e19024dff1cfd","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f8e2ebe7761508b","name":"stdout","source":"2f8e2ebe7761508b.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"117e19024dff1cfd.json","parameterValues":[]} \ No newline at end of file +{"uid":"2c9576ef35dcd75d","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","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 a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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},{"name":"Enter test string 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":"b8b7177b76c24b60","name":"stdout","source":"b8b7177b76c24b60.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::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":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"STRINGS PARSING"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"2c9576ef35dcd75d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cc31ac5154e0ba1.json b/allure-report/data/test-cases/2cc31ac5154e0ba1.json new file mode 100644 index 00000000000..374bdd545e2 --- /dev/null +++ b/allure-report/data/test-cases/2cc31ac5154e0ba1.json @@ -0,0 +1 @@ +{"uid":"2cc31ac5154e0ba1","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/71a05925458c8736.json b/allure-report/data/test-cases/2cf064760bcef1c9.json similarity index 75% rename from allure-report/data/test-cases/71a05925458c8736.json rename to allure-report/data/test-cases/2cf064760bcef1c9.json index 7ac627e17a9..d4f297e2972 100644 --- a/allure-report/data/test-cases/71a05925458c8736.json +++ b/allure-report/data/test-cases/2cf064760bcef1c9.json @@ -1 +1 @@ -{"uid":"71a05925458c8736","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e707854c25108dd3","name":"stdout","source":"e707854c25108dd3.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"71a05925458c8736.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20620e6bfba57810","name":"stdout","source":"20620e6bfba57810.txt","type":"text/plain","size":59}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2cf064760bcef1c9.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a329da92784fccae.json b/allure-report/data/test-cases/2dbb23fbcd106704.json similarity index 82% rename from allure-report/data/test-cases/a329da92784fccae.json rename to allure-report/data/test-cases/2dbb23fbcd106704.json index 25df1274176..a4a43ef3dfe 100644 --- a/allure-report/data/test-cases/a329da92784fccae.json +++ b/allure-report/data/test-cases/2dbb23fbcd106704.json @@ -1 +1 @@ -{"uid":"a329da92784fccae","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a329da92784fccae.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/9665a188a4944ac6.json b/allure-report/data/test-cases/2e552441092e62c5.json similarity index 83% rename from allure-report/data/test-cases/9665a188a4944ac6.json rename to allure-report/data/test-cases/2e552441092e62c5.json index e360f75e88a..c849d12f82d 100644 --- a/allure-report/data/test-cases/9665a188a4944ac6.json +++ b/allure-report/data/test-cases/2e552441092e62c5.json @@ -1 +1 @@ -{"uid":"9665a188a4944ac6","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732428195684,"stop":1732428195684,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sums of Parts"},{"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":"tag","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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"9665a188a4944ac6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732428195683,"stop":1732428195683,"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_PartsSumTestCase::0","time":{"start":1732428195684,"stop":1732428195684,"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":"Sums of Parts"},{"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":"tag","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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"2e552441092e62c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e63c100babc1267d.json b/allure-report/data/test-cases/2e82de27bb7feb41.json similarity index 85% rename from allure-report/data/test-cases/e63c100babc1267d.json rename to allure-report/data/test-cases/2e82de27bb7feb41.json index a39e56920c3..fe672f97e3c 100644 --- a/allure-report/data/test-cases/e63c100babc1267d.json +++ b/allure-report/data/test-cases/2e82de27bb7feb41.json @@ -1 +1 @@ -{"uid":"e63c100babc1267d","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60b6667cdd104689","name":"stdout","source":"60b6667cdd104689.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"e63c100babc1267d.json","parameterValues":[]} \ No newline at end of file +{"uid":"2e82de27bb7feb41","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724733472780,"stop":1724733472780,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"885315e2174c8284","name":"stdout","source":"885315e2174c8284.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"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 Time"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"2e82de27bb7feb41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/58bbccd3c8af3c06.json b/allure-report/data/test-cases/2ea180ad6a851a6d.json similarity index 60% rename from allure-report/data/test-cases/58bbccd3c8af3c06.json rename to allure-report/data/test-cases/2ea180ad6a851a6d.json index a3e0a12ba24..42d54301964 100644 --- a/allure-report/data/test-cases/58bbccd3c8af3c06.json +++ b/allure-report/data/test-cases/2ea180ad6a851a6d.json @@ -1 +1 @@ -{"uid":"58bbccd3c8af3c06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9b3917a8b59d5897","name":"stdout","source":"9b3917a8b59d5897.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"58bbccd3c8af3c06.json","parameterValues":[]} \ No newline at end of file +{"uid":"2ea180ad6a851a6d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bf45d5ff12eeac","name":"stdout","source":"bf45d5ff12eeac.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724733474476,"stop":1724733474476,"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":"7 kyu"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Sum of powers of 2"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2ea180ad6a851a6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/563a12b2ae66d10b.json b/allure-report/data/test-cases/2f5a6152612f841f.json similarity index 81% rename from allure-report/data/test-cases/563a12b2ae66d10b.json rename to allure-report/data/test-cases/2f5a6152612f841f.json index 1f3d024ad13..d686f3f0bbf 100644 --- a/allure-report/data/test-cases/563a12b2ae66d10b.json +++ b/allure-report/data/test-cases/2f5a6152612f841f.json @@ -1 +1 @@ -{"uid":"563a12b2ae66d10b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195833,"stop":1732428195833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"563a12b2ae66d10b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195833,"stop":1732428195833,"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_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"2f5a6152612f841f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/caf985b2a75ee6b7.json b/allure-report/data/test-cases/2f7fe1d474868abf.json similarity index 80% rename from allure-report/data/test-cases/caf985b2a75ee6b7.json rename to allure-report/data/test-cases/2f7fe1d474868abf.json index 019efc8ca6b..b03983a52b6 100644 --- a/allure-report/data/test-cases/caf985b2a75ee6b7.json +++ b/allure-report/data/test-cases/2f7fe1d474868abf.json @@ -1 +1 @@ -{"uid":"caf985b2a75ee6b7","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"633abad852203ff8","name":"stdout","source":"633abad852203ff8.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"caf985b2a75ee6b7.json","parameterValues":[]} \ No newline at end of file +{"uid":"2f7fe1d474868abf","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724735127875,"stop":1724735127875,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36e3a300e20ebc68","name":"stdout","source":"36e3a300e20ebc68.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724735127875,"stop":1724735127875,"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":"Simple Pig Latin"},{"name":"feature","value":"String"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"2f7fe1d474868abf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fa689144ccb2725.json b/allure-report/data/test-cases/2fa689144ccb2725.json new file mode 100644 index 00000000000..a54f2030bb3 --- /dev/null +++ b/allure-report/data/test-cases/2fa689144ccb2725.json @@ -0,0 +1 @@ +{"uid":"2fa689144ccb2725","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":1733030100711,"stop":1733030100711,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1733030100711,"stop":1733030100711,"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_SumTwoSmallestNumbersTestCase::0","time":{"start":1733030100711,"stop":1733030100711,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6ecb3b474360e70","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1}},{"uid":"e897eac5693df65e","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0}},{"uid":"7f2fca7b02951542","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"c793fa14312a7752","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2fa689144ccb2725.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2febaffd225102f.json b/allure-report/data/test-cases/2febaffd225102f.json new file mode 100644 index 00000000000..4a332146a69 --- /dev/null +++ b/allure-report/data/test-cases/2febaffd225102f.json @@ -0,0 +1 @@ +{"uid":"2febaffd225102f","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":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/ce75fbdf4ccd46b8.json b/allure-report/data/test-cases/2ff548416f63af86.json similarity index 79% rename from allure-report/data/test-cases/ce75fbdf4ccd46b8.json rename to allure-report/data/test-cases/2ff548416f63af86.json index 836c55faf9c..40a60b9cf75 100644 --- a/allure-report/data/test-cases/ce75fbdf4ccd46b8.json +++ b/allure-report/data/test-cases/2ff548416f63af86.json @@ -1 +1 @@ -{"uid":"ce75fbdf4ccd46b8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45607bc70f60caca","name":"stdout","source":"45607bc70f60caca.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ce75fbdf4ccd46b8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/300c045916564a1.json b/allure-report/data/test-cases/300c045916564a1.json deleted file mode 100644 index 005e6560e56..00000000000 --- a/allure-report/data/test-cases/300c045916564a1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"300c045916564a1","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732764219225,"stop":1732764219225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"479b452abb7b813c","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0}},{"uid":"4d57a8ddade5816","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"e480fe95093fd8e7","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"300c045916564a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ff87d981594c6f7.json b/allure-report/data/test-cases/305e207ab9e52150.json similarity index 62% rename from allure-report/data/test-cases/3ff87d981594c6f7.json rename to allure-report/data/test-cases/305e207ab9e52150.json index 853a1ca8f99..8fcac90d7dd 100644 --- a/allure-report/data/test-cases/3ff87d981594c6f7.json +++ b/allure-report/data/test-cases/305e207ab9e52150.json @@ -1 +1 @@ -{"uid":"3ff87d981594c6f7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732764220596,"stop":1732764220596,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220596,"stop":1732764220596,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1732764220598,"stop":1732764220598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Password validator"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9054a710a823b80a","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0}},{"uid":"2f46a2e41d4cb55","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"cf349408f505ed67","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"3ff87d981594c6f7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1732764220596,"stop":1732764220596,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220596,"stop":1732764220596,"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_PasswordTestCase::0","time":{"start":1732764220598,"stop":1732764220598,"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":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"story","value":"Password validator"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"305e207ab9e52150.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30779503c72bcec6.json b/allure-report/data/test-cases/30779503c72bcec6.json new file mode 100644 index 00000000000..a2ed88c0c31 --- /dev/null +++ b/allure-report/data/test-cases/30779503c72bcec6.json @@ -0,0 +1 @@ +{"uid":"30779503c72bcec6","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1733030100789,"stop":1733030100789,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"add9ef76ac7e1779","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1}},{"uid":"8d4255e3e5d3d8a0","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0}},{"uid":"e186908da5e6d7c","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"c9095528631735ce","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"30779503c72bcec6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/522a0d282fded9dd.json b/allure-report/data/test-cases/30782fdca988a45e.json similarity index 73% rename from allure-report/data/test-cases/522a0d282fded9dd.json rename to allure-report/data/test-cases/30782fdca988a45e.json index 20a4ad56241..6044129d14c 100644 --- a/allure-report/data/test-cases/522a0d282fded9dd.json +++ b/allure-report/data/test-cases/30782fdca988a45e.json @@ -1 +1 @@ -{"uid":"522a0d282fded9dd","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3f0fa9f25e69b0db","name":"stdout","source":"3f0fa9f25e69b0db.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"522a0d282fded9dd.json","parameterValues":[]} \ No newline at end of file +{"uid":"30782fdca988a45e","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b2310e8820061774","name":"stdout","source":"b2310e8820061774.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30782fdca988a45e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1908dde48e8dbb5.json b/allure-report/data/test-cases/30a51896f75b6d0e.json similarity index 78% rename from allure-report/data/test-cases/f1908dde48e8dbb5.json rename to allure-report/data/test-cases/30a51896f75b6d0e.json index a422fb3a797..90016676ba6 100644 --- a/allure-report/data/test-cases/f1908dde48e8dbb5.json +++ b/allure-report/data/test-cases/30a51896f75b6d0e.json @@ -1 +1 @@ -{"uid":"f1908dde48e8dbb5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"40f2f98b11de943f","name":"stdout","source":"40f2f98b11de943f.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f1908dde48e8dbb5.json","parameterValues":[]} \ No newline at end of file +{"uid":"30a51896f75b6d0e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7548d350c45f54f6","name":"stdout","source":"7548d350c45f54f6.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"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":"story","value":"Sum of Digits / Digital Root"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"30a51896f75b6d0e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30ebc2ebd440c488.json b/allure-report/data/test-cases/30ebc2ebd440c488.json deleted file mode 100644 index 9065f7cacd3..00000000000 --- a/allure-report/data/test-cases/30ebc2ebd440c488.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"30ebc2ebd440c488","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb2a7d798a0dd1d2","name":"stdout","source":"eb2a7d798a0dd1d2.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"30ebc2ebd440c488.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/315e825b7f114d5b.json b/allure-report/data/test-cases/315e825b7f114d5b.json new file mode 100644 index 00000000000..f86ef572971 --- /dev/null +++ b/allure-report/data/test-cases/315e825b7f114d5b.json @@ -0,0 +1 @@ +{"uid":"315e825b7f114d5b","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1733030098958,"stop":1733030098958,"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":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"db31ba951eab96a9","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0}},{"uid":"4a25f98e06778e12","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0}},{"uid":"57c8e0dc2c8662c2","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"394fa56a4056d8b5","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"315e825b7f114d5b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31667aebf4f2d5e.json b/allure-report/data/test-cases/31667aebf4f2d5e.json new file mode 100644 index 00000000000..557d2a99ab0 --- /dev/null +++ b/allure-report/data/test-cases/31667aebf4f2d5e.json @@ -0,0 +1 @@ +{"uid":"31667aebf4f2d5e","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":1732764220628,"stop":1732764220637,"duration":9},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732764220628,"stop":1732764220636,"duration":8},"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_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"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":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"31667aebf4f2d5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c87eac92a1b3b456.json b/allure-report/data/test-cases/31754715fc04b029.json similarity index 59% rename from allure-report/data/test-cases/c87eac92a1b3b456.json rename to allure-report/data/test-cases/31754715fc04b029.json index 24661fef116..a2c129d97d3 100644 --- a/allure-report/data/test-cases/c87eac92a1b3b456.json +++ b/allure-report/data/test-cases/31754715fc04b029.json @@ -1 +1 @@ -{"uid":"c87eac92a1b3b456","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"563a12b2ae66d10b","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1}},{"uid":"55a0094c41d10012","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"ed5a184ed941933a","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"c87eac92a1b3b456.json","parameterValues":[]} \ No newline at end of file +{"uid":"31754715fc04b029","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220523,"stop":1732764220523,"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_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"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":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"31754715fc04b029.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31ce0fdb81c2daf6.json b/allure-report/data/test-cases/31ce0fdb81c2daf6.json new file mode 100644 index 00000000000..80336ade9dd --- /dev/null +++ b/allure-report/data/test-cases/31ce0fdb81c2daf6.json @@ -0,0 +1 @@ +{"uid":"31ce0fdb81c2daf6","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":1733030098942,"stop":1733030098942,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1b57aafe4439b9a8.json b/allure-report/data/test-cases/31e5836e8c9c8975.json similarity index 56% rename from allure-report/data/test-cases/1b57aafe4439b9a8.json rename to allure-report/data/test-cases/31e5836e8c9c8975.json index 595cfebb536..a55c8f25a20 100644 --- a/allure-report/data/test-cases/1b57aafe4439b9a8.json +++ b/allure-report/data/test-cases/31e5836e8c9c8975.json @@ -1 +1 @@ -{"uid":"1b57aafe4439b9a8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732764221008,"stop":1732764221008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732764221010,"stop":1732764221010,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732764221011,"stop":1732764221011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"393b88e5ac625a50","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0}},{"uid":"6b42b881fa048473","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"e65c2aee0db2b724","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"1b57aafe4439b9a8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732764221008,"stop":1732764221008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732764221010,"stop":1732764221010,"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_SummationTestCase::0","time":{"start":1732764221011,"stop":1732764221011,"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":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"31e5836e8c9c8975.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ef5212b94420bba.json b/allure-report/data/test-cases/31fa8902feb5ac83.json similarity index 75% rename from allure-report/data/test-cases/9ef5212b94420bba.json rename to allure-report/data/test-cases/31fa8902feb5ac83.json index 4275232a9df..0f09b2977e1 100644 --- a/allure-report/data/test-cases/9ef5212b94420bba.json +++ b/allure-report/data/test-cases/31fa8902feb5ac83.json @@ -1 +1 @@ -{"uid":"9ef5212b94420bba","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"59ffb265a3e6098c","name":"stdout","source":"59ffb265a3e6098c.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"9ef5212b94420bba.json","parameterValues":[]} \ No newline at end of file +{"uid":"31fa8902feb5ac83","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":1724733473124,"stop":1724733473124,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"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":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d85c19e058de9af1","name":"stdout","source":"d85c19e058de9af1.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"HASHES"},{"name":"feature","value":"String"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Count letters in string"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"31fa8902feb5ac83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99e68c3ce0169a01.json b/allure-report/data/test-cases/327e71002be993d7.json similarity index 86% rename from allure-report/data/test-cases/99e68c3ce0169a01.json rename to allure-report/data/test-cases/327e71002be993d7.json index a81470622e3..9fc8fce5555 100644 --- a/allure-report/data/test-cases/99e68c3ce0169a01.json +++ b/allure-report/data/test-cases/327e71002be993d7.json @@ -1 +1 @@ -{"uid":"99e68c3ce0169a01","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732428194535,"stop":1732428194535,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732428194536,"stop":1732428194536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Valid Parentheses"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"99e68c3ce0169a01.json","parameterValues":[]} \ No newline at end of file +{"uid":"327e71002be993d7","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732428194535,"stop":1732428194535,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194535,"stop":1732428194535,"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":1732428194536,"stop":1732428194536,"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":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Valid Parentheses"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"327e71002be993d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb0cb59f0e1a4eca.json b/allure-report/data/test-cases/32c8f819a3205d1d.json similarity index 69% rename from allure-report/data/test-cases/bb0cb59f0e1a4eca.json rename to allure-report/data/test-cases/32c8f819a3205d1d.json index 9ad282ea015..7fdfb4c605c 100644 --- a/allure-report/data/test-cases/bb0cb59f0e1a4eca.json +++ b/allure-report/data/test-cases/32c8f819a3205d1d.json @@ -1 +1 @@ -{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732764218887,"stop":1732764218887,"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":"

Codewars badge:

Test Description:

The function should remove all agents that are outside of the city boundaries.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"71a87e59b6648413","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1}},{"uid":"d64758690dcdce52","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"641fd537e33a59ae","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"bb0cb59f0e1a4eca.json","parameterValues":[]} \ No newline at end of file +{"uid":"32c8f819a3205d1d","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732764218887,"stop":1732764218887,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030100633,"stop":1733030100633,"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_InviteMoreWomenTestCase::0","time":{"start":1733030100633,"stop":1733030100633,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"PUZZLES"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5e6a87af3754f9e","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0}},{"uid":"aef740a566ef8e93","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0}},{"uid":"e92026f4174cc7e","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"8f411cd28b85874e","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"32eaf956310a89b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33444d7890f0540.json b/allure-report/data/test-cases/33444d7890f0540.json new file mode 100644 index 00000000000..a55351a1d8c --- /dev/null +++ b/allure-report/data/test-cases/33444d7890f0540.json @@ -0,0 +1 @@ +{"uid":"33444d7890f0540","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":1732428195544,"stop":1732428195544,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ec528f5ba60e276b.json b/allure-report/data/test-cases/3352f60feb1f9712.json similarity index 86% rename from allure-report/data/test-cases/ec528f5ba60e276b.json rename to allure-report/data/test-cases/3352f60feb1f9712.json index bb72f56097b..26d857e4875 100644 --- a/allure-report/data/test-cases/ec528f5ba60e276b.json +++ b/allure-report/data/test-cases/3352f60feb1f9712.json @@ -1 +1 @@ -{"uid":"ec528f5ba60e276b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ec528f5ba60e276b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/142f5165c8452d36.json b/allure-report/data/test-cases/335bbd097bcd7f07.json similarity index 62% rename from allure-report/data/test-cases/142f5165c8452d36.json rename to allure-report/data/test-cases/335bbd097bcd7f07.json index 338b1e58ac4..d882f45d3a9 100644 --- a/allure-report/data/test-cases/142f5165c8452d36.json +++ b/allure-report/data/test-cases/335bbd097bcd7f07.json @@ -1 +1 @@ -{"uid":"142f5165c8452d36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732764219132,"stop":1732764219132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"MEMOIZATION"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d3ab7c4bfc7d171f","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0}},{"uid":"8edcba07a1a3ea56","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"6e4923e8771eebeb","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"142f5165c8452d36.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764219120,"stop":1732764219120,"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_PrimesTestCase::0","time":{"start":1732764219132,"stop":1732764219132,"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":"Master your primes: sieve with memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"MEMOIZATION"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"335bbd097bcd7f07.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6b42b881fa048473.json b/allure-report/data/test-cases/3371b53ac373c146.json similarity index 77% rename from allure-report/data/test-cases/6b42b881fa048473.json rename to allure-report/data/test-cases/3371b53ac373c146.json index b8f9f6adc88..71ad8c8251e 100644 --- a/allure-report/data/test-cases/6b42b881fa048473.json +++ b/allure-report/data/test-cases/3371b53ac373c146.json @@ -1 +1 @@ -{"uid":"6b42b881fa048473","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"102e6d56faf7b4e2","name":"stdout","source":"102e6d56faf7b4e2.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"6b42b881fa048473.json","parameterValues":[]} \ No newline at end of file +{"uid":"3371b53ac373c146","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fbdaeda311992dcb","name":"stdout","source":"fbdaeda311992dcb.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"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":"tag","value":"LOOPS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"3371b53ac373c146.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7dd8f8438e567a9.json b/allure-report/data/test-cases/3376cc456abfb7e3.json similarity index 63% rename from allure-report/data/test-cases/b7dd8f8438e567a9.json rename to allure-report/data/test-cases/3376cc456abfb7e3.json index c95a47b6fcc..102295467e6 100644 --- a/allure-report/data/test-cases/b7dd8f8438e567a9.json +++ b/allure-report/data/test-cases/3376cc456abfb7e3.json @@ -1 +1 @@ -{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732764218952,"stop":1732764218953,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b540357a03b90416","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132}},{"uid":"61de742601660eab","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"319c2fc51c0b8912","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b7dd8f8438e567a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"3376cc456abfb7e3","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1733030100773,"stop":1733030100773,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"da622740411a3e7a","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0}},{"uid":"bf2cbfcfafa25fb5","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0}},{"uid":"1186c71e39a023da","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"c9fb9d40396e984d","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"33789c02e7e07041.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/732b9dd805d734b8.json b/allure-report/data/test-cases/338755bddf5c3394.json similarity index 56% rename from allure-report/data/test-cases/732b9dd805d734b8.json rename to allure-report/data/test-cases/338755bddf5c3394.json index 5d52506685b..5d78be1bfa3 100644 --- a/allure-report/data/test-cases/732b9dd805d734b8.json +++ b/allure-report/data/test-cases/338755bddf5c3394.json @@ -1 +1 @@ -{"uid":"732b9dd805d734b8","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"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":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732764220449,"stop":1732764220449,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5d01c4fe30779a0","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1}},{"uid":"e5a7c04cf0e6c2f9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"732b9dd805d734b8.json","parameterValues":[]} \ No newline at end of file +{"uid":"338755bddf5c3394","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"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":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/d5d01c4fe30779a0.json b/allure-report/data/test-cases/33cbde6b5c940b7b.json similarity index 77% rename from allure-report/data/test-cases/d5d01c4fe30779a0.json rename to allure-report/data/test-cases/33cbde6b5c940b7b.json index 217d46603b0..1a0a57558ce 100644 --- a/allure-report/data/test-cases/d5d01c4fe30779a0.json +++ b/allure-report/data/test-cases/33cbde6b5c940b7b.json @@ -1 +1 @@ -{"uid":"d5d01c4fe30779a0","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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d5d01c4fe30779a0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d0931e78c129f8d8.json b/allure-report/data/test-cases/33fde501ad5f49b7.json similarity index 67% rename from allure-report/data/test-cases/d0931e78c129f8d8.json rename to allure-report/data/test-cases/33fde501ad5f49b7.json index 5aa1f91397a..705e71c9d96 100644 --- a/allure-report/data/test-cases/d0931e78c129f8d8.json +++ b/allure-report/data/test-cases/33fde501ad5f49b7.json @@ -1 +1 @@ -{"uid":"d0931e78c129f8d8","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732764220260,"stop":1732764220260,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e55f716219844475","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0}},{"uid":"962ca80dcc908350","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"98366b42396826ce","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"d0931e78c129f8d8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/34ca51906297ee6f.json b/allure-report/data/test-cases/34ca51906297ee6f.json deleted file mode 100644 index f8f3b26c5bd..00000000000 --- a/allure-report/data/test-cases/34ca51906297ee6f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"34ca51906297ee6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732428195668,"stop":1732428195668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"34ca51906297ee6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4941a73e9c93a57.json b/allure-report/data/test-cases/353219a042e3862c.json similarity index 76% rename from allure-report/data/test-cases/d4941a73e9c93a57.json rename to allure-report/data/test-cases/353219a042e3862c.json index 3ea1beef1bc..9ef9b1eef10 100644 --- a/allure-report/data/test-cases/d4941a73e9c93a57.json +++ b/allure-report/data/test-cases/353219a042e3862c.json @@ -1 +1 @@ -{"uid":"d4941a73e9c93a57","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194661,"stop":1732428194662,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4941a73e9c93a57.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1251fa1056fea3d4.json b/allure-report/data/test-cases/35a3e561b98b1660.json similarity index 69% rename from allure-report/data/test-cases/1251fa1056fea3d4.json rename to allure-report/data/test-cases/35a3e561b98b1660.json index 5b32476148a..bf83407d0a9 100644 --- a/allure-report/data/test-cases/1251fa1056fea3d4.json +++ b/allure-report/data/test-cases/35a3e561b98b1660.json @@ -1 +1 @@ -{"uid":"1251fa1056fea3d4","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dc89f010c8fc632","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1}},{"uid":"86173a2048ae1d24","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"b9086c98d6d71504","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1251fa1056fea3d4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5364b62b05552f1e.json b/allure-report/data/test-cases/35bd830710547eb9.json similarity index 94% rename from allure-report/data/test-cases/5364b62b05552f1e.json rename to allure-report/data/test-cases/35bd830710547eb9.json index f1af8ba3c38..94d1ff1153c 100644 --- a/allure-report/data/test-cases/5364b62b05552f1e.json +++ b/allure-report/data/test-cases/35bd830710547eb9.json @@ -1 +1 @@ -{"uid":"5364b62b05552f1e","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":"5364b62b05552f1e.json","parameterValues":[]} \ No newline at end of file +{"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/28a9bedc22c54787.json b/allure-report/data/test-cases/35dae73baea1e718.json similarity index 60% rename from allure-report/data/test-cases/28a9bedc22c54787.json rename to allure-report/data/test-cases/35dae73baea1e718.json index a695f797d08..408e61c120d 100644 --- a/allure-report/data/test-cases/28a9bedc22c54787.json +++ b/allure-report/data/test-cases/35dae73baea1e718.json @@ -1 +1 @@ -{"uid":"28a9bedc22c54787","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":1732764220741,"stop":1732764220741,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6b3bc73a428b4db","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0}},{"uid":"71a05925458c8736","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"122ba025ebcea5dd","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"28a9bedc22c54787.json","parameterValues":[]} \ No newline at end of file +{"uid":"35dae73baea1e718","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":1732764220741,"stop":1732764220741,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732764220741,"stop":1732764220741,"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_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"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 Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"35dae73baea1e718.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35f4051adfa3517.json b/allure-report/data/test-cases/35f4051adfa3517.json deleted file mode 100644 index 2da0ec400d5..00000000000 --- a/allure-report/data/test-cases/35f4051adfa3517.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"35f4051adfa3517","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"35f4051adfa3517.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4249127f6bff6f10.json b/allure-report/data/test-cases/36190d8eb76d5fc1.json similarity index 72% rename from allure-report/data/test-cases/4249127f6bff6f10.json rename to allure-report/data/test-cases/36190d8eb76d5fc1.json index 3dac48c7822..830c9854afa 100644 --- a/allure-report/data/test-cases/4249127f6bff6f10.json +++ b/allure-report/data/test-cases/36190d8eb76d5fc1.json @@ -1 +1 @@ -{"uid":"4249127f6bff6f10","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e6c7d1c4189d9dd","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0}},{"uid":"42bd5b348187136c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"9f41894781b470ee","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"4249127f6bff6f10.json","parameterValues":[]} \ No newline at end of file +{"uid":"36190d8eb76d5fc1","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ac35e86bb753fb8c.json b/allure-report/data/test-cases/362d2abd0db10461.json similarity index 80% rename from allure-report/data/test-cases/ac35e86bb753fb8c.json rename to allure-report/data/test-cases/362d2abd0db10461.json index 544ee8094ba..28b6d109e2b 100644 --- a/allure-report/data/test-cases/ac35e86bb753fb8c.json +++ b/allure-report/data/test-cases/362d2abd0db10461.json @@ -1 +1 @@ -{"uid":"ac35e86bb753fb8c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"32bad6265b9c6d8f","name":"stdout","source":"32bad6265b9c6d8f.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac35e86bb753fb8c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8226dfed0d6a202","name":"stdout","source":"b8226dfed0d6a202.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"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":"Significant Figures"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"362d2abd0db10461.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0a6327af7d064cf.json b/allure-report/data/test-cases/36cf4add9af1788b.json similarity index 83% rename from allure-report/data/test-cases/b0a6327af7d064cf.json rename to allure-report/data/test-cases/36cf4add9af1788b.json index 3d35092a139..37c10b93b2e 100644 --- a/allure-report/data/test-cases/b0a6327af7d064cf.json +++ b/allure-report/data/test-cases/36cf4add9af1788b.json @@ -1 +1 @@ -{"uid":"b0a6327af7d064cf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b0a6327af7d064cf.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"36cf4add9af1788b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/994a4ad6b5f0c1e0.json b/allure-report/data/test-cases/3765df1aaa05656f.json similarity index 80% rename from allure-report/data/test-cases/994a4ad6b5f0c1e0.json rename to allure-report/data/test-cases/3765df1aaa05656f.json index 0211e5bcab4..25750869c54 100644 --- a/allure-report/data/test-cases/994a4ad6b5f0c1e0.json +++ b/allure-report/data/test-cases/3765df1aaa05656f.json @@ -1 +1 @@ -{"uid":"994a4ad6b5f0c1e0","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b1abe2714e07e88","name":"stdout","source":"4b1abe2714e07e88.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"994a4ad6b5f0c1e0.json","parameterValues":[]} \ No newline at end of file +{"uid":"3765df1aaa05656f","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ffc8d600f4ca1daf.json b/allure-report/data/test-cases/378737d914acf19c.json similarity index 61% rename from allure-report/data/test-cases/ffc8d600f4ca1daf.json rename to allure-report/data/test-cases/378737d914acf19c.json index e21160d1444..b630faea89d 100644 --- a/allure-report/data/test-cases/ffc8d600f4ca1daf.json +++ b/allure-report/data/test-cases/378737d914acf19c.json @@ -1 +1 @@ -{"uid":"ffc8d600f4ca1daf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"80d57c86b12a37c4","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0}},{"uid":"935b6bf420709ca7","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"8bd454f111efcd3e","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"ffc8d600f4ca1daf.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221064,"stop":1732764221064,"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_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"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":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"378737d914acf19c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37fbb0401b01604d.json b/allure-report/data/test-cases/37fbb0401b01604d.json new file mode 100644 index 00000000000..74e10b9aca5 --- /dev/null +++ b/allure-report/data/test-cases/37fbb0401b01604d.json @@ -0,0 +1 @@ +{"uid":"37fbb0401b01604d","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":1733030100976,"stop":1733030100976,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1733030100976,"stop":1733030100976,"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_HoopCountTestCase::0","time":{"start":1733030100992,"stop":1733030100992,"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":"feature","value":"Conditions"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7b778b64af209b91","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0}},{"uid":"65318d64270bf167","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0}},{"uid":"5ef563c60f1007ea","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"dba029f7988869ef","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"37fbb0401b01604d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/383972b39eec664a.json b/allure-report/data/test-cases/383972b39eec664a.json deleted file mode 100644 index 6d947e30636..00000000000 --- a/allure-report/data/test-cases/383972b39eec664a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"383972b39eec664a","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"13227bd500cb42e3","name":"stdout","source":"13227bd500cb42e3.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"383972b39eec664a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25a19c539143ffc2.json b/allure-report/data/test-cases/38465b9126105022.json similarity index 93% rename from allure-report/data/test-cases/25a19c539143ffc2.json rename to allure-report/data/test-cases/38465b9126105022.json index 36ee59054c8..ebb465fd99d 100644 --- a/allure-report/data/test-cases/25a19c539143ffc2.json +++ b/allure-report/data/test-cases/38465b9126105022.json @@ -1 +1 @@ -{"uid":"25a19c539143ffc2","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732428195535,"stop":1732428195535,"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":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":"25a19c539143ffc2.json","parameterValues":[]} \ No newline at end of file +{"uid":"38465b9126105022","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732428195535,"stop":1732428195535,"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":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/3c7a781e3674db5e.json b/allure-report/data/test-cases/3855d942abd2cdd4.json similarity index 59% rename from allure-report/data/test-cases/3c7a781e3674db5e.json rename to allure-report/data/test-cases/3855d942abd2cdd4.json index 489542ea5ba..b09160bc925 100644 --- a/allure-report/data/test-cases/3c7a781e3674db5e.json +++ b/allure-report/data/test-cases/3855d942abd2cdd4.json @@ -1 +1 @@ -{"uid":"3c7a781e3674db5e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732764219151,"stop":1732764219151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732764219151,"stop":1732764219151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732764219153,"stop":1732764219153,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6aa550180790876d","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0}},{"uid":"6463a9e3be0b4026","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"4ab2fd070154adeb","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3c7a781e3674db5e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732764219151,"stop":1732764219151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732764219151,"stop":1732764219151,"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_ZerosTestCase::0","time":{"start":1732764219153,"stop":1732764219153,"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":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3855d942abd2cdd4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3b1ea272cafb8c8.json b/allure-report/data/test-cases/387fcb0eb682916d.json similarity index 81% rename from allure-report/data/test-cases/f3b1ea272cafb8c8.json rename to allure-report/data/test-cases/387fcb0eb682916d.json index e0ca9d07100..1914c0916e2 100644 --- a/allure-report/data/test-cases/f3b1ea272cafb8c8.json +++ b/allure-report/data/test-cases/387fcb0eb682916d.json @@ -1 +1 @@ -{"uid":"f3b1ea272cafb8c8","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f3b1ea272cafb8c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"387fcb0eb682916d","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e1af2c095108694d.json b/allure-report/data/test-cases/38a864ebd2e42623.json similarity index 63% rename from allure-report/data/test-cases/e1af2c095108694d.json rename to allure-report/data/test-cases/38a864ebd2e42623.json index 23d0da3626c..f42923e6efa 100644 --- a/allure-report/data/test-cases/e1af2c095108694d.json +++ b/allure-report/data/test-cases/38a864ebd2e42623.json @@ -1 +1 @@ -{"uid":"e1af2c095108694d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219284,"stop":1732764219284,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5abe74757b94997a","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0}},{"uid":"ebb627dfa50cb94d","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"f2a7bab28da55269","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"e1af2c095108694d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219284,"stop":1732764219284,"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_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"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":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"38a864ebd2e42623.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38d84fb9239b5f2e.json b/allure-report/data/test-cases/38d84fb9239b5f2e.json deleted file mode 100644 index f0f8f6aa357..00000000000 --- a/allure-report/data/test-cases/38d84fb9239b5f2e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"38d84fb9239b5f2e","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":1732428195466,"stop":1732428195466,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732428195465,"stop":1732428195465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732428195467,"stop":1732428195467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"38d84fb9239b5f2e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f253bf40e74f545d.json b/allure-report/data/test-cases/394fa56a4056d8b5.json similarity index 81% rename from allure-report/data/test-cases/f253bf40e74f545d.json rename to allure-report/data/test-cases/394fa56a4056d8b5.json index f397242dc2b..2c6893efc19 100644 --- a/allure-report/data/test-cases/f253bf40e74f545d.json +++ b/allure-report/data/test-cases/394fa56a4056d8b5.json @@ -1 +1 @@ -{"uid":"f253bf40e74f545d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a77304cbd9f33e1a","name":"stdout","source":"a77304cbd9f33e1a.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f253bf40e74f545d.json","parameterValues":[]} \ No newline at end of file +{"uid":"394fa56a4056d8b5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8c9b413e90bf769f","name":"stdout","source":"8c9b413e90bf769f.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724733472608,"stop":1724733472608,"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":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fibonacci Streaming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"394fa56a4056d8b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44516baeffa03c9d.json b/allure-report/data/test-cases/39b35ac8d306cbda.json similarity index 84% rename from allure-report/data/test-cases/44516baeffa03c9d.json rename to allure-report/data/test-cases/39b35ac8d306cbda.json index ef9415afc69..7d57f8f89e7 100644 --- a/allure-report/data/test-cases/44516baeffa03c9d.json +++ b/allure-report/data/test-cases/39b35ac8d306cbda.json @@ -1 +1 @@ -{"uid":"44516baeffa03c9d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"44516baeffa03c9d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bcdd15975118f527.json b/allure-report/data/test-cases/39d768f6fda8fdf2.json similarity index 85% rename from allure-report/data/test-cases/bcdd15975118f527.json rename to allure-report/data/test-cases/39d768f6fda8fdf2.json index 26e16e75f99..33c4f08ca44 100644 --- a/allure-report/data/test-cases/bcdd15975118f527.json +++ b/allure-report/data/test-cases/39d768f6fda8fdf2.json @@ -1 +1 @@ -{"uid":"bcdd15975118f527","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bcdd15975118f527.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b540357a03b90416.json b/allure-report/data/test-cases/39dc8cd28592a068.json similarity index 78% rename from allure-report/data/test-cases/b540357a03b90416.json rename to allure-report/data/test-cases/39dc8cd28592a068.json index c84d6c4a856..2c328b851e8 100644 --- a/allure-report/data/test-cases/b540357a03b90416.json +++ b/allure-report/data/test-cases/39dc8cd28592a068.json @@ -1 +1 @@ -{"uid":"b540357a03b90416","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b540357a03b90416.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3c99f2489842209e.json b/allure-report/data/test-cases/39eb5e3cc2f12413.json similarity index 77% rename from allure-report/data/test-cases/3c99f2489842209e.json rename to allure-report/data/test-cases/39eb5e3cc2f12413.json index 67a5e80fcb8..bda631d77fa 100644 --- a/allure-report/data/test-cases/3c99f2489842209e.json +++ b/allure-report/data/test-cases/39eb5e3cc2f12413.json @@ -1 +1 @@ -{"uid":"3c99f2489842209e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a45595e4822528c2","name":"stdout","source":"a45595e4822528c2.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3c99f2489842209e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"23973121b39ff210","name":"stdout","source":"23973121b39ff210.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724733473913,"stop":1724733473913,"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":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"39eb5e3cc2f12413.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a516b9dc7b53625.json b/allure-report/data/test-cases/3a516b9dc7b53625.json new file mode 100644 index 00000000000..772a232a1cf --- /dev/null +++ b/allure-report/data/test-cases/3a516b9dc7b53625.json @@ -0,0 +1 @@ +{"uid":"3a516b9dc7b53625","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/37c27a38809b08b4.json b/allure-report/data/test-cases/3a88934bc640802f.json similarity index 65% rename from allure-report/data/test-cases/37c27a38809b08b4.json rename to allure-report/data/test-cases/3a88934bc640802f.json index 877392b12e6..638d22e1271 100644 --- a/allure-report/data/test-cases/37c27a38809b08b4.json +++ b/allure-report/data/test-cases/3a88934bc640802f.json @@ -1 +1 @@ -{"uid":"37c27a38809b08b4","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":"

Codewars badge:

Test Description:

The function should generate city map with coordinates.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"574cb5d6827dca2a","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1}},{"uid":"f17cc6d65b0932fd","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"472edec34fd4cc19","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"37c27a38809b08b4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f6c63ae7fdc54916.json b/allure-report/data/test-cases/3af8d9a34aaedf9e.json similarity index 61% rename from allure-report/data/test-cases/f6c63ae7fdc54916.json rename to allure-report/data/test-cases/3af8d9a34aaedf9e.json index 3b125ba7293..db28a42ccf8 100644 --- a/allure-report/data/test-cases/f6c63ae7fdc54916.json +++ b/allure-report/data/test-cases/3af8d9a34aaedf9e.json @@ -1 +1 @@ -{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732764220855,"stop":1732764220855,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732764220854,"stop":1732764220854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732764220856,"stop":1732764220856,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Check the exam"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"832c94aac84bf09","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0}},{"uid":"7f4f6ae800da8214","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"7369f3dde824b045","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"f6c63ae7fdc54916.json","parameterValues":[]} \ No newline at end of file +{"uid":"3af8d9a34aaedf9e","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732764220855,"stop":1732764220855,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732764220854,"stop":1732764220854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732764220855,"stop":1732764220855,"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_CheckExamTestCase::0","time":{"start":1732764220856,"stop":1732764220856,"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":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Check the exam"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"3af8d9a34aaedf9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fe13696efb68455a.json b/allure-report/data/test-cases/3b9843a7de0fadce.json similarity index 77% rename from allure-report/data/test-cases/fe13696efb68455a.json rename to allure-report/data/test-cases/3b9843a7de0fadce.json index 270ad76e93d..8b9cbb7afb3 100644 --- a/allure-report/data/test-cases/fe13696efb68455a.json +++ b/allure-report/data/test-cases/3b9843a7de0fadce.json @@ -1 +1 @@ -{"uid":"fe13696efb68455a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9999070a00162057","name":"stdout","source":"9999070a00162057.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"fe13696efb68455a.json","parameterValues":[]} \ No newline at end of file +{"uid":"3b9843a7de0fadce","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac7ee8f205d4305f","name":"stdout","source":"ac7ee8f205d4305f.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"3b9843a7de0fadce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d34aca89a8362e7c.json b/allure-report/data/test-cases/3bcfd32a26f68acf.json similarity index 93% rename from allure-report/data/test-cases/d34aca89a8362e7c.json rename to allure-report/data/test-cases/3bcfd32a26f68acf.json index 8cfdab24fd2..8e938b12114 100644 --- a/allure-report/data/test-cases/d34aca89a8362e7c.json +++ b/allure-report/data/test-cases/3bcfd32a26f68acf.json @@ -1 +1 @@ -{"uid":"d34aca89a8362e7c","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":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":"d34aca89a8362e7c.json","parameterValues":[]} \ No newline at end of file +{"uid":"3bcfd32a26f68acf","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":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/f1c13dcc2ec25637.json b/allure-report/data/test-cases/3bdd18878d95b69a.json similarity index 71% rename from allure-report/data/test-cases/f1c13dcc2ec25637.json rename to allure-report/data/test-cases/3bdd18878d95b69a.json index 835ef0ca111..37d4deae857 100644 --- a/allure-report/data/test-cases/f1c13dcc2ec25637.json +++ b/allure-report/data/test-cases/3bdd18878d95b69a.json @@ -1 +1 @@ -{"uid":"f1c13dcc2ec25637","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3fda8fe35c793420","name":"stdout","source":"3fda8fe35c793420.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f1c13dcc2ec25637.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"491334107dd5238e","name":"stdout","source":"491334107dd5238e.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"3bdd18878d95b69a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac390c8ac17d8363.json b/allure-report/data/test-cases/3bf609775738b0d6.json similarity index 91% rename from allure-report/data/test-cases/ac390c8ac17d8363.json rename to allure-report/data/test-cases/3bf609775738b0d6.json index aa44dcbf35e..a8f89755bda 100644 --- a/allure-report/data/test-cases/ac390c8ac17d8363.json +++ b/allure-report/data/test-cases/3bf609775738b0d6.json @@ -1 +1 @@ -{"uid":"ac390c8ac17d8363","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"ac390c8ac17d8363.json","parameterValues":[]} \ No newline at end of file +{"uid":"3bf609775738b0d6","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","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', 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":"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":"3bf609775738b0d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c275e4650ef1fcb.json b/allure-report/data/test-cases/3c275e4650ef1fcb.json deleted file mode 100644 index 48f372862ea..00000000000 --- a/allure-report/data/test-cases/3c275e4650ef1fcb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3c275e4650ef1fcb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"26e6b6f5238c5b93","name":"stdout","source":"26e6b6f5238c5b93.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"3c275e4650ef1fcb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f46a2e41d4cb55.json b/allure-report/data/test-cases/3cf56b09b04e1e0.json similarity index 81% rename from allure-report/data/test-cases/2f46a2e41d4cb55.json rename to allure-report/data/test-cases/3cf56b09b04e1e0.json index 574f3f6d6ea..38734c1bc82 100644 --- a/allure-report/data/test-cases/2f46a2e41d4cb55.json +++ b/allure-report/data/test-cases/3cf56b09b04e1e0.json @@ -1 +1 @@ -{"uid":"2f46a2e41d4cb55","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"80cb92b2a68485aa","name":"stdout","source":"80cb92b2a68485aa.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2f46a2e41d4cb55.json","parameterValues":[]} \ No newline at end of file +{"uid":"3cf56b09b04e1e0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50e06d17e1c8d051","name":"stdout","source":"50e06d17e1c8d051.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Password validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3cf56b09b04e1e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f05453c14dc1c4a.json b/allure-report/data/test-cases/3d317930834fc5a0.json similarity index 75% rename from allure-report/data/test-cases/7f05453c14dc1c4a.json rename to allure-report/data/test-cases/3d317930834fc5a0.json index 1d19610e091..4877c3ad654 100644 --- a/allure-report/data/test-cases/7f05453c14dc1c4a.json +++ b/allure-report/data/test-cases/3d317930834fc5a0.json @@ -1 +1 @@ -{"uid":"7f05453c14dc1c4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b56e36dfb1d3c6b9","name":"stdout","source":"b56e36dfb1d3c6b9.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7f05453c14dc1c4a.json","parameterValues":[]} \ No newline at end of file +{"uid":"3d317930834fc5a0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2c7e8a807d9268ca","name":"stdout","source":"2c7e8a807d9268ca.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3d317930834fc5a0.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6aa550180790876d.json b/allure-report/data/test-cases/3e0c67e156a2779f.json similarity index 81% rename from allure-report/data/test-cases/6aa550180790876d.json rename to allure-report/data/test-cases/3e0c67e156a2779f.json index 6960cb3f444..b0000258a58 100644 --- a/allure-report/data/test-cases/6aa550180790876d.json +++ b/allure-report/data/test-cases/3e0c67e156a2779f.json @@ -1 +1 @@ -{"uid":"6aa550180790876d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1732428194482,"stop":1732428194482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Number of trailing zeros of N!"},{"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":"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6aa550180790876d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1732428194480,"stop":1732428194480,"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_ZerosTestCase::0","time":{"start":1732428194482,"stop":1732428194482,"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":"Number of trailing zeros of N!"},{"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":"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"3e0c67e156a2779f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a3cba1eb012d0834.json b/allure-report/data/test-cases/3e3617735ee8a318.json similarity index 61% rename from allure-report/data/test-cases/a3cba1eb012d0834.json rename to allure-report/data/test-cases/3e3617735ee8a318.json index a8598fc4735..2a1d593bdf1 100644 --- a/allure-report/data/test-cases/a3cba1eb012d0834.json +++ b/allure-report/data/test-cases/3e3617735ee8a318.json @@ -1 +1 @@ -{"uid":"a3cba1eb012d0834","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":1732764220770,"stop":1732764220770,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732764220773,"stop":1732764220773,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"suite","value":"Data Structures"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"edb0e461adb94f5b","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0}},{"uid":"b4bcf3d5a4367d8","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"2c7af88777002151","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"a3cba1eb012d0834.json","parameterValues":[]} \ No newline at end of file +{"uid":"3e3617735ee8a318","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":1732764220770,"stop":1732764220770,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220770,"stop":1732764220770,"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_FirstNonRepeatedTestCase::0","time":{"start":1732764220773,"stop":1732764220773,"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":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"suite","value":"Data Structures"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"3e3617735ee8a318.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e564e38813f1539.json b/allure-report/data/test-cases/3e564e38813f1539.json deleted file mode 100644 index 1b895657b94..00000000000 --- a/allure-report/data/test-cases/3e564e38813f1539.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing position property based on negative grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"46ad98eaed470ea7","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0}},{"uid":"d34aca89a8362e7c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"ee3233c4ab89c7ec","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":2,"unknown":0,"total":4},"items":[{"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":"3e564e38813f1539.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e687a692c2c18f1b.json b/allure-report/data/test-cases/3e7bb737d50c6ad2.json similarity index 60% rename from allure-report/data/test-cases/e687a692c2c18f1b.json rename to allure-report/data/test-cases/3e7bb737d50c6ad2.json index 91b9e81901a..474ad6a98ef 100644 --- a/allure-report/data/test-cases/e687a692c2c18f1b.json +++ b/allure-report/data/test-cases/3e7bb737d50c6ad2.json @@ -1 +1 @@ -{"uid":"e687a692c2c18f1b","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4f29bba77fd180","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0}},{"uid":"c0b9bbb0a9f351b0","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"fa5cd4b7c764fede","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e687a692c2c18f1b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/482801cdd802c850.json b/allure-report/data/test-cases/3e8030135d08e5ec.json similarity index 78% rename from allure-report/data/test-cases/482801cdd802c850.json rename to allure-report/data/test-cases/3e8030135d08e5ec.json index 0e80cdf7be8..973afa54946 100644 --- a/allure-report/data/test-cases/482801cdd802c850.json +++ b/allure-report/data/test-cases/3e8030135d08e5ec.json @@ -1 +1 @@ -{"uid":"482801cdd802c850","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a774371a2badce6","name":"stdout","source":"5a774371a2badce6.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"482801cdd802c850.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a639fee286babca","name":"stdout","source":"1a639fee286babca.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"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":"tag","value":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"3e8030135d08e5ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cce644bc4fb0b16f.json b/allure-report/data/test-cases/3ed2084bc0b6f03d.json similarity index 87% rename from allure-report/data/test-cases/cce644bc4fb0b16f.json rename to allure-report/data/test-cases/3ed2084bc0b6f03d.json index f8714618b79..70dc212c0cb 100644 --- a/allure-report/data/test-cases/cce644bc4fb0b16f.json +++ b/allure-report/data/test-cases/3ed2084bc0b6f03d.json @@ -1 +1 @@ -{"uid":"cce644bc4fb0b16f","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732428195914,"stop":1732428195914,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732428195915,"stop":1732428195915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"cce644bc4fb0b16f.json","parameterValues":[]} \ No newline at end of file +{"uid":"3ed2084bc0b6f03d","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732428195914,"stop":1732428195914,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732428195914,"stop":1732428195914,"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_SentencifyTestCase::0","time":{"start":1732428195915,"stop":1732428195915,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"3ed2084bc0b6f03d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f293d4274aefdd43.json b/allure-report/data/test-cases/3f1d46f60fdb6ff1.json similarity index 80% rename from allure-report/data/test-cases/f293d4274aefdd43.json rename to allure-report/data/test-cases/3f1d46f60fdb6ff1.json index 9c06a06c667..81ab84ff04f 100644 --- a/allure-report/data/test-cases/f293d4274aefdd43.json +++ b/allure-report/data/test-cases/3f1d46f60fdb6ff1.json @@ -1 +1 @@ -{"uid":"f293d4274aefdd43","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60a8c5c2c7c00ce5","name":"stdout","source":"60a8c5c2c7c00ce5.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f293d4274aefdd43.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","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 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string 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 a test string 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 a test string 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 a test string 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 a test string 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 a test string 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 a test string 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 a test string 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 a test string 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":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::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":"tag","value":"SORTING"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Hashtag Generator"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb728a3601eecc02","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0}},{"uid":"539e48e315449d8e","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0}},{"uid":"64e42fae205d69e4","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"4eec4d08404980cd","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS"]},"source":"3f2e19b818fd15f5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f3a4afa0166112e.json b/allure-report/data/test-cases/3f3a4afa0166112e.json new file mode 100644 index 00000000000..3e835a87420 --- /dev/null +++ b/allure-report/data/test-cases/3f3a4afa0166112e.json @@ -0,0 +1 @@ +{"uid":"3f3a4afa0166112e","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/23e7f7a9e25073fa.json b/allure-report/data/test-cases/3f9c404f9b9586bb.json similarity index 82% rename from allure-report/data/test-cases/23e7f7a9e25073fa.json rename to allure-report/data/test-cases/3f9c404f9b9586bb.json index 16a283dd799..f986d5247ac 100644 --- a/allure-report/data/test-cases/23e7f7a9e25073fa.json +++ b/allure-report/data/test-cases/3f9c404f9b9586bb.json @@ -1 +1 @@ -{"uid":"23e7f7a9e25073fa","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d22073d8d3352f3e","name":"stdout","source":"d22073d8d3352f3e.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"23e7f7a9e25073fa.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"51a20e306213f50c","name":"stdout","source":"51a20e306213f50c.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"3f9c404f9b9586bb.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":"36d68ec5646bcd8f","name":"stdout","source":"36d68ec5646bcd8f.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::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":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"3fd5a8d15bcf78fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fe8a02ede1e6532.json b/allure-report/data/test-cases/3fe8a02ede1e6532.json deleted file mode 100644 index b13ce6aa628..00000000000 --- a/allure-report/data/test-cases/3fe8a02ede1e6532.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3fe8a02ede1e6532","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"763b805ca97b9cb4","name":"stdout","source":"763b805ca97b9cb4.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3fe8a02ede1e6532.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ff093181cede851.json b/allure-report/data/test-cases/3ff093181cede851.json new file mode 100644 index 00000000000..87247c34ffa --- /dev/null +++ b/allure-report/data/test-cases/3ff093181cede851.json @@ -0,0 +1 @@ +{"uid":"3ff093181cede851","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6e4923e8771eebeb.json b/allure-report/data/test-cases/40205ec1b133a2fd.json similarity index 82% rename from allure-report/data/test-cases/6e4923e8771eebeb.json rename to allure-report/data/test-cases/40205ec1b133a2fd.json index 114898b5110..0f0483ab614 100644 --- a/allure-report/data/test-cases/6e4923e8771eebeb.json +++ b/allure-report/data/test-cases/40205ec1b133a2fd.json @@ -1 +1 @@ -{"uid":"6e4923e8771eebeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb0a5c86d6124176","name":"stdout","source":"fb0a5c86d6124176.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"6e4923e8771eebeb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"44f2331d72fdaf9f","name":"stdout","source":"44f2331d72fdaf9f.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724733472936,"stop":1724733472936,"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":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"40205ec1b133a2fd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b453b26a6476828.json b/allure-report/data/test-cases/4026348dc538d851.json similarity index 82% rename from allure-report/data/test-cases/3b453b26a6476828.json rename to allure-report/data/test-cases/4026348dc538d851.json index 2315558b8f5..b77822bdb39 100644 --- a/allure-report/data/test-cases/3b453b26a6476828.json +++ b/allure-report/data/test-cases/4026348dc538d851.json @@ -1 +1 @@ -{"uid":"3b453b26a6476828","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"df41cf6b46c44c9e","name":"stdout","source":"df41cf6b46c44c9e.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b453b26a6476828.json","parameterValues":[]} \ No newline at end of file +{"uid":"4026348dc538d851","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9639571481038f39","name":"stdout","source":"9639571481038f39.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4026348dc538d851.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/335c39c3e0f7aa15.json b/allure-report/data/test-cases/405571045d735c93.json similarity index 83% rename from allure-report/data/test-cases/335c39c3e0f7aa15.json rename to allure-report/data/test-cases/405571045d735c93.json index 86147039fb5..782706c42d4 100644 --- a/allure-report/data/test-cases/335c39c3e0f7aa15.json +++ b/allure-report/data/test-cases/405571045d735c93.json @@ -1 +1 @@ -{"uid":"335c39c3e0f7aa15","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ec381cac44a14e7f","name":"stdout","source":"ec381cac44a14e7f.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"335c39c3e0f7aa15.json","parameterValues":[]} \ No newline at end of file +{"uid":"405571045d735c93","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"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_RemoveCharTestCase::0","time":{"start":1732428196346,"stop":1732428196346,"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":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove First and Last Character"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"40605a6b825041b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e71092ad871851c8.json b/allure-report/data/test-cases/4062058c45eaf899.json similarity index 81% rename from allure-report/data/test-cases/e71092ad871851c8.json rename to allure-report/data/test-cases/4062058c45eaf899.json index 38b13b8f340..9f40d5c5905 100644 --- a/allure-report/data/test-cases/e71092ad871851c8.json +++ b/allure-report/data/test-cases/4062058c45eaf899.json @@ -1 +1 @@ -{"uid":"e71092ad871851c8","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e71092ad871851c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"4062058c45eaf899","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732428196312,"stop":1732428196312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732428196312,"stop":1732428196312,"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_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"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":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4062058c45eaf899.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4092d3473f63825.json b/allure-report/data/test-cases/4092d3473f63825.json new file mode 100644 index 00000000000..6e3825d042b --- /dev/null +++ b/allure-report/data/test-cases/4092d3473f63825.json @@ -0,0 +1 @@ +{"uid":"4092d3473f63825","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1733030099208,"stop":1733030099208,"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_ZerosTestCase::0","time":{"start":1733030099208,"stop":1733030099208,"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":"5 kyu"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Number of trailing zeros of N!"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3855d942abd2cdd4","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2}},{"uid":"3e0c67e156a2779f","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0}},{"uid":"7d777a45074a2435","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"73654e59fd10df4d","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"40b9b78f2d258cf9.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dcf012b2df6b781b","name":"stdout","source":"dcf012b2df6b781b.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"40fa5a64adc09d6a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80a5eacfa2431348.json b/allure-report/data/test-cases/418db164c4b04ca4.json similarity index 65% rename from allure-report/data/test-cases/80a5eacfa2431348.json rename to allure-report/data/test-cases/418db164c4b04ca4.json index ba5d455facc..23ae7c9a817 100644 --- a/allure-report/data/test-cases/80a5eacfa2431348.json +++ b/allure-report/data/test-cases/418db164c4b04ca4.json @@ -1 +1 @@ -{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

The function should raise exception for invalid n (n < 0) values.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"13c5e35ef3c791a0","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1}},{"uid":"44516baeffa03c9d","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"7e36f3895c7e5ba3","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"80a5eacfa2431348.json","parameterValues":[]} \ No newline at end of file +{"uid":"418db164c4b04ca4","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/eb1b904b9e574ded.json b/allure-report/data/test-cases/41a0b3fc08086e96.json similarity index 81% rename from allure-report/data/test-cases/eb1b904b9e574ded.json rename to allure-report/data/test-cases/41a0b3fc08086e96.json index d067dcc5077..625cab2f1c2 100644 --- a/allure-report/data/test-cases/eb1b904b9e574ded.json +++ b/allure-report/data/test-cases/41a0b3fc08086e96.json @@ -1 +1 @@ -{"uid":"eb1b904b9e574ded","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d3df2dabc5ae756","name":"stdout","source":"6d3df2dabc5ae756.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb1b904b9e574ded.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87f01e814f201b12","name":"stdout","source":"87f01e814f201b12.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1724735129008,"stop":1724735129008,"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":"Lists"},{"name":"story","value":"Always perfect"},{"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_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"41a0b3fc08086e96.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4223e436b2847599.json b/allure-report/data/test-cases/4223e436b2847599.json new file mode 100644 index 00000000000..c2a35d41c15 --- /dev/null +++ b/allure-report/data/test-cases/4223e436b2847599.json @@ -0,0 +1 @@ +{"uid":"4223e436b2847599","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/42452319aaa200ae.json b/allure-report/data/test-cases/42452319aaa200ae.json deleted file mode 100644 index 4f8ba52cefa..00000000000 --- a/allure-report/data/test-cases/42452319aaa200ae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"42452319aaa200ae","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb983dadd4fd2138","name":"stdout","source":"fb983dadd4fd2138.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42452319aaa200ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31802a90aeba5e97.json b/allure-report/data/test-cases/427e4e0e38cec3a1.json similarity index 50% rename from allure-report/data/test-cases/31802a90aeba5e97.json rename to allure-report/data/test-cases/427e4e0e38cec3a1.json index f80570497f6..221f33083a5 100644 --- a/allure-report/data/test-cases/31802a90aeba5e97.json +++ b/allure-report/data/test-cases/427e4e0e38cec3a1.json @@ -1 +1 @@ -{"uid":"31802a90aeba5e97","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732764218842,"stop":1732764218842,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"68a2b9760a533e02","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194190,"stop":1732428194190,"duration":0}},{"uid":"4d0958f9149b5791","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"a83b85c2e341a76c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"31802a90aeba5e97.json","parameterValues":[]} \ No newline at end of file +{"uid":"427e4e0e38cec3a1","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732764218842,"stop":1732764218842,"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":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/42bd5b348187136c.json b/allure-report/data/test-cases/42bd5b348187136c.json deleted file mode 100644 index 6e1d91e5384..00000000000 --- a/allure-report/data/test-cases/42bd5b348187136c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"42bd5b348187136c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"70a5653f29871a87","name":"stdout","source":"70a5653f29871a87.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42bd5b348187136c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fea5f749a1c464e4.json b/allure-report/data/test-cases/42eeca3ee9327f4d.json similarity index 63% rename from allure-report/data/test-cases/fea5f749a1c464e4.json rename to allure-report/data/test-cases/42eeca3ee9327f4d.json index 9a67893dcb2..30c28f2b02f 100644 --- a/allure-report/data/test-cases/fea5f749a1c464e4.json +++ b/allure-report/data/test-cases/42eeca3ee9327f4d.json @@ -1 +1 @@ -{"uid":"fea5f749a1c464e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732764220357,"stop":1732764220357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b24a6e8f9065ccb","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0}},{"uid":"f1908dde48e8dbb5","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"fd85877ffe0d5722","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"fea5f749a1c464e4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220356,"stop":1732764220356,"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_DigitalRootTestCase::0","time":{"start":1732764220357,"stop":1732764220357,"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":"Sum of Digits / Digital Root"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"42eeca3ee9327f4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc4dd11ea285cd92.json b/allure-report/data/test-cases/432b6e8e59506414.json similarity index 56% rename from allure-report/data/test-cases/cc4dd11ea285cd92.json rename to allure-report/data/test-cases/432b6e8e59506414.json index 699544b8dba..01c0df923cb 100644 --- a/allure-report/data/test-cases/cc4dd11ea285cd92.json +++ b/allure-report/data/test-cases/432b6e8e59506414.json @@ -1 +1 @@ -{"uid":"cc4dd11ea285cd92","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":1732764220907,"stop":1732764220907,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0a6327af7d064cf","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1}},{"uid":"545394bf3fbbd64b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"1bcebf4fb624aad6","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cc4dd11ea285cd92.json","parameterValues":[]} \ No newline at end of file +{"uid":"432b6e8e59506414","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":1732764220907,"stop":1732764220907,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"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":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"432b6e8e59506414.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43578fd4f74ce5d9.json b/allure-report/data/test-cases/43578fd4f74ce5d9.json new file mode 100644 index 00000000000..1484717715e --- /dev/null +++ b/allure-report/data/test-cases/43578fd4f74ce5d9.json @@ -0,0 +1 @@ +{"uid":"43578fd4f74ce5d9","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1733030098896,"stop":1733030098896,"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', 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/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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732764220163,"stop":1732764220163,"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_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"4391e2c86d08e20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/880859ea02196db7.json b/allure-report/data/test-cases/4397ca89d4873d0b.json similarity index 93% rename from allure-report/data/test-cases/880859ea02196db7.json rename to allure-report/data/test-cases/4397ca89d4873d0b.json index 63f4f77f5ac..c87fbbc507c 100644 --- a/allure-report/data/test-cases/880859ea02196db7.json +++ b/allure-report/data/test-cases/4397ca89d4873d0b.json @@ -1 +1 @@ -{"uid":"880859ea02196db7","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"description":"\n Testing using empty test data\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":"880859ea02196db7.json","parameterValues":[]} \ No newline at end of file +{"uid":"4397ca89d4873d0b","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"description":"\n Testing using empty test data\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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1732764219166,"stop":1732764219166,"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 result:","time":{"start":1732764219166,"stop":1732764219166,"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 result:","time":{"start":1732764219166,"stop":1732764219166,"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 result:","time":{"start":1732764219166,"stop":1732764219166,"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 result:","time":{"start":1732764219166,"stop":1732764219166,"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_ComputeRanksTestCase::0","time":{"start":1732764219168,"stop":1732764219168,"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":"Sports League Table Ranking"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"43ae83fa91833c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/200c9d07d930b3b1.json b/allure-report/data/test-cases/43e580c8ccbc2ae0.json similarity index 80% rename from allure-report/data/test-cases/200c9d07d930b3b1.json rename to allure-report/data/test-cases/43e580c8ccbc2ae0.json index d86011c0bd3..cf0d6dd49d8 100644 --- a/allure-report/data/test-cases/200c9d07d930b3b1.json +++ b/allure-report/data/test-cases/43e580c8ccbc2ae0.json @@ -1 +1 @@ -{"uid":"200c9d07d930b3b1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9000a1177d78061","name":"stdout","source":"c9000a1177d78061.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"200c9d07d930b3b1.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b04de969348b1187","name":"stdout","source":"b04de969348b1187.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"43e580c8ccbc2ae0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44141b5da145c70a.json b/allure-report/data/test-cases/44141b5da145c70a.json new file mode 100644 index 00000000000..81bad727491 --- /dev/null +++ b/allure-report/data/test-cases/44141b5da145c70a.json @@ -0,0 +1 @@ +{"uid":"44141b5da145c70a","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6dfafb882d7cc41f.json b/allure-report/data/test-cases/44221036fb99a571.json similarity index 59% rename from allure-report/data/test-cases/6dfafb882d7cc41f.json rename to allure-report/data/test-cases/44221036fb99a571.json index 5781455fdd0..39feba326ec 100644 --- a/allure-report/data/test-cases/6dfafb882d7cc41f.json +++ b/allure-report/data/test-cases/44221036fb99a571.json @@ -1 +1 @@ -{"uid":"6dfafb882d7cc41f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cfac23a989211fca","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0}},{"uid":"2180a5f5e79006a1","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"56e6898f814c9a2c","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"6dfafb882d7cc41f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"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 wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"44221036fb99a571.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/756610bb1a8856d4.json b/allure-report/data/test-cases/442731f3c269dae1.json similarity index 76% rename from allure-report/data/test-cases/756610bb1a8856d4.json rename to allure-report/data/test-cases/442731f3c269dae1.json index 6be73e432c7..e2e0417440f 100644 --- a/allure-report/data/test-cases/756610bb1a8856d4.json +++ b/allure-report/data/test-cases/442731f3c269dae1.json @@ -1 +1 @@ -{"uid":"756610bb1a8856d4","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9905895b50875943","name":"stdout","source":"9905895b50875943.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"756610bb1a8856d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"442731f3c269dae1","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":1724735129695,"stop":1724735129695,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e736eac717d48b8","name":"stdout","source":"5e736eac717d48b8.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724735129711,"stop":1724735129711,"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":"Third Angle of a Triangle"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"442731f3c269dae1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b02a54a0a8bd8284.json b/allure-report/data/test-cases/44275f12522bda28.json similarity index 59% rename from allure-report/data/test-cases/b02a54a0a8bd8284.json rename to allure-report/data/test-cases/44275f12522bda28.json index e9064ba93fb..64b8a426909 100644 --- a/allure-report/data/test-cases/b02a54a0a8bd8284.json +++ b/allure-report/data/test-cases/44275f12522bda28.json @@ -1 +1 @@ -{"uid":"b02a54a0a8bd8284","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":1732764221093,"stop":1732764221093,"duration":0},"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bfd57b8cda6c028","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2}},{"uid":"6c457590f118b700","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"d9bbc705106eff98","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"b02a54a0a8bd8284.json","parameterValues":[]} \ No newline at end of file +{"uid":"44275f12522bda28","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":1732764221093,"stop":1732764221093,"duration":0},"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221093,"stop":1732764221093,"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_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"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":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"44275f12522bda28.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fd4ef8d041ff123e.json b/allure-report/data/test-cases/44684f939061cdde.json similarity index 80% rename from allure-report/data/test-cases/fd4ef8d041ff123e.json rename to allure-report/data/test-cases/44684f939061cdde.json index e17ff09f0e1..5e5671fa5d4 100644 --- a/allure-report/data/test-cases/fd4ef8d041ff123e.json +++ b/allure-report/data/test-cases/44684f939061cdde.json @@ -1 +1 @@ -{"uid":"fd4ef8d041ff123e","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":1732428195495,"stop":1732428195495,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"fd4ef8d041ff123e.json","parameterValues":[]} \ No newline at end of file +{"uid":"44684f939061cdde","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":1732428195495,"stop":1732428195495,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195495,"stop":1732428195495,"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_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"44684f939061cdde.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bded3837031681ca.json b/allure-report/data/test-cases/44dd7ed6ddd58149.json similarity index 80% rename from allure-report/data/test-cases/bded3837031681ca.json rename to allure-report/data/test-cases/44dd7ed6ddd58149.json index 1cdb2974203..30aa49ae7d9 100644 --- a/allure-report/data/test-cases/bded3837031681ca.json +++ b/allure-report/data/test-cases/44dd7ed6ddd58149.json @@ -1 +1 @@ -{"uid":"bded3837031681ca","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":1732428195966,"stop":1732428195967,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195966,"stop":1732428195966,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"bded3837031681ca.json","parameterValues":[]} \ No newline at end of file +{"uid":"44dd7ed6ddd58149","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":1732428195966,"stop":1732428195967,"duration":1},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195966,"stop":1732428195966,"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_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"44dd7ed6ddd58149.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44e584571b03be2.json b/allure-report/data/test-cases/44e584571b03be2.json deleted file mode 100644 index 7007c32fac0..00000000000 --- a/allure-report/data/test-cases/44e584571b03be2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"44e584571b03be2","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"16068cef6801ede5","name":"stdout","source":"16068cef6801ede5.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"44e584571b03be2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/450fbb27e2067be4.json b/allure-report/data/test-cases/450fbb27e2067be4.json deleted file mode 100644 index 3d313f39a58..00000000000 --- a/allure-report/data/test-cases/450fbb27e2067be4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"450fbb27e2067be4","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":1732764218624,"stop":1732764218624,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f21450476aa4c9a","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1}},{"uid":"65c772a236576a2d","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"4b28b33a131eefd9","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"450fbb27e2067be4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32a39f3c0fa23567.json b/allure-report/data/test-cases/453e6c562bbae4f7.json similarity index 50% rename from allure-report/data/test-cases/32a39f3c0fa23567.json rename to allure-report/data/test-cases/453e6c562bbae4f7.json index 4749d28a56f..c15fb91f307 100644 --- a/allure-report/data/test-cases/32a39f3c0fa23567.json +++ b/allure-report/data/test-cases/453e6c562bbae4f7.json @@ -1 +1 @@ -{"uid":"32a39f3c0fa23567","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d8bbfaabd5a5300d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193918,"stop":1732428193918,"duration":0}},{"uid":"2488d38c1be516d6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"9eac58d1342209e0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"32a39f3c0fa23567.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","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 Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1733030101023,"stop":1733030101023,"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":"suite","value":"Math"},{"name":"story","value":"Multiply"},{"name":"tag","value":"INTRODUCTION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Multiplication"},{"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.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b00d5d40ec75b250","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0}},{"uid":"49d94e51d64718a4","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0}},{"uid":"1746b1293c111d5c","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"15b13324091bd06f","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"456a7345e9aeb905.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60f7c96f923539a5.json b/allure-report/data/test-cases/458495e9a11139a4.json similarity index 62% rename from allure-report/data/test-cases/60f7c96f923539a5.json rename to allure-report/data/test-cases/458495e9a11139a4.json index fae50058787..7887c4800b0 100644 --- a/allure-report/data/test-cases/60f7c96f923539a5.json +++ b/allure-report/data/test-cases/458495e9a11139a4.json @@ -1 +1 @@ -{"uid":"60f7c96f923539a5","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732764219159,"stop":1732764219159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732764219160,"stop":1732764219160,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"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_5.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb6e602a844f0715","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1}},{"uid":"caf985b2a75ee6b7","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"e0e01cfda157cf01","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"60f7c96f923539a5.json","parameterValues":[]} \ No newline at end of file +{"uid":"458495e9a11139a4","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732764219159,"stop":1732764219159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219159,"stop":1732764219160,"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_PigItTestCase::0","time":{"start":1732764219160,"stop":1732764219160,"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":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Pig Latin"},{"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_5.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"458495e9a11139a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf68fdf036dd98c9.json b/allure-report/data/test-cases/45a592633cd8d633.json similarity index 81% rename from allure-report/data/test-cases/bf68fdf036dd98c9.json rename to allure-report/data/test-cases/45a592633cd8d633.json index 78351d50695..36ed92d85e0 100644 --- a/allure-report/data/test-cases/bf68fdf036dd98c9.json +++ b/allure-report/data/test-cases/45a592633cd8d633.json @@ -1 +1 @@ -{"uid":"bf68fdf036dd98c9","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cd47dccaf2814ffa","name":"stdout","source":"cd47dccaf2814ffa.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"bf68fdf036dd98c9.json","parameterValues":[]} \ No newline at end of file +{"uid":"45a592633cd8d633","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1724733475007,"stop":1724733475007,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cbd3c7018b67e8e4","name":"stdout","source":"cbd3c7018b67e8e4.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"45a592633cd8d633.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/45bc1447720343e5.json b/allure-report/data/test-cases/45bc1447720343e5.json deleted file mode 100644 index cbeb3833980..00000000000 --- a/allure-report/data/test-cases/45bc1447720343e5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"45bc1447720343e5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72a8521de031df4e","name":"stdout","source":"72a8521de031df4e.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"45bc1447720343e5.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1733030101007,"stop":1733030101007,"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_LogicalCalculatorTestCase::0","time":{"start":1733030101007,"stop":1733030101007,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8603861216d7d4c6","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0}},{"uid":"4062058c45eaf899","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1}},{"uid":"11dd46913546ab74","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"c78ec33b6fe131a0","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"46352cf5111d5c61.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/469fb46dbe1a31d.json b/allure-report/data/test-cases/469fb46dbe1a31d.json new file mode 100644 index 00000000000..5c4f6c1b4ed --- /dev/null +++ b/allure-report/data/test-cases/469fb46dbe1a31d.json @@ -0,0 +1 @@ +{"uid":"469fb46dbe1a31d","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":1733030100215,"stop":1733030100215,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"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_PermutePalindromeTestCase::0","time":{"start":1733030100215,"stop":1733030100215,"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":"Permute a Palindrome"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ef78b96af32d8f44","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1}},{"uid":"b74e7e51e0827a84","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0}},{"uid":"9c497f5f830a2958","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"634a6fc50b2ba707","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"469fb46dbe1a31d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a30a3ac9558d7a9c.json b/allure-report/data/test-cases/46c119be5111a687.json similarity index 65% rename from allure-report/data/test-cases/a30a3ac9558d7a9c.json rename to allure-report/data/test-cases/46c119be5111a687.json index ee6d45e1daa..9d314e30223 100644 --- a/allure-report/data/test-cases/a30a3ac9558d7a9c.json +++ b/allure-report/data/test-cases/46c119be5111a687.json @@ -1 +1 @@ -{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732764220206,"stop":1732764220206,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220207,"stop":1732764220207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732764220208,"stop":1732764220208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5a88d917682070e","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0}},{"uid":"9a72e64592e0ae1b","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"a25791815212e793","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"a30a3ac9558d7a9c.json","parameterValues":[]} \ No newline at end of file +{"uid":"46c119be5111a687","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732764220206,"stop":1732764220206,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220207,"stop":1732764220207,"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_LongestRepetitionTestCase::0","time":{"start":1732764220208,"stop":1732764220208,"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":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"46c119be5111a687.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52402d5056a00e1d.json b/allure-report/data/test-cases/46d58d763aebfedc.json similarity index 61% rename from allure-report/data/test-cases/52402d5056a00e1d.json rename to allure-report/data/test-cases/46d58d763aebfedc.json index 163af843fc9..3540cf8f8fd 100644 --- a/allure-report/data/test-cases/52402d5056a00e1d.json +++ b/allure-report/data/test-cases/46d58d763aebfedc.json @@ -1 +1 @@ -{"uid":"52402d5056a00e1d","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732764221213,"stop":1732764221213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2fb895d93acc0bab","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0}},{"uid":"cefd3a9afeec351e","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"c7b8f329dd40406f","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"52402d5056a00e1d.json","parameterValues":[]} \ No newline at end of file +{"uid":"46d58d763aebfedc","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732764221213,"stop":1732764221213,"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_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"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":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"46d58d763aebfedc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4719969d944ed48a.json b/allure-report/data/test-cases/4719969d944ed48a.json deleted file mode 100644 index e9c98a9f57f..00000000000 --- a/allure-report/data/test-cases/4719969d944ed48a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4719969d944ed48a","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"baac53f2bcc51cfd","name":"stdout","source":"baac53f2bcc51cfd.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"4719969d944ed48a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/472edec34fd4cc19.json b/allure-report/data/test-cases/472edec34fd4cc19.json deleted file mode 100644 index 27d6d9c67e6..00000000000 --- a/allure-report/data/test-cases/472edec34fd4cc19.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"472edec34fd4cc19","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"312dff4578efa314","name":"stdout","source":"312dff4578efa314.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"472edec34fd4cc19.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47cf0745ec1b0964.json b/allure-report/data/test-cases/4736a066b330a3e5.json similarity index 73% rename from allure-report/data/test-cases/47cf0745ec1b0964.json rename to allure-report/data/test-cases/4736a066b330a3e5.json index e0cd0b4669f..272c04d812b 100644 --- a/allure-report/data/test-cases/47cf0745ec1b0964.json +++ b/allure-report/data/test-cases/4736a066b330a3e5.json @@ -1 +1 @@ -{"uid":"47cf0745ec1b0964","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9970c74c966a73af","name":"stdout","source":"9970c74c966a73af.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"47cf0745ec1b0964.json","parameterValues":[]} \ No newline at end of file +{"uid":"4736a066b330a3e5","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/474912065ebca71.json b/allure-report/data/test-cases/474912065ebca71.json new file mode 100644 index 00000000000..c761f783ecd --- /dev/null +++ b/allure-report/data/test-cases/474912065ebca71.json @@ -0,0 +1 @@ +{"uid":"474912065ebca71","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/7f4f6ae800da8214.json b/allure-report/data/test-cases/476ac59c15a93d4b.json similarity index 80% rename from allure-report/data/test-cases/7f4f6ae800da8214.json rename to allure-report/data/test-cases/476ac59c15a93d4b.json index 5e832a7cb74..e3b22a6e059 100644 --- a/allure-report/data/test-cases/7f4f6ae800da8214.json +++ b/allure-report/data/test-cases/476ac59c15a93d4b.json @@ -1 +1 @@ -{"uid":"7f4f6ae800da8214","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b010be274d24546e","name":"stdout","source":"b010be274d24546e.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"7f4f6ae800da8214.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"64799626cd40a47b","name":"stdout","source":"64799626cd40a47b.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Check the exam"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"476ac59c15a93d4b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed44c13e0e5a3954.json b/allure-report/data/test-cases/478b2bb987aa8c1c.json similarity index 85% rename from allure-report/data/test-cases/ed44c13e0e5a3954.json rename to allure-report/data/test-cases/478b2bb987aa8c1c.json index 0b189e73265..64d92682001 100644 --- a/allure-report/data/test-cases/ed44c13e0e5a3954.json +++ b/allure-report/data/test-cases/478b2bb987aa8c1c.json @@ -1 +1 @@ -{"uid":"ed44c13e0e5a3954","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"ed44c13e0e5a3954.json","parameterValues":[]} \ No newline at end of file +{"uid":"478b2bb987aa8c1c","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194610,"stop":1732428194610,"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_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"478b2bb987aa8c1c.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"17b2af932389b810","name":"stdout","source":"17b2af932389b810.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"47eeb9c764763918.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93b00a3d2e7b92c1.json b/allure-report/data/test-cases/4803d92c50fef81a.json similarity index 60% rename from allure-report/data/test-cases/93b00a3d2e7b92c1.json rename to allure-report/data/test-cases/4803d92c50fef81a.json index 698a67c80b7..6fff88fd168 100644 --- a/allure-report/data/test-cases/93b00a3d2e7b92c1.json +++ b/allure-report/data/test-cases/4803d92c50fef81a.json @@ -1 +1 @@ -{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732764218824,"stop":1732764218824,"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', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"777ba0c823c5a82a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194170,"stop":1732428194170,"duration":0}},{"uid":"f9778b72019f6060","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"624b364c1e1f6bc7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"93b00a3d2e7b92c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"4803d92c50fef81a","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732764218824,"stop":1732764218824,"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', 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/bd28741372a5f921.json b/allure-report/data/test-cases/4875af937b850b1f.json similarity index 82% rename from allure-report/data/test-cases/bd28741372a5f921.json rename to allure-report/data/test-cases/4875af937b850b1f.json index 2a2968cc012..7f00ad6e22e 100644 --- a/allure-report/data/test-cases/bd28741372a5f921.json +++ b/allure-report/data/test-cases/4875af937b850b1f.json @@ -1 +1 @@ -{"uid":"bd28741372a5f921","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732428196200,"stop":1732428196200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bd28741372a5f921.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732428196200,"stop":1732428196200,"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_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"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":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"4875af937b850b1f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80ba443311cb72ff.json b/allure-report/data/test-cases/48a3545f29b9b695.json similarity index 75% rename from allure-report/data/test-cases/80ba443311cb72ff.json rename to allure-report/data/test-cases/48a3545f29b9b695.json index c133dc354c5..9d883c8acbd 100644 --- a/allure-report/data/test-cases/80ba443311cb72ff.json +++ b/allure-report/data/test-cases/48a3545f29b9b695.json @@ -1 +1 @@ -{"uid":"80ba443311cb72ff","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e084f22fa99f8e9d","name":"stdout","source":"e084f22fa99f8e9d.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"80ba443311cb72ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"48a3545f29b9b695","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a6116dd9c620e39c","name":"stdout","source":"a6116dd9c620e39c.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"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":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Messi goals function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"48a3545f29b9b695.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/817c95f8ac92a91e.json b/allure-report/data/test-cases/48e1ee32ef518911.json similarity index 76% rename from allure-report/data/test-cases/817c95f8ac92a91e.json rename to allure-report/data/test-cases/48e1ee32ef518911.json index c48f46fd75c..92d264f6b88 100644 --- a/allure-report/data/test-cases/817c95f8ac92a91e.json +++ b/allure-report/data/test-cases/48e1ee32ef518911.json @@ -1 +1 @@ -{"uid":"817c95f8ac92a91e","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47cbc31b80f9d83c","name":"stdout","source":"47cbc31b80f9d83c.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"817c95f8ac92a91e.json","parameterValues":[]} \ No newline at end of file +{"uid":"48e1ee32ef518911","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":1724735128805,"stop":1724735128805,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"982c55cae2a7ef4a","name":"stdout","source":"982c55cae2a7ef4a.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48e1ee32ef518911.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48f19bb58dd1432f.json b/allure-report/data/test-cases/48f19bb58dd1432f.json new file mode 100644 index 00000000000..7799aca28b2 --- /dev/null +++ b/allure-report/data/test-cases/48f19bb58dd1432f.json @@ -0,0 +1 @@ +{"uid":"48f19bb58dd1432f","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a07fccce3e37ee4a.json b/allure-report/data/test-cases/48f4ecefce5c7b7e.json similarity index 82% rename from allure-report/data/test-cases/a07fccce3e37ee4a.json rename to allure-report/data/test-cases/48f4ecefce5c7b7e.json index 2701dbee135..6dab3293878 100644 --- a/allure-report/data/test-cases/a07fccce3e37ee4a.json +++ b/allure-report/data/test-cases/48f4ecefce5c7b7e.json @@ -1 +1 @@ -{"uid":"a07fccce3e37ee4a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5cd6ffe4ff4d743f","name":"stdout","source":"5cd6ffe4ff4d743f.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a07fccce3e37ee4a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1733030100559,"stop":1733030100559,"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_PasswordTestCase::0","time":{"start":1733030100559,"stop":1733030100559,"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":"REGULAR EXPRESSIONS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Password validator"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56a921fa8c5167d8e7000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"305e207ab9e52150","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1}},{"uid":"2c5d8621f6ad138a","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0}},{"uid":"3cf56b09b04e1e0","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"9d243bfb1021bb63","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"49244d740987433.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d2b852ea94aa88a.json b/allure-report/data/test-cases/4928db7c01341cec.json similarity index 78% rename from allure-report/data/test-cases/9d2b852ea94aa88a.json rename to allure-report/data/test-cases/4928db7c01341cec.json index e3290422576..42a78fbb55b 100644 --- a/allure-report/data/test-cases/9d2b852ea94aa88a.json +++ b/allure-report/data/test-cases/4928db7c01341cec.json @@ -1 +1 @@ -{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732764218691,"stop":1732764218691,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6d9aec252d158762","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1}},{"uid":"2ac4d21875a44bdb","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"7677af29e8a1671e","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"9d2b852ea94aa88a.json","parameterValues":[]} \ No newline at end of file +{"uid":"4928db7c01341cec","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732764218691,"stop":1732764218691,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3de5bbe9e7cab5b6.json b/allure-report/data/test-cases/49330a85ee41c454.json similarity index 67% rename from allure-report/data/test-cases/3de5bbe9e7cab5b6.json rename to allure-report/data/test-cases/49330a85ee41c454.json index 0acdcc538a0..3ac40739301 100644 --- a/allure-report/data/test-cases/3de5bbe9e7cab5b6.json +++ b/allure-report/data/test-cases/49330a85ee41c454.json @@ -1 +1 @@ -{"uid":"3de5bbe9e7cab5b6","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fe07573cd07e1ed8","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1}},{"uid":"b8bd7a062c96fe90","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"bcdd15975118f527","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"3de5bbe9e7cab5b6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/68e1fa91eff84fb2.json b/allure-report/data/test-cases/4968a6d06aaa9f9c.json similarity index 78% rename from allure-report/data/test-cases/68e1fa91eff84fb2.json rename to allure-report/data/test-cases/4968a6d06aaa9f9c.json index f79c0003657..965fb8dc405 100644 --- a/allure-report/data/test-cases/68e1fa91eff84fb2.json +++ b/allure-report/data/test-cases/4968a6d06aaa9f9c.json @@ -1 +1 @@ -{"uid":"68e1fa91eff84fb2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c41bf0bbb023a57f","name":"stdout","source":"c41bf0bbb023a57f.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"68e1fa91eff84fb2.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9da75d7f845f0505","name":"stdout","source":"9da75d7f845f0505.txt","type":"text/plain","size":111}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"4968a6d06aaa9f9c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4990a9f9fb7d9809.json b/allure-report/data/test-cases/4990a9f9fb7d9809.json new file mode 100644 index 00000000000..fa99113362f --- /dev/null +++ b/allure-report/data/test-cases/4990a9f9fb7d9809.json @@ -0,0 +1 @@ +{"uid":"4990a9f9fb7d9809","name":"Simple test for valid parentheses","fullName":"kyu_7.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses_true","historyId":"0462123913893ea85af1447412b7733e","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d39d2cfc8c05650c.json b/allure-report/data/test-cases/49d94e51d64718a4.json similarity index 84% rename from allure-report/data/test-cases/d39d2cfc8c05650c.json rename to allure-report/data/test-cases/49d94e51d64718a4.json index eb8c48f26b9..77d852a2b8f 100644 --- a/allure-report/data/test-cases/d39d2cfc8c05650c.json +++ b/allure-report/data/test-cases/49d94e51d64718a4.json @@ -1 +1 @@ -{"uid":"d39d2cfc8c05650c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732428196330,"stop":1732428196330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Multiply"},{"name":"feature","value":"Multiplication"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"tag","value":"INTRODUCTION"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"d39d2cfc8c05650c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732428196328,"stop":1732428196328,"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_MultiplyTestCase::0","time":{"start":1732428196330,"stop":1732428196330,"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":"Multiply"},{"name":"feature","value":"Multiplication"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"tag","value":"INTRODUCTION"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"49d94e51d64718a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f71bd4516df37f52.json b/allure-report/data/test-cases/49fa9055aa757d7b.json similarity index 87% rename from allure-report/data/test-cases/f71bd4516df37f52.json rename to allure-report/data/test-cases/49fa9055aa757d7b.json index 691f39b2e17..f81d3a7f3c1 100644 --- a/allure-report/data/test-cases/f71bd4516df37f52.json +++ b/allure-report/data/test-cases/49fa9055aa757d7b.json @@ -1 +1 @@ -{"uid":"f71bd4516df37f52","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"42c6735b0fe92ce1","name":"stdout","source":"42c6735b0fe92ce1.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f71bd4516df37f52.json","parameterValues":[]} \ No newline at end of file +{"uid":"49fa9055aa757d7b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f63a818ce466a5d5","name":"stdout","source":"f63a818ce466a5d5.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::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":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"49fa9055aa757d7b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c948f5411c74f4a1.json b/allure-report/data/test-cases/4a25f98e06778e12.json similarity index 87% rename from allure-report/data/test-cases/c948f5411c74f4a1.json rename to allure-report/data/test-cases/4a25f98e06778e12.json index 44723c5b7b9..b66dd076a5f 100644 --- a/allure-report/data/test-cases/c948f5411c74f4a1.json +++ b/allure-report/data/test-cases/4a25f98e06778e12.json @@ -1 +1 @@ -{"uid":"c948f5411c74f4a1","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732428194224,"stop":1732428194224,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732428194223,"stop":1732428194223,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732428194225,"stop":1732428194225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c948f5411c74f4a1.json","parameterValues":[]} \ No newline at end of file +{"uid":"4a25f98e06778e12","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732428194224,"stop":1732428194224,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732428194223,"stop":1732428194223,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732428194224,"stop":1732428194224,"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_AllFibonacciNumbersTestCase::0","time":{"start":1732428194225,"stop":1732428194225,"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":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"4a25f98e06778e12.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15315242cf60389c.json b/allure-report/data/test-cases/4a34b1c679ee3fc0.json similarity index 73% rename from allure-report/data/test-cases/15315242cf60389c.json rename to allure-report/data/test-cases/4a34b1c679ee3fc0.json index 8b878b1d35d..6228a9fa7f6 100644 --- a/allure-report/data/test-cases/15315242cf60389c.json +++ b/allure-report/data/test-cases/4a34b1c679ee3fc0.json @@ -1 +1 @@ -{"uid":"15315242cf60389c","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":1732428195998,"stop":1732428195998,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732428196003,"stop":1732428196003,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of powers of 2"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"15315242cf60389c.json","parameterValues":[]} \ No newline at end of file +{"uid":"4a34b1c679ee3fc0","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":1732428195998,"stop":1732428195998,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732428196003,"stop":1732428196003,"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 powers of 2"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"4a34b1c679ee3fc0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a970025f2147b3a.json b/allure-report/data/test-cases/4a970025f2147b3a.json new file mode 100644 index 00000000000..9056a46cad3 --- /dev/null +++ b/allure-report/data/test-cases/4a970025f2147b3a.json @@ -0,0 +1 @@ +{"uid":"4a970025f2147b3a","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":1733030100633,"stop":1733030100633,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030100633,"stop":1733030100633,"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_InviteMoreWomenTestCase::0","time":{"start":1733030100633,"stop":1733030100633,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"PUZZLES"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"14a62b5662523525","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1}},{"uid":"44dd7ed6ddd58149","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1}},{"uid":"9d27d41bfa6de8dc","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"1ec22d6f24411c0a","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"4a970025f2147b3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ab2fd070154adeb.json b/allure-report/data/test-cases/4ab2fd070154adeb.json deleted file mode 100644 index 91ad16888a1..00000000000 --- a/allure-report/data/test-cases/4ab2fd070154adeb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4ab2fd070154adeb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"145b065c02fb875","name":"stdout","source":"145b065c02fb875.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"4ab2fd070154adeb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51021ef4547a41f8.json b/allure-report/data/test-cases/4ac6613711439ff9.json similarity index 85% rename from allure-report/data/test-cases/51021ef4547a41f8.json rename to allure-report/data/test-cases/4ac6613711439ff9.json index e00cfa45d76..46ed357a366 100644 --- a/allure-report/data/test-cases/51021ef4547a41f8.json +++ b/allure-report/data/test-cases/4ac6613711439ff9.json @@ -1 +1 @@ -{"uid":"51021ef4547a41f8","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732428196409,"stop":1732428196409,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732428196411,"stop":1732428196411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"51021ef4547a41f8.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ac6613711439ff9","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732428196409,"stop":1732428196409,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732428196409,"stop":1732428196409,"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_FeastTestCase::0","time":{"start":1732428196411,"stop":1732428196411,"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":"String"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"4ac6613711439ff9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b22647a9cdd2bef.json b/allure-report/data/test-cases/4ade5d7baabdb848.json similarity index 83% rename from allure-report/data/test-cases/4b22647a9cdd2bef.json rename to allure-report/data/test-cases/4ade5d7baabdb848.json index aa422c2d892..6f47584e65b 100644 --- a/allure-report/data/test-cases/4b22647a9cdd2bef.json +++ b/allure-report/data/test-cases/4ade5d7baabdb848.json @@ -1 +1 @@ -{"uid":"4b22647a9cdd2bef","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":1732428194048,"stop":1732428194108,"duration":60},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4b22647a9cdd2bef.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ade5d7baabdb848","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":1732428194048,"stop":1732428194108,"duration":60},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f1c17d8d31f590b0.json b/allure-report/data/test-cases/4aeb02bd06c6709d.json similarity index 81% rename from allure-report/data/test-cases/f1c17d8d31f590b0.json rename to allure-report/data/test-cases/4aeb02bd06c6709d.json index aa1b74da589..114cba016f9 100644 --- a/allure-report/data/test-cases/f1c17d8d31f590b0.json +++ b/allure-report/data/test-cases/4aeb02bd06c6709d.json @@ -1 +1 @@ -{"uid":"f1c17d8d31f590b0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732428196445,"stop":1732428196445,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732428196447,"stop":1732428196447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Will there be enough space?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"f1c17d8d31f590b0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732428196445,"stop":1732428196445,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196446,"stop":1732428196446,"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_EnoughTestCase::0","time":{"start":1732428196447,"stop":1732428196447,"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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Will there be enough space?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"4aeb02bd06c6709d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b2984e4fa36f94.json b/allure-report/data/test-cases/4b2984e4fa36f94.json deleted file mode 100644 index 6e5883e8653..00000000000 --- a/allure-report/data/test-cases/4b2984e4fa36f94.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4b2984e4fa36f94","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":"

Codewars badge:

Test Description:

Testing position property based on positive grids.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"c8da32e94b736fef","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1}},{"uid":"a35155a27bb8937d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"e9cabde1f2c64760","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":2,"unknown":0,"total":4},"items":[{"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":"4b2984e4fa36f94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d50213dc9ab240ff.json b/allure-report/data/test-cases/4b38126bac5fa484.json similarity index 73% rename from allure-report/data/test-cases/d50213dc9ab240ff.json rename to allure-report/data/test-cases/4b38126bac5fa484.json index 03d5eca371a..90f77a1685f 100644 --- a/allure-report/data/test-cases/d50213dc9ab240ff.json +++ b/allure-report/data/test-cases/4b38126bac5fa484.json @@ -1 +1 @@ -{"uid":"d50213dc9ab240ff","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f469dcf875239b3a","name":"stdout","source":"f469dcf875239b3a.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d50213dc9ab240ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"4b38126bac5fa484","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"496a8fc7c085caf4","name":"stdout","source":"496a8fc7c085caf4.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724733474522,"stop":1724733474522,"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":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4b38126bac5fa484.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b75654893666492.json b/allure-report/data/test-cases/4b75654893666492.json new file mode 100644 index 00000000000..f9e00d18ae0 --- /dev/null +++ b/allure-report/data/test-cases/4b75654893666492.json @@ -0,0 +1 @@ +{"uid":"4b75654893666492","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732428195517,"stop":1732428195517,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195517,"stop":1732428195517,"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_LongestRepetitionTestCase::0","time":{"start":1732428195520,"stop":1732428195520,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"4b75654893666492.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53eb34bc4e02fa07.json b/allure-report/data/test-cases/4b7f4ecd4f7fef24.json similarity index 64% rename from allure-report/data/test-cases/53eb34bc4e02fa07.json rename to allure-report/data/test-cases/4b7f4ecd4f7fef24.json index a03f4df9029..c1ea139164b 100644 --- a/allure-report/data/test-cases/53eb34bc4e02fa07.json +++ b/allure-report/data/test-cases/4b7f4ecd4f7fef24.json @@ -1 +1 @@ -{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732764219386,"stop":1732764219386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"711b3df283530a5b","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717}},{"uid":"8d85f39401914c16","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"abf4f2031d384e78","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"53eb34bc4e02fa07.json","parameterValues":[]} \ No newline at end of file +{"uid":"4b7f4ecd4f7fef24","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"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}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4b82056eac592aba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8edcba07a1a3ea56.json b/allure-report/data/test-cases/4ba6a0676ce201a1.json similarity index 81% rename from allure-report/data/test-cases/8edcba07a1a3ea56.json rename to allure-report/data/test-cases/4ba6a0676ce201a1.json index d6c373496cc..8afc6928c71 100644 --- a/allure-report/data/test-cases/8edcba07a1a3ea56.json +++ b/allure-report/data/test-cases/4ba6a0676ce201a1.json @@ -1 +1 @@ -{"uid":"8edcba07a1a3ea56","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ad735a94d30c45bf","name":"stdout","source":"ad735a94d30c45bf.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"8edcba07a1a3ea56.json","parameterValues":[]} \ No newline at end of file +{"uid":"4ba6a0676ce201a1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"46d017d45a55c05d","name":"stdout","source":"46d017d45a55c05d.txt","type":"text/plain","size":793}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1724735127844,"stop":1724735127844,"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":"DESIGN PRINCIPLES"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"4ba6a0676ce201a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2f70229e4c52322.json b/allure-report/data/test-cases/4bc08c1baeba1126.json similarity index 75% rename from allure-report/data/test-cases/a2f70229e4c52322.json rename to allure-report/data/test-cases/4bc08c1baeba1126.json index 41cf60c31a8..093a13065d8 100644 --- a/allure-report/data/test-cases/a2f70229e4c52322.json +++ b/allure-report/data/test-cases/4bc08c1baeba1126.json @@ -1 +1 @@ -{"uid":"a2f70229e4c52322","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"74cdc928e034d6b3","name":"stdout","source":"74cdc928e034d6b3.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a2f70229e4c52322.json","parameterValues":[]} \ No newline at end of file +{"uid":"4bc08c1baeba1126","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cf7f17d6f7fd036a","name":"stdout","source":"cf7f17d6f7fd036a.txt","type":"text/plain","size":76}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4bc08c1baeba1126.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c31a5ec99c6ca69.json b/allure-report/data/test-cases/4c31a5ec99c6ca69.json deleted file mode 100644 index c4ee433ef6d..00000000000 --- a/allure-report/data/test-cases/4c31a5ec99c6ca69.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4c31a5ec99c6ca69","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fceb9ab1ca4c439c","name":"stdout","source":"fceb9ab1ca4c439c.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4c31a5ec99c6ca69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64001087ec7aaf2b.json b/allure-report/data/test-cases/4c4230f8e0e384cc.json similarity index 83% rename from allure-report/data/test-cases/64001087ec7aaf2b.json rename to allure-report/data/test-cases/4c4230f8e0e384cc.json index a943c2ea425..05853ef8ce4 100644 --- a/allure-report/data/test-cases/64001087ec7aaf2b.json +++ b/allure-report/data/test-cases/4c4230f8e0e384cc.json @@ -1 +1 @@ -{"uid":"64001087ec7aaf2b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"64001087ec7aaf2b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/fefeabf3e26a53bd.json b/allure-report/data/test-cases/4c8c8098a5ba0587.json similarity index 79% rename from allure-report/data/test-cases/fefeabf3e26a53bd.json rename to allure-report/data/test-cases/4c8c8098a5ba0587.json index 1f83e136643..d5c1a8afd4a 100644 --- a/allure-report/data/test-cases/fefeabf3e26a53bd.json +++ b/allure-report/data/test-cases/4c8c8098a5ba0587.json @@ -1 +1 @@ -{"uid":"fefeabf3e26a53bd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732428196064,"stop":1732428196064,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"fefeabf3e26a53bd.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732428196064,"stop":1732428196064,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4c8c8098a5ba0587.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4cc7d24b84024142.json b/allure-report/data/test-cases/4cc7d24b84024142.json new file mode 100644 index 00000000000..b68b5dee38f --- /dev/null +++ b/allure-report/data/test-cases/4cc7d24b84024142.json @@ -0,0 +1 @@ +{"uid":"4cc7d24b84024142","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":1733030100122,"stop":1733030100122,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1733030100122,"stop":1733030100122,"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_FindTheOddIntTestCase::0","time":{"start":1733030100122,"stop":1733030100122,"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":"feature","value":"Lists"},{"name":"story","value":"Find the odd int"},{"name":"epic","value":"6 kyu"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bff3d119847a95d6","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0}},{"uid":"f70eefcf6fb13da","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0}},{"uid":"c3fd98c434ab7b3d","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"39eb5e3cc2f12413","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"4cc7d24b84024142.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6b3bc73a428b4db.json b/allure-report/data/test-cases/4d0543e962e43a97.json similarity index 80% rename from allure-report/data/test-cases/f6b3bc73a428b4db.json rename to allure-report/data/test-cases/4d0543e962e43a97.json index 78469a222db..3611bd56065 100644 --- a/allure-report/data/test-cases/f6b3bc73a428b4db.json +++ b/allure-report/data/test-cases/4d0543e962e43a97.json @@ -1 +1 @@ -{"uid":"f6b3bc73a428b4db","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":1732428196022,"stop":1732428196022,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"f6b3bc73a428b4db.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d0543e962e43a97","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":1732428196022,"stop":1732428196022,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1732428196022,"stop":1732428196022,"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_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"4d0543e962e43a97.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d07449717f6193c.json b/allure-report/data/test-cases/4d07449717f6193c.json new file mode 100644 index 00000000000..b53ff3cb479 --- /dev/null +++ b/allure-report/data/test-cases/4d07449717f6193c.json @@ -0,0 +1 @@ +{"uid":"4d07449717f6193c","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1733030100836,"stop":1733030100836,"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::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":"story","value":"Counting sheep..."},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c666a2fc70e4969f","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0}},{"uid":"2687b62465687fa1","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1}},{"uid":"d10b96136002b581","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"6fb97aca94ac90f1","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4d07449717f6193c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65f6b4f1195a0e9d.json b/allure-report/data/test-cases/4d2239036502cf20.json similarity index 78% rename from allure-report/data/test-cases/65f6b4f1195a0e9d.json rename to allure-report/data/test-cases/4d2239036502cf20.json index 95eb1f0158a..fae2a879d41 100644 --- a/allure-report/data/test-cases/65f6b4f1195a0e9d.json +++ b/allure-report/data/test-cases/4d2239036502cf20.json @@ -1 +1 @@ -{"uid":"65f6b4f1195a0e9d","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bcfe223ecfa6a3c6","name":"stdout","source":"bcfe223ecfa6a3c6.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65f6b4f1195a0e9d.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d2239036502cf20","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030098989,"stop":1733030098989,"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_FirstNonRepeatingLetterTestCase::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":"tag","value":"SEARCH"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c6c0fd894bae942b","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0}},{"uid":"f3b126d8812a5b41","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0}},{"uid":"a65123311cff1206","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"df6ed9e3e14c891a","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"4d53eb58d77047e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d57a8ddade5816.json b/allure-report/data/test-cases/4d57a8ddade5816.json deleted file mode 100644 index 26a94854ca6..00000000000 --- a/allure-report/data/test-cases/4d57a8ddade5816.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4d57a8ddade5816","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"804c421dc94f15f8","name":"stdout","source":"804c421dc94f15f8.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"4d57a8ddade5816.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d64a30c387b7743.json b/allure-report/data/test-cases/4d64a30c387b7743.json new file mode 100644 index 00000000000..fe2adf64268 --- /dev/null +++ b/allure-report/data/test-cases/4d64a30c387b7743.json @@ -0,0 +1 @@ +{"uid":"4d64a30c387b7743","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1733030100512,"stop":1733030100512,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::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":"feature","value":"Calculation"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"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.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6f615adf58af171","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0}},{"uid":"cb1c1fa1e4f21add","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0}},{"uid":"49fa9055aa757d7b","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"b27497f64988d4cb","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":"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}}]},"tags":["ALGORITHMS"]},"source":"4d64a30c387b7743.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/965bac5a2c55f031.json b/allure-report/data/test-cases/4d86cc91fd1923ec.json similarity index 60% rename from allure-report/data/test-cases/965bac5a2c55f031.json rename to allure-report/data/test-cases/4d86cc91fd1923ec.json index 84a29492243..4125867144a 100644 --- a/allure-report/data/test-cases/965bac5a2c55f031.json +++ b/allure-report/data/test-cases/4d86cc91fd1923ec.json @@ -1 +1 @@ -{"uid":"965bac5a2c55f031","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732764220991,"stop":1732764220991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6e173d8e5ff615be","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1}},{"uid":"91aab0544068789","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"80ba443311cb72ff","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"965bac5a2c55f031.json","parameterValues":[]} \ No newline at end of file +{"uid":"4d86cc91fd1923ec","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732764220989,"stop":1732764220989,"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_GoalsTestCase::0","time":{"start":1732764220991,"stop":1732764220991,"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":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4d86cc91fd1923ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95e685797940e119.json b/allure-report/data/test-cases/4db417c919f14dad.json similarity index 84% rename from allure-report/data/test-cases/95e685797940e119.json rename to allure-report/data/test-cases/4db417c919f14dad.json index b54f3adb8b5..3787ecbef0f 100644 --- a/allure-report/data/test-cases/95e685797940e119.json +++ b/allure-report/data/test-cases/4db417c919f14dad.json @@ -1 +1 @@ -{"uid":"95e685797940e119","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"95e685797940e119.json","parameterValues":[]} \ No newline at end of file +{"uid":"4db417c919f14dad","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/90c1df398d2f201a.json b/allure-report/data/test-cases/4e0b9180415d7384.json similarity index 75% rename from allure-report/data/test-cases/90c1df398d2f201a.json rename to allure-report/data/test-cases/4e0b9180415d7384.json index 0f9336bf85d..536a67794f2 100644 --- a/allure-report/data/test-cases/90c1df398d2f201a.json +++ b/allure-report/data/test-cases/4e0b9180415d7384.json @@ -1 +1 @@ -{"uid":"90c1df398d2f201a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732428195937,"stop":1732428195938,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195939,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"90c1df398d2f201a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732428195937,"stop":1732428195938,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195938,"stop":1732428195939,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732428195939,"stop":1732428195939,"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}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"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":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"4e0b9180415d7384.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e3f7ea473e691d3.json b/allure-report/data/test-cases/4e3f7ea473e691d3.json new file mode 100644 index 00000000000..8bdea42043a --- /dev/null +++ b/allure-report/data/test-cases/4e3f7ea473e691d3.json @@ -0,0 +1 @@ +{"uid":"4e3f7ea473e691d3","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1733030100278,"stop":1733030100278,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","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 Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099333,"stop":1733030099333,"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":1733030099333,"stop":1733030099333,"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":1733030099333,"stop":1733030099333,"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":1733030099333,"stop":1733030099333,"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":1733030099333,"stop":1733030099333,"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_CountLettersInStringTestCase::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":"suite","value":"Data Structures"},{"name":"tag","value":"HASHES"},{"name":"story","value":"Count letters in string"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b56e159e9a8b128f","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1}},{"uid":"27ff7d9c249750c3","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0}},{"uid":"7019f73b053e7ae6","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"31fa8902feb5ac83","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":"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}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"4e3fc5966ad47411.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e87d924fe50548.json b/allure-report/data/test-cases/4e87d924fe50548.json new file mode 100644 index 00000000000..d9557f92710 --- /dev/null +++ b/allure-report/data/test-cases/4e87d924fe50548.json @@ -0,0 +1 @@ +{"uid":"4e87d924fe50548","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a22d4b8f003df599.json b/allure-report/data/test-cases/4ed891af5fcb8959.json similarity index 82% rename from allure-report/data/test-cases/a22d4b8f003df599.json rename to allure-report/data/test-cases/4ed891af5fcb8959.json index a2015f0d2c5..0e5227a2412 100644 --- a/allure-report/data/test-cases/a22d4b8f003df599.json +++ b/allure-report/data/test-cases/4ed891af5fcb8959.json @@ -1 +1 @@ -{"uid":"a22d4b8f003df599","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd8004b465c9b5f8","name":"stdout","source":"dd8004b465c9b5f8.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a22d4b8f003df599.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c12e168b06d36fc7.json b/allure-report/data/test-cases/4eec4d08404980cd.json similarity index 74% rename from allure-report/data/test-cases/c12e168b06d36fc7.json rename to allure-report/data/test-cases/4eec4d08404980cd.json index 50aaabe44e6..e5cba99ab1b 100644 --- a/allure-report/data/test-cases/c12e168b06d36fc7.json +++ b/allure-report/data/test-cases/4eec4d08404980cd.json @@ -1 +1 @@ -{"uid":"c12e168b06d36fc7","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9473dcf11398d47e","name":"stdout","source":"9473dcf11398d47e.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"c12e168b06d36fc7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"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":1724733473014,"stop":1724733473014,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3042b984a74017cb","name":"stdout","source":"3042b984a74017cb.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724733473014,"stop":1724733473014,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"4eec4d08404980cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48e03b38164b77c2.json b/allure-report/data/test-cases/4f327dad8c4d7133.json similarity index 65% rename from allure-report/data/test-cases/48e03b38164b77c2.json rename to allure-report/data/test-cases/4f327dad8c4d7133.json index 599901a75a0..8d8ecd4d7e2 100644 --- a/allure-report/data/test-cases/48e03b38164b77c2.json +++ b/allure-report/data/test-cases/4f327dad8c4d7133.json @@ -1 +1 @@ -{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"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":"

Codewars badge:

Test Description:

The function should return whether the board's current state is solved.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732764219205,"stop":1732764219205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5bc730ff95f1c205","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0}},{"uid":"2da97da2ac2c9bbd","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"1c33446eccccc45a","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"48e03b38164b77c2.json","parameterValues":[]} \ No newline at end of file +{"uid":"4f327dad8c4d7133","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4438dce845a8b680.json b/allure-report/data/test-cases/4f80880da2e426c8.json similarity index 58% rename from allure-report/data/test-cases/4438dce845a8b680.json rename to allure-report/data/test-cases/4f80880da2e426c8.json index 8ae581d8d19..f28c16adc83 100644 --- a/allure-report/data/test-cases/4438dce845a8b680.json +++ b/allure-report/data/test-cases/4f80880da2e426c8.json @@ -1 +1 @@ -{"uid":"4438dce845a8b680","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":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"67c96b92db3f1ee1","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0}},{"uid":"adbbb2c26291ccd5","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"582aa68275dac68e","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"4438dce845a8b680.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/500f182a6eedd000.json b/allure-report/data/test-cases/500f182a6eedd000.json deleted file mode 100644 index eb59b08adf7..00000000000 --- a/allure-report/data/test-cases/500f182a6eedd000.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"500f182a6eedd000","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fbbce307fc80ae94","name":"stdout","source":"fbbce307fc80ae94.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"500f182a6eedd000.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea733e6b4760e89e.json b/allure-report/data/test-cases/5016998388e149a3.json similarity index 52% rename from allure-report/data/test-cases/ea733e6b4760e89e.json rename to allure-report/data/test-cases/5016998388e149a3.json index 298f4bc014f..fbe41b72075 100644 --- a/allure-report/data/test-cases/ea733e6b4760e89e.json +++ b/allure-report/data/test-cases/5016998388e149a3.json @@ -1 +1 @@ -{"uid":"ea733e6b4760e89e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"31e63916e4212e6","name":"stdout","source":"31e63916e4212e6.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"ea733e6b4760e89e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d66cc433d6fd8732","name":"stdout","source":"d66cc433d6fd8732.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724733474897,"stop":1724733474897,"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":"L1: Set Alarm"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"5016998388e149a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/641b1ee7248b1557.json b/allure-report/data/test-cases/5052ffebbe9e5222.json similarity index 71% rename from allure-report/data/test-cases/641b1ee7248b1557.json rename to allure-report/data/test-cases/5052ffebbe9e5222.json index 4b3f13daa06..0136a6460ab 100644 --- a/allure-report/data/test-cases/641b1ee7248b1557.json +++ b/allure-report/data/test-cases/5052ffebbe9e5222.json @@ -1 +1 @@ -{"uid":"641b1ee7248b1557","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a329da92784fccae","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1}},{"uid":"ee182a5a1f4b39dc","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"a53e477b227bdf44","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"641b1ee7248b1557.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c3e9cf6e477b7f80.json b/allure-report/data/test-cases/50577b0cb2a4b7be.json similarity index 61% rename from allure-report/data/test-cases/c3e9cf6e477b7f80.json rename to allure-report/data/test-cases/50577b0cb2a4b7be.json index 3a48d8bdc4b..656e5eddb3b 100644 --- a/allure-report/data/test-cases/c3e9cf6e477b7f80.json +++ b/allure-report/data/test-cases/50577b0cb2a4b7be.json @@ -1 +1 @@ -{"uid":"c3e9cf6e477b7f80","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"867b171e961cc6e3","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1}},{"uid":"3b453b26a6476828","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"d237c739f4b0c138","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"c3e9cf6e477b7f80.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732764220749,"stop":1732764220749,"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_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"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 Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"50577b0cb2a4b7be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/506e0ee504d23a05.json b/allure-report/data/test-cases/506e0ee504d23a05.json new file mode 100644 index 00000000000..a31ab89b0a0 --- /dev/null +++ b/allure-report/data/test-cases/506e0ee504d23a05.json @@ -0,0 +1 @@ +{"uid":"506e0ee504d23a05","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f207a08521ff3dd3.json b/allure-report/data/test-cases/50aed2563bca9cb0.json similarity index 73% rename from allure-report/data/test-cases/f207a08521ff3dd3.json rename to allure-report/data/test-cases/50aed2563bca9cb0.json index 5f48eeb6b5c..80fd21d21a6 100644 --- a/allure-report/data/test-cases/f207a08521ff3dd3.json +++ b/allure-report/data/test-cases/50aed2563bca9cb0.json @@ -1 +1 @@ -{"uid":"f207a08521ff3dd3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1de780c85f2aabb6","name":"stdout","source":"1de780c85f2aabb6.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f207a08521ff3dd3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/941c0037b0b98fcf.json b/allure-report/data/test-cases/50d6552ddbe0d86a.json similarity index 82% rename from allure-report/data/test-cases/941c0037b0b98fcf.json rename to allure-report/data/test-cases/50d6552ddbe0d86a.json index b60a8a74773..43c072fcf3c 100644 --- a/allure-report/data/test-cases/941c0037b0b98fcf.json +++ b/allure-report/data/test-cases/50d6552ddbe0d86a.json @@ -1 +1 @@ -{"uid":"941c0037b0b98fcf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f7cb1151a0bdf19c","name":"stdout","source":"f7cb1151a0bdf19c.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"941c0037b0b98fcf.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6e533a6d7b553e50","name":"stdout","source":"6e533a6d7b553e50.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"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":"String subpattern recognition II"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"50d6552ddbe0d86a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8bbfaabd5a5300d.json b/allure-report/data/test-cases/51076f5a3e3475ad.json similarity index 91% rename from allure-report/data/test-cases/d8bbfaabd5a5300d.json rename to allure-report/data/test-cases/51076f5a3e3475ad.json index 6f670c2c23b..e45afcefad0 100644 --- a/allure-report/data/test-cases/d8bbfaabd5a5300d.json +++ b/allure-report/data/test-cases/51076f5a3e3475ad.json @@ -1 +1 @@ -{"uid":"d8bbfaabd5a5300d","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732428193918,"stop":1732428193918,"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":"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":"d8bbfaabd5a5300d.json","parameterValues":[]} \ No newline at end of file +{"uid":"51076f5a3e3475ad","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732428193918,"stop":1732428193918,"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":"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/3719e4e464aa700e.json b/allure-report/data/test-cases/51801b1697e4932d.json similarity index 75% rename from allure-report/data/test-cases/3719e4e464aa700e.json rename to allure-report/data/test-cases/51801b1697e4932d.json index c53b89b96d5..6f7e5e247c5 100644 --- a/allure-report/data/test-cases/3719e4e464aa700e.json +++ b/allure-report/data/test-cases/51801b1697e4932d.json @@ -1 +1 @@ -{"uid":"3719e4e464aa700e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"3719e4e464aa700e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732428195746,"stop":1732428195746,"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_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"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 Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"51801b1697e4932d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/395a8f7cfcd6a2c9.json b/allure-report/data/test-cases/51842db2fafc0136.json similarity index 83% rename from allure-report/data/test-cases/395a8f7cfcd6a2c9.json rename to allure-report/data/test-cases/51842db2fafc0136.json index 9ccd2d2d087..fa74a0574f6 100644 --- a/allure-report/data/test-cases/395a8f7cfcd6a2c9.json +++ b/allure-report/data/test-cases/51842db2fafc0136.json @@ -1 +1 @@ -{"uid":"395a8f7cfcd6a2c9","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"96d9a9c4b2d76831","name":"stdout","source":"96d9a9c4b2d76831.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"395a8f7cfcd6a2c9.json","parameterValues":[]} \ No newline at end of file +{"uid":"51842db2fafc0136","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1bf4128bcf35143f.json b/allure-report/data/test-cases/520c156ef3917d19.json similarity index 58% rename from allure-report/data/test-cases/1bf4128bcf35143f.json rename to allure-report/data/test-cases/520c156ef3917d19.json index 6dffa75edb7..391167a9676 100644 --- a/allure-report/data/test-cases/1bf4128bcf35143f.json +++ b/allure-report/data/test-cases/520c156ef3917d19.json @@ -1 +1 @@ -{"uid":"1bf4128bcf35143f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e8bbbba63c3bb75","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0}},{"uid":"c10fb0178a326f0a","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"36552864c04c1cf9","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"1bf4128bcf35143f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220563,"stop":1732764220563,"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_JadenCasingStringsTestCase::0","time":{"start":1732764220574,"stop":1732764220574,"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":"story","value":"Jaden Casing Strings"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"520c156ef3917d19.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff24b513a2221397.json b/allure-report/data/test-cases/522017a410240b47.json similarity index 75% rename from allure-report/data/test-cases/ff24b513a2221397.json rename to allure-report/data/test-cases/522017a410240b47.json index 09bd8d5e362..237bd6922c4 100644 --- a/allure-report/data/test-cases/ff24b513a2221397.json +++ b/allure-report/data/test-cases/522017a410240b47.json @@ -1 +1 @@ -{"uid":"ff24b513a2221397","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"afa2344a5891233b","name":"stdout","source":"afa2344a5891233b.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ff24b513a2221397.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"566cb1395d2623ee","name":"stdout","source":"566cb1395d2623ee.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"522017a410240b47.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b28b33a131eefd9.json b/allure-report/data/test-cases/522dabffb376b9c8.json similarity index 74% rename from allure-report/data/test-cases/4b28b33a131eefd9.json rename to allure-report/data/test-cases/522dabffb376b9c8.json index ea2633e0a82..5b4b9200e64 100644 --- a/allure-report/data/test-cases/4b28b33a131eefd9.json +++ b/allure-report/data/test-cases/522dabffb376b9c8.json @@ -1 +1 @@ -{"uid":"4b28b33a131eefd9","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"64228c9b0b57911a","name":"stdout","source":"64228c9b0b57911a.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4b28b33a131eefd9.json","parameterValues":[]} \ No newline at end of file +{"uid":"522dabffb376b9c8","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":1724733472374,"stop":1724733472374,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732428195488,"stop":1732428195488,"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_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"523993bf26b2b2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a456e8af4c590649.json b/allure-report/data/test-cases/5283421c34c2facb.json similarity index 82% rename from allure-report/data/test-cases/a456e8af4c590649.json rename to allure-report/data/test-cases/5283421c34c2facb.json index 6781c20f172..f123b9240fe 100644 --- a/allure-report/data/test-cases/a456e8af4c590649.json +++ b/allure-report/data/test-cases/5283421c34c2facb.json @@ -1 +1 @@ -{"uid":"a456e8af4c590649","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f5e7c985bb14104f","name":"stdout","source":"f5e7c985bb14104f.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a456e8af4c590649.json","parameterValues":[]} \ No newline at end of file +{"uid":"5283421c34c2facb","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1be5b98a41807de8.json b/allure-report/data/test-cases/529f7f81e90deb17.json similarity index 79% rename from allure-report/data/test-cases/1be5b98a41807de8.json rename to allure-report/data/test-cases/529f7f81e90deb17.json index 3d00b09915d..9aa61977372 100644 --- a/allure-report/data/test-cases/1be5b98a41807de8.json +++ b/allure-report/data/test-cases/529f7f81e90deb17.json @@ -1 +1 @@ -{"uid":"1be5b98a41807de8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d5812afb446c78ce","name":"stdout","source":"d5812afb446c78ce.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1be5b98a41807de8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1d756394430052ee.json b/allure-report/data/test-cases/52a5dee2c595fefe.json similarity index 83% rename from allure-report/data/test-cases/1d756394430052ee.json rename to allure-report/data/test-cases/52a5dee2c595fefe.json index 816be0eb4cf..12b62866038 100644 --- a/allure-report/data/test-cases/1d756394430052ee.json +++ b/allure-report/data/test-cases/52a5dee2c595fefe.json @@ -1 +1 @@ -{"uid":"1d756394430052ee","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732428195905,"stop":1732428195906,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732428195908,"stop":1732428195908,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Flow Control"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"1d756394430052ee.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732428195905,"stop":1732428195906,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732428195906,"stop":1732428195906,"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_LargestPowerTestCase::0","time":{"start":1732428195908,"stop":1732428195908,"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":"feature","value":"Flow Control"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"52a5dee2c595fefe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/711b3df283530a5b.json b/allure-report/data/test-cases/52c8b26b912e9951.json similarity index 75% rename from allure-report/data/test-cases/711b3df283530a5b.json rename to allure-report/data/test-cases/52c8b26b912e9951.json index fcee08e062c..221a623feeb 100644 --- a/allure-report/data/test-cases/711b3df283530a5b.json +++ b/allure-report/data/test-cases/52c8b26b912e9951.json @@ -1 +1 @@ -{"uid":"711b3df283530a5b","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"711b3df283530a5b.json","parameterValues":[]} \ No newline at end of file +{"uid":"52c8b26b912e9951","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1e6c7d1c4189d9dd.json b/allure-report/data/test-cases/52e4a6d580ce5f36.json similarity index 80% rename from allure-report/data/test-cases/1e6c7d1c4189d9dd.json rename to allure-report/data/test-cases/52e4a6d580ce5f36.json index fc4335a61de..e499c36123f 100644 --- a/allure-report/data/test-cases/1e6c7d1c4189d9dd.json +++ b/allure-report/data/test-cases/52e4a6d580ce5f36.json @@ -1 +1 @@ -{"uid":"1e6c7d1c4189d9dd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1e6c7d1c4189d9dd.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1733030100309,"stop":1733030100309,"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_HasSubpatternTestCase::0","time":{"start":1733030100309,"stop":1733030100309,"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":"story","value":"String subpattern recognition II"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8b29a5334bdbc1b5","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0}},{"uid":"7886d18807eb6c13","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0}},{"uid":"6722ace1ab285b1e","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"50d6552ddbe0d86a","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"52e55a2445119fdd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52f852c4238fea22.json b/allure-report/data/test-cases/52f852c4238fea22.json new file mode 100644 index 00000000000..d446f84c9b9 --- /dev/null +++ b/allure-report/data/test-cases/52f852c4238fea22.json @@ -0,0 +1 @@ +{"uid":"52f852c4238fea22","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","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":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::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":"suite","value":"Data Structures"},{"name":"story","value":"V A P O R C O D E"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ce004e41100b8867","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0}},{"uid":"6b11699e388f2732","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0}},{"uid":"f293182f40cb67e1","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"4b38126bac5fa484","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"52f852c4238fea22.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9fea94ac2fbcf5b2.json b/allure-report/data/test-cases/530cf97bef900b31.json similarity index 81% rename from allure-report/data/test-cases/9fea94ac2fbcf5b2.json rename to allure-report/data/test-cases/530cf97bef900b31.json index 1c1f20bd10c..3d65ff900f7 100644 --- a/allure-report/data/test-cases/9fea94ac2fbcf5b2.json +++ b/allure-report/data/test-cases/530cf97bef900b31.json @@ -1 +1 @@ -{"uid":"9fea94ac2fbcf5b2","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38035331d2572599","name":"stdout","source":"38035331d2572599.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"9fea94ac2fbcf5b2.json","parameterValues":[]} \ No newline at end of file +{"uid":"530cf97bef900b31","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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"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 result:","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29d2aeece76c7fe3","name":"stdout","source":"29d2aeece76c7fe3.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sports League Table Ranking"},{"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.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"530cf97bef900b31.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4617147ad7612076.json b/allure-report/data/test-cases/5319ce0d16f13f7e.json similarity index 80% rename from allure-report/data/test-cases/4617147ad7612076.json rename to allure-report/data/test-cases/5319ce0d16f13f7e.json index 312df6ccfaf..2f7590ca9d7 100644 --- a/allure-report/data/test-cases/4617147ad7612076.json +++ b/allure-report/data/test-cases/5319ce0d16f13f7e.json @@ -1 +1 @@ -{"uid":"4617147ad7612076","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3cf96ebaed3b737c","name":"stdout","source":"3cf96ebaed3b737c.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4617147ad7612076.json","parameterValues":[]} \ No newline at end of file +{"uid":"5319ce0d16f13f7e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/532d8f53f92733e9.json b/allure-report/data/test-cases/532d8f53f92733e9.json deleted file mode 100644 index 5a9931a0567..00000000000 --- a/allure-report/data/test-cases/532d8f53f92733e9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"532d8f53f92733e9","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"532d8f53f92733e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5364303890f7a5a1.json b/allure-report/data/test-cases/5364303890f7a5a1.json new file mode 100644 index 00000000000..fdb12efe865 --- /dev/null +++ b/allure-report/data/test-cases/5364303890f7a5a1.json @@ -0,0 +1 @@ +{"uid":"5364303890f7a5a1","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1733030101101,"stop":1733030101101,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1733030101101,"stop":1733030101101,"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_FeastTestCase::0","time":{"start":1733030101101,"stop":1733030101101,"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":"The Feast of Many Beasts"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aa0a102aebb2ddf0","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0}},{"uid":"4ac6613711439ff9","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0}},{"uid":"7b7000404fe21186","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"f4b278a94a1e847f","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"5364303890f7a5a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67e470215248af57.json b/allure-report/data/test-cases/53900b5a556367f8.json similarity index 80% rename from allure-report/data/test-cases/67e470215248af57.json rename to allure-report/data/test-cases/53900b5a556367f8.json index 95cd51da433..8d2ca381de9 100644 --- a/allure-report/data/test-cases/67e470215248af57.json +++ b/allure-report/data/test-cases/53900b5a556367f8.json @@ -1 +1 @@ -{"uid":"67e470215248af57","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8026ef3ff023cc9a","name":"stdout","source":"8026ef3ff023cc9a.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"67e470215248af57.json","parameterValues":[]} \ No newline at end of file +{"uid":"53900b5a556367f8","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","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 decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"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":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"170e0e9c6fcebe10","name":"stdout","source":"170e0e9c6fcebe10.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724735128031,"stop":1724735128031,"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":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Decipher this!"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","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_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"53900b5a556367f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5d70f307aec9205.json b/allure-report/data/test-cases/539e48e315449d8e.json similarity index 79% rename from allure-report/data/test-cases/e5d70f307aec9205.json rename to allure-report/data/test-cases/539e48e315449d8e.json index 92899d8fe21..afc67d5c265 100644 --- a/allure-report/data/test-cases/e5d70f307aec9205.json +++ b/allure-report/data/test-cases/539e48e315449d8e.json @@ -1 +1 @@ -{"uid":"e5d70f307aec9205","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732428194521,"stop":1732428194521,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"e5d70f307aec9205.json","parameterValues":[]} \ No newline at end of file +{"uid":"539e48e315449d8e","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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":1732428194518,"stop":1732428194518,"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_GenerateHashtagTestCase::0","time":{"start":1732428194521,"stop":1732428194521,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"539e48e315449d8e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53fa8d477eb42fd3.json b/allure-report/data/test-cases/53fa8d477eb42fd3.json deleted file mode 100644 index a99cd958d79..00000000000 --- a/allure-report/data/test-cases/53fa8d477eb42fd3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"53fa8d477eb42fd3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"797fb7eadd505b53","name":"stdout","source":"797fb7eadd505b53.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"53fa8d477eb42fd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a35155a27bb8937d.json b/allure-report/data/test-cases/5421992f655c2a5d.json similarity index 93% rename from allure-report/data/test-cases/a35155a27bb8937d.json rename to allure-report/data/test-cases/5421992f655c2a5d.json index 28961e88f41..df11d761e32 100644 --- a/allure-report/data/test-cases/a35155a27bb8937d.json +++ b/allure-report/data/test-cases/5421992f655c2a5d.json @@ -1 +1 @@ -{"uid":"a35155a27bb8937d","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":1724735127188,"stop":1724735127188,"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":"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":"a35155a27bb8937d.json","parameterValues":[]} \ No newline at end of file +{"uid":"5421992f655c2a5d","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":1724735127188,"stop":1724735127188,"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":"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/8ed1a17310170d88.json b/allure-report/data/test-cases/5444c88fc365358c.json similarity index 59% rename from allure-report/data/test-cases/8ed1a17310170d88.json rename to allure-report/data/test-cases/5444c88fc365358c.json index 1dc0317c5f7..547a1412088 100644 --- a/allure-report/data/test-cases/8ed1a17310170d88.json +++ b/allure-report/data/test-cases/5444c88fc365358c.json @@ -1 +1 @@ -{"uid":"8ed1a17310170d88","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732764220664,"stop":1732764220664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3d5b9d863751a3f","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0}},{"uid":"c793ab5339736af5","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"ac35e86bb753fb8c","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"8ed1a17310170d88.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732764220660,"stop":1732764220660,"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_NumberOfSigFigsTestCase::0","time":{"start":1732764220664,"stop":1732764220664,"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":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Significant Figures"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"5444c88fc365358c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5471ece0090e3d4.json b/allure-report/data/test-cases/5471ece0090e3d4.json deleted file mode 100644 index 100c92a56b8..00000000000 --- a/allure-report/data/test-cases/5471ece0090e3d4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5471ece0090e3d4","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a6b1894a1d267067","name":"stdout","source":"a6b1894a1d267067.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5471ece0090e3d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e480fe95093fd8e7.json b/allure-report/data/test-cases/547e143b73834674.json similarity index 83% rename from allure-report/data/test-cases/e480fe95093fd8e7.json rename to allure-report/data/test-cases/547e143b73834674.json index 936f24d08b1..96bd4557172 100644 --- a/allure-report/data/test-cases/e480fe95093fd8e7.json +++ b/allure-report/data/test-cases/547e143b73834674.json @@ -1 +1 @@ -{"uid":"e480fe95093fd8e7","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"894b6ecea0eca1b4","name":"stdout","source":"894b6ecea0eca1b4.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"e480fe95093fd8e7.json","parameterValues":[]} \ No newline at end of file +{"uid":"547e143b73834674","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"394478f192e8a5de","name":"stdout","source":"394478f192e8a5de.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724733473046,"stop":1724733473046,"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":"Where my anagrams at?"},{"name":"epic","value":"5 kyu"},{"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_5.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"547e143b73834674.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e695b3f4b0bdd51b.json b/allure-report/data/test-cases/5488ed1b45d5018a.json similarity index 71% rename from allure-report/data/test-cases/e695b3f4b0bdd51b.json rename to allure-report/data/test-cases/5488ed1b45d5018a.json index 3c4eaf29479..78b37bc3d17 100644 --- a/allure-report/data/test-cases/e695b3f4b0bdd51b.json +++ b/allure-report/data/test-cases/5488ed1b45d5018a.json @@ -1 +1 @@ -{"uid":"e695b3f4b0bdd51b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"850bcf9305b7e315","name":"stdout","source":"850bcf9305b7e315.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8ee14a37e5c3cb6","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e695b3f4b0bdd51b.json","parameterValues":[]} \ No newline at end of file +{"uid":"5488ed1b45d5018a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a8ee14a37e5c3cb6.json b/allure-report/data/test-cases/5493a4d389a4b9e6.json similarity index 78% rename from allure-report/data/test-cases/a8ee14a37e5c3cb6.json rename to allure-report/data/test-cases/5493a4d389a4b9e6.json index 3788c87994d..aaea29496e7 100644 --- a/allure-report/data/test-cases/a8ee14a37e5c3cb6.json +++ b/allure-report/data/test-cases/5493a4d389a4b9e6.json @@ -1 +1 @@ -{"uid":"a8ee14a37e5c3cb6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"491da570f7a6ee0b","name":"stdout","source":"491da570f7a6ee0b.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8ee14a37e5c3cb6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1733030100898,"stop":1733030100898,"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_GoalsTestCase::0","time":{"start":1733030100914,"stop":1733030100914,"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":"suite","value":"Math"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4d86cc91fd1923ec","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0}},{"uid":"559abc951e1b2adf","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1}},{"uid":"d5cb7590517b0cc1","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"48a3545f29b9b695","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"5496efe2fd3e353.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2488d38c1be516d6.json b/allure-report/data/test-cases/54d8fcc9aa407768.json similarity index 93% rename from allure-report/data/test-cases/2488d38c1be516d6.json rename to allure-report/data/test-cases/54d8fcc9aa407768.json index b83830ddd32..9fe1b9433fd 100644 --- a/allure-report/data/test-cases/2488d38c1be516d6.json +++ b/allure-report/data/test-cases/54d8fcc9aa407768.json @@ -1 +1 @@ -{"uid":"2488d38c1be516d6","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":"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":"2488d38c1be516d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"54d8fcc9aa407768","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724735127172,"stop":1724735127172,"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":"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/54fbe05c675f404a.json b/allure-report/data/test-cases/54fbe05c675f404a.json deleted file mode 100644 index 56c91c6b996..00000000000 --- a/allure-report/data/test-cases/54fbe05c675f404a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"54fbe05c675f404a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85613c3b6c6421c4","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0}},{"uid":"ff24b513a2221397","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"1938d829429abf54","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"54fbe05c675f404a.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"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_PeriodIsLateTestCase::0","time":{"start":1733030100961,"stop":1733030100961,"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":"story","value":"Is your period late"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"378737d914acf19c","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2}},{"uid":"6044467509892ff0","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0}},{"uid":"b6d612c29223f1e3","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"6a0ae436d7d72bb","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"5503b0de9149b0f0.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1733030100601,"stop":1733030100601,"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}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1733030100601,"stop":1733030100601,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6db0502ca689b396","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1}},{"uid":"4e0b9180415d7384","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2}},{"uid":"4b82056eac592aba","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"ddab479d47dfd717","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"555817f2fd5ba68f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/162a4f2fa010c721.json b/allure-report/data/test-cases/5567075f87625777.json similarity index 58% rename from allure-report/data/test-cases/162a4f2fa010c721.json rename to allure-report/data/test-cases/5567075f87625777.json index e64d8517bfa..9dc2fc61941 100644 --- a/allure-report/data/test-cases/162a4f2fa010c721.json +++ b/allure-report/data/test-cases/5567075f87625777.json @@ -1 +1 @@ -{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732764220793,"stop":1732764220793,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fefeabf3e26a53bd","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1}},{"uid":"3846d19bb4975491","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"acf18a2788645a5a","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"162a4f2fa010c721.json","parameterValues":[]} \ No newline at end of file +{"uid":"5567075f87625777","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1732764220793,"stop":1732764220793,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"5567075f87625777.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3ade822e686b250.json b/allure-report/data/test-cases/55719c1a41a634a4.json similarity index 84% rename from allure-report/data/test-cases/b3ade822e686b250.json rename to allure-report/data/test-cases/55719c1a41a634a4.json index a35c7b7b266..ebb80d4363f 100644 --- a/allure-report/data/test-cases/b3ade822e686b250.json +++ b/allure-report/data/test-cases/55719c1a41a634a4.json @@ -1 +1 @@ -{"uid":"b3ade822e686b250","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b3ade822e686b250.json","parameterValues":[]} \ No newline at end of file +{"uid":"55719c1a41a634a4","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6e173d8e5ff615be.json b/allure-report/data/test-cases/559abc951e1b2adf.json similarity index 80% rename from allure-report/data/test-cases/6e173d8e5ff615be.json rename to allure-report/data/test-cases/559abc951e1b2adf.json index 8c0cc96950b..68855d5cf70 100644 --- a/allure-report/data/test-cases/6e173d8e5ff615be.json +++ b/allure-report/data/test-cases/559abc951e1b2adf.json @@ -1 +1 @@ -{"uid":"6e173d8e5ff615be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732428196208,"stop":1732428196208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"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.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6e173d8e5ff615be.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1732428196208,"stop":1732428196208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1732428196209,"stop":1732428196209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1732428196209,"stop":1732428196209,"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_GoalsTestCase::0","time":{"start":1732428196209,"stop":1732428196209,"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":"story","value":"Messi goals function"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"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.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"559abc951e1b2adf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63ea9545d8dcd43f.json b/allure-report/data/test-cases/55bf5f341a824ad0.json similarity index 56% rename from allure-report/data/test-cases/63ea9545d8dcd43f.json rename to allure-report/data/test-cases/55bf5f341a824ad0.json index 7c5e48cab91..58685971e34 100644 --- a/allure-report/data/test-cases/63ea9545d8dcd43f.json +++ b/allure-report/data/test-cases/55bf5f341a824ad0.json @@ -1 +1 @@ -{"uid":"63ea9545d8dcd43f","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":1732764221337,"stop":1732764221337,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"20301c2d6922300e","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0}},{"uid":"3b252f71e94d60c3","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"b9bf67d4df9c3970","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"63ea9545d8dcd43f.json","parameterValues":[]} \ No newline at end of file +{"uid":"55bf5f341a824ad0","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":1732764221337,"stop":1732764221337,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"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 wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"55bf5f341a824ad0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5647d5db4078d707.json b/allure-report/data/test-cases/5647d5db4078d707.json new file mode 100644 index 00000000000..ee099979e84 --- /dev/null +++ b/allure-report/data/test-cases/5647d5db4078d707.json @@ -0,0 +1 @@ +{"uid":"5647d5db4078d707","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":1733030100882,"stop":1733030100882,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1733030100882,"stop":1733030100882,"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_TwoDecimalPlacesTestCase::0","time":{"start":1733030100882,"stop":1733030100882,"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":"NUMBERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Formatting"},{"name":"story","value":"Formatting decimal places #0"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab2861d9bed3765e","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0}},{"uid":"17e173f94ae42aac","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1}},{"uid":"59b3d14f4d280871","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"feb720678835be31","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5647d5db4078d707.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/564bcc936cf15d1a.json b/allure-report/data/test-cases/564bcc936cf15d1a.json new file mode 100644 index 00000000000..f065c0380fd --- /dev/null +++ b/allure-report/data/test-cases/564bcc936cf15d1a.json @@ -0,0 +1 @@ +{"uid":"564bcc936cf15d1a","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1733030100945,"stop":1733030100945,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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_IsPalindromeTestCase::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":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"86de6e64454fca19","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0}},{"uid":"f41e10c3a1cb906c","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0}},{"uid":"592d9cd2b7f473ab","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"e184ca1912266ffb","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":"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}}]},"tags":["FUNDAMENTALS"]},"source":"564bcc936cf15d1a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e4416fd32f6992f.json b/allure-report/data/test-cases/56a70ac6c19b5c2a.json similarity index 67% rename from allure-report/data/test-cases/5e4416fd32f6992f.json rename to allure-report/data/test-cases/56a70ac6c19b5c2a.json index cbb9574a430..177dd23d281 100644 --- a/allure-report/data/test-cases/5e4416fd32f6992f.json +++ b/allure-report/data/test-cases/56a70ac6c19b5c2a.json @@ -1 +1 @@ -{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732764218599,"stop":1732764218599,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b904804aa9a6e53","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0}},{"uid":"c91f2e2d1c4e5a72","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"2483ff464fe4ea07","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"5e4416fd32f6992f.json","parameterValues":[]} \ No newline at end of file +{"uid":"56a70ac6c19b5c2a","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4d8c29fe45d13f2d.json b/allure-report/data/test-cases/56d0c429ca5615e0.json similarity index 67% rename from allure-report/data/test-cases/4d8c29fe45d13f2d.json rename to allure-report/data/test-cases/56d0c429ca5615e0.json index 10e3e9a69e1..09706511585 100644 --- a/allure-report/data/test-cases/4d8c29fe45d13f2d.json +++ b/allure-report/data/test-cases/56d0c429ca5615e0.json @@ -1 +1 @@ -{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1732764220346,"stop":1732764220346,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1732764220350,"stop":1732764220350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Data Structures"},{"name":"story","value":"String transformer"},{"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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"34ca51906297ee6f","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0}},{"uid":"152d6167de0fb37e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"6226ef3ddb316aa7","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"4d8c29fe45d13f2d.json","parameterValues":[]} \ No newline at end of file +{"uid":"56d0c429ca5615e0","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1732764220346,"stop":1732764220346,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220346,"stop":1732764220346,"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_StringTransformerTestCase::0","time":{"start":1732764220350,"stop":1732764220350,"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":"Data Structures"},{"name":"story","value":"String transformer"},{"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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"56d0c429ca5615e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af99dc37dcb7799b.json b/allure-report/data/test-cases/56d273815a84483f.json similarity index 81% rename from allure-report/data/test-cases/af99dc37dcb7799b.json rename to allure-report/data/test-cases/56d273815a84483f.json index 85aba7027ce..00648310d96 100644 --- a/allure-report/data/test-cases/af99dc37dcb7799b.json +++ b/allure-report/data/test-cases/56d273815a84483f.json @@ -1 +1 @@ -{"uid":"af99dc37dcb7799b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6dd9ffa61a5d6299","name":"stdout","source":"6dd9ffa61a5d6299.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"af99dc37dcb7799b.json","parameterValues":[]} \ No newline at end of file +{"uid":"56d273815a84483f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"89e2dbaee5a08a8e","name":"stdout","source":"89e2dbaee5a08a8e.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"56d273815a84483f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8bf0e4ddc17f51c8.json b/allure-report/data/test-cases/57c8e0dc2c8662c2.json similarity index 81% rename from allure-report/data/test-cases/8bf0e4ddc17f51c8.json rename to allure-report/data/test-cases/57c8e0dc2c8662c2.json index 136ec9c9064..c3429171c07 100644 --- a/allure-report/data/test-cases/8bf0e4ddc17f51c8.json +++ b/allure-report/data/test-cases/57c8e0dc2c8662c2.json @@ -1 +1 @@ -{"uid":"8bf0e4ddc17f51c8","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"780df00dc666cbbd","name":"stdout","source":"780df00dc666cbbd.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"8bf0e4ddc17f51c8.json","parameterValues":[]} \ No newline at end of file +{"uid":"57c8e0dc2c8662c2","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724735127516,"stop":1724735127516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"74fd4cb3a0d16df5","name":"stdout","source":"74fd4cb3a0d16df5.txt","type":"text/plain","size":354}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1724735127516,"stop":1724735127516,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"57c8e0dc2c8662c2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85613c3b6c6421c4.json b/allure-report/data/test-cases/57eb8463acc316b7.json similarity index 77% rename from allure-report/data/test-cases/85613c3b6c6421c4.json rename to allure-report/data/test-cases/57eb8463acc316b7.json index 66c49ce5da2..01844c080f8 100644 --- a/allure-report/data/test-cases/85613c3b6c6421c4.json +++ b/allure-report/data/test-cases/57eb8463acc316b7.json @@ -1 +1 @@ -{"uid":"85613c3b6c6421c4","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":1732428195473,"stop":1732428195473,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"85613c3b6c6421c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"57eb8463acc316b7","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":1732428195473,"stop":1732428195473,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1732428195473,"stop":1732428195473,"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_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"57eb8463acc316b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ff3f93ff1ffe8b3.json b/allure-report/data/test-cases/57fc1349073137a7.json similarity index 61% rename from allure-report/data/test-cases/5ff3f93ff1ffe8b3.json rename to allure-report/data/test-cases/57fc1349073137a7.json index 3adf6e96125..911df23a243 100644 --- a/allure-report/data/test-cases/5ff3f93ff1ffe8b3.json +++ b/allure-report/data/test-cases/57fc1349073137a7.json @@ -1 +1 @@ -{"uid":"5ff3f93ff1ffe8b3","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":1732764220321,"stop":1732764220321,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220323,"stop":1732764220323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"70008c90c6552144","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0}},{"uid":"142b0c4f3754d996","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"76614b580d9bd7f8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5ff3f93ff1ffe8b3.json","parameterValues":[]} \ No newline at end of file +{"uid":"57fc1349073137a7","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":1732764220321,"stop":1732764220321,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220321,"stop":1732764220321,"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_HasSubpatternTestCase::0","time":{"start":1732764220323,"stop":1732764220323,"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":"story","value":"String subpattern recognition I"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"57fc1349073137a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5814d63d4b392228.json b/allure-report/data/test-cases/5814d63d4b392228.json new file mode 100644 index 00000000000..e5c62bd0dd8 --- /dev/null +++ b/allure-report/data/test-cases/5814d63d4b392228.json @@ -0,0 +1 @@ +{"uid":"5814d63d4b392228","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1733030101086,"stop":1733030101086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1733030101086,"stop":1733030101086,"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_MoveTestCase::0","time":{"start":1733030101086,"stop":1733030101086,"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":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9823bb7abc34f758","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1}},{"uid":"d7c080fc06195b6c","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0}},{"uid":"c1f0d1467179d957","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"ee6c548e8326102a","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"5814d63d4b392228.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5880c730022f01ee.json b/allure-report/data/test-cases/5880c730022f01ee.json new file mode 100644 index 00000000000..f00cbac4c4c --- /dev/null +++ b/allure-report/data/test-cases/5880c730022f01ee.json @@ -0,0 +1 @@ +{"uid":"5880c730022f01ee","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1733030100820,"stop":1733030100820,"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_MonkeyCountTestCase::0","time":{"start":1733030100820,"stop":1733030100820,"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":"RANGES"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"LISTS"},{"name":"feature","value":"Lists"},{"name":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"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.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7f28ecea13e4e886","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0}},{"uid":"611d558a953db4dc","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0}},{"uid":"1e414e40d5aadc94","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"88501d2467af647f","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"5880c730022f01ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8de14a6ed49ac6d.json b/allure-report/data/test-cases/592d9cd2b7f473ab.json similarity index 80% rename from allure-report/data/test-cases/c8de14a6ed49ac6d.json rename to allure-report/data/test-cases/592d9cd2b7f473ab.json index e7d6ab19a00..28faba0d83e 100644 --- a/allure-report/data/test-cases/c8de14a6ed49ac6d.json +++ b/allure-report/data/test-cases/592d9cd2b7f473ab.json @@ -1 +1 @@ -{"uid":"c8de14a6ed49ac6d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73fc8f8784290b40","name":"stdout","source":"73fc8f8784290b40.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c8de14a6ed49ac6d.json","parameterValues":[]} \ No newline at end of file +{"uid":"592d9cd2b7f473ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":[{"uid":"d857b907a04662b0","name":"stdout","source":"d857b907a04662b0.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::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":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"592d9cd2b7f473ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5956e80e98375be.json b/allure-report/data/test-cases/5956e80e98375be.json deleted file mode 100644 index 1da5e08a424..00000000000 --- a/allure-report/data/test-cases/5956e80e98375be.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5956e80e98375be","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"250e2e008fa1f7b7","name":"stdout","source":"250e2e008fa1f7b7.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5956e80e98375be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c20970878e009fc6.json b/allure-report/data/test-cases/59b3d14f4d280871.json similarity index 50% rename from allure-report/data/test-cases/c20970878e009fc6.json rename to allure-report/data/test-cases/59b3d14f4d280871.json index 233eb49c0eb..5f6ad948512 100644 --- a/allure-report/data/test-cases/c20970878e009fc6.json +++ b/allure-report/data/test-cases/59b3d14f4d280871.json @@ -1 +1 @@ -{"uid":"c20970878e009fc6","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7b12ebc1ff02117","name":"stdout","source":"7b12ebc1ff02117.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c20970878e009fc6.json","parameterValues":[]} \ No newline at end of file +{"uid":"59b3d14f4d280871","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":1724735129477,"stop":1724735129477,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d548d3f08000ee3d","name":"stdout","source":"d548d3f08000ee3d.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129477,"stop":1724735129477,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Formatting decimal places #0"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"suite","value":"Data Structures"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"59b3d14f4d280871.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59cf1cc1a5cff79.json b/allure-report/data/test-cases/59cf1cc1a5cff79.json new file mode 100644 index 00000000000..3b51f90e30b --- /dev/null +++ b/allure-report/data/test-cases/59cf1cc1a5cff79.json @@ -0,0 +1 @@ +{"uid":"59cf1cc1a5cff79","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"261dd410d8763d0c","name":"stdout","source":"261dd410d8763d0c.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59cf1cc1a5cff79.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6dea82ce819c148.json b/allure-report/data/test-cases/59d6a997f5b4aca5.json similarity index 77% rename from allure-report/data/test-cases/f6dea82ce819c148.json rename to allure-report/data/test-cases/59d6a997f5b4aca5.json index 43376fd6395..ab0ed1f27f2 100644 --- a/allure-report/data/test-cases/f6dea82ce819c148.json +++ b/allure-report/data/test-cases/59d6a997f5b4aca5.json @@ -1 +1 @@ -{"uid":"f6dea82ce819c148","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"51739cb22fa4b9dd","name":"stdout","source":"51739cb22fa4b9dd.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f6dea82ce819c148.json","parameterValues":[]} \ No newline at end of file +{"uid":"59d6a997f5b4aca5","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2c7af88777002151.json b/allure-report/data/test-cases/5a12cd507dfc239d.json similarity index 80% rename from allure-report/data/test-cases/2c7af88777002151.json rename to allure-report/data/test-cases/5a12cd507dfc239d.json index 70cc3b8be7a..235bcc42d4d 100644 --- a/allure-report/data/test-cases/2c7af88777002151.json +++ b/allure-report/data/test-cases/5a12cd507dfc239d.json @@ -1 +1 @@ -{"uid":"2c7af88777002151","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d10d4fe51ef67a7e","name":"stdout","source":"d10d4fe51ef67a7e.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2c7af88777002151.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b6c652a922a26947","name":"stdout","source":"b6c652a922a26947.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"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":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5a12cd507dfc239d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c94325f55b8b56c.json b/allure-report/data/test-cases/5a1dd57eb64fa0aa.json similarity index 80% rename from allure-report/data/test-cases/6c94325f55b8b56c.json rename to allure-report/data/test-cases/5a1dd57eb64fa0aa.json index ad6c6705e4f..9ceacb47ac5 100644 --- a/allure-report/data/test-cases/6c94325f55b8b56c.json +++ b/allure-report/data/test-cases/5a1dd57eb64fa0aa.json @@ -1 +1 @@ -{"uid":"6c94325f55b8b56c","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":1732428196430,"stop":1732428196430,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"6c94325f55b8b56c.json","parameterValues":[]} \ No newline at end of file +{"uid":"5a1dd57eb64fa0aa","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":1732428196430,"stop":1732428196430,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732428196430,"stop":1732428196430,"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_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"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":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"5a1dd57eb64fa0aa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a5d0954bb249b69.json b/allure-report/data/test-cases/5a5d0954bb249b69.json new file mode 100644 index 00000000000..935d136dd27 --- /dev/null +++ b/allure-report/data/test-cases/5a5d0954bb249b69.json @@ -0,0 +1 @@ +{"uid":"5a5d0954bb249b69","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1733030098708,"stop":1733030098708,"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', 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/1b95adcea61e4ef5.json b/allure-report/data/test-cases/5a6f2f90ae14c26f.json similarity index 81% rename from allure-report/data/test-cases/1b95adcea61e4ef5.json rename to allure-report/data/test-cases/5a6f2f90ae14c26f.json index 154d20aeb6a..ae4c24a73bd 100644 --- a/allure-report/data/test-cases/1b95adcea61e4ef5.json +++ b/allure-report/data/test-cases/5a6f2f90ae14c26f.json @@ -1 +1 @@ -{"uid":"1b95adcea61e4ef5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1b95adcea61e4ef5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724735129211,"stop":1724735129211,"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_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5a6f2f90ae14c26f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a88d917682070e.json b/allure-report/data/test-cases/5a88d917682070e.json deleted file mode 100644 index f03c580bbe8..00000000000 --- a/allure-report/data/test-cases/5a88d917682070e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5a88d917682070e","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1732428195517,"stop":1732428195517,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1732428195520,"stop":1732428195520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/586d6cefbcc21eed7a001155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"5a88d917682070e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7312d30334dcfc0d.json b/allure-report/data/test-cases/5aa15cdd34cdd72f.json similarity index 83% rename from allure-report/data/test-cases/7312d30334dcfc0d.json rename to allure-report/data/test-cases/5aa15cdd34cdd72f.json index c277479c3bd..6bb72e13025 100644 --- a/allure-report/data/test-cases/7312d30334dcfc0d.json +++ b/allure-report/data/test-cases/5aa15cdd34cdd72f.json @@ -1 +1 @@ -{"uid":"7312d30334dcfc0d","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50fb258de88c9004","name":"stdout","source":"50fb258de88c9004.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7312d30334dcfc0d.json","parameterValues":[]} \ No newline at end of file +{"uid":"5aa15cdd34cdd72f","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cb41782d94c9aab7","name":"stdout","source":"cb41782d94c9aab7.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724733474147,"stop":1724733474147,"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":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5aa15cdd34cdd72f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/330a0128cd73780c.json b/allure-report/data/test-cases/5ac2db6b2e80def2.json similarity index 79% rename from allure-report/data/test-cases/330a0128cd73780c.json rename to allure-report/data/test-cases/5ac2db6b2e80def2.json index fd135b288ce..2a59f3b3c2b 100644 --- a/allure-report/data/test-cases/330a0128cd73780c.json +++ b/allure-report/data/test-cases/5ac2db6b2e80def2.json @@ -1 +1 @@ -{"uid":"330a0128cd73780c","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41608c9ef684cb1e","name":"stdout","source":"41608c9ef684cb1e.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"330a0128cd73780c.json","parameterValues":[]} \ No newline at end of file +{"uid":"5ac2db6b2e80def2","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":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e245408b463a8838","name":"stdout","source":"e245408b463a8838.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5ac2db6b2e80def2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ac65e8dc17d86a.json b/allure-report/data/test-cases/5ac65e8dc17d86a.json new file mode 100644 index 00000000000..983e31b55b4 --- /dev/null +++ b/allure-report/data/test-cases/5ac65e8dc17d86a.json @@ -0,0 +1 @@ +{"uid":"5ac65e8dc17d86a","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1733030100976,"stop":1733030100976,"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_KeepHydratedTestCase::0","time":{"start":1733030100976,"stop":1733030100976,"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":"feature","value":"Calculation"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19ea1d35de320e7d","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0}},{"uid":"99e1739d168a007c","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0}},{"uid":"c7a57b49fa57ab27","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"b8f26140fdddc630","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5ac65e8dc17d86a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5af3592e93b232bc.json b/allure-report/data/test-cases/5af3592e93b232bc.json new file mode 100644 index 00000000000..b1429683e30 --- /dev/null +++ b/allure-report/data/test-cases/5af3592e93b232bc.json @@ -0,0 +1 @@ +{"uid":"5af3592e93b232bc","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1733030100575,"stop":1733030100575,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1733030100575,"stop":1733030100575,"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_SentencifyTestCase::0","time":{"start":1733030100575,"stop":1733030100575,"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":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FORMATTING"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9c0a9198a3e1b18","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0}},{"uid":"3ed2084bc0b6f03d","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0}},{"uid":"809e3691a3f26473","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"ee166a73f40d3c20","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FORMATTING","STRINGS","ALGORITHMS"]},"source":"5af3592e93b232bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5815fdb3e38780e6.json b/allure-report/data/test-cases/5b0d83830c13fe88.json similarity index 82% rename from allure-report/data/test-cases/5815fdb3e38780e6.json rename to allure-report/data/test-cases/5b0d83830c13fe88.json index 8b8a2ae7b8e..d0fe7e58535 100644 --- a/allure-report/data/test-cases/5815fdb3e38780e6.json +++ b/allure-report/data/test-cases/5b0d83830c13fe88.json @@ -1 +1 @@ -{"uid":"5815fdb3e38780e6","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea9613cb4c662f2e","name":"stdout","source":"ea9613cb4c662f2e.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5815fdb3e38780e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"5b0d83830c13fe88","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":1724733474444,"stop":1724733474444,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1731dec9bd704732","name":"stdout","source":"1731dec9bd704732.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"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":"7 kyu"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b0d83830c13fe88.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b36ed636679609b.json b/allure-report/data/test-cases/5b36ed636679609b.json new file mode 100644 index 00000000000..65d28804b3d --- /dev/null +++ b/allure-report/data/test-cases/5b36ed636679609b.json @@ -0,0 +1 @@ +{"uid":"5b36ed636679609b","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1733030100773,"stop":1733030100773,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19edf49636f3f12c","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0}},{"uid":"67ecde96f288a7b2","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0}},{"uid":"9e10b0087e5b64c","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"e50290ceef277be1","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"5b36ed636679609b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b5df6c66b23ba75.json b/allure-report/data/test-cases/5b5df6c66b23ba75.json new file mode 100644 index 00000000000..87a7cdf88a3 --- /dev/null +++ b/allure-report/data/test-cases/5b5df6c66b23ba75.json @@ -0,0 +1 @@ +{"uid":"5b5df6c66b23ba75","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/34931ad2bd045d0c.json b/allure-report/data/test-cases/5b87063c55d646fa.json similarity index 76% rename from allure-report/data/test-cases/34931ad2bd045d0c.json rename to allure-report/data/test-cases/5b87063c55d646fa.json index 0c2357f35d4..c864b9e4e16 100644 --- a/allure-report/data/test-cases/34931ad2bd045d0c.json +++ b/allure-report/data/test-cases/5b87063c55d646fa.json @@ -1 +1 @@ -{"uid":"34931ad2bd045d0c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a7e83a8939aa3ea","name":"stdout","source":"2a7e83a8939aa3ea.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"34931ad2bd045d0c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfefef663b0332e5","name":"stdout","source":"cfefef663b0332e5.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b87063c55d646fa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebad1371009d2223.json b/allure-report/data/test-cases/5ba553d4084ace90.json similarity index 57% rename from allure-report/data/test-cases/ebad1371009d2223.json rename to allure-report/data/test-cases/5ba553d4084ace90.json index 38aa7086cce..5275110f777 100644 --- a/allure-report/data/test-cases/ebad1371009d2223.json +++ b/allure-report/data/test-cases/5ba553d4084ace90.json @@ -1 +1 @@ -{"uid":"ebad1371009d2223","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":1732764220243,"stop":1732764220243,"duration":0},"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c4f63c652fed664c","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0}},{"uid":"d1233b1a931bee1a","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"b9f8e7d93793c0ea","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ebad1371009d2223.json","parameterValues":[]} \ No newline at end of file +{"uid":"5ba553d4084ace90","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":1732764220243,"stop":1732764220243,"duration":0},"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732764220243,"stop":1732764220243,"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_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"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":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5ba553d4084ace90.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f41894781b470ee.json b/allure-report/data/test-cases/5ba85cabbe7e4e64.json similarity index 79% rename from allure-report/data/test-cases/9f41894781b470ee.json rename to allure-report/data/test-cases/5ba85cabbe7e4e64.json index 22a07b03be2..1acf0e57dc2 100644 --- a/allure-report/data/test-cases/9f41894781b470ee.json +++ b/allure-report/data/test-cases/5ba85cabbe7e4e64.json @@ -1 +1 @@ -{"uid":"9f41894781b470ee","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f135592d4f270e5c","name":"stdout","source":"f135592d4f270e5c.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9f41894781b470ee.json","parameterValues":[]} \ No newline at end of file +{"uid":"5ba85cabbe7e4e64","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724733472358,"stop":1724733472358,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a4637a157e542cb8.json b/allure-report/data/test-cases/5bbc7cd8e2683c41.json similarity index 71% rename from allure-report/data/test-cases/a4637a157e542cb8.json rename to allure-report/data/test-cases/5bbc7cd8e2683c41.json index 9526abb730e..29b52ab2c4b 100644 --- a/allure-report/data/test-cases/a4637a157e542cb8.json +++ b/allure-report/data/test-cases/5bbc7cd8e2683c41.json @@ -1 +1 @@ -{"uid":"a4637a157e542cb8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38a8ba45b2ebefd2","name":"stdout","source":"38a8ba45b2ebefd2.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a4637a157e542cb8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3e8b5194a02b840","name":"stdout","source":"e3e8b5194a02b840.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724733474413,"stop":1724733474413,"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":"Share prices"},{"name":"epic","value":"7 kyu"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5bbc7cd8e2683c41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bee7e36f6e76857.json b/allure-report/data/test-cases/5bee7e36f6e76857.json new file mode 100644 index 00000000000..8fd2611ee3a --- /dev/null +++ b/allure-report/data/test-cases/5bee7e36f6e76857.json @@ -0,0 +1 @@ +{"uid":"5bee7e36f6e76857","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":1733030099317,"stop":1733030099317,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1733030099317,"stop":1733030099317,"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_LetterFrequencyTestCase::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":"tag","value":"UTILITIES"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"38a864ebd2e42623","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1}},{"uid":"9fb9fb1a0489c1a3","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0}},{"uid":"f7ab664600a360e4","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"f5f644a4f4820d20","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"5bee7e36f6e76857.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c0380ec075dfe06.json b/allure-report/data/test-cases/5c0380ec075dfe06.json deleted file mode 100644 index c98b1b722a5..00000000000 --- a/allure-report/data/test-cases/5c0380ec075dfe06.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5c0380ec075dfe06","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"5c0380ec075dfe06.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c10fb0178a326f0a.json b/allure-report/data/test-cases/5c8e94c26f7e775d.json similarity index 79% rename from allure-report/data/test-cases/c10fb0178a326f0a.json rename to allure-report/data/test-cases/5c8e94c26f7e775d.json index 7fac6e1a55e..7ba37338f9b 100644 --- a/allure-report/data/test-cases/c10fb0178a326f0a.json +++ b/allure-report/data/test-cases/5c8e94c26f7e775d.json @@ -1 +1 @@ -{"uid":"c10fb0178a326f0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e567229f9ee12b7","name":"stdout","source":"9e567229f9ee12b7.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"c10fb0178a326f0a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"68019be75248ce7a","name":"stdout","source":"68019be75248ce7a.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"5c8e94c26f7e775d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5cb1c27a6629db87.json b/allure-report/data/test-cases/5cb1c27a6629db87.json new file mode 100644 index 00000000000..44f8546de17 --- /dev/null +++ b/allure-report/data/test-cases/5cb1c27a6629db87.json @@ -0,0 +1 @@ +{"uid":"5cb1c27a6629db87","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":1724735128930,"stop":1724735128930,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"14b7835dfcf5573","name":"stdout","source":"14b7835dfcf5573.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition I"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5cb1c27a6629db87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f1df83d6cc10b66.json b/allure-report/data/test-cases/5cbc168dcad54c45.json similarity index 68% rename from allure-report/data/test-cases/1f1df83d6cc10b66.json rename to allure-report/data/test-cases/5cbc168dcad54c45.json index 0904a500cea..7cb0c325227 100644 --- a/allure-report/data/test-cases/1f1df83d6cc10b66.json +++ b/allure-report/data/test-cases/5cbc168dcad54c45.json @@ -1 +1 @@ -{"uid":"1f1df83d6cc10b66","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":1732764221169,"stop":1732764221169,"duration":0},"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7d9041670997ad6","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0}},{"uid":"5c657b72ebb12427","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"a0013817978e9f1b","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1f1df83d6cc10b66.json","parameterValues":[]} \ No newline at end of file +{"uid":"5cbc168dcad54c45","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":1732764221169,"stop":1732764221169,"duration":0},"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5cbf19148d05755c.json b/allure-report/data/test-cases/5cbf19148d05755c.json deleted file mode 100644 index d4400e246d0..00000000000 --- a/allure-report/data/test-cases/5cbf19148d05755c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5cbf19148d05755c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732428196346,"stop":1732428196346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Remove First and Last Character"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"5cbf19148d05755c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1447fd680942c58.json b/allure-report/data/test-cases/5cc568bcbc2453dc.json similarity index 85% rename from allure-report/data/test-cases/c1447fd680942c58.json rename to allure-report/data/test-cases/5cc568bcbc2453dc.json index 8880cd2eedb..b10d739eb63 100644 --- a/allure-report/data/test-cases/c1447fd680942c58.json +++ b/allure-report/data/test-cases/5cc568bcbc2453dc.json @@ -1 +1 @@ -{"uid":"c1447fd680942c58","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732428195819,"stop":1732428195819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c1447fd680942c58.json","parameterValues":[]} \ No newline at end of file +{"uid":"5cc568bcbc2453dc","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732428195817,"stop":1732428195817,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732428195817,"stop":1732428195817,"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_GapTestCase::0","time":{"start":1732428195819,"stop":1732428195819,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"5cc568bcbc2453dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f0995b9351caed2.json b/allure-report/data/test-cases/5cda4840465073d5.json similarity index 73% rename from allure-report/data/test-cases/7f0995b9351caed2.json rename to allure-report/data/test-cases/5cda4840465073d5.json index 8e8946c7c07..0e5ebb8bd21 100644 --- a/allure-report/data/test-cases/7f0995b9351caed2.json +++ b/allure-report/data/test-cases/5cda4840465073d5.json @@ -1 +1 @@ -{"uid":"7f0995b9351caed2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a3b3cc61f9d4e36a","name":"stdout","source":"a3b3cc61f9d4e36a.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7f0995b9351caed2.json","parameterValues":[]} \ No newline at end of file +{"uid":"5cda4840465073d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc4cfb2dc7db30af","name":"stdout","source":"cc4cfb2dc7db30af.txt","type":"text/plain","size":1195}],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1724735129289,"stop":1724735129289,"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":"Sum of powers of 2"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5cda4840465073d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46eea1e10beb3240.json b/allure-report/data/test-cases/5d6b33acb65bb93f.json similarity index 61% rename from allure-report/data/test-cases/46eea1e10beb3240.json rename to allure-report/data/test-cases/5d6b33acb65bb93f.json index 7510d39aad0..874d3384349 100644 --- a/allure-report/data/test-cases/46eea1e10beb3240.json +++ b/allure-report/data/test-cases/5d6b33acb65bb93f.json @@ -1 +1 @@ -{"uid":"46eea1e10beb3240","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":1732764220443,"stop":1732764220443,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5703befafee18856","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1}},{"uid":"c5bfa9ec903b7b32","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"2ba00773a1bfae2e","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"46eea1e10beb3240.json","parameterValues":[]} \ No newline at end of file +{"uid":"5d6b33acb65bb93f","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":1732764220443,"stop":1732764220443,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220443,"stop":1732764220443,"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_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5d6b33acb65bb93f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f2bbc07480f42a4.json b/allure-report/data/test-cases/5da43d3a303ec46a.json similarity index 78% rename from allure-report/data/test-cases/4f2bbc07480f42a4.json rename to allure-report/data/test-cases/5da43d3a303ec46a.json index 373efda6715..e7031e1c6f6 100644 --- a/allure-report/data/test-cases/4f2bbc07480f42a4.json +++ b/allure-report/data/test-cases/5da43d3a303ec46a.json @@ -1 +1 @@ -{"uid":"4f2bbc07480f42a4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38545087bdeef541","name":"stdout","source":"38545087bdeef541.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f2bbc07480f42a4.json","parameterValues":[]} \ No newline at end of file +{"uid":"5da43d3a303ec46a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a21d8bb488556a6f","name":"stdout","source":"a21d8bb488556a6f.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5da43d3a303ec46a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ddbb977ec343693.json b/allure-report/data/test-cases/5ddbb977ec343693.json new file mode 100644 index 00000000000..b0d0cca187d --- /dev/null +++ b/allure-report/data/test-cases/5ddbb977ec343693.json @@ -0,0 +1 @@ +{"uid":"5ddbb977ec343693","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1724735129367,"stop":1724735129367,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"5ddbb977ec343693.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed242b4479970e98.json b/allure-report/data/test-cases/5e446730ae629c6c.json similarity index 81% rename from allure-report/data/test-cases/ed242b4479970e98.json rename to allure-report/data/test-cases/5e446730ae629c6c.json index 430c2ac8fcf..d369a22574b 100644 --- a/allure-report/data/test-cases/ed242b4479970e98.json +++ b/allure-report/data/test-cases/5e446730ae629c6c.json @@ -1 +1 @@ -{"uid":"ed242b4479970e98","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"ed242b4479970e98.json","parameterValues":[]} \ No newline at end of file +{"uid":"5e446730ae629c6c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"5e446730ae629c6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc076040e5481dc9.json b/allure-report/data/test-cases/5e72598a5c064723.json similarity index 65% rename from allure-report/data/test-cases/dc076040e5481dc9.json rename to allure-report/data/test-cases/5e72598a5c064723.json index ef11a514bb0..b7da3d65696 100644 --- a/allure-report/data/test-cases/dc076040e5481dc9.json +++ b/allure-report/data/test-cases/5e72598a5c064723.json @@ -1 +1 @@ -{"uid":"dc076040e5481dc9","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219175,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219175,"stop":1732764219175,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732764219176,"stop":1732764219176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS PARSING"},{"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":"story","value":"String incrementer"},{"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_5.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"965e1d563752b7d3","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0}},{"uid":"a6f428498c7694b0","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"117e19024dff1cfd","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"dc076040e5481dc9.json","parameterValues":[]} \ No newline at end of file +{"uid":"5e72598a5c064723","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732764219174,"stop":1732764219174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219174,"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":1732764219174,"stop":1732764219175,"duration":1},"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":1732764219175,"stop":1732764219175,"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_StringIncrementerTestCase::0","time":{"start":1732764219176,"stop":1732764219176,"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":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS PARSING"},{"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":"story","value":"String incrementer"},{"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_5.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"5e72598a5c064723.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f507fecee61d3d94.json b/allure-report/data/test-cases/5ef563c60f1007ea.json similarity index 85% rename from allure-report/data/test-cases/f507fecee61d3d94.json rename to allure-report/data/test-cases/5ef563c60f1007ea.json index 908f0de3265..5e04f55c049 100644 --- a/allure-report/data/test-cases/f507fecee61d3d94.json +++ b/allure-report/data/test-cases/5ef563c60f1007ea.json @@ -1 +1 @@ -{"uid":"f507fecee61d3d94","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"67853a4b20ca2cdb","name":"stdout","source":"67853a4b20ca2cdb.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f507fecee61d3d94.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"10ab1851bf24b8d6","name":"stdout","source":"10ab1851bf24b8d6.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"5ef563c60f1007ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4a6083b6c2f5cc4b.json b/allure-report/data/test-cases/5f01b1bb86ec5e4a.json similarity index 55% rename from allure-report/data/test-cases/4a6083b6c2f5cc4b.json rename to allure-report/data/test-cases/5f01b1bb86ec5e4a.json index 34f9a0722da..fef311240ed 100644 --- a/allure-report/data/test-cases/4a6083b6c2f5cc4b.json +++ b/allure-report/data/test-cases/5f01b1bb86ec5e4a.json @@ -1 +1 @@ -{"uid":"4a6083b6c2f5cc4b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4a6083b6c2f5cc4b.json","parameterValues":[]} \ No newline at end of file +{"uid":"5f01b1bb86ec5e4a","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":1732764220284,"stop":1732764220287,"duration":3},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/86173a2048ae1d24.json b/allure-report/data/test-cases/5f37f1e35250223f.json similarity index 81% rename from allure-report/data/test-cases/86173a2048ae1d24.json rename to allure-report/data/test-cases/5f37f1e35250223f.json index 5e30f29cef1..1a87275476d 100644 --- a/allure-report/data/test-cases/86173a2048ae1d24.json +++ b/allure-report/data/test-cases/5f37f1e35250223f.json @@ -1 +1 @@ -{"uid":"86173a2048ae1d24","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fba7e6f7e7538915","name":"stdout","source":"fba7e6f7e7538915.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"86173a2048ae1d24.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d1bc6da1a117f865.json b/allure-report/data/test-cases/5f3a50fbe3f45101.json similarity index 60% rename from allure-report/data/test-cases/d1bc6da1a117f865.json rename to allure-report/data/test-cases/5f3a50fbe3f45101.json index 67f9db0756d..47bd3d7937d 100644 --- a/allure-report/data/test-cases/d1bc6da1a117f865.json +++ b/allure-report/data/test-cases/5f3a50fbe3f45101.json @@ -1 +1 @@ -{"uid":"d1bc6da1a117f865","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732764219379,"stop":1732764219379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f30d62828063f744","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0}},{"uid":"6f9dcb0c09ae9f13","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"fa69c95248558058","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"d1bc6da1a117f865.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219378,"stop":1732764219378,"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_DuplicateEncodeTestCase::0","time":{"start":1732764219379,"stop":1732764219379,"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":"story","value":"Duplicate Encoder"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"5f3a50fbe3f45101.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46ad98eaed470ea7.json b/allure-report/data/test-cases/5f7165cd602afcbf.json similarity index 78% rename from allure-report/data/test-cases/46ad98eaed470ea7.json rename to allure-report/data/test-cases/5f7165cd602afcbf.json index 522266d6bec..2b8bd9e9fb7 100644 --- a/allure-report/data/test-cases/46ad98eaed470ea7.json +++ b/allure-report/data/test-cases/5f7165cd602afcbf.json @@ -1 +1 @@ -{"uid":"46ad98eaed470ea7","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"46ad98eaed470ea7.json","parameterValues":[]} \ No newline at end of file +{"uid":"5f7165cd602afcbf","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195953,"stop":1732428195953,"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_NumberOfSigFigsTestCase::0","time":{"start":1732428195955,"stop":1732428195955,"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":"Significant Figures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"5fb0fdc1cb454fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ff9cf70b259ca21.json b/allure-report/data/test-cases/5ff9cf70b259ca21.json new file mode 100644 index 00000000000..44007e00a2e --- /dev/null +++ b/allure-report/data/test-cases/5ff9cf70b259ca21.json @@ -0,0 +1 @@ +{"uid":"5ff9cf70b259ca21","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/50b7ff1fe714521a.json b/allure-report/data/test-cases/5ffc12c38a719895.json similarity index 84% rename from allure-report/data/test-cases/50b7ff1fe714521a.json rename to allure-report/data/test-cases/5ffc12c38a719895.json index 36a53cdb8b8..40e8a526361 100644 --- a/allure-report/data/test-cases/50b7ff1fe714521a.json +++ b/allure-report/data/test-cases/5ffc12c38a719895.json @@ -1 +1 @@ -{"uid":"50b7ff1fe714521a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732428194276,"stop":1732428194276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732428194278,"stop":1732428194278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"50b7ff1fe714521a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732428194276,"stop":1732428194276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732428194277,"stop":1732428194277,"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_FlattenTestCase::0","time":{"start":1732428194278,"stop":1732428194278,"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":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"5ffc12c38a719895.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6650fdbb71631571.json b/allure-report/data/test-cases/600ff9f84893303e.json similarity index 82% rename from allure-report/data/test-cases/6650fdbb71631571.json rename to allure-report/data/test-cases/600ff9f84893303e.json index e20a84079ad..8df797c53aa 100644 --- a/allure-report/data/test-cases/6650fdbb71631571.json +++ b/allure-report/data/test-cases/600ff9f84893303e.json @@ -1 +1 @@ -{"uid":"6650fdbb71631571","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":1732428196017,"stop":1732428196017,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"6650fdbb71631571.json","parameterValues":[]} \ No newline at end of file +{"uid":"600ff9f84893303e","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":1732428196017,"stop":1732428196017,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732428196017,"stop":1732428196017,"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_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"600ff9f84893303e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80d57c86b12a37c4.json b/allure-report/data/test-cases/6044467509892ff0.json similarity index 79% rename from allure-report/data/test-cases/80d57c86b12a37c4.json rename to allure-report/data/test-cases/6044467509892ff0.json index e001e7caf01..7d6d4b6ec19 100644 --- a/allure-report/data/test-cases/80d57c86b12a37c4.json +++ b/allure-report/data/test-cases/6044467509892ff0.json @@ -1 +1 @@ -{"uid":"80d57c86b12a37c4","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":1732428196270,"stop":1732428196270,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"80d57c86b12a37c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"6044467509892ff0","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":1732428196270,"stop":1732428196270,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732428196264,"stop":1732428196264,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732428196270,"stop":1732428196270,"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_PeriodIsLateTestCase::0","time":{"start":1732428196271,"stop":1732428196271,"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":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is your period late"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6044467509892ff0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee3233c4ab89c7ec.json b/allure-report/data/test-cases/6066d349be23d299.json similarity index 93% rename from allure-report/data/test-cases/ee3233c4ab89c7ec.json rename to allure-report/data/test-cases/6066d349be23d299.json index 47f0dabcb48..081caa91384 100644 --- a/allure-report/data/test-cases/ee3233c4ab89c7ec.json +++ b/allure-report/data/test-cases/6066d349be23d299.json @@ -1 +1 @@ -{"uid":"ee3233c4ab89c7ec","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":1724733472327,"stop":1724733472327,"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":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":"ee3233c4ab89c7ec.json","parameterValues":[]} \ No newline at end of file +{"uid":"6066d349be23d299","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":1724733472327,"stop":1724733472327,"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":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/cbe27b4f7111917c.json b/allure-report/data/test-cases/6081ff969f9ea72a.json similarity index 81% rename from allure-report/data/test-cases/cbe27b4f7111917c.json rename to allure-report/data/test-cases/6081ff969f9ea72a.json index 08e397c6828..dcfe3fe11c8 100644 --- a/allure-report/data/test-cases/cbe27b4f7111917c.json +++ b/allure-report/data/test-cases/6081ff969f9ea72a.json @@ -1 +1 @@ -{"uid":"cbe27b4f7111917c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cbe27b4f7111917c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f631ad3e8bb02244.json b/allure-report/data/test-cases/60f76b164a916b4e.json similarity index 84% rename from allure-report/data/test-cases/f631ad3e8bb02244.json rename to allure-report/data/test-cases/60f76b164a916b4e.json index 65a5c9945ba..9b37893fbe9 100644 --- a/allure-report/data/test-cases/f631ad3e8bb02244.json +++ b/allure-report/data/test-cases/60f76b164a916b4e.json @@ -1 +1 @@ -{"uid":"f631ad3e8bb02244","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732428196379,"stop":1732428196379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"feature","value":"Boolean"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"f631ad3e8bb02244.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196377,"stop":1732428196377,"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_SetAlarmTestCase::0","time":{"start":1732428196379,"stop":1732428196379,"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":"feature","value":"Boolean"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"60f76b164a916b4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/479b452abb7b813c.json b/allure-report/data/test-cases/610996d8ca2c99cc.json similarity index 86% rename from allure-report/data/test-cases/479b452abb7b813c.json rename to allure-report/data/test-cases/610996d8ca2c99cc.json index 24223007b0f..a049b38ae72 100644 --- a/allure-report/data/test-cases/479b452abb7b813c.json +++ b/allure-report/data/test-cases/610996d8ca2c99cc.json @@ -1 +1 @@ -{"uid":"479b452abb7b813c","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1732428194544,"stop":1732428194544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Novice"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"479b452abb7b813c.json","parameterValues":[]} \ No newline at end of file +{"uid":"610996d8ca2c99cc","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1732428194543,"stop":1732428194543,"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_AnagramsTestCase::0","time":{"start":1732428194544,"stop":1732428194544,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"610996d8ca2c99cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9e0974c92057e94.json b/allure-report/data/test-cases/611d558a953db4dc.json similarity index 87% rename from allure-report/data/test-cases/d9e0974c92057e94.json rename to allure-report/data/test-cases/611d558a953db4dc.json index 5d15e6bf8db..af2253eda5a 100644 --- a/allure-report/data/test-cases/d9e0974c92057e94.json +++ b/allure-report/data/test-cases/611d558a953db4dc.json @@ -1 +1 @@ -{"uid":"d9e0974c92057e94","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732428196127,"stop":1732428196127,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"LISTS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Count the Monkeys!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RANGES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"d9e0974c92057e94.json","parameterValues":[]} \ No newline at end of file +{"uid":"611d558a953db4dc","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732428196126,"stop":1732428196126,"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_MonkeyCountTestCase::0","time":{"start":1732428196127,"stop":1732428196127,"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":"LISTS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Count the Monkeys!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RANGES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"611d558a953db4dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61355273b18aad8.json b/allure-report/data/test-cases/61355273b18aad8.json new file mode 100644 index 00000000000..5c4e96c0cff --- /dev/null +++ b/allure-report/data/test-cases/61355273b18aad8.json @@ -0,0 +1 @@ +{"uid":"61355273b18aad8","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/61f84f81177cf38b.json b/allure-report/data/test-cases/61b2bb726cd1f52e.json similarity index 92% rename from allure-report/data/test-cases/61f84f81177cf38b.json rename to allure-report/data/test-cases/61b2bb726cd1f52e.json index 8d6b8743dda..6236f6a8dc5 100644 --- a/allure-report/data/test-cases/61f84f81177cf38b.json +++ b/allure-report/data/test-cases/61b2bb726cd1f52e.json @@ -1 +1 @@ -{"uid":"61f84f81177cf38b","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":"61f84f81177cf38b.json","parameterValues":[]} \ No newline at end of file +{"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/e776a97a9aadedfc.json b/allure-report/data/test-cases/61c11f4086f447bf.json similarity index 85% rename from allure-report/data/test-cases/e776a97a9aadedfc.json rename to allure-report/data/test-cases/61c11f4086f447bf.json index 048173dc350..d7d2bfddf85 100644 --- a/allure-report/data/test-cases/e776a97a9aadedfc.json +++ b/allure-report/data/test-cases/61c11f4086f447bf.json @@ -1 +1 @@ -{"uid":"e776a97a9aadedfc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e776a97a9aadedfc.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e53952640c2c9e47.json b/allure-report/data/test-cases/61f607b52c867fb3.json similarity index 67% rename from allure-report/data/test-cases/e53952640c2c9e47.json rename to allure-report/data/test-cases/61f607b52c867fb3.json index 3a5f197b073..75ada8d2478 100644 --- a/allure-report/data/test-cases/e53952640c2c9e47.json +++ b/allure-report/data/test-cases/61f607b52c867fb3.json @@ -1 +1 @@ -{"uid":"e53952640c2c9e47","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f6df3cbfc02e5094","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0}},{"uid":"afe0c9a0972467a3","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"fe040c66880e0b15","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e53952640c2c9e47.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/14c8b0cd48caa4d6.json b/allure-report/data/test-cases/621a25121601fe95.json similarity index 80% rename from allure-report/data/test-cases/14c8b0cd48caa4d6.json rename to allure-report/data/test-cases/621a25121601fe95.json index 0eafee3e8e3..8bebc2033e6 100644 --- a/allure-report/data/test-cases/14c8b0cd48caa4d6.json +++ b/allure-report/data/test-cases/621a25121601fe95.json @@ -1 +1 @@ -{"uid":"14c8b0cd48caa4d6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fcd71aa1ac7b19de","name":"stdout","source":"fcd71aa1ac7b19de.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"14c8b0cd48caa4d6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8672ab2817945b36.json b/allure-report/data/test-cases/62263e93a5cfddb4.json similarity index 63% rename from allure-report/data/test-cases/8672ab2817945b36.json rename to allure-report/data/test-cases/62263e93a5cfddb4.json index 75ec87efca4..24baa19adf5 100644 --- a/allure-report/data/test-cases/8672ab2817945b36.json +++ b/allure-report/data/test-cases/62263e93a5cfddb4.json @@ -1 +1 @@ -{"uid":"8672ab2817945b36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1732764220864,"stop":1732764220864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"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.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1ddf203d8a3c498d","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0}},{"uid":"2d49ce73ea45d7a1","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"a20726936132e0f6","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8672ab2817945b36.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732764220862,"stop":1732764220862,"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_StringToArrayTestCase::0","time":{"start":1732764220864,"stop":1732764220864,"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":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"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.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"62263e93a5cfddb4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e4e59f90ff35603.json b/allure-report/data/test-cases/622aea036e4cf24e.json similarity index 85% rename from allure-report/data/test-cases/1e4e59f90ff35603.json rename to allure-report/data/test-cases/622aea036e4cf24e.json index 6d0c209597b..18891ccac8e 100644 --- a/allure-report/data/test-cases/1e4e59f90ff35603.json +++ b/allure-report/data/test-cases/622aea036e4cf24e.json @@ -1 +1 @@ -{"uid":"1e4e59f90ff35603","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":1732428196138,"stop":1732428196139,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1e4e59f90ff35603.json","parameterValues":[]} \ No newline at end of file +{"uid":"622aea036e4cf24e","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":1732428196138,"stop":1732428196139,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"622aea036e4cf24e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c53cc9448de91f2.json b/allure-report/data/test-cases/623e1f94af0b0a8a.json similarity index 50% rename from allure-report/data/test-cases/2c53cc9448de91f2.json rename to allure-report/data/test-cases/623e1f94af0b0a8a.json index 8a762b7d814..4a1b50e2400 100644 --- a/allure-report/data/test-cases/2c53cc9448de91f2.json +++ b/allure-report/data/test-cases/623e1f94af0b0a8a.json @@ -1 +1 @@ -{"uid":"2c53cc9448de91f2","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36a84ce1aa4434a","name":"stdout","source":"36a84ce1aa4434a.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2c53cc9448de91f2.json","parameterValues":[]} \ No newline at end of file +{"uid":"623e1f94af0b0a8a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/67a0bf67db9047ee.json b/allure-report/data/test-cases/627ac903c8bfc90f.json similarity index 69% rename from allure-report/data/test-cases/67a0bf67db9047ee.json rename to allure-report/data/test-cases/627ac903c8bfc90f.json index 1e3701c1b57..5ba7351f1f0 100644 --- a/allure-report/data/test-cases/67a0bf67db9047ee.json +++ b/allure-report/data/test-cases/627ac903c8bfc90f.json @@ -1 +1 @@ -{"uid":"67a0bf67db9047ee","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5360156ef396b6e","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0}},{"uid":"cedf72c8fbbfdfc5","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"a22d4b8f003df599","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"67a0bf67db9047ee.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/62a6bbd8d87be20e.json b/allure-report/data/test-cases/62a6bbd8d87be20e.json deleted file mode 100644 index 56a6c775f9d..00000000000 --- a/allure-report/data/test-cases/62a6bbd8d87be20e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"62a6bbd8d87be20e","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1216cba41972f97c","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0}},{"uid":"1a8f12ae9a258bd1","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"24b32ad032525022","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"62a6bbd8d87be20e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7107b1da849121a.json b/allure-report/data/test-cases/62dca90ee3fbe009.json similarity index 74% rename from allure-report/data/test-cases/b7107b1da849121a.json rename to allure-report/data/test-cases/62dca90ee3fbe009.json index 3c79295116a..e1c7b58d2c8 100644 --- a/allure-report/data/test-cases/b7107b1da849121a.json +++ b/allure-report/data/test-cases/62dca90ee3fbe009.json @@ -1 +1 @@ -{"uid":"b7107b1da849121a","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9be06237574ec64","name":"stdout","source":"f9be06237574ec64.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7107b1da849121a.json","parameterValues":[]} \ No newline at end of file +{"uid":"62dca90ee3fbe009","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/821065d4dc841edb.json b/allure-report/data/test-cases/630542b4d1ae1e45.json similarity index 75% rename from allure-report/data/test-cases/821065d4dc841edb.json rename to allure-report/data/test-cases/630542b4d1ae1e45.json index a4c4ba19f16..09a42ba4c10 100644 --- a/allure-report/data/test-cases/821065d4dc841edb.json +++ b/allure-report/data/test-cases/630542b4d1ae1e45.json @@ -1 +1 @@ -{"uid":"821065d4dc841edb","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ca809417038f1f70","name":"stdout","source":"ca809417038f1f70.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"821065d4dc841edb.json","parameterValues":[]} \ No newline at end of file +{"uid":"630542b4d1ae1e45","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":1724733474647,"stop":1724733474663,"duration":16},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8aceddf9a40c21c4","name":"stdout","source":"8aceddf9a40c21c4.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"630542b4d1ae1e45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3846d19bb4975491.json b/allure-report/data/test-cases/630aba545cc07b30.json similarity index 79% rename from allure-report/data/test-cases/3846d19bb4975491.json rename to allure-report/data/test-cases/630aba545cc07b30.json index 1550f019259..66bfa143635 100644 --- a/allure-report/data/test-cases/3846d19bb4975491.json +++ b/allure-report/data/test-cases/630aba545cc07b30.json @@ -1 +1 @@ -{"uid":"3846d19bb4975491","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"3846d19bb4975491.json","parameterValues":[]} \ No newline at end of file +{"uid":"630aba545cc07b30","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"630aba545cc07b30.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9164bf2c06bf8752.json b/allure-report/data/test-cases/6327808bac6df1db.json similarity index 53% rename from allure-report/data/test-cases/9164bf2c06bf8752.json rename to allure-report/data/test-cases/6327808bac6df1db.json index a26f2fd9601..db39cf9e3f4 100644 --- a/allure-report/data/test-cases/9164bf2c06bf8752.json +++ b/allure-report/data/test-cases/6327808bac6df1db.json @@ -1 +1 @@ -{"uid":"9164bf2c06bf8752","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732764218915,"stop":1732764218915,"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\").\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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"998a460e800cbb2b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194259,"stop":1732428194259,"duration":0}},{"uid":"767acc864b347295","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"5364b62b05552f1e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"9164bf2c06bf8752.json","parameterValues":[]} \ No newline at end of file +{"uid":"6327808bac6df1db","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732764218915,"stop":1732764218915,"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\").\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/7b584cbfaa9e2f14.json b/allure-report/data/test-cases/634a6fc50b2ba707.json similarity index 72% rename from allure-report/data/test-cases/7b584cbfaa9e2f14.json rename to allure-report/data/test-cases/634a6fc50b2ba707.json index 9527094736a..9c3a0ecbebe 100644 --- a/allure-report/data/test-cases/7b584cbfaa9e2f14.json +++ b/allure-report/data/test-cases/634a6fc50b2ba707.json @@ -1 +1 @@ -{"uid":"7b584cbfaa9e2f14","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8fe17348ea95e36a","name":"stdout","source":"8fe17348ea95e36a.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7b584cbfaa9e2f14.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"330cef54d490c73e","name":"stdout","source":"330cef54d490c73e.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"634a6fc50b2ba707.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7fb0d954404a7411.json b/allure-report/data/test-cases/635a66b4aaab6101.json similarity index 80% rename from allure-report/data/test-cases/7fb0d954404a7411.json rename to allure-report/data/test-cases/635a66b4aaab6101.json index 93922044138..5d08a905fa3 100644 --- a/allure-report/data/test-cases/7fb0d954404a7411.json +++ b/allure-report/data/test-cases/635a66b4aaab6101.json @@ -1 +1 @@ -{"uid":"7fb0d954404a7411","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"657871840dfd173c","name":"stdout","source":"657871840dfd173c.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7fb0d954404a7411.json","parameterValues":[]} \ No newline at end of file +{"uid":"635a66b4aaab6101","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/25b0f3d782a2ed03.json b/allure-report/data/test-cases/63600542edbb694a.json similarity index 80% rename from allure-report/data/test-cases/25b0f3d782a2ed03.json rename to allure-report/data/test-cases/63600542edbb694a.json index c93409aa6c4..41251071e2d 100644 --- a/allure-report/data/test-cases/25b0f3d782a2ed03.json +++ b/allure-report/data/test-cases/63600542edbb694a.json @@ -1 +1 @@ -{"uid":"25b0f3d782a2ed03","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fec9fd349f1d045f","name":"stdout","source":"fec9fd349f1d045f.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"25b0f3d782a2ed03.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/da222867360b442e.json b/allure-report/data/test-cases/640e02afdf541b21.json similarity index 84% rename from allure-report/data/test-cases/da222867360b442e.json rename to allure-report/data/test-cases/640e02afdf541b21.json index 5dbad1d542f..8153bd88658 100644 --- a/allure-report/data/test-cases/da222867360b442e.json +++ b/allure-report/data/test-cases/640e02afdf541b21.json @@ -1 +1 @@ -{"uid":"da222867360b442e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"760dfa55370d45f9","name":"stdout","source":"760dfa55370d45f9.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"da222867360b442e.json","parameterValues":[]} \ No newline at end of file +{"uid":"640e02afdf541b21","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba489e6f976c964f","name":"stdout","source":"ba489e6f976c964f.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"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":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Maximum Multiple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"640e02afdf541b21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b36ca0513e4048a8.json b/allure-report/data/test-cases/6410dd1650b4faab.json similarity index 60% rename from allure-report/data/test-cases/b36ca0513e4048a8.json rename to allure-report/data/test-cases/6410dd1650b4faab.json index f0d43e74075..cb4087fff21 100644 --- a/allure-report/data/test-cases/b36ca0513e4048a8.json +++ b/allure-report/data/test-cases/6410dd1650b4faab.json @@ -1 +1 @@ -{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732764220233,"stop":1732764220233,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732764220235,"stop":1732764220236,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"PERFORMANCE"},{"name":"tag","value":"PUZZLES"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cd536df0700f3bd3","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0}},{"uid":"522a0d282fded9dd","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"88851466a8ab5f44","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},"source":"b36ca0513e4048a8.json","parameterValues":[]} \ No newline at end of file +{"uid":"6410dd1650b4faab","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732764220233,"stop":1732764220233,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732764220234,"stop":1732764220234,"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_NumericalsTestCase::0","time":{"start":1732764220235,"stop":1732764220236,"duration":1},"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":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"PERFORMANCE"},{"name":"tag","value":"PUZZLES"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},"source":"6410dd1650b4faab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/644c808df55456e9.json b/allure-report/data/test-cases/644c808df55456e9.json new file mode 100644 index 00000000000..65158e0019b --- /dev/null +++ b/allure-report/data/test-cases/644c808df55456e9.json @@ -0,0 +1 @@ +{"uid":"644c808df55456e9","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a9ecee1b4fc0ab11.json b/allure-report/data/test-cases/64e42fae205d69e4.json similarity index 56% rename from allure-report/data/test-cases/a9ecee1b4fc0ab11.json rename to allure-report/data/test-cases/64e42fae205d69e4.json index 836b83383a8..c3506eeb582 100644 --- a/allure-report/data/test-cases/a9ecee1b4fc0ab11.json +++ b/allure-report/data/test-cases/64e42fae205d69e4.json @@ -1 +1 @@ -{"uid":"a9ecee1b4fc0ab11","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20671bf346c43317","name":"stdout","source":"20671bf346c43317.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"a9ecee1b4fc0ab11.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","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 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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},{"name":"Enter a test string 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":"eacae423597e783","name":"stdout","source":"eacae423597e783.txt","type":"text/plain","size":1367}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::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":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"String"},{"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.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"64e42fae205d69e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0332cc6a682faac.json b/allure-report/data/test-cases/65318d64270bf167.json similarity index 87% rename from allure-report/data/test-cases/a0332cc6a682faac.json rename to allure-report/data/test-cases/65318d64270bf167.json index d35e3c87b9d..00db9f25132 100644 --- a/allure-report/data/test-cases/a0332cc6a682faac.json +++ b/allure-report/data/test-cases/65318d64270bf167.json @@ -1 +1 @@ -{"uid":"a0332cc6a682faac","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a0332cc6a682faac.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196294,"stop":1732428196294,"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_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"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":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"65318d64270bf167.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/653d6409b929d554.json b/allure-report/data/test-cases/653d6409b929d554.json new file mode 100644 index 00000000000..b103990d6a3 --- /dev/null +++ b/allure-report/data/test-cases/653d6409b929d554.json @@ -0,0 +1 @@ +{"uid":"653d6409b929d554","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/64ddebaa5d6679fc.json b/allure-report/data/test-cases/65519c1899e60621.json similarity index 70% rename from allure-report/data/test-cases/64ddebaa5d6679fc.json rename to allure-report/data/test-cases/65519c1899e60621.json index fd729c29233..61bedfab535 100644 --- a/allure-report/data/test-cases/64ddebaa5d6679fc.json +++ b/allure-report/data/test-cases/65519c1899e60621.json @@ -1 +1 @@ -{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"64001087ec7aaf2b","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0}},{"uid":"a98592d8e6c7fba2","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"296f86e34803d6c1","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"64ddebaa5d6679fc.json","parameterValues":[]} \ No newline at end of file +{"uid":"65519c1899e60621","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/9aaaa009f2bba8b1.json b/allure-report/data/test-cases/656d201041ba5817.json similarity index 75% rename from allure-report/data/test-cases/9aaaa009f2bba8b1.json rename to allure-report/data/test-cases/656d201041ba5817.json index 4110b6ea67b..724d24cc0fa 100644 --- a/allure-report/data/test-cases/9aaaa009f2bba8b1.json +++ b/allure-report/data/test-cases/656d201041ba5817.json @@ -1 +1 @@ -{"uid":"9aaaa009f2bba8b1","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b9b51ca36b85ae94","name":"stdout","source":"b9b51ca36b85ae94.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"9aaaa009f2bba8b1.json","parameterValues":[]} \ No newline at end of file +{"uid":"656d201041ba5817","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"34970ab91dd4eb6c","name":"stdout","source":"34970ab91dd4eb6c.txt","type":"text/plain","size":46}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"656d201041ba5817.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6902a5b0a224435c.json b/allure-report/data/test-cases/65ae520512a0a5fc.json similarity index 80% rename from allure-report/data/test-cases/6902a5b0a224435c.json rename to allure-report/data/test-cases/65ae520512a0a5fc.json index 8c4c00ea551..0ef1987d69f 100644 --- a/allure-report/data/test-cases/6902a5b0a224435c.json +++ b/allure-report/data/test-cases/65ae520512a0a5fc.json @@ -1 +1 @@ -{"uid":"6902a5b0a224435c","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3228eb12f2ec789a","name":"stdout","source":"3228eb12f2ec789a.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"6902a5b0a224435c.json","parameterValues":[]} \ No newline at end of file +{"uid":"65ae520512a0a5fc","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":1724735129508,"stop":1724735129508,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9c2f5fc2bb8b3db8","name":"stdout","source":"9c2f5fc2bb8b3db8.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724735129508,"stop":1724735129508,"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":"CONDITIONAL STATEMENTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"65ae520512a0a5fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa5cd4b7c764fede.json b/allure-report/data/test-cases/65c57bdf9fea8094.json similarity index 77% rename from allure-report/data/test-cases/fa5cd4b7c764fede.json rename to allure-report/data/test-cases/65c57bdf9fea8094.json index 3514fd8c7e4..5ccf8baa766 100644 --- a/allure-report/data/test-cases/fa5cd4b7c764fede.json +++ b/allure-report/data/test-cases/65c57bdf9fea8094.json @@ -1 +1 @@ -{"uid":"fa5cd4b7c764fede","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f6f124c7be3a6e5","name":"stdout","source":"2f6f124c7be3a6e5.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fa5cd4b7c764fede.json","parameterValues":[]} \ No newline at end of file +{"uid":"65c57bdf9fea8094","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":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3f678007c09ea2b5.json b/allure-report/data/test-cases/65cae0d4eb0f95b8.json similarity index 77% rename from allure-report/data/test-cases/3f678007c09ea2b5.json rename to allure-report/data/test-cases/65cae0d4eb0f95b8.json index d4213cd75e7..b689122ac8d 100644 --- a/allure-report/data/test-cases/3f678007c09ea2b5.json +++ b/allure-report/data/test-cases/65cae0d4eb0f95b8.json @@ -1 +1 @@ -{"uid":"3f678007c09ea2b5","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194667,"stop":1732428194667,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3f678007c09ea2b5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/83b34d0610fd83c6.json b/allure-report/data/test-cases/6612fa568c338bff.json similarity index 85% rename from allure-report/data/test-cases/83b34d0610fd83c6.json rename to allure-report/data/test-cases/6612fa568c338bff.json index 9a28221f6f2..a98a0d70fa2 100644 --- a/allure-report/data/test-cases/83b34d0610fd83c6.json +++ b/allure-report/data/test-cases/6612fa568c338bff.json @@ -1 +1 @@ -{"uid":"83b34d0610fd83c6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"83b34d0610fd83c6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195724,"stop":1732428195724,"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_CheckRootTestCase::0","time":{"start":1732428195727,"stop":1732428195727,"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":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Always perfect"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"66b2d8dadf3898.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/22d82bbeb537c71a.json b/allure-report/data/test-cases/66dedca947415b6c.json similarity index 85% rename from allure-report/data/test-cases/22d82bbeb537c71a.json rename to allure-report/data/test-cases/66dedca947415b6c.json index 7a36d8ded19..751447e3fb7 100644 --- a/allure-report/data/test-cases/22d82bbeb537c71a.json +++ b/allure-report/data/test-cases/66dedca947415b6c.json @@ -1 +1 @@ -{"uid":"22d82bbeb537c71a","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":1732428194595,"stop":1732428194595,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"22d82bbeb537c71a.json","parameterValues":[]} \ No newline at end of file +{"uid":"66dedca947415b6c","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":1732428194595,"stop":1732428194595,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194595,"stop":1732428194595,"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_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"66dedca947415b6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5cedd1e00782e11.json b/allure-report/data/test-cases/6722ace1ab285b1e.json similarity index 82% rename from allure-report/data/test-cases/b5cedd1e00782e11.json rename to allure-report/data/test-cases/6722ace1ab285b1e.json index 01f0b06e5fb..03efc47277e 100644 --- a/allure-report/data/test-cases/b5cedd1e00782e11.json +++ b/allure-report/data/test-cases/6722ace1ab285b1e.json @@ -1 +1 @@ -{"uid":"b5cedd1e00782e11","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c396a9cbff279a34","name":"stdout","source":"c396a9cbff279a34.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b5cedd1e00782e11.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e5c727b0b5b40d52","name":"stdout","source":"e5c727b0b5b40d52.txt","type":"text/plain","size":1500}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6722ace1ab285b1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67535419d885cbd9.json b/allure-report/data/test-cases/67535419d885cbd9.json new file mode 100644 index 00000000000..d720932d087 --- /dev/null +++ b/allure-report/data/test-cases/67535419d885cbd9.json @@ -0,0 +1 @@ +{"uid":"67535419d885cbd9","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3460c7a02debe899.json b/allure-report/data/test-cases/67590949db6da2ee.json similarity index 78% rename from allure-report/data/test-cases/3460c7a02debe899.json rename to allure-report/data/test-cases/67590949db6da2ee.json index 3f11ce9e088..59ec31874f0 100644 --- a/allure-report/data/test-cases/3460c7a02debe899.json +++ b/allure-report/data/test-cases/67590949db6da2ee.json @@ -1 +1 @@ -{"uid":"3460c7a02debe899","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9925186cd87d138","name":"stdout","source":"f9925186cd87d138.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3460c7a02debe899.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1bcebf4fb624aad6.json b/allure-report/data/test-cases/67660b7a0592cf4d.json similarity index 82% rename from allure-report/data/test-cases/1bcebf4fb624aad6.json rename to allure-report/data/test-cases/67660b7a0592cf4d.json index ec8ddd1f1d5..228e86608d0 100644 --- a/allure-report/data/test-cases/1bcebf4fb624aad6.json +++ b/allure-report/data/test-cases/67660b7a0592cf4d.json @@ -1 +1 @@ -{"uid":"1bcebf4fb624aad6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ff7405a34f99b6d6","name":"stdout","source":"ff7405a34f99b6d6.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1bcebf4fb624aad6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"9febde34d0c00b2f","name":"stdout","source":"9febde34d0c00b2f.txt","type":"text/plain","size":48}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"67660b7a0592cf4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67c96b92db3f1ee1.json b/allure-report/data/test-cases/67c96b92db3f1ee1.json deleted file mode 100644 index 8fff1b8c1e5..00000000000 --- a/allure-report/data/test-cases/67c96b92db3f1ee1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"67c96b92db3f1ee1","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"67c96b92db3f1ee1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d86332e2eabe60c3.json b/allure-report/data/test-cases/67ecde96f288a7b2.json similarity index 81% rename from allure-report/data/test-cases/d86332e2eabe60c3.json rename to allure-report/data/test-cases/67ecde96f288a7b2.json index 4f371ba5029..bf12dfa9348 100644 --- a/allure-report/data/test-cases/d86332e2eabe60c3.json +++ b/allure-report/data/test-cases/67ecde96f288a7b2.json @@ -1 +1 @@ -{"uid":"d86332e2eabe60c3","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"d86332e2eabe60c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"67ecde96f288a7b2","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1732428196060,"stop":1732428196060,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"67ecde96f288a7b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/681eea057133a7e0.json b/allure-report/data/test-cases/681eea057133a7e0.json deleted file mode 100644 index cd0384d01cc..00000000000 --- a/allure-report/data/test-cases/681eea057133a7e0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"681eea057133a7e0","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"18e75387bd3b0160","name":"stdout","source":"18e75387bd3b0160.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"681eea057133a7e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba71f124345447fc.json b/allure-report/data/test-cases/6826d14915228b29.json similarity index 64% rename from allure-report/data/test-cases/ba71f124345447fc.json rename to allure-report/data/test-cases/6826d14915228b29.json index 804db1681b3..821b3eff169 100644 --- a/allure-report/data/test-cases/ba71f124345447fc.json +++ b/allure-report/data/test-cases/6826d14915228b29.json @@ -1 +1 @@ -{"uid":"ba71f124345447fc","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732764220417,"stop":1732764220417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220417,"stop":1732764220417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1732764220419,"stop":1732764220419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"280752ec061c1457","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0}},{"uid":"eb1b904b9e574ded","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"e7b4bfe5c117b0b5","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"ba71f124345447fc.json","parameterValues":[]} \ No newline at end of file +{"uid":"6826d14915228b29","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","time":{"start":1732764220417,"stop":1732764220417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220417,"stop":1732764220417,"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_CheckRootTestCase::0","time":{"start":1732764220419,"stop":1732764220419,"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":"STRING FORMATTING"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Always perfect"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"6826d14915228b29.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed9cfa6ba87dba0e.json b/allure-report/data/test-cases/68fbe283acac1b6a.json similarity index 64% rename from allure-report/data/test-cases/ed9cfa6ba87dba0e.json rename to allure-report/data/test-cases/68fbe283acac1b6a.json index d260178ddc0..19a88a7200d 100644 --- a/allure-report/data/test-cases/ed9cfa6ba87dba0e.json +++ b/allure-report/data/test-cases/68fbe283acac1b6a.json @@ -1 +1 @@ -{"uid":"ed9cfa6ba87dba0e","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41df37e97a182fa4","name":"stdout","source":"41df37e97a182fa4.txt","type":"text/plain","size":222}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":4,"unknown":0,"total":4},"items":[{"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":"ed9cfa6ba87dba0e.json","parameterValues":[]} \ No newline at end of file +{"uid":"68fbe283acac1b6a","name":"test_basic","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_basic","historyId":"81b718c3bba361637ce9ed2266cd30d2","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"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":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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1733030100695,"stop":1733030100695,"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_SumTriangularNumbersTestCase::0","time":{"start":1733030100695,"stop":1733030100695,"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":"suite","value":"Algorithms"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"50577b0cb2a4b7be","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0}},{"uid":"6bcea3846719ead","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1}},{"uid":"4026348dc538d851","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"7c3d4f705ded9146","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"690df5b9e2e97d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1216cba41972f97c.json b/allure-report/data/test-cases/691c776616074a7a.json similarity index 74% rename from allure-report/data/test-cases/1216cba41972f97c.json rename to allure-report/data/test-cases/691c776616074a7a.json index a2351577046..2c58beb9892 100644 --- a/allure-report/data/test-cases/1216cba41972f97c.json +++ b/allure-report/data/test-cases/691c776616074a7a.json @@ -1 +1 @@ -{"uid":"1216cba41972f97c","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1216cba41972f97c.json","parameterValues":[]} \ No newline at end of file +{"uid":"691c776616074a7a","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/324d19209fbeb70d.json b/allure-report/data/test-cases/694927049ad61cd3.json similarity index 62% rename from allure-report/data/test-cases/324d19209fbeb70d.json rename to allure-report/data/test-cases/694927049ad61cd3.json index 44b320d620b..311a4f438fa 100644 --- a/allure-report/data/test-cases/324d19209fbeb70d.json +++ b/allure-report/data/test-cases/694927049ad61cd3.json @@ -1 +1 @@ -{"uid":"324d19209fbeb70d","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"156fc08ab7167514","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1}},{"uid":"45bc1447720343e5","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"d9e7bf55554cd705","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"324d19209fbeb70d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/980af150a499b4e9.json b/allure-report/data/test-cases/694d122063aa9b02.json similarity index 68% rename from allure-report/data/test-cases/980af150a499b4e9.json rename to allure-report/data/test-cases/694d122063aa9b02.json index 3c8ef8ab27d..700b3092504 100644 --- a/allure-report/data/test-cases/980af150a499b4e9.json +++ b/allure-report/data/test-cases/694d122063aa9b02.json @@ -1 +1 @@ -{"uid":"980af150a499b4e9","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e2ed60d0ac53c788","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0}},{"uid":"583a0190aa99ad42","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"cb7d8edff0d47cc5","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"980af150a499b4e9.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/56e6898f814c9a2c.json b/allure-report/data/test-cases/6959c64cdad7a79a.json similarity index 83% rename from allure-report/data/test-cases/56e6898f814c9a2c.json rename to allure-report/data/test-cases/6959c64cdad7a79a.json index 3a0f8503875..66d47dcd483 100644 --- a/allure-report/data/test-cases/56e6898f814c9a2c.json +++ b/allure-report/data/test-cases/6959c64cdad7a79a.json @@ -1 +1 @@ -{"uid":"56e6898f814c9a2c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"cd297c98bb2f9177","name":"stdout","source":"cd297c98bb2f9177.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"56e6898f814c9a2c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"60551f07eabe2ff9","name":"stdout","source":"60551f07eabe2ff9.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"6959c64cdad7a79a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d731ec2306766d91.json b/allure-report/data/test-cases/69bff1baf8829aa6.json similarity index 63% rename from allure-report/data/test-cases/d731ec2306766d91.json rename to allure-report/data/test-cases/69bff1baf8829aa6.json index 802fa3f24e7..296f5327910 100644 --- a/allure-report/data/test-cases/d731ec2306766d91.json +++ b/allure-report/data/test-cases/69bff1baf8829aa6.json @@ -1 +1 @@ -{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"113e69c4ee0f071","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0}},{"uid":"42452319aaa200ae","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"497e27a7f74365e8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"d731ec2306766d91.json","parameterValues":[]} \ No newline at end of file +{"uid":"69bff1baf8829aa6","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bc6803e227b56151.json b/allure-report/data/test-cases/69c302e5122b751d.json similarity index 80% rename from allure-report/data/test-cases/bc6803e227b56151.json rename to allure-report/data/test-cases/69c302e5122b751d.json index c6d3678fbf3..323b7962b10 100644 --- a/allure-report/data/test-cases/bc6803e227b56151.json +++ b/allure-report/data/test-cases/69c302e5122b751d.json @@ -1 +1 @@ -{"uid":"bc6803e227b56151","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"bc6803e227b56151.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195874,"stop":1732428195875,"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_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"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":"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"69c302e5122b751d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69d8ca152b73c452.json b/allure-report/data/test-cases/69d8ca152b73c452.json new file mode 100644 index 00000000000..acd04be419f --- /dev/null +++ b/allure-report/data/test-cases/69d8ca152b73c452.json @@ -0,0 +1 @@ +{"uid":"69d8ca152b73c452","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1733030100465,"stop":1733030100465,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1733030100465,"stop":1733030100465,"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_SaveTestCase::0","time":{"start":1733030100465,"stop":1733030100465,"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":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"tag","value":"LISTS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"da0fce94db2e25fb","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0}},{"uid":"b4423bcb7f125986","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0}},{"uid":"a30886bec4fc9e3b","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"7a77e28352aaf1ca","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"69d8ca152b73c452.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69f67038b11a4861.json b/allure-report/data/test-cases/69f67038b11a4861.json new file mode 100644 index 00000000000..b1b2980c771 --- /dev/null +++ b/allure-report/data/test-cases/69f67038b11a4861.json @@ -0,0 +1 @@ +{"uid":"69f67038b11a4861","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":1733030100664,"stop":1733030100664,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d86eb3695c9130c6.json b/allure-report/data/test-cases/6a0a7c65d5636a5c.json similarity index 80% rename from allure-report/data/test-cases/d86eb3695c9130c6.json rename to allure-report/data/test-cases/6a0a7c65d5636a5c.json index 6f43e7d1558..f2f77339fd9 100644 --- a/allure-report/data/test-cases/d86eb3695c9130c6.json +++ b/allure-report/data/test-cases/6a0a7c65d5636a5c.json @@ -1 +1 @@ -{"uid":"d86eb3695c9130c6","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732428194641,"stop":1732428194641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"d86eb3695c9130c6.json","parameterValues":[]} \ No newline at end of file +{"uid":"6a0a7c65d5636a5c","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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":1732428194637,"stop":1732428194637,"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_DecipherThisTestCase::0","time":{"start":1732428194641,"stop":1732428194641,"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":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"6a0a7c65d5636a5c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a0ae436d7d72bb.json b/allure-report/data/test-cases/6a0ae436d7d72bb.json new file mode 100644 index 00000000000..9bd00c796bf --- /dev/null +++ b/allure-report/data/test-cases/6a0ae436d7d72bb.json @@ -0,0 +1 @@ +{"uid":"6a0ae436d7d72bb","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"757a12dc566d3a04","name":"stdout","source":"757a12dc566d3a04.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"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":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6a0ae436d7d72bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a8f943df9cf325c.json b/allure-report/data/test-cases/6a8f943df9cf325c.json deleted file mode 100644 index 558f7d9508c..00000000000 --- a/allure-report/data/test-cases/6a8f943df9cf325c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6a8f943df9cf325c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f965c0bd2baa205","name":"stdout","source":"f965c0bd2baa205.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6a8f943df9cf325c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a672dac8835c46c1.json b/allure-report/data/test-cases/6b11699e388f2732.json similarity index 73% rename from allure-report/data/test-cases/a672dac8835c46c1.json rename to allure-report/data/test-cases/6b11699e388f2732.json index e67567bab7c..c2d69286df9 100644 --- a/allure-report/data/test-cases/a672dac8835c46c1.json +++ b/allure-report/data/test-cases/6b11699e388f2732.json @@ -1 +1 @@ -{"uid":"a672dac8835c46c1","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732428196053,"stop":1732428196053,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"V A P O R C O D E"},{"name":"tag","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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a672dac8835c46c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"6b11699e388f2732","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732428196052,"stop":1732428196052,"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_VaporcodeTestCase::0","time":{"start":1732428196053,"stop":1732428196053,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"V A P O R C O D E"},{"name":"tag","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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6b11699e388f2732.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6b2ccbd851ec600.json b/allure-report/data/test-cases/6b2ccbd851ec600.json new file mode 100644 index 00000000000..29238070682 --- /dev/null +++ b/allure-report/data/test-cases/6b2ccbd851ec600.json @@ -0,0 +1 @@ +{"uid":"6b2ccbd851ec600","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":1733030100914,"stop":1733030100914,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1733030100914,"stop":1733030100914,"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_GreetTestCase::0","time":{"start":1733030100914,"stop":1733030100914,"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":"feature","value":"Conditions"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ccc6c3ffee5b9f76","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0}},{"uid":"fb5c1665d86892a0","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0}},{"uid":"65ae520512a0a5fc","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"f83dd9e8b48c6bab","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"6b2ccbd851ec600.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7ae1e1fc4481de3.json b/allure-report/data/test-cases/6b82f1725d1453b9.json similarity index 81% rename from allure-report/data/test-cases/f7ae1e1fc4481de3.json rename to allure-report/data/test-cases/6b82f1725d1453b9.json index 49c183c48b8..f5d2dcbcdd7 100644 --- a/allure-report/data/test-cases/f7ae1e1fc4481de3.json +++ b/allure-report/data/test-cases/6b82f1725d1453b9.json @@ -1 +1 @@ -{"uid":"f7ae1e1fc4481de3","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":1732428195479,"stop":1732428195479,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f7ae1e1fc4481de3.json","parameterValues":[]} \ No newline at end of file +{"uid":"6b82f1725d1453b9","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":1732428195479,"stop":1732428195479,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732428195479,"stop":1732428195479,"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_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"6b82f1725d1453b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6bcea3846719ead.json b/allure-report/data/test-cases/6bcea3846719ead.json new file mode 100644 index 00000000000..1ac0ac2a1b0 --- /dev/null +++ b/allure-report/data/test-cases/6bcea3846719ead.json @@ -0,0 +1 @@ +{"uid":"6bcea3846719ead","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":1732428196029,"stop":1732428196030,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732428196029,"stop":1732428196029,"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_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"6bcea3846719ead.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c1e65f294db5f89.json b/allure-report/data/test-cases/6c1e65f294db5f89.json new file mode 100644 index 00000000000..d5d844632f6 --- /dev/null +++ b/allure-report/data/test-cases/6c1e65f294db5f89.json @@ -0,0 +1 @@ +{"uid":"6c1e65f294db5f89","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1733030098911,"stop":1733030098911,"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":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/6c8559b634a76bd8.json b/allure-report/data/test-cases/6c8559b634a76bd8.json new file mode 100644 index 00000000000..15789412fd4 --- /dev/null +++ b/allure-report/data/test-cases/6c8559b634a76bd8.json @@ -0,0 +1 @@ +{"uid":"6c8559b634a76bd8","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1733030098755,"stop":1733030098755,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/7ec3425d5267a222.json b/allure-report/data/test-cases/6cc7dd91ca56d191.json similarity index 60% rename from allure-report/data/test-cases/7ec3425d5267a222.json rename to allure-report/data/test-cases/6cc7dd91ca56d191.json index fa53aca47f0..304e2f4fd84 100644 --- a/allure-report/data/test-cases/7ec3425d5267a222.json +++ b/allure-report/data/test-cases/6cc7dd91ca56d191.json @@ -1 +1 @@ -{"uid":"7ec3425d5267a222","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5e949b4a7c16c61","name":"stdout","source":"5e949b4a7c16c61.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7ec3425d5267a222.json","parameterValues":[]} \ No newline at end of file +{"uid":"6cc7dd91ca56d191","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/7369f3dde824b045.json b/allure-report/data/test-cases/6cece42c72540e7a.json similarity index 80% rename from allure-report/data/test-cases/7369f3dde824b045.json rename to allure-report/data/test-cases/6cece42c72540e7a.json index dc98b1f762f..afcc3366b39 100644 --- a/allure-report/data/test-cases/7369f3dde824b045.json +++ b/allure-report/data/test-cases/6cece42c72540e7a.json @@ -1 +1 @@ -{"uid":"7369f3dde824b045","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57e00ad1037160b6","name":"stdout","source":"57e00ad1037160b6.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"7369f3dde824b045.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb7ef9838cd7cad8","name":"stdout","source":"eb7ef9838cd7cad8.txt","type":"text/plain","size":307}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::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":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Check the exam"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"6cece42c72540e7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/afc07e402ebe38d8.json b/allure-report/data/test-cases/6d57e0044d071709.json similarity index 80% rename from allure-report/data/test-cases/afc07e402ebe38d8.json rename to allure-report/data/test-cases/6d57e0044d071709.json index 39195966607..09d74605ea4 100644 --- a/allure-report/data/test-cases/afc07e402ebe38d8.json +++ b/allure-report/data/test-cases/6d57e0044d071709.json @@ -1 +1 @@ -{"uid":"afc07e402ebe38d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef0993259005a4f7","name":"stdout","source":"ef0993259005a4f7.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"afc07e402ebe38d8.json","parameterValues":[]} \ No newline at end of file +{"uid":"6d57e0044d071709","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735129274,"stop":1724735129274,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1432622f91e93164","name":"stdout","source":"1432622f91e93164.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::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":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"6d57e0044d071709.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d917e3e4d702f23.json b/allure-report/data/test-cases/6d917e3e4d702f23.json new file mode 100644 index 00000000000..f3975ae59f3 --- /dev/null +++ b/allure-report/data/test-cases/6d917e3e4d702f23.json @@ -0,0 +1 @@ +{"uid":"6d917e3e4d702f23","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1733030101039,"stop":1733030101039,"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_RemoveCharTestCase::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":"story","value":"Remove First and Last Character"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c51d0888e1777a9e","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0}},{"uid":"40605a6b825041b","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0}},{"uid":"cd3e27d521a2ebd0","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"800e8bf322748e89","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"6d917e3e4d702f23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89c0be4978ed22ba.json b/allure-report/data/test-cases/6da9e4a8a463c592.json similarity index 59% rename from allure-report/data/test-cases/89c0be4978ed22ba.json rename to allure-report/data/test-cases/6da9e4a8a463c592.json index 1f914bc8822..fdf728d5616 100644 --- a/allure-report/data/test-cases/89c0be4978ed22ba.json +++ b/allure-report/data/test-cases/6da9e4a8a463c592.json @@ -1 +1 @@ -{"uid":"89c0be4978ed22ba","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":1732764220182,"stop":1732764220183,"duration":1},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220183,"stop":1732764220183,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fd4ef8d041ff123e","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0}},{"uid":"817c95f8ac92a91e","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"95924b9d92f1ced5","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"89c0be4978ed22ba.json","parameterValues":[]} \ No newline at end of file +{"uid":"6da9e4a8a463c592","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":1732764220182,"stop":1732764220183,"duration":1},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220183,"stop":1732764220183,"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_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"6da9e4a8a463c592.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8388a8495a8b75af.json b/allure-report/data/test-cases/6db0502ca689b396.json similarity index 62% rename from allure-report/data/test-cases/8388a8495a8b75af.json rename to allure-report/data/test-cases/6db0502ca689b396.json index 4aa442d3df9..d48f4e414fa 100644 --- a/allure-report/data/test-cases/8388a8495a8b75af.json +++ b/allure-report/data/test-cases/6db0502ca689b396.json @@ -1 +1 @@ -{"uid":"8388a8495a8b75af","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":1732764220641,"stop":1732764220642,"duration":1},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90c1df398d2f201a","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2}},{"uid":"6e91e404eb8e624","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"dee6c3b3d0dc73e4","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"8388a8495a8b75af.json","parameterValues":[]} \ No newline at end of file +{"uid":"6db0502ca689b396","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":1732764220641,"stop":1732764220642,"duration":1},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1732764220642,"stop":1732764220642,"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}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"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":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"6db0502ca689b396.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d3ab7c4bfc7d171f.json b/allure-report/data/test-cases/6dd8a24f05e81d8d.json similarity index 81% rename from allure-report/data/test-cases/d3ab7c4bfc7d171f.json rename to allure-report/data/test-cases/6dd8a24f05e81d8d.json index 4cca44f14c7..0e3d6b4ad8c 100644 --- a/allure-report/data/test-cases/d3ab7c4bfc7d171f.json +++ b/allure-report/data/test-cases/6dd8a24f05e81d8d.json @@ -1 +1 @@ -{"uid":"d3ab7c4bfc7d171f","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732428194447,"stop":1732428194447,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732428194446,"stop":1732428194446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase::0","time":{"start":1732428194457,"stop":1732428194457,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Master your primes: sieve with memoization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"d3ab7c4bfc7d171f.json","parameterValues":[]} \ No newline at end of file +{"uid":"6dd8a24f05e81d8d","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732428194447,"stop":1732428194447,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1732428194446,"stop":1732428194446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732428194447,"stop":1732428194447,"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_PrimesTestCase::0","time":{"start":1732428194457,"stop":1732428194457,"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":"Master your primes: sieve with memoization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"6dd8a24f05e81d8d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6e91e404eb8e624.json b/allure-report/data/test-cases/6e91e404eb8e624.json deleted file mode 100644 index b6973a1c21e..00000000000 --- a/allure-report/data/test-cases/6e91e404eb8e624.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6e91e404eb8e624","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6e91e404eb8e624.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6f178467aa4ed9b7.json b/allure-report/data/test-cases/6f178467aa4ed9b7.json new file mode 100644 index 00000000000..e33d06a3724 --- /dev/null +++ b/allure-report/data/test-cases/6f178467aa4ed9b7.json @@ -0,0 +1 @@ +{"uid":"6f178467aa4ed9b7","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":1733030100590,"stop":1733030100601,"duration":11},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"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_RemoveSmallestTestCase::0","time":{"start":1733030100601,"stop":1733030100601,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31667aebf4f2d5e","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9}},{"uid":"defdbaa3c0a6eace","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3}},{"uid":"99363c879a15b2c4","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"bcbd2adc2b6db91f","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"6f178467aa4ed9b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/170ac645fcf8229c.json b/allure-report/data/test-cases/6f2806a9130ac2bf.json similarity index 87% rename from allure-report/data/test-cases/170ac645fcf8229c.json rename to allure-report/data/test-cases/6f2806a9130ac2bf.json index bb98617c31f..81545523217 100644 --- a/allure-report/data/test-cases/170ac645fcf8229c.json +++ b/allure-report/data/test-cases/6f2806a9130ac2bf.json @@ -1 +1 @@ -{"uid":"170ac645fcf8229c","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":1732428196011,"stop":1732428196011,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"170ac645fcf8229c.json","parameterValues":[]} \ No newline at end of file +{"uid":"6f2806a9130ac2bf","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":1732428196011,"stop":1732428196011,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732428196011,"stop":1732428196011,"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_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"6f2806a9130ac2bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91cb28173d925ce2.json b/allure-report/data/test-cases/6f95e3a968732946.json similarity index 83% rename from allure-report/data/test-cases/91cb28173d925ce2.json rename to allure-report/data/test-cases/6f95e3a968732946.json index 2677fed641a..0b4959dbf15 100644 --- a/allure-report/data/test-cases/91cb28173d925ce2.json +++ b/allure-report/data/test-cases/6f95e3a968732946.json @@ -1 +1 @@ -{"uid":"91cb28173d925ce2","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":1732428196144,"stop":1732428196144,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"91cb28173d925ce2.json","parameterValues":[]} \ No newline at end of file +{"uid":"6f95e3a968732946","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":1732428196144,"stop":1732428196144,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732428196133,"stop":1732428196133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732428196149,"stop":1732428196149,"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":"story","value":"Counting sheep..."},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6f95e3a968732946.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70c180d1e9f40ddc.json b/allure-report/data/test-cases/6fa9bd2fff491ec7.json similarity index 72% rename from allure-report/data/test-cases/70c180d1e9f40ddc.json rename to allure-report/data/test-cases/6fa9bd2fff491ec7.json index 0b8bd1d5c62..8794f7f1ea9 100644 --- a/allure-report/data/test-cases/70c180d1e9f40ddc.json +++ b/allure-report/data/test-cases/6fa9bd2fff491ec7.json @@ -1 +1 @@ -{"uid":"70c180d1e9f40ddc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b36d71052a1b866","name":"stdout","source":"4b36d71052a1b866.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"70c180d1e9f40ddc.json","parameterValues":[]} \ No newline at end of file +{"uid":"6fa9bd2fff491ec7","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5a4c9eb3dcb32bf5.json b/allure-report/data/test-cases/6fb97aca94ac90f1.json similarity index 81% rename from allure-report/data/test-cases/5a4c9eb3dcb32bf5.json rename to allure-report/data/test-cases/6fb97aca94ac90f1.json index d97899955a1..976acb49861 100644 --- a/allure-report/data/test-cases/5a4c9eb3dcb32bf5.json +++ b/allure-report/data/test-cases/6fb97aca94ac90f1.json @@ -1 +1 @@ -{"uid":"5a4c9eb3dcb32bf5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d3d4f5edff7b23a8","name":"stdout","source":"d3d4f5edff7b23a8.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"5a4c9eb3dcb32bf5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5f6fe8d21ab696a3","name":"stdout","source":"5f6fe8d21ab696a3.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"6fb97aca94ac90f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/893f14f04872e4c5.json b/allure-report/data/test-cases/7019f73b053e7ae6.json similarity index 75% rename from allure-report/data/test-cases/893f14f04872e4c5.json rename to allure-report/data/test-cases/7019f73b053e7ae6.json index 80b8d41f4d9..57a1c6d7647 100644 --- a/allure-report/data/test-cases/893f14f04872e4c5.json +++ b/allure-report/data/test-cases/7019f73b053e7ae6.json @@ -1 +1 @@ -{"uid":"893f14f04872e4c5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d53bb0f8a7466de9","name":"stdout","source":"d53bb0f8a7466de9.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"893f14f04872e4c5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","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 Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"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":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bda0913251ec8a7b","name":"stdout","source":"bda0913251ec8a7b.txt","type":"text/plain","size":476}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::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":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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_6.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"7019f73b053e7ae6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/701c3cee2d2ca0d.json b/allure-report/data/test-cases/701c3cee2d2ca0d.json new file mode 100644 index 00000000000..feb8c046b2d --- /dev/null +++ b/allure-report/data/test-cases/701c3cee2d2ca0d.json @@ -0,0 +1 @@ +{"uid":"701c3cee2d2ca0d","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1d9f9656a94c5b68","name":"stdout","source":"1d9f9656a94c5b68.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"701c3cee2d2ca0d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e29868febcecd61d.json b/allure-report/data/test-cases/703af1f2e157e358.json similarity index 75% rename from allure-report/data/test-cases/e29868febcecd61d.json rename to allure-report/data/test-cases/703af1f2e157e358.json index 40089d6b756..7ccc116cfd9 100644 --- a/allure-report/data/test-cases/e29868febcecd61d.json +++ b/allure-report/data/test-cases/703af1f2e157e358.json @@ -1 +1 @@ -{"uid":"e29868febcecd61d","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"54520f78b41446af","name":"stdout","source":"54520f78b41446af.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"e29868febcecd61d.json","parameterValues":[]} \ No newline at end of file +{"uid":"703af1f2e157e358","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":1724735129664,"stop":1724735129664,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ee3a0764d3c252bb","name":"stdout","source":"ee3a0764d3c252bb.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"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":"feature","value":"Geometry"},{"name":"tag","value":"GEOMETRY"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"703af1f2e157e358.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bae98e899f1ebab4.json b/allure-report/data/test-cases/705df14002b81e6d.json similarity index 77% rename from allure-report/data/test-cases/bae98e899f1ebab4.json rename to allure-report/data/test-cases/705df14002b81e6d.json index 545d775b4cb..4f8cfe94620 100644 --- a/allure-report/data/test-cases/bae98e899f1ebab4.json +++ b/allure-report/data/test-cases/705df14002b81e6d.json @@ -1 +1 @@ -{"uid":"bae98e899f1ebab4","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55397a95b3056409","name":"stdout","source":"55397a95b3056409.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bae98e899f1ebab4.json","parameterValues":[]} \ No newline at end of file +{"uid":"705df14002b81e6d","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/54122a7c8f1149b2.json b/allure-report/data/test-cases/705f3a50d2317813.json similarity index 76% rename from allure-report/data/test-cases/54122a7c8f1149b2.json rename to allure-report/data/test-cases/705f3a50d2317813.json index 22ef7fcb8c9..e84395c6437 100644 --- a/allure-report/data/test-cases/54122a7c8f1149b2.json +++ b/allure-report/data/test-cases/705f3a50d2317813.json @@ -1 +1 @@ -{"uid":"54122a7c8f1149b2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732428196320,"stop":1732428196320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732428196323,"stop":1732428196323,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"MakeUpperCase"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"54122a7c8f1149b2.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732428196320,"stop":1732428196320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732428196321,"stop":1732428196321,"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_MakeUpperCaseTestCase::0","time":{"start":1732428196323,"stop":1732428196323,"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":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"MakeUpperCase"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"705f3a50d2317813.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2991adec6435da10.json b/allure-report/data/test-cases/7062f727dbe31207.json similarity index 58% rename from allure-report/data/test-cases/2991adec6435da10.json rename to allure-report/data/test-cases/7062f727dbe31207.json index 1a24b688d29..8b7c03ab610 100644 --- a/allure-report/data/test-cases/2991adec6435da10.json +++ b/allure-report/data/test-cases/7062f727dbe31207.json @@ -1 +1 @@ -{"uid":"2991adec6435da10","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":1732764220892,"stop":1732764220893,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1e4e59f90ff35603","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1}},{"uid":"23e7f7a9e25073fa","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"e76c8429b652e3f0","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"2991adec6435da10.json","parameterValues":[]} \ No newline at end of file +{"uid":"7062f727dbe31207","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":1732764220892,"stop":1732764220893,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"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":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7062f727dbe31207.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2483ff464fe4ea07.json b/allure-report/data/test-cases/7086e3f0d0497484.json similarity index 55% rename from allure-report/data/test-cases/2483ff464fe4ea07.json rename to allure-report/data/test-cases/7086e3f0d0497484.json index d8107c0c58f..3d7c44f0e67 100644 --- a/allure-report/data/test-cases/2483ff464fe4ea07.json +++ b/allure-report/data/test-cases/7086e3f0d0497484.json @@ -1 +1 @@ -{"uid":"2483ff464fe4ea07","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"38c339de2200090","name":"stdout","source":"38c339de2200090.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2483ff464fe4ea07.json","parameterValues":[]} \ No newline at end of file +{"uid":"7086e3f0d0497484","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a5312ee34a83472","name":"stdout","source":"a5312ee34a83472.txt","type":"text/plain","size":298}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"parentSuite","value":"Beginner"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Share prices"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"70a5d60b5abb1f3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7250652c2d8bbae5.json b/allure-report/data/test-cases/7250652c2d8bbae5.json new file mode 100644 index 00000000000..3f59b513373 --- /dev/null +++ b/allure-report/data/test-cases/7250652c2d8bbae5.json @@ -0,0 +1 @@ +{"uid":"7250652c2d8bbae5","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1733030100992,"stop":1733030100992,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1733030100992,"stop":1733030100992,"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_LogicalCalculatorTestCase::0","time":{"start":1733030101007,"stop":1733030101007,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23d88d3c634a9318","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0}},{"uid":"d94530c5ab1a7ba8","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0}},{"uid":"b87f80755bc77034","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"eb6afac49e3912b1","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7250652c2d8bbae5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/72c2edc2055d0da7.json b/allure-report/data/test-cases/72c2edc2055d0da7.json new file mode 100644 index 00000000000..2b877cd594c --- /dev/null +++ b/allure-report/data/test-cases/72c2edc2055d0da7.json @@ -0,0 +1 @@ +{"uid":"72c2edc2055d0da7","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1733030099239,"stop":1733030099239,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/72c86ca38c98258.json b/allure-report/data/test-cases/72c86ca38c98258.json deleted file mode 100644 index ecd6cbb505c..00000000000 --- a/allure-report/data/test-cases/72c86ca38c98258.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"72c86ca38c98258","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3fb645b301593c3","name":"stdout","source":"3fb645b301593c3.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"72c86ca38c98258.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0df4a2c5fe59a12.json b/allure-report/data/test-cases/73191ac2ec23a302.json similarity index 74% rename from allure-report/data/test-cases/b0df4a2c5fe59a12.json rename to allure-report/data/test-cases/73191ac2ec23a302.json index 8334358ca27..df5b1e4da58 100644 --- a/allure-report/data/test-cases/b0df4a2c5fe59a12.json +++ b/allure-report/data/test-cases/73191ac2ec23a302.json @@ -1 +1 @@ -{"uid":"b0df4a2c5fe59a12","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b0df4a2c5fe59a12.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9702a98b358e235","name":"stdout","source":"f9702a98b358e235.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"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":"5 kyu"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"tag","value":"MATHEMATICS"},{"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_5.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"73654e59fd10df4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/777ba0c823c5a82a.json b/allure-report/data/test-cases/73b957e217c05b3b.json similarity index 94% rename from allure-report/data/test-cases/777ba0c823c5a82a.json rename to allure-report/data/test-cases/73b957e217c05b3b.json index aa4fe53424e..0b6bdef6218 100644 --- a/allure-report/data/test-cases/777ba0c823c5a82a.json +++ b/allure-report/data/test-cases/73b957e217c05b3b.json @@ -1 +1 @@ -{"uid":"777ba0c823c5a82a","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732428194170,"stop":1732428194170,"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', 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":"777ba0c823c5a82a.json","parameterValues":[]} \ No newline at end of file +{"uid":"73b957e217c05b3b","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1732428194170,"stop":1732428194170,"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', 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/8a89827c471bc909.json b/allure-report/data/test-cases/73ceae1f03ba10a4.json similarity index 73% rename from allure-report/data/test-cases/8a89827c471bc909.json rename to allure-report/data/test-cases/73ceae1f03ba10a4.json index 8a31ffe2f3a..f4ac65cc3f8 100644 --- a/allure-report/data/test-cases/8a89827c471bc909.json +++ b/allure-report/data/test-cases/73ceae1f03ba10a4.json @@ -1 +1 @@ -{"uid":"8a89827c471bc909","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732764220409,"stop":1732764220409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732764220411,"stop":1732764220411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed0b0c9c45304a0b","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0}},{"uid":"610300a29faa4ee4","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"7312d30334dcfc0d","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"8a89827c471bc909.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732764220409,"stop":1732764220409,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732764220410,"stop":1732764220410,"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_OrderTestCase::0","time":{"start":1732764220411,"stop":1732764220411,"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":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"73ceae1f03ba10a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edb0e461adb94f5b.json b/allure-report/data/test-cases/73ef94971e1ebc98.json similarity index 83% rename from allure-report/data/test-cases/edb0e461adb94f5b.json rename to allure-report/data/test-cases/73ef94971e1ebc98.json index 5341522ca8e..9cf4e3369bc 100644 --- a/allure-report/data/test-cases/edb0e461adb94f5b.json +++ b/allure-report/data/test-cases/73ef94971e1ebc98.json @@ -1 +1 @@ -{"uid":"edb0e461adb94f5b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732428196043,"stop":1732428196044,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1732428196046,"stop":1732428196046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"edb0e461adb94f5b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1732428196043,"stop":1732428196044,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196044,"stop":1732428196044,"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_FirstNonRepeatedTestCase::0","time":{"start":1732428196046,"stop":1732428196046,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The First Non Repeated Character In A String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"73ef94971e1ebc98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/740e72b931a3ed2d.json b/allure-report/data/test-cases/740e72b931a3ed2d.json deleted file mode 100644 index 1bd42c33455..00000000000 --- a/allure-report/data/test-cases/740e72b931a3ed2d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"740e72b931a3ed2d","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":"740e72b931a3ed2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df5cc35809df545.json b/allure-report/data/test-cases/7423494f63e5e438.json similarity index 85% rename from allure-report/data/test-cases/4df5cc35809df545.json rename to allure-report/data/test-cases/7423494f63e5e438.json index 754f4237c40..ce6fcd36700 100644 --- a/allure-report/data/test-cases/4df5cc35809df545.json +++ b/allure-report/data/test-cases/7423494f63e5e438.json @@ -1 +1 @@ -{"uid":"4df5cc35809df545","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732428194463,"stop":1732428194463,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732428194464,"stop":1732428194464,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"SORTING"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"4df5cc35809df545.json","parameterValues":[]} \ No newline at end of file +{"uid":"7423494f63e5e438","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732428194463,"stop":1732428194463,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732428194463,"stop":1732428194463,"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_MoveZerosTestCase::0","time":{"start":1732428194464,"stop":1732428194464,"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":"SORTING"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"7423494f63e5e438.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd53e52e1ab13306.json b/allure-report/data/test-cases/74b0e8a5cfe71956.json similarity index 84% rename from allure-report/data/test-cases/dd53e52e1ab13306.json rename to allure-report/data/test-cases/74b0e8a5cfe71956.json index 856fdfe8bd8..2d863986ce1 100644 --- a/allure-report/data/test-cases/dd53e52e1ab13306.json +++ b/allure-report/data/test-cases/74b0e8a5cfe71956.json @@ -1 +1 @@ -{"uid":"dd53e52e1ab13306","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":1732428196195,"stop":1732428196195,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"dd53e52e1ab13306.json","parameterValues":[]} \ No newline at end of file +{"uid":"74b0e8a5cfe71956","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":1732428196195,"stop":1732428196195,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732428196195,"stop":1732428196195,"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_CheckForFactorTestCase::0","time":{"start":1732428196202,"stop":1732428196202,"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":"story","value":"Grasshopper - Check for factor"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"74b0e8a5cfe71956.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c00621abb22a9be3.json b/allure-report/data/test-cases/74d08353b69572cc.json similarity index 62% rename from allure-report/data/test-cases/c00621abb22a9be3.json rename to allure-report/data/test-cases/74d08353b69572cc.json index 14ae891f38e..d0251397285 100644 --- a/allure-report/data/test-cases/c00621abb22a9be3.json +++ b/allure-report/data/test-cases/74d08353b69572cc.json @@ -1 +1 @@ -{"uid":"c00621abb22a9be3","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing Battle method

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"afca78445b5fa23f","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0}},{"uid":"552b72a0721ea486","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"921715088233c4e7","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"c00621abb22a9be3.json","parameterValues":[]} \ No newline at end of file +{"uid":"74d08353b69572cc","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/74f816020df3559.json b/allure-report/data/test-cases/74f816020df3559.json deleted file mode 100644 index 17d850f4a9e..00000000000 --- a/allure-report/data/test-cases/74f816020df3559.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"74f816020df3559","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":1732428195926,"stop":1732428195926,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"74f816020df3559.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/75040d42480a95e8.json b/allure-report/data/test-cases/75040d42480a95e8.json deleted file mode 100644 index 8ac90ab9027..00000000000 --- a/allure-report/data/test-cases/75040d42480a95e8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"75040d42480a95e8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1889e3b457f9320a","name":"stdout","source":"1889e3b457f9320a.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"75040d42480a95e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88851466a8ab5f44.json b/allure-report/data/test-cases/75b2a36530573b63.json similarity index 73% rename from allure-report/data/test-cases/88851466a8ab5f44.json rename to allure-report/data/test-cases/75b2a36530573b63.json index 891a59416fb..fa770599c7e 100644 --- a/allure-report/data/test-cases/88851466a8ab5f44.json +++ b/allure-report/data/test-cases/75b2a36530573b63.json @@ -1 +1 @@ -{"uid":"88851466a8ab5f44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aa1c2e562160f609","name":"stdout","source":"aa1c2e562160f609.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"88851466a8ab5f44.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","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 Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"da2e8ce75b901e82","name":"stdout","source":"da2e8ce75b901e82.txt","type":"text/plain","size":299}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1724733474007,"stop":1724733474007,"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":"Numericals of a String"},{"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.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"75b2a36530573b63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7612354cc3c699d.json b/allure-report/data/test-cases/7612354cc3c699d.json deleted file mode 100644 index aa9f5a519a5..00000000000 --- a/allure-report/data/test-cases/7612354cc3c699d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7612354cc3c699d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60553188e91eeef0","name":"stdout","source":"60553188e91eeef0.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7612354cc3c699d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa27e6e3693a7b83.json b/allure-report/data/test-cases/7616dbf2a034685c.json similarity index 79% rename from allure-report/data/test-cases/fa27e6e3693a7b83.json rename to allure-report/data/test-cases/7616dbf2a034685c.json index 71dd170d2ae..4baa20ea425 100644 --- a/allure-report/data/test-cases/fa27e6e3693a7b83.json +++ b/allure-report/data/test-cases/7616dbf2a034685c.json @@ -1 +1 @@ -{"uid":"fa27e6e3693a7b83","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6003c650ea768633","name":"stdout","source":"6003c650ea768633.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"fa27e6e3693a7b83.json","parameterValues":[]} \ No newline at end of file +{"uid":"7616dbf2a034685c","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2589fdae4962b015","name":"stdout","source":"2589fdae4962b015.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7616dbf2a034685c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84ea3c3b3250393e.json b/allure-report/data/test-cases/761ca73c34549675.json similarity index 81% rename from allure-report/data/test-cases/84ea3c3b3250393e.json rename to allure-report/data/test-cases/761ca73c34549675.json index f30dd792307..e885749227b 100644 --- a/allure-report/data/test-cases/84ea3c3b3250393e.json +++ b/allure-report/data/test-cases/761ca73c34549675.json @@ -1 +1 @@ -{"uid":"84ea3c3b3250393e","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":1732428194124,"stop":1732428194125,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"84ea3c3b3250393e.json","parameterValues":[]} \ No newline at end of file +{"uid":"761ca73c34549675","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":1732428194124,"stop":1732428194125,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f5725ff55458d02a.json b/allure-report/data/test-cases/763ac19ad87ac3cd.json similarity index 80% rename from allure-report/data/test-cases/f5725ff55458d02a.json rename to allure-report/data/test-cases/763ac19ad87ac3cd.json index 84d723b371a..ba7f519dc31 100644 --- a/allure-report/data/test-cases/f5725ff55458d02a.json +++ b/allure-report/data/test-cases/763ac19ad87ac3cd.json @@ -1 +1 @@ -{"uid":"f5725ff55458d02a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"408eed1715a3503c","name":"stdout","source":"408eed1715a3503c.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"f5725ff55458d02a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"622422493d650fdf","name":"stdout","source":"622422493d650fdf.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"NUMBERS"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"763ac19ad87ac3cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d36e2f5707d2a6d3.json b/allure-report/data/test-cases/76a91c6ac0b40085.json similarity index 82% rename from allure-report/data/test-cases/d36e2f5707d2a6d3.json rename to allure-report/data/test-cases/76a91c6ac0b40085.json index 80a80f41ef2..6243be81f7f 100644 --- a/allure-report/data/test-cases/d36e2f5707d2a6d3.json +++ b/allure-report/data/test-cases/76a91c6ac0b40085.json @@ -1 +1 @@ -{"uid":"d36e2f5707d2a6d3","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d36e2f5707d2a6d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"76a91c6ac0b40085","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/de09867d078b6af4.json b/allure-report/data/test-cases/76e193dcfd9d956a.json similarity index 80% rename from allure-report/data/test-cases/de09867d078b6af4.json rename to allure-report/data/test-cases/76e193dcfd9d956a.json index e33e794a2c7..244aef4769d 100644 --- a/allure-report/data/test-cases/de09867d078b6af4.json +++ b/allure-report/data/test-cases/76e193dcfd9d956a.json @@ -1 +1 @@ -{"uid":"de09867d078b6af4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ca30023d79faffff","name":"stdout","source":"ca30023d79faffff.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"de09867d078b6af4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"adebeeed90235942","name":"stdout","source":"adebeeed90235942.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724735129649,"stop":1724735129649,"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":"Reversed Strings"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"76e193dcfd9d956a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/777b1d9b55eb3ae9.json b/allure-report/data/test-cases/777b1d9b55eb3ae9.json new file mode 100644 index 00000000000..4826e5955a1 --- /dev/null +++ b/allure-report/data/test-cases/777b1d9b55eb3ae9.json @@ -0,0 +1 @@ +{"uid":"777b1d9b55eb3ae9","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":1733030100137,"stop":1733030100137,"duration":0},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1733030100137,"stop":1733030100137,"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_FirstDupTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4391e2c86d08e20","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1}},{"uid":"57eb8463acc316b7","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0}},{"uid":"522017a410240b47","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"e28dd76561e769e2","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"777b1d9b55eb3ae9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77858b1148b2de9d.json b/allure-report/data/test-cases/77858b1148b2de9d.json new file mode 100644 index 00000000000..929b6948f30 --- /dev/null +++ b/allure-report/data/test-cases/77858b1148b2de9d.json @@ -0,0 +1 @@ +{"uid":"77858b1148b2de9d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"109a63364b1709cb","name":"stdout","source":"109a63364b1709cb.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"77858b1148b2de9d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b22afbc33030e55f.json b/allure-report/data/test-cases/77a4cf3d728ec302.json similarity index 69% rename from allure-report/data/test-cases/b22afbc33030e55f.json rename to allure-report/data/test-cases/77a4cf3d728ec302.json index 252da807cb9..b3da96b3934 100644 --- a/allure-report/data/test-cases/b22afbc33030e55f.json +++ b/allure-report/data/test-cases/77a4cf3d728ec302.json @@ -1 +1 @@ -{"uid":"b22afbc33030e55f","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":1732764220226,"stop":1732764220226,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732764220225,"stop":1732764220225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b7657273f039658","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0}},{"uid":"ccb7c5007831ab45","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"3460c7a02debe899","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b22afbc33030e55f.json","parameterValues":[]} \ No newline at end of file +{"uid":"77a4cf3d728ec302","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":1732764220226,"stop":1732764220226,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8e9b4227c17ce17f.json b/allure-report/data/test-cases/77d417f099b71c46.json similarity index 50% rename from allure-report/data/test-cases/8e9b4227c17ce17f.json rename to allure-report/data/test-cases/77d417f099b71c46.json index 9b12100f1c3..12c5fc6c772 100644 --- a/allure-report/data/test-cases/8e9b4227c17ce17f.json +++ b/allure-report/data/test-cases/77d417f099b71c46.json @@ -1 +1 @@ -{"uid":"8e9b4227c17ce17f","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8271119e6077f333","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194198,"stop":1732428194198,"duration":0}},{"uid":"634b88b34b81a74c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"ac390c8ac17d8363","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"8e9b4227c17ce17f.json","parameterValues":[]} \ No newline at end of file +{"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/d6fd6e0593022837.json b/allure-report/data/test-cases/78770f3ff6d80a18.json similarity index 92% rename from allure-report/data/test-cases/d6fd6e0593022837.json rename to allure-report/data/test-cases/78770f3ff6d80a18.json index 23ba0a65853..b9080fb3037 100644 --- a/allure-report/data/test-cases/d6fd6e0593022837.json +++ b/allure-report/data/test-cases/78770f3ff6d80a18.json @@ -1 +1 @@ -{"uid":"d6fd6e0593022837","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"d6fd6e0593022837.json","parameterValues":[]} \ No newline at end of file +{"uid":"78770f3ff6d80a18","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"78770f3ff6d80a18.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6f37cee94115c50c.json b/allure-report/data/test-cases/7886d18807eb6c13.json similarity index 90% rename from allure-report/data/test-cases/6f37cee94115c50c.json rename to allure-report/data/test-cases/7886d18807eb6c13.json index 755e43d221e..650105547da 100644 --- a/allure-report/data/test-cases/6f37cee94115c50c.json +++ b/allure-report/data/test-cases/7886d18807eb6c13.json @@ -1 +1 @@ -{"uid":"6f37cee94115c50c","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":1732428195651,"stop":1732428195651,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195652,"stop":1732428195652,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"String subpattern recognition II"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"6f37cee94115c50c.json","parameterValues":[]} \ No newline at end of file +{"uid":"7886d18807eb6c13","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":1732428195651,"stop":1732428195651,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195651,"stop":1732428195651,"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_HasSubpatternTestCase::0","time":{"start":1732428195652,"stop":1732428195652,"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":"story","value":"String subpattern recognition II"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"7886d18807eb6c13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78aec59881bd461e.json b/allure-report/data/test-cases/78aec59881bd461e.json new file mode 100644 index 00000000000..d12b2884d68 --- /dev/null +++ b/allure-report/data/test-cases/78aec59881bd461e.json @@ -0,0 +1 @@ +{"uid":"78aec59881bd461e","name":"Simple test for empty string.","fullName":"kyu_7.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses_empty_string","historyId":"d3e9281f847cd49d15fb55b4db822c97","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6558b0da7e100d83.json b/allure-report/data/test-cases/78b238490a0d0c98.json similarity index 82% rename from allure-report/data/test-cases/6558b0da7e100d83.json rename to allure-report/data/test-cases/78b238490a0d0c98.json index b6814989550..0ea1d35af35 100644 --- a/allure-report/data/test-cases/6558b0da7e100d83.json +++ b/allure-report/data/test-cases/78b238490a0d0c98.json @@ -1 +1 @@ -{"uid":"6558b0da7e100d83","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d8719a36b49cd420","name":"stdout","source":"d8719a36b49cd420.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6558b0da7e100d83.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/7e36f3895c7e5ba3.json b/allure-report/data/test-cases/792ce345a0c4a9e1.json similarity index 84% rename from allure-report/data/test-cases/7e36f3895c7e5ba3.json rename to allure-report/data/test-cases/792ce345a0c4a9e1.json index 7d925ba2495..d6f94d38cf0 100644 --- a/allure-report/data/test-cases/7e36f3895c7e5ba3.json +++ b/allure-report/data/test-cases/792ce345a0c4a9e1.json @@ -1 +1 @@ -{"uid":"7e36f3895c7e5ba3","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7e36f3895c7e5ba3.json","parameterValues":[]} \ No newline at end of file +{"uid":"792ce345a0c4a9e1","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1733030100820,"stop":1733030100820,"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_StringToArrayTestCase::0","time":{"start":1733030100820,"stop":1733030100820,"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":"story","value":"Convert a string to an array"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"62263e93a5cfddb4","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0}},{"uid":"17e84d8dd3123806","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0}},{"uid":"8966b735a3793409","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"cde33394de2ec155","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"7940a8ba615e27f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70008c90c6552144.json b/allure-report/data/test-cases/7a1146c2cbd99038.json similarity index 81% rename from allure-report/data/test-cases/70008c90c6552144.json rename to allure-report/data/test-cases/7a1146c2cbd99038.json index 0c3d008fb5a..5d5d18b6e44 100644 --- a/allure-report/data/test-cases/70008c90c6552144.json +++ b/allure-report/data/test-cases/7a1146c2cbd99038.json @@ -1 +1 @@ -{"uid":"70008c90c6552144","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":1732428195641,"stop":1732428195641,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195643,"stop":1732428195643,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"70008c90c6552144.json","parameterValues":[]} \ No newline at end of file +{"uid":"7a1146c2cbd99038","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":1732428195641,"stop":1732428195641,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195641,"stop":1732428195641,"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_HasSubpatternTestCase::0","time":{"start":1732428195643,"stop":1732428195643,"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":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition I"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"7a1146c2cbd99038.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7165b4538deb01d.json b/allure-report/data/test-cases/7a5a4eebadaab126.json similarity index 83% rename from allure-report/data/test-cases/c7165b4538deb01d.json rename to allure-report/data/test-cases/7a5a4eebadaab126.json index d4adaa27a70..8c4b685de36 100644 --- a/allure-report/data/test-cases/c7165b4538deb01d.json +++ b/allure-report/data/test-cases/7a5a4eebadaab126.json @@ -1 +1 @@ -{"uid":"c7165b4538deb01d","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732428196475,"stop":1732428196475,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"c7165b4538deb01d.json","parameterValues":[]} \ No newline at end of file +{"uid":"7a5a4eebadaab126","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732428196475,"stop":1732428196475,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732428196476,"stop":1732428196476,"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":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"suite","value":"Control Flow"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"7a5a4eebadaab126.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfb03abe3203ecf1.json b/allure-report/data/test-cases/7a77e28352aaf1ca.json similarity index 82% rename from allure-report/data/test-cases/bfb03abe3203ecf1.json rename to allure-report/data/test-cases/7a77e28352aaf1ca.json index 04c45b9bc84..1756a8e6720 100644 --- a/allure-report/data/test-cases/bfb03abe3203ecf1.json +++ b/allure-report/data/test-cases/7a77e28352aaf1ca.json @@ -1 +1 @@ -{"uid":"bfb03abe3203ecf1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6152f64a0232194a","name":"stdout","source":"6152f64a0232194a.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bfb03abe3203ecf1.json","parameterValues":[]} \ No newline at end of file +{"uid":"7a77e28352aaf1ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"186311649e77f5c8","name":"stdout","source":"186311649e77f5c8.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7a77e28352aaf1ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7aa3fbfc8218c54e.json b/allure-report/data/test-cases/7aa3fbfc8218c54e.json new file mode 100644 index 00000000000..c325ddf1583 --- /dev/null +++ b/allure-report/data/test-cases/7aa3fbfc8218c54e.json @@ -0,0 +1 @@ +{"uid":"7aa3fbfc8218c54e","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e9cabde1f2c64760.json b/allure-report/data/test-cases/7abec7f9960933cc.json similarity index 93% rename from allure-report/data/test-cases/e9cabde1f2c64760.json rename to allure-report/data/test-cases/7abec7f9960933cc.json index 69ec0420f14..81ded6fca58 100644 --- a/allure-report/data/test-cases/e9cabde1f2c64760.json +++ b/allure-report/data/test-cases/7abec7f9960933cc.json @@ -1 +1 @@ -{"uid":"e9cabde1f2c64760","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":"e9cabde1f2c64760.json","parameterValues":[]} \ No newline at end of file +{"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/65c772a236576a2d.json b/allure-report/data/test-cases/7b5c67e400b6b0a0.json similarity index 75% rename from allure-report/data/test-cases/65c772a236576a2d.json rename to allure-report/data/test-cases/7b5c67e400b6b0a0.json index 85608a71d3b..1cfc6500cbf 100644 --- a/allure-report/data/test-cases/65c772a236576a2d.json +++ b/allure-report/data/test-cases/7b5c67e400b6b0a0.json @@ -1 +1 @@ -{"uid":"65c772a236576a2d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4832c8bd9f79614","name":"stdout","source":"f4832c8bd9f79614.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65c772a236576a2d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/579e5f45553c02f2.json b/allure-report/data/test-cases/7b7000404fe21186.json similarity index 84% rename from allure-report/data/test-cases/579e5f45553c02f2.json rename to allure-report/data/test-cases/7b7000404fe21186.json index 87a6f6e223d..eb83f4d7842 100644 --- a/allure-report/data/test-cases/579e5f45553c02f2.json +++ b/allure-report/data/test-cases/7b7000404fe21186.json @@ -1 +1 @@ -{"uid":"579e5f45553c02f2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abff3e6ddecc6408","name":"stdout","source":"abff3e6ddecc6408.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"579e5f45553c02f2.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4bab5f3bdd559aa2","name":"stdout","source":"4bab5f3bdd559aa2.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724735129695,"stop":1724735129695,"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":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7b7000404fe21186.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6641c9ab33f4ea66.json b/allure-report/data/test-cases/7b778b64af209b91.json similarity index 68% rename from allure-report/data/test-cases/6641c9ab33f4ea66.json rename to allure-report/data/test-cases/7b778b64af209b91.json index b1b6f000d3a..39c82faeb95 100644 --- a/allure-report/data/test-cases/6641c9ab33f4ea66.json +++ b/allure-report/data/test-cases/7b778b64af209b91.json @@ -1 +1 @@ -{"uid":"6641c9ab33f4ea66","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":1732764221104,"stop":1732764221104,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a0332cc6a682faac","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0}},{"uid":"f507fecee61d3d94","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"f801b2352cd357fc","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"6641c9ab33f4ea66.json","parameterValues":[]} \ No newline at end of file +{"uid":"7b778b64af209b91","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":1732764221104,"stop":1732764221104,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732764221104,"stop":1732764221104,"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_HoopCountTestCase::0","time":{"start":1732764221104,"stop":1732764221104,"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":"Keep up the hoop"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"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.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"7b778b64af209b91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d237c739f4b0c138.json b/allure-report/data/test-cases/7c3d4f705ded9146.json similarity index 82% rename from allure-report/data/test-cases/d237c739f4b0c138.json rename to allure-report/data/test-cases/7c3d4f705ded9146.json index e56507c6a85..761467385d4 100644 --- a/allure-report/data/test-cases/d237c739f4b0c138.json +++ b/allure-report/data/test-cases/7c3d4f705ded9146.json @@ -1 +1 @@ -{"uid":"d237c739f4b0c138","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cbf43f2ebe410372","name":"stdout","source":"cbf43f2ebe410372.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d237c739f4b0c138.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c3d4f705ded9146","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":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"65939308dfa4b454","name":"stdout","source":"65939308dfa4b454.txt","type":"text/plain","size":27}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724733474491,"stop":1724733474491,"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":"7 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7c3d4f705ded9146.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28083507c1397923.json b/allure-report/data/test-cases/7c60279d383e9d8b.json similarity index 92% rename from allure-report/data/test-cases/28083507c1397923.json rename to allure-report/data/test-cases/7c60279d383e9d8b.json index 736c718143e..15379c41d08 100644 --- a/allure-report/data/test-cases/28083507c1397923.json +++ b/allure-report/data/test-cases/7c60279d383e9d8b.json @@ -1 +1 @@ -{"uid":"28083507c1397923","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"28083507c1397923.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c60279d383e9d8b","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","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', 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":"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":"7c60279d383e9d8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c33446eccccc45a.json b/allure-report/data/test-cases/7c87151d683c2aad.json similarity index 79% rename from allure-report/data/test-cases/1c33446eccccc45a.json rename to allure-report/data/test-cases/7c87151d683c2aad.json index 4c6150691ce..784427c5de4 100644 --- a/allure-report/data/test-cases/1c33446eccccc45a.json +++ b/allure-report/data/test-cases/7c87151d683c2aad.json @@ -1 +1 @@ -{"uid":"1c33446eccccc45a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"796b2b673c5d0f8b","name":"stdout","source":"796b2b673c5d0f8b.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1c33446eccccc45a.json","parameterValues":[]} \ No newline at end of file +{"uid":"7c87151d683c2aad","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/dc9bdff2273b81f8.json b/allure-report/data/test-cases/7cacdad83c7f5f10.json similarity index 73% rename from allure-report/data/test-cases/dc9bdff2273b81f8.json rename to allure-report/data/test-cases/7cacdad83c7f5f10.json index b19f43b7c79..cf780ca5d8b 100644 --- a/allure-report/data/test-cases/dc9bdff2273b81f8.json +++ b/allure-report/data/test-cases/7cacdad83c7f5f10.json @@ -1 +1 @@ -{"uid":"dc9bdff2273b81f8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1342cdaa6481456c","name":"stdout","source":"1342cdaa6481456c.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"dc9bdff2273b81f8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4736c243443acbf6.json b/allure-report/data/test-cases/7ce67f10ab4c86ee.json similarity index 58% rename from allure-report/data/test-cases/4736c243443acbf6.json rename to allure-report/data/test-cases/7ce67f10ab4c86ee.json index 0e7220cd1a9..ca2fe146e1e 100644 --- a/allure-report/data/test-cases/4736c243443acbf6.json +++ b/allure-report/data/test-cases/7ce67f10ab4c86ee.json @@ -1 +1 @@ -{"uid":"4736c243443acbf6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf8fa237e5fc3101","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0}},{"uid":"9aaaa009f2bba8b1","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"6444bc59e77319f9","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4736c243443acbf6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732764220941,"stop":1732764220941,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"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":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"7ce67f10ab4c86ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d152505fce8fc34.json b/allure-report/data/test-cases/7d152505fce8fc34.json new file mode 100644 index 00000000000..316a99d2b0b --- /dev/null +++ b/allure-report/data/test-cases/7d152505fce8fc34.json @@ -0,0 +1 @@ +{"uid":"7d152505fce8fc34","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5e8bbbba63c3bb75.json b/allure-report/data/test-cases/7d5b1a2ffe0a970a.json similarity index 80% rename from allure-report/data/test-cases/5e8bbbba63c3bb75.json rename to allure-report/data/test-cases/7d5b1a2ffe0a970a.json index 97918d8092f..d24aaf50e31 100644 --- a/allure-report/data/test-cases/5e8bbbba63c3bb75.json +++ b/allure-report/data/test-cases/7d5b1a2ffe0a970a.json @@ -1 +1 @@ -{"uid":"5e8bbbba63c3bb75","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"5e8bbbba63c3bb75.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195869,"stop":1732428195869,"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_JadenCasingStringsTestCase::0","time":{"start":1732428195876,"stop":1732428195876,"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":"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":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"7d5b1a2ffe0a970a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6463a9e3be0b4026.json b/allure-report/data/test-cases/7d777a45074a2435.json similarity index 80% rename from allure-report/data/test-cases/6463a9e3be0b4026.json rename to allure-report/data/test-cases/7d777a45074a2435.json index feac2dd31c9..cbcbc964360 100644 --- a/allure-report/data/test-cases/6463a9e3be0b4026.json +++ b/allure-report/data/test-cases/7d777a45074a2435.json @@ -1 +1 @@ -{"uid":"6463a9e3be0b4026","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d38be6ef6dfa6828","name":"stdout","source":"d38be6ef6dfa6828.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"6463a9e3be0b4026.json","parameterValues":[]} \ No newline at end of file +{"uid":"7d777a45074a2435","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724735127860,"stop":1724735127860,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the result","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a425815a2146be3f","name":"stdout","source":"a425815a2146be3f.txt","type":"text/plain","size":311}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZerosTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"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":"parentSuite","value":"Novice"},{"name":"story","value":"Number of trailing zeros of N!"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"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.number_of_trailing_zeros_of_n.test_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52f787eb172a8b4ae1000a34/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"7d777a45074a2435.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1b6850c9f0a02820.json b/allure-report/data/test-cases/7de3e61f9ee174a3.json similarity index 83% rename from allure-report/data/test-cases/1b6850c9f0a02820.json rename to allure-report/data/test-cases/7de3e61f9ee174a3.json index 6a4ba3f292c..b59cfa787a1 100644 --- a/allure-report/data/test-cases/1b6850c9f0a02820.json +++ b/allure-report/data/test-cases/7de3e61f9ee174a3.json @@ -1 +1 @@ -{"uid":"1b6850c9f0a02820","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1b6850c9f0a02820.json","parameterValues":[]} \ No newline at end of file +{"uid":"7de3e61f9ee174a3","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/23199ebc2c7c1fa2.json b/allure-report/data/test-cases/7de5228b774a8541.json similarity index 79% rename from allure-report/data/test-cases/23199ebc2c7c1fa2.json rename to allure-report/data/test-cases/7de5228b774a8541.json index 275adda6326..e6f5b91151b 100644 --- a/allure-report/data/test-cases/23199ebc2c7c1fa2.json +++ b/allure-report/data/test-cases/7de5228b774a8541.json @@ -1 +1 @@ -{"uid":"23199ebc2c7c1fa2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41b26a3792b70bd8","name":"stdout","source":"41b26a3792b70bd8.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"23199ebc2c7c1fa2.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fd40fcf970ebd4c6","name":"stdout","source":"fd40fcf970ebd4c6.txt","type":"text/plain","size":60}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7de5228b774a8541.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7de68906bfa0f18.json b/allure-report/data/test-cases/7de68906bfa0f18.json deleted file mode 100644 index 57eb13414ea..00000000000 --- a/allure-report/data/test-cases/7de68906bfa0f18.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7de68906bfa0f18","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"29aa0c598c1f2d04","name":"stdout","source":"29aa0c598c1f2d04.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7de68906bfa0f18.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1733030101086,"stop":1733030101086,"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_SwapValuesTestCase::0","time":{"start":1733030101086,"stop":1733030101086,"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":"story","value":"Swap Values"},{"name":"tag","value":"BUGS"},{"name":"tag","value":"FUNDAMENTALS"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8d156d3e42d4375b","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1}},{"uid":"82d90de1156cd48c","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0}},{"uid":"212bbd08068e155a","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"8081a31c05be488b","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"7e7534020c406c41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e8e53d16d69077.json b/allure-report/data/test-cases/7e8e53d16d69077.json new file mode 100644 index 00000000000..83868b4fe44 --- /dev/null +++ b/allure-report/data/test-cases/7e8e53d16d69077.json @@ -0,0 +1 @@ +{"uid":"7e8e53d16d69077","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":1724735129742,"stop":1724735129742,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"dba645bb71d6294b","name":"stdout","source":"dba645bb71d6294b.txt","type":"text/plain","size":90}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"7e8e53d16d69077.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ea8a8dc382128a4.json b/allure-report/data/test-cases/7ea8a8dc382128a4.json new file mode 100644 index 00000000000..aa10ea1d3ee --- /dev/null +++ b/allure-report/data/test-cases/7ea8a8dc382128a4.json @@ -0,0 +1 @@ +{"uid":"7ea8a8dc382128a4","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1733030098989,"stop":1733030098989,"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\").\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":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/156fc08ab7167514.json b/allure-report/data/test-cases/7edeace92746910e.json similarity index 73% rename from allure-report/data/test-cases/156fc08ab7167514.json rename to allure-report/data/test-cases/7edeace92746910e.json index 1a46bf41891..185d1013f5d 100644 --- a/allure-report/data/test-cases/156fc08ab7167514.json +++ b/allure-report/data/test-cases/7edeace92746910e.json @@ -1 +1 @@ -{"uid":"156fc08ab7167514","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"156fc08ab7167514.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e6ed73d965a64ee5.json b/allure-report/data/test-cases/7f10132389bd0afd.json similarity index 81% rename from allure-report/data/test-cases/e6ed73d965a64ee5.json rename to allure-report/data/test-cases/7f10132389bd0afd.json index 730c49f8f59..c589d4fc2a3 100644 --- a/allure-report/data/test-cases/e6ed73d965a64ee5.json +++ b/allure-report/data/test-cases/7f10132389bd0afd.json @@ -1 +1 @@ -{"uid":"e6ed73d965a64ee5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7bf0ce4c1ec59dfa","name":"stdout","source":"7bf0ce4c1ec59dfa.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"e6ed73d965a64ee5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e048c0e6bb06d724","name":"stdout","source":"e048c0e6bb06d724.txt","type":"text/plain","size":185}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"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":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"7f10132389bd0afd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cedf72c8fbbfdfc5.json b/allure-report/data/test-cases/7f106ecb68257734.json similarity index 82% rename from allure-report/data/test-cases/cedf72c8fbbfdfc5.json rename to allure-report/data/test-cases/7f106ecb68257734.json index e7b5ff34d9c..c4c36653fc4 100644 --- a/allure-report/data/test-cases/cedf72c8fbbfdfc5.json +++ b/allure-report/data/test-cases/7f106ecb68257734.json @@ -1 +1 @@ -{"uid":"cedf72c8fbbfdfc5","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4b8bcccd8e3d9a5","name":"stdout","source":"f4b8bcccd8e3d9a5.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cedf72c8fbbfdfc5.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f106ecb68257734","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":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d9e0d2d6c00c88e9.json b/allure-report/data/test-cases/7f28ecea13e4e886.json similarity index 68% rename from allure-report/data/test-cases/d9e0d2d6c00c88e9.json rename to allure-report/data/test-cases/7f28ecea13e4e886.json index 13bf1e11e14..d515960abe5 100644 --- a/allure-report/data/test-cases/d9e0d2d6c00c88e9.json +++ b/allure-report/data/test-cases/7f28ecea13e4e886.json @@ -1 +1 @@ -{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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":"story","value":"Count the Monkeys!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9e0974c92057e94","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0}},{"uid":"1d437c172b71c55f","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"ed783d7ab62f1ba4","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"d9e0d2d6c00c88e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f28ecea13e4e886","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1732764220875,"stop":1732764220875,"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_MonkeyCountTestCase::0","time":{"start":1732764220875,"stop":1732764220875,"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":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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":"story","value":"Count the Monkeys!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"7f28ecea13e4e886.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f2826391ba216705.json b/allure-report/data/test-cases/7f2fca7b02951542.json similarity index 78% rename from allure-report/data/test-cases/f2826391ba216705.json rename to allure-report/data/test-cases/7f2fca7b02951542.json index 85063235d93..509db426ac8 100644 --- a/allure-report/data/test-cases/f2826391ba216705.json +++ b/allure-report/data/test-cases/7f2fca7b02951542.json @@ -1 +1 @@ -{"uid":"f2826391ba216705","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2826391ba216705.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724735129321,"stop":1724735129321,"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_SumTwoSmallestNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"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":"Lists"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7f2fca7b02951542.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/405b625cf95f9fbd.json b/allure-report/data/test-cases/7f6d50d19e0f3de2.json similarity index 60% rename from allure-report/data/test-cases/405b625cf95f9fbd.json rename to allure-report/data/test-cases/7f6d50d19e0f3de2.json index 7d703382c2e..85edcc9df94 100644 --- a/allure-report/data/test-cases/405b625cf95f9fbd.json +++ b/allure-report/data/test-cases/7f6d50d19e0f3de2.json @@ -1 +1 @@ -{"uid":"405b625cf95f9fbd","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1732764220462,"stop":1732764220462,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a75aa53086c60820","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0}},{"uid":"9dc0ca62f1db510f","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"f40d2270a86983a1","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"405b625cf95f9fbd.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1732764220459,"stop":1732764220459,"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_DisemvowelTestCase::0","time":{"start":1732764220462,"stop":1732764220462,"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":"Disemvowel Trolls"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"7f6d50d19e0f3de2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bda7ad5e74660b56.json b/allure-report/data/test-cases/7f8863141fd28835.json similarity index 92% rename from allure-report/data/test-cases/bda7ad5e74660b56.json rename to allure-report/data/test-cases/7f8863141fd28835.json index e73603945e0..dcf35c39913 100644 --- a/allure-report/data/test-cases/bda7ad5e74660b56.json +++ b/allure-report/data/test-cases/7f8863141fd28835.json @@ -1 +1 @@ -{"uid":"bda7ad5e74660b56","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"bda7ad5e74660b56.json","parameterValues":[]} \ No newline at end of file +{"uid":"7f8863141fd28835","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"No arithmetic progressions"},{"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_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"7f8863141fd28835.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","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 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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string 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},{"name":"Enter a string 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},{"name":"Enter a string 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":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::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":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"73ceae1f03ba10a4","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1}},{"uid":"e298eeaddede77ad","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0}},{"uid":"d1be51368671f899","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"5aa15cdd34cdd72f","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"7fd83f8828bfb391.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ae269d449ac7d5e.json b/allure-report/data/test-cases/800e8bf322748e89.json similarity index 78% rename from allure-report/data/test-cases/1ae269d449ac7d5e.json rename to allure-report/data/test-cases/800e8bf322748e89.json index 7f47892533f..c5947b709bb 100644 --- a/allure-report/data/test-cases/1ae269d449ac7d5e.json +++ b/allure-report/data/test-cases/800e8bf322748e89.json @@ -1 +1 @@ -{"uid":"1ae269d449ac7d5e","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4a17336d068efc8d","name":"stdout","source":"4a17336d068efc8d.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"1ae269d449ac7d5e.json","parameterValues":[]} \ No newline at end of file +{"uid":"800e8bf322748e89","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"435e1e4d04469bf3","name":"stdout","source":"435e1e4d04469bf3.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724733474866,"stop":1724733474866,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"800e8bf322748e89.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/801881710b06074.json b/allure-report/data/test-cases/801881710b06074.json deleted file mode 100644 index 656a2ddf503..00000000000 --- a/allure-report/data/test-cases/801881710b06074.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"801881710b06074","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"420f806ee93872a1","name":"stdout","source":"420f806ee93872a1.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"801881710b06074.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e6abe3c64e54cb9f.json b/allure-report/data/test-cases/8081a31c05be488b.json similarity index 80% rename from allure-report/data/test-cases/e6abe3c64e54cb9f.json rename to allure-report/data/test-cases/8081a31c05be488b.json index f6fdc06f923..61435fe934e 100644 --- a/allure-report/data/test-cases/e6abe3c64e54cb9f.json +++ b/allure-report/data/test-cases/8081a31c05be488b.json @@ -1 +1 @@ -{"uid":"e6abe3c64e54cb9f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef03ba760fe885c0","name":"stdout","source":"ef03ba760fe885c0.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"e6abe3c64e54cb9f.json","parameterValues":[]} \ No newline at end of file +{"uid":"8081a31c05be488b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"24f89618104eb19b","name":"stdout","source":"24f89618104eb19b.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"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":"BUGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"8081a31c05be488b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d4ef3b1faaf3c9d.json b/allure-report/data/test-cases/809e3691a3f26473.json similarity index 79% rename from allure-report/data/test-cases/3d4ef3b1faaf3c9d.json rename to allure-report/data/test-cases/809e3691a3f26473.json index 4dbb70b07d8..6b4214adb75 100644 --- a/allure-report/data/test-cases/3d4ef3b1faaf3c9d.json +++ b/allure-report/data/test-cases/809e3691a3f26473.json @@ -1 +1 @@ -{"uid":"3d4ef3b1faaf3c9d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"be09c92a6fe0ac60","name":"stdout","source":"be09c92a6fe0ac60.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3d4ef3b1faaf3c9d.json","parameterValues":[]} \ No newline at end of file +{"uid":"809e3691a3f26473","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"28132f88f00a1308","name":"stdout","source":"28132f88f00a1308.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"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":"story","value":"Pull your words together, man!"},{"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_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"809e3691a3f26473.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80b7e762ad299367.json b/allure-report/data/test-cases/80b7e762ad299367.json new file mode 100644 index 00000000000..02f4a3e7134 --- /dev/null +++ b/allure-report/data/test-cases/80b7e762ad299367.json @@ -0,0 +1 @@ +{"uid":"80b7e762ad299367","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c7b8f329dd40406f.json b/allure-report/data/test-cases/80f4fc862b13c5c8.json similarity index 75% rename from allure-report/data/test-cases/c7b8f329dd40406f.json rename to allure-report/data/test-cases/80f4fc862b13c5c8.json index 05d424d8075..9b3a69cc714 100644 --- a/allure-report/data/test-cases/c7b8f329dd40406f.json +++ b/allure-report/data/test-cases/80f4fc862b13c5c8.json @@ -1 +1 @@ -{"uid":"c7b8f329dd40406f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7269f46fd31058ea","name":"stdout","source":"7269f46fd31058ea.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"c7b8f329dd40406f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba1557147d8416c1","name":"stdout","source":"ba1557147d8416c1.txt","type":"text/plain","size":30}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"80f4fc862b13c5c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8146fd50051ac96b.json b/allure-report/data/test-cases/8146fd50051ac96b.json new file mode 100644 index 00000000000..32c976dc1fc --- /dev/null +++ b/allure-report/data/test-cases/8146fd50051ac96b.json @@ -0,0 +1 @@ +{"uid":"8146fd50051ac96b","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":1733030100403,"stop":1733030100403,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"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_SumOfNumbersTestCase::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":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed375a568ef53727","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0}},{"uid":"f6a5ab1c4ff51693","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0}},{"uid":"f8b721dfa4278fea","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"115439469142590e","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"8146fd50051ac96b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/81d67983376326e.json b/allure-report/data/test-cases/81d67983376326e.json new file mode 100644 index 00000000000..fda2cfc7f98 --- /dev/null +++ b/allure-report/data/test-cases/81d67983376326e.json @@ -0,0 +1 @@ +{"uid":"81d67983376326e","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":1732764218624,"stop":1732764218624,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/cd536df0700f3bd3.json b/allure-report/data/test-cases/81fc21ff964037a2.json similarity index 75% rename from allure-report/data/test-cases/cd536df0700f3bd3.json rename to allure-report/data/test-cases/81fc21ff964037a2.json index 898cc81f845..9073cba5b3b 100644 --- a/allure-report/data/test-cases/cd536df0700f3bd3.json +++ b/allure-report/data/test-cases/81fc21ff964037a2.json @@ -1 +1 @@ -{"uid":"cd536df0700f3bd3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732428195552,"stop":1732428195552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase::0","time":{"start":1732428195556,"stop":1732428195556,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"cd536df0700f3bd3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","time":{"start":1732428195552,"stop":1732428195552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1732428195553,"stop":1732428195553,"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_NumericalsTestCase::0","time":{"start":1732428195556,"stop":1732428195556,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Numericals of a String"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"81fc21ff964037a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64abc8899e8e691d.json b/allure-report/data/test-cases/823872001ab9ba87.json similarity index 71% rename from allure-report/data/test-cases/64abc8899e8e691d.json rename to allure-report/data/test-cases/823872001ab9ba87.json index 52338e582cb..dd6d3923a0d 100644 --- a/allure-report/data/test-cases/64abc8899e8e691d.json +++ b/allure-report/data/test-cases/823872001ab9ba87.json @@ -1 +1 @@ -{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732764219297,"stop":1732764219297,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf7dba429c84fe69","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0}},{"uid":"73622414b649e45a","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"5392fbee850dfcf4","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"64abc8899e8e691d.json","parameterValues":[]} \ No newline at end of file +{"uid":"823872001ab9ba87","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732764219297,"stop":1732764219297,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","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 The function powers takes a single parameter,\n the number n, and should return an array of\n unique numbers.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","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":16,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::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":"feature","value":"Calculation"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of powers of 2"},{"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.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4597108775e2ebb","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4}},{"uid":"4a34b1c679ee3fc0","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0}},{"uid":"5cda4840465073d5","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"2ea180ad6a851a6d","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":"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"823dff07664aaa4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7035dc3ef8d99c0.json b/allure-report/data/test-cases/824bfc7518105d49.json similarity index 63% rename from allure-report/data/test-cases/e7035dc3ef8d99c0.json rename to allure-report/data/test-cases/824bfc7518105d49.json index e2dfa8e0fdc..b87ac3d5807 100644 --- a/allure-report/data/test-cases/e7035dc3ef8d99c0.json +++ b/allure-report/data/test-cases/824bfc7518105d49.json @@ -1 +1 @@ -{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732764218663,"stop":1732764218663,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b054542ab329d2ac","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0}},{"uid":"b7874e896ca052d2","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"3f3bfc03f90689c3","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e7035dc3ef8d99c0.json","parameterValues":[]} \ No newline at end of file +{"uid":"824bfc7518105d49","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732764218663,"stop":1732764218663,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f10852a0a46489bf.json b/allure-report/data/test-cases/82ae018d43c04f85.json similarity index 93% rename from allure-report/data/test-cases/f10852a0a46489bf.json rename to allure-report/data/test-cases/82ae018d43c04f85.json index 2e96a95fdbd..75d2c8dca31 100644 --- a/allure-report/data/test-cases/f10852a0a46489bf.json +++ b/allure-report/data/test-cases/82ae018d43c04f85.json @@ -1 +1 @@ -{"uid":"f10852a0a46489bf","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":"f10852a0a46489bf.json","parameterValues":[]} \ No newline at end of file +{"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/3785819940a9985f.json b/allure-report/data/test-cases/82d90de1156cd48c.json similarity index 81% rename from allure-report/data/test-cases/3785819940a9985f.json rename to allure-report/data/test-cases/82d90de1156cd48c.json index 0a550cc26d8..0ef64fd9074 100644 --- a/allure-report/data/test-cases/3785819940a9985f.json +++ b/allure-report/data/test-cases/82d90de1156cd48c.json @@ -1 +1 @@ -{"uid":"3785819940a9985f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732428196392,"stop":1732428196392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732428196394,"stop":1732428196394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Swap Values"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"tag","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_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"3785819940a9985f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732428196392,"stop":1732428196392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732428196393,"stop":1732428196393,"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_SwapValuesTestCase::0","time":{"start":1732428196394,"stop":1732428196394,"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":"story","value":"Swap Values"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"tag","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_8.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"82d90de1156cd48c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24b32ad032525022.json b/allure-report/data/test-cases/82e02fa0cc46fda7.json similarity index 76% rename from allure-report/data/test-cases/24b32ad032525022.json rename to allure-report/data/test-cases/82e02fa0cc46fda7.json index af11ae7c2c8..7303f746650 100644 --- a/allure-report/data/test-cases/24b32ad032525022.json +++ b/allure-report/data/test-cases/82e02fa0cc46fda7.json @@ -1 +1 @@ -{"uid":"24b32ad032525022","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"22c24dd6f011f9a2","name":"stdout","source":"22c24dd6f011f9a2.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"24b32ad032525022.json","parameterValues":[]} \ No newline at end of file +{"uid":"82e02fa0cc46fda7","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/832c94aac84bf09.json b/allure-report/data/test-cases/832c94aac84bf09.json deleted file mode 100644 index fb0de593e25..00000000000 --- a/allure-report/data/test-cases/832c94aac84bf09.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"832c94aac84bf09","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732428196110,"stop":1732428196110,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732428196109,"stop":1732428196109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase::0","time":{"start":1732428196111,"stop":1732428196111,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Check the exam"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"832c94aac84bf09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ac4d21875a44bdb.json b/allure-report/data/test-cases/83385fc467b4a8e5.json similarity index 87% rename from allure-report/data/test-cases/2ac4d21875a44bdb.json rename to allure-report/data/test-cases/83385fc467b4a8e5.json index a8dd7abafd2..28ba83cb1f6 100644 --- a/allure-report/data/test-cases/2ac4d21875a44bdb.json +++ b/allure-report/data/test-cases/83385fc467b4a8e5.json @@ -1 +1 @@ -{"uid":"2ac4d21875a44bdb","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6362c8f15fc6c9c0","name":"stdout","source":"6362c8f15fc6c9c0.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2ac4d21875a44bdb.json","parameterValues":[]} \ No newline at end of file +{"uid":"83385fc467b4a8e5","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5654bb5658921dcd.json b/allure-report/data/test-cases/839787eb550f06c0.json similarity index 66% rename from allure-report/data/test-cases/5654bb5658921dcd.json rename to allure-report/data/test-cases/839787eb550f06c0.json index 5666c0c0159..c00e01a8bcd 100644 --- a/allure-report/data/test-cases/5654bb5658921dcd.json +++ b/allure-report/data/test-cases/839787eb550f06c0.json @@ -1 +1 @@ -{"uid":"5654bb5658921dcd","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732764218944,"stop":1732764218944,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732764218943,"stop":1732764218943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1732764218946,"stop":1732764218946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATES/TIME"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Human Readable Time"},{"name":"feature","value":"Math"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ca3cfa2d2c9d074","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0}},{"uid":"75040d42480a95e8","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"e63c100babc1267d","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"5654bb5658921dcd.json","parameterValues":[]} \ No newline at end of file +{"uid":"839787eb550f06c0","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1732764218944,"stop":1732764218944,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1732764218943,"stop":1732764218943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1732764218944,"stop":1732764218944,"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_MakeReadableTestCase::0","time":{"start":1732764218946,"stop":1732764218946,"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":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATES/TIME"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Human Readable Time"},{"name":"feature","value":"Math"},{"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_5.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"839787eb550f06c0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83ae1189d3669b33.json b/allure-report/data/test-cases/83ae1189d3669b33.json new file mode 100644 index 00000000000..ac68b8cf880 --- /dev/null +++ b/allure-report/data/test-cases/83ae1189d3669b33.json @@ -0,0 +1 @@ +{"uid":"83ae1189d3669b33","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1733030100247,"stop":1733030100247,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","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":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::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":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Pyramid Array"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ae9c6bad3687824e","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0}},{"uid":"bebb2bc7f67aea79","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1}},{"uid":"b43edc8fd032be6e","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"901ad6e6b17ea71d","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":"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}}]},"tags":["ALGORITHMS"]},"source":"83ae1189d3669b33.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83c9df798b4e44f.json b/allure-report/data/test-cases/83c9df798b4e44f.json new file mode 100644 index 00000000000..0ec9144cc75 --- /dev/null +++ b/allure-report/data/test-cases/83c9df798b4e44f.json @@ -0,0 +1 @@ +{"uid":"83c9df798b4e44f","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8c4c3ac3b9ddced3.json b/allure-report/data/test-cases/83da90e97e5349e6.json similarity index 81% rename from allure-report/data/test-cases/8c4c3ac3b9ddced3.json rename to allure-report/data/test-cases/83da90e97e5349e6.json index d83ded6cd26..75d45173334 100644 --- a/allure-report/data/test-cases/8c4c3ac3b9ddced3.json +++ b/allure-report/data/test-cases/83da90e97e5349e6.json @@ -1 +1 @@ -{"uid":"8c4c3ac3b9ddced3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"662510f84e87d061","name":"stdout","source":"662510f84e87d061.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8c4c3ac3b9ddced3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/294aa341a28271bb.json b/allure-report/data/test-cases/83db549d27afd32b.json similarity index 90% rename from allure-report/data/test-cases/294aa341a28271bb.json rename to allure-report/data/test-cases/83db549d27afd32b.json index d88d5239ad4..d1b0dc88ea0 100644 --- a/allure-report/data/test-cases/294aa341a28271bb.json +++ b/allure-report/data/test-cases/83db549d27afd32b.json @@ -1 +1 @@ -{"uid":"294aa341a28271bb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732428195975,"stop":1732428195975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732428195976,"stop":1732428195976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Sort Out The Men From Boys"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Lists"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"294aa341a28271bb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732428195975,"stop":1732428195975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732428195976,"stop":1732428195976,"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_MenFromBoysTestCase::0","time":{"start":1732428195976,"stop":1732428195976,"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":"Sort Out The Men From Boys"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Lists"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"83db549d27afd32b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/393b88e5ac625a50.json b/allure-report/data/test-cases/842c6d1ee8161eef.json similarity index 78% rename from allure-report/data/test-cases/393b88e5ac625a50.json rename to allure-report/data/test-cases/842c6d1ee8161eef.json index d1379dd7854..dc75524ae9c 100644 --- a/allure-report/data/test-cases/393b88e5ac625a50.json +++ b/allure-report/data/test-cases/842c6d1ee8161eef.json @@ -1 +1 @@ -{"uid":"393b88e5ac625a50","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732428196222,"stop":1732428196222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1732428196225,"stop":1732428196225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Loops"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"393b88e5ac625a50.json","parameterValues":[]} \ No newline at end of file +{"uid":"842c6d1ee8161eef","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1732428196222,"stop":1732428196222,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1732428196224,"stop":1732428196224,"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_SummationTestCase::0","time":{"start":1732428196225,"stop":1732428196225,"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":"Loops"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Grasshopper - Summation"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"842c6d1ee8161eef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/efdfaccb93c4c6b4.json b/allure-report/data/test-cases/84d7e1eb21948129.json similarity index 80% rename from allure-report/data/test-cases/efdfaccb93c4c6b4.json rename to allure-report/data/test-cases/84d7e1eb21948129.json index b20a20984ed..60e87f7dbfe 100644 --- a/allure-report/data/test-cases/efdfaccb93c4c6b4.json +++ b/allure-report/data/test-cases/84d7e1eb21948129.json @@ -1 +1 @@ -{"uid":"efdfaccb93c4c6b4","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"42b879e2f735a0ac","name":"stdout","source":"42b879e2f735a0ac.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"efdfaccb93c4c6b4.json","parameterValues":[]} \ No newline at end of file +{"uid":"84d7e1eb21948129","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8e87cfc15c8260a3.json b/allure-report/data/test-cases/84e5ce529aafcfa9.json similarity index 66% rename from allure-report/data/test-cases/8e87cfc15c8260a3.json rename to allure-report/data/test-cases/84e5ce529aafcfa9.json index 4c73fbb1290..bc425828210 100644 --- a/allure-report/data/test-cases/8e87cfc15c8260a3.json +++ b/allure-report/data/test-cases/84e5ce529aafcfa9.json @@ -1 +1 @@ -{"uid":"8e87cfc15c8260a3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220529,"stop":1732764220529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6bf2acd0a0db42e5","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1}},{"uid":"21dca02637c8027f","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"1dd416b71393e4f8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"8e87cfc15c8260a3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732764220529,"stop":1732764220529,"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_LengthTestCase::0","time":{"start":1732764220530,"stop":1732764220530,"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":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Fun with lists: length"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"84e5ce529aafcfa9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8572ffe92ddcaa11.json b/allure-report/data/test-cases/8572ffe92ddcaa11.json new file mode 100644 index 00000000000..8350d7dc459 --- /dev/null +++ b/allure-report/data/test-cases/8572ffe92ddcaa11.json @@ -0,0 +1 @@ +{"uid":"8572ffe92ddcaa11","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/71dc0d8169aaad6f.json b/allure-report/data/test-cases/857509cc66fb3470.json similarity index 56% rename from allure-report/data/test-cases/71dc0d8169aaad6f.json rename to allure-report/data/test-cases/857509cc66fb3470.json index 53733da285b..2b95bbce04d 100644 --- a/allure-report/data/test-cases/71dc0d8169aaad6f.json +++ b/allure-report/data/test-cases/857509cc66fb3470.json @@ -1 +1 @@ -{"uid":"71dc0d8169aaad6f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78bed3c0bc3ed4a","name":"stdout","source":"78bed3c0bc3ed4a.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"71dc0d8169aaad6f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5c46b88a061332b3","name":"stdout","source":"5c46b88a061332b3.txt","type":"text/plain","size":120}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"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":"Find the longest gap!"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"857509cc66fb3470.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f40d2270a86983a1.json b/allure-report/data/test-cases/857dc75c5bd2dd17.json similarity index 81% rename from allure-report/data/test-cases/f40d2270a86983a1.json rename to allure-report/data/test-cases/857dc75c5bd2dd17.json index 8d6b64ea32a..ea7d7c634d8 100644 --- a/allure-report/data/test-cases/f40d2270a86983a1.json +++ b/allure-report/data/test-cases/857dc75c5bd2dd17.json @@ -1 +1 @@ -{"uid":"f40d2270a86983a1","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2de6534e84498685","name":"stdout","source":"2de6534e84498685.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"f40d2270a86983a1.json","parameterValues":[]} \ No newline at end of file +{"uid":"857dc75c5bd2dd17","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724733474210,"stop":1724733474210,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3253e81015ef9292","name":"stdout","source":"3253e81015ef9292.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724733474210,"stop":1724733474210,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Disemvowel Trolls"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"857dc75c5bd2dd17.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/689b611d3c9a3124.json b/allure-report/data/test-cases/8603861216d7d4c6.json similarity index 65% rename from allure-report/data/test-cases/689b611d3c9a3124.json rename to allure-report/data/test-cases/8603861216d7d4c6.json index 8ef3cd6ae57..1a8461a5fdb 100644 --- a/allure-report/data/test-cases/689b611d3c9a3124.json +++ b/allure-report/data/test-cases/8603861216d7d4c6.json @@ -1 +1 @@ -{"uid":"689b611d3c9a3124","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732764221134,"stop":1732764221134,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e71092ad871851c8","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1}},{"uid":"2dcba5fbac259354","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"94e103957a6e541c","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"689b611d3c9a3124.json","parameterValues":[]} \ No newline at end of file +{"uid":"8603861216d7d4c6","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1732764221134,"stop":1732764221134,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1732764221134,"stop":1732764221134,"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_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"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":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8603861216d7d4c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/864737f712b002ec.json b/allure-report/data/test-cases/864737f712b002ec.json deleted file mode 100644 index 9f457309c14..00000000000 --- a/allure-report/data/test-cases/864737f712b002ec.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"864737f712b002ec","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"864737f712b002ec.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"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_PermutePalindromeTestCase::0","time":{"start":1733030100215,"stop":1733030100215,"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":"Permute a Palindrome"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a78dd64f3f2b4648","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0}},{"uid":"abe925767bdb0e39","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1}},{"uid":"9faa60a73c33e8b6","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"47eeb9c764763918","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":"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"864ee426bf422b09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/867b171e961cc6e3.json b/allure-report/data/test-cases/867b171e961cc6e3.json deleted file mode 100644 index c06c2670049..00000000000 --- a/allure-report/data/test-cases/867b171e961cc6e3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"867b171e961cc6e3","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":1732428196029,"stop":1732428196030,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter zero and verify the output","time":{"start":1732428196029,"stop":1732428196029,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732428196030,"stop":1732428196030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Triangular Numbers"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"867b171e961cc6e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d56667f6ac1424a3.json b/allure-report/data/test-cases/867f27ef53f4ce43.json similarity index 87% rename from allure-report/data/test-cases/d56667f6ac1424a3.json rename to allure-report/data/test-cases/867f27ef53f4ce43.json index 9994662d453..b3ac154786d 100644 --- a/allure-report/data/test-cases/d56667f6ac1424a3.json +++ b/allure-report/data/test-cases/867f27ef53f4ce43.json @@ -1 +1 @@ -{"uid":"d56667f6ac1424a3","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":1732428195826,"stop":1732428195826,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732428195827,"stop":1732428195827,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Formatting"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d56667f6ac1424a3.json","parameterValues":[]} \ No newline at end of file +{"uid":"867f27ef53f4ce43","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":1732428195826,"stop":1732428195826,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732428195826,"stop":1732428195826,"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_TwoDecimalPlacesTestCase::0","time":{"start":1732428195827,"stop":1732428195827,"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":"feature","value":"Formatting"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"tag","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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"867f27ef53f4ce43.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab62ce2428f0e01f.json b/allure-report/data/test-cases/86bec9b105840355.json similarity index 82% rename from allure-report/data/test-cases/ab62ce2428f0e01f.json rename to allure-report/data/test-cases/86bec9b105840355.json index 55c41ccf411..7da6e67b49d 100644 --- a/allure-report/data/test-cases/ab62ce2428f0e01f.json +++ b/allure-report/data/test-cases/86bec9b105840355.json @@ -1 +1 @@ -{"uid":"ab62ce2428f0e01f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"5947f9b7e86e5fe4","name":"stdout","source":"5947f9b7e86e5fe4.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ab62ce2428f0e01f.json","parameterValues":[]} \ No newline at end of file +{"uid":"86bec9b105840355","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"efe9c31cce4f2691","name":"stdout","source":"efe9c31cce4f2691.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"86bec9b105840355.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/86bf8b663d5828a.json b/allure-report/data/test-cases/86bf8b663d5828a.json deleted file mode 100644 index f22d5037424..00000000000 --- a/allure-report/data/test-cases/86bf8b663d5828a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732764220494,"stop":1732764220494,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4e0153f9704bfbb","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0}},{"uid":"c38b32e4e940b443","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"bfb03abe3203ecf1","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"86bf8b663d5828a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e532878179cb6f87.json b/allure-report/data/test-cases/86de6e64454fca19.json similarity index 66% rename from allure-report/data/test-cases/e532878179cb6f87.json rename to allure-report/data/test-cases/86de6e64454fca19.json index 51406279fd4..6bec910ea35 100644 --- a/allure-report/data/test-cases/e532878179cb6f87.json +++ b/allure-report/data/test-cases/86de6e64454fca19.json @@ -1 +1 @@ -{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732764221047,"stop":1732764221047,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732764221049,"stop":1732764221049,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c3e164f822b7bae","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0}},{"uid":"c8de14a6ed49ac6d","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"30ebc2ebd440c488","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"e532878179cb6f87.json","parameterValues":[]} \ No newline at end of file +{"uid":"86de6e64454fca19","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732764221047,"stop":1732764221047,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764221047,"stop":1732764221047,"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_IsPalindromeTestCase::0","time":{"start":1732764221049,"stop":1732764221049,"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":"Is it a palindrome?"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"86de6e64454fca19.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f20da98ae3e1985.json b/allure-report/data/test-cases/8729b907b71b7609.json similarity index 80% rename from allure-report/data/test-cases/4f20da98ae3e1985.json rename to allure-report/data/test-cases/8729b907b71b7609.json index f477ba8bbbf..054fb8bc128 100644 --- a/allure-report/data/test-cases/4f20da98ae3e1985.json +++ b/allure-report/data/test-cases/8729b907b71b7609.json @@ -1 +1 @@ -{"uid":"4f20da98ae3e1985","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d03a9a8c81cbe39f","name":"stdout","source":"d03a9a8c81cbe39f.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4f20da98ae3e1985.json","parameterValues":[]} \ No newline at end of file +{"uid":"8729b907b71b7609","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1733030100898,"stop":1733030100898,"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_CheckForFactorTestCase::0","time":{"start":1733030100898,"stop":1733030100898,"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":"feature","value":"Calculation"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf262768264e0cc2","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0}},{"uid":"4875af937b850b1f","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1}},{"uid":"56d273815a84483f","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"7f10132389bd0afd","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"873ec1972fa36468.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/406377324fdf0256.json b/allure-report/data/test-cases/87664723e6f57cb6.json similarity index 83% rename from allure-report/data/test-cases/406377324fdf0256.json rename to allure-report/data/test-cases/87664723e6f57cb6.json index e7fd55d23ee..30892f69c0e 100644 --- a/allure-report/data/test-cases/406377324fdf0256.json +++ b/allure-report/data/test-cases/87664723e6f57cb6.json @@ -1 +1 @@ -{"uid":"406377324fdf0256","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f2a9e45ebf48d755","name":"stdout","source":"f2a9e45ebf48d755.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"406377324fdf0256.json","parameterValues":[]} \ No newline at end of file +{"uid":"87664723e6f57cb6","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/879748b1d447d0a9.json b/allure-report/data/test-cases/879748b1d447d0a9.json deleted file mode 100644 index 40400b85aad..00000000000 --- a/allure-report/data/test-cases/879748b1d447d0a9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"879748b1d447d0a9","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732428195946,"stop":1732428195946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732428195947,"stop":1732428195947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Share prices"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"879748b1d447d0a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87b0b5de93d5cb12.json b/allure-report/data/test-cases/87b0b5de93d5cb12.json new file mode 100644 index 00000000000..d89217ae2a9 --- /dev/null +++ b/allure-report/data/test-cases/87b0b5de93d5cb12.json @@ -0,0 +1 @@ +{"uid":"87b0b5de93d5cb12","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f7f7ddd6c717f082.json b/allure-report/data/test-cases/87df803cadfb61a6.json similarity index 61% rename from allure-report/data/test-cases/f7f7ddd6c717f082.json rename to allure-report/data/test-cases/87df803cadfb61a6.json index eb8b913ee90..e1fbf21d094 100644 --- a/allure-report/data/test-cases/f7f7ddd6c717f082.json +++ b/allure-report/data/test-cases/87df803cadfb61a6.json @@ -1 +1 @@ -{"uid":"f7f7ddd6c717f082","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"84790cd414c0264a","name":"stdout","source":"84790cd414c0264a.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f7f7ddd6c717f082.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6a3f85e29591c654.json b/allure-report/data/test-cases/87f281129608ef41.json similarity index 61% rename from allure-report/data/test-cases/6a3f85e29591c654.json rename to allure-report/data/test-cases/87f281129608ef41.json index 1f801a116c3..c4ec1c20f0b 100644 --- a/allure-report/data/test-cases/6a3f85e29591c654.json +++ b/allure-report/data/test-cases/87f281129608ef41.json @@ -1 +1 @@ -{"uid":"6a3f85e29591c654","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":"

Codewars badge:

Test Description:

Assert that 'domain_name' function returns domain name from given URL string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"950acbfbefb81796","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0}},{"uid":"e0d2f09c0da8121","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"13c4343c88a790e8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"6a3f85e29591c654.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3ead41117d0ad5b6.json b/allure-report/data/test-cases/8809fca01a516cec.json similarity index 61% rename from allure-report/data/test-cases/3ead41117d0ad5b6.json rename to allure-report/data/test-cases/8809fca01a516cec.json index c74e5f87d88..27b3fb455d3 100644 --- a/allure-report/data/test-cases/3ead41117d0ad5b6.json +++ b/allure-report/data/test-cases/8809fca01a516cec.json @@ -1 +1 @@ -{"uid":"3ead41117d0ad5b6","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":"

Codewars badge:

Test Description:

Given a year, the function should return the century it is in.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"864737f712b002ec","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0}},{"uid":"3fe8a02ede1e6532","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"65bb39f46c25941f","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3ead41117d0ad5b6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ed783d7ab62f1ba4.json b/allure-report/data/test-cases/88501d2467af647f.json similarity index 82% rename from allure-report/data/test-cases/ed783d7ab62f1ba4.json rename to allure-report/data/test-cases/88501d2467af647f.json index 31cb48fe659..7d4d3990da5 100644 --- a/allure-report/data/test-cases/ed783d7ab62f1ba4.json +++ b/allure-report/data/test-cases/88501d2467af647f.json @@ -1 +1 @@ -{"uid":"ed783d7ab62f1ba4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"87d3adc8617c894b","name":"stdout","source":"87d3adc8617c894b.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"ed783d7ab62f1ba4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number (int) and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"468a57056683ca0e","name":"stdout","source":"468a57056683ca0e.txt","type":"text/plain","size":314}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MonkeyCountTestCase::0","time":{"start":1724733474600,"stop":1724733474600,"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":"story","value":"Count the Monkeys!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"RANGES"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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_8.count_the_monkeys.test_monkey_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/count-the-monkeys/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"88501d2467af647f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8878dccf56d36ba6.json b/allure-report/data/test-cases/8878dccf56d36ba6.json new file mode 100644 index 00000000000..a090032552e --- /dev/null +++ b/allure-report/data/test-cases/8878dccf56d36ba6.json @@ -0,0 +1 @@ +{"uid":"8878dccf56d36ba6","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":1733030100200,"stop":1733030100200,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/200b5f0b4ec790a3.json b/allure-report/data/test-cases/88b006bece2616b2.json similarity index 68% rename from allure-report/data/test-cases/200b5f0b4ec790a3.json rename to allure-report/data/test-cases/88b006bece2616b2.json index b9264f37e3a..3844697a77f 100644 --- a/allure-report/data/test-cases/200b5f0b4ec790a3.json +++ b/allure-report/data/test-cases/88b006bece2616b2.json @@ -1 +1 @@ -{"uid":"200b5f0b4ec790a3","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732764219366,"stop":1732764219366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7c4d343c90ce082","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3}},{"uid":"4c31a5ec99c6ca69","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"437936b48694b75d","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"200b5f0b4ec790a3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f7d9041670997ad6.json b/allure-report/data/test-cases/88ca13ae93cc2b33.json similarity index 81% rename from allure-report/data/test-cases/f7d9041670997ad6.json rename to allure-report/data/test-cases/88ca13ae93cc2b33.json index 45b25a4b510..4595e72dc18 100644 --- a/allure-report/data/test-cases/f7d9041670997ad6.json +++ b/allure-report/data/test-cases/88ca13ae93cc2b33.json @@ -1 +1 @@ -{"uid":"f7d9041670997ad6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f7d9041670997ad6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cf72669419827310","name":"stdout","source":"cf72669419827310.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8930ec9e348fd4d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/86447fe348b226fe.json b/allure-report/data/test-cases/895846e60323f8ba.json similarity index 74% rename from allure-report/data/test-cases/86447fe348b226fe.json rename to allure-report/data/test-cases/895846e60323f8ba.json index bb32eeafe4e..322e2002d73 100644 --- a/allure-report/data/test-cases/86447fe348b226fe.json +++ b/allure-report/data/test-cases/895846e60323f8ba.json @@ -1 +1 @@ -{"uid":"86447fe348b226fe","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a21b9ca1dd2e7b86","name":"stdout","source":"a21b9ca1dd2e7b86.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"86447fe348b226fe.json","parameterValues":[]} \ No newline at end of file +{"uid":"895846e60323f8ba","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2d49ce73ea45d7a1.json b/allure-report/data/test-cases/8966b735a3793409.json similarity index 84% rename from allure-report/data/test-cases/2d49ce73ea45d7a1.json rename to allure-report/data/test-cases/8966b735a3793409.json index 88d6100d17a..763f85eb264 100644 --- a/allure-report/data/test-cases/2d49ce73ea45d7a1.json +++ b/allure-report/data/test-cases/8966b735a3793409.json @@ -1 +1 @@ -{"uid":"2d49ce73ea45d7a1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4f2668e4eadc4184","name":"stdout","source":"4f2668e4eadc4184.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"2d49ce73ea45d7a1.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"311050da7cc4ba1d","name":"stdout","source":"311050da7cc4ba1d.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724735129399,"stop":1724735129399,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"8966b735a3793409.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/71a87e59b6648413.json b/allure-report/data/test-cases/89e4ffe6e2b4858c.json similarity index 89% rename from allure-report/data/test-cases/71a87e59b6648413.json rename to allure-report/data/test-cases/89e4ffe6e2b4858c.json index 521df9d6d4a..aadd7b46196 100644 --- a/allure-report/data/test-cases/71a87e59b6648413.json +++ b/allure-report/data/test-cases/89e4ffe6e2b4858c.json @@ -1 +1 @@ -{"uid":"71a87e59b6648413","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"71a87e59b6648413.json","parameterValues":[]} \ No newline at end of file +{"uid":"89e4ffe6e2b4858c","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a25791815212e793.json b/allure-report/data/test-cases/89e6e7af226f3582.json similarity index 80% rename from allure-report/data/test-cases/a25791815212e793.json rename to allure-report/data/test-cases/89e6e7af226f3582.json index 47eb3a8d519..1a78c3603e9 100644 --- a/allure-report/data/test-cases/a25791815212e793.json +++ b/allure-report/data/test-cases/89e6e7af226f3582.json @@ -1 +1 @@ -{"uid":"a25791815212e793","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"835e4619c5013fd1","name":"stdout","source":"835e4619c5013fd1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a25791815212e793.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724733473960,"stop":1724733473976,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f8244a44f0672b6","name":"stdout","source":"7f8244a44f0672b6.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724733473976,"stop":1724733473976,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"89e6e7af226f3582.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a0604fc927a7480.json b/allure-report/data/test-cases/8a0604fc927a7480.json new file mode 100644 index 00000000000..17c80ad25bf --- /dev/null +++ b/allure-report/data/test-cases/8a0604fc927a7480.json @@ -0,0 +1 @@ +{"uid":"8a0604fc927a7480","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":1733030100867,"stop":1733030100867,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1733030100867,"stop":1733030100867,"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_FirstNonConsecutiveTestCase::0","time":{"start":1733030100882,"stop":1733030100882,"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":"story","value":"Find the first non-consecutive number"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7ce67f10ab4c86ee","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0}},{"uid":"cb921d8c86204096","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0}},{"uid":"656d201041ba5817","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"1fbf7f076eee2a48","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"8a0604fc927a7480.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2399abc94e3173da.json b/allure-report/data/test-cases/8a29f61d53cfa694.json similarity index 77% rename from allure-report/data/test-cases/2399abc94e3173da.json rename to allure-report/data/test-cases/8a29f61d53cfa694.json index e5938d89555..fb067fbd056 100644 --- a/allure-report/data/test-cases/2399abc94e3173da.json +++ b/allure-report/data/test-cases/8a29f61d53cfa694.json @@ -1 +1 @@ -{"uid":"2399abc94e3173da","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"716034871f152875","name":"stdout","source":"716034871f152875.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2399abc94e3173da.json","parameterValues":[]} \ No newline at end of file +{"uid":"8a29f61d53cfa694","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ded455ca81b768f","name":"stdout","source":"1ded455ca81b768f.txt","type":"text/plain","size":32}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"8a29f61d53cfa694.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8da32e94b736fef.json b/allure-report/data/test-cases/8ade4c7a0e59dd30.json similarity index 78% rename from allure-report/data/test-cases/c8da32e94b736fef.json rename to allure-report/data/test-cases/8ade4c7a0e59dd30.json index a327cc8f349..ffbc3e6381d 100644 --- a/allure-report/data/test-cases/c8da32e94b736fef.json +++ b/allure-report/data/test-cases/8ade4c7a0e59dd30.json @@ -1 +1 @@ -{"uid":"c8da32e94b736fef","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":1732428193933,"stop":1732428193934,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c8da32e94b736fef.json","parameterValues":[]} \ No newline at end of file +{"uid":"8ade4c7a0e59dd30","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":1732428193933,"stop":1732428193934,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195666,"stop":1732428195666,"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_StringTransformerTestCase::0","time":{"start":1732428195668,"stop":1732428195668,"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":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5878520d52628a092f0002d0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8b066879dcf90ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55a0094c41d10012.json b/allure-report/data/test-cases/8b09bdc5a519a070.json similarity index 75% rename from allure-report/data/test-cases/55a0094c41d10012.json rename to allure-report/data/test-cases/8b09bdc5a519a070.json index b50a6ee27b5..17c1c827c21 100644 --- a/allure-report/data/test-cases/55a0094c41d10012.json +++ b/allure-report/data/test-cases/8b09bdc5a519a070.json @@ -1 +1 @@ -{"uid":"55a0094c41d10012","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3642f149df538341","name":"stdout","source":"3642f149df538341.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"55a0094c41d10012.json","parameterValues":[]} \ No newline at end of file +{"uid":"8b09bdc5a519a070","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1317b7c3ac9b35f3","name":"stdout","source":"1317b7c3ac9b35f3.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Fun with lists: length"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Lists"},{"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_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8b09bdc5a519a070.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5bce40c2868c787.json b/allure-report/data/test-cases/8b29a5334bdbc1b5.json similarity index 70% rename from allure-report/data/test-cases/c5bce40c2868c787.json rename to allure-report/data/test-cases/8b29a5334bdbc1b5.json index 310d38ccd04..30ac11f8563 100644 --- a/allure-report/data/test-cases/c5bce40c2868c787.json +++ b/allure-report/data/test-cases/8b29a5334bdbc1b5.json @@ -1 +1 @@ -{"uid":"c5bce40c2868c787","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":1732764220328,"stop":1732764220328,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220327,"stop":1732764220327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220329,"stop":1732764220329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6f37cee94115c50c","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0}},{"uid":"b5cedd1e00782e11","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"941c0037b0b98fcf","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c5bce40c2868c787.json","parameterValues":[]} \ No newline at end of file +{"uid":"8b29a5334bdbc1b5","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":1732764220328,"stop":1732764220328,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220327,"stop":1732764220327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220328,"stop":1732764220328,"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_HasSubpatternTestCase::0","time":{"start":1732764220329,"stop":1732764220329,"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":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"String subpattern recognition II"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_2.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"8b29a5334bdbc1b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2890c501d19b5f47.json b/allure-report/data/test-cases/8bb4333bde7b6f57.json similarity index 51% rename from allure-report/data/test-cases/2890c501d19b5f47.json rename to allure-report/data/test-cases/8bb4333bde7b6f57.json index c5d456d43e8..194405587f3 100644 --- a/allure-report/data/test-cases/2890c501d19b5f47.json +++ b/allure-report/data/test-cases/8bb4333bde7b6f57.json @@ -1 +1 @@ -{"uid":"2890c501d19b5f47","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732764220219,"stop":1732764220219,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"25a19c539143ffc2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428195535,"stop":1732428195535,"duration":0}},{"uid":"bda7ad5e74660b56","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"d6fd6e0593022837","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"2890c501d19b5f47.json","parameterValues":[]} \ No newline at end of file +{"uid":"8bb4333bde7b6f57","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1732764220219,"stop":1732764220219,"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":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/fe07573cd07e1ed8.json b/allure-report/data/test-cases/8bbe92897a0837e7.json similarity index 84% rename from allure-report/data/test-cases/fe07573cd07e1ed8.json rename to allure-report/data/test-cases/8bbe92897a0837e7.json index 478bc5b512a..cad58ac46b7 100644 --- a/allure-report/data/test-cases/fe07573cd07e1ed8.json +++ b/allure-report/data/test-cases/8bbe92897a0837e7.json @@ -1 +1 @@ -{"uid":"fe07573cd07e1ed8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fe07573cd07e1ed8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8bd454f111efcd3e.json b/allure-report/data/test-cases/8bd454f111efcd3e.json deleted file mode 100644 index 600fe6877da..00000000000 --- a/allure-report/data/test-cases/8bd454f111efcd3e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8bd454f111efcd3e","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"21b3833bd58160c1","name":"stdout","source":"21b3833bd58160c1.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8bd454f111efcd3e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/875e90b046ec092c.json b/allure-report/data/test-cases/8c0ab77873b28b8f.json similarity index 75% rename from allure-report/data/test-cases/875e90b046ec092c.json rename to allure-report/data/test-cases/8c0ab77873b28b8f.json index ce71be85327..d155c14151d 100644 --- a/allure-report/data/test-cases/875e90b046ec092c.json +++ b/allure-report/data/test-cases/8c0ab77873b28b8f.json @@ -1 +1 @@ -{"uid":"875e90b046ec092c","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"875e90b046ec092c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/58a164b572fc5a50.json b/allure-report/data/test-cases/8c1749fbe9590e77.json similarity index 80% rename from allure-report/data/test-cases/58a164b572fc5a50.json rename to allure-report/data/test-cases/8c1749fbe9590e77.json index bda7024a4b1..2311f9feee3 100644 --- a/allure-report/data/test-cases/58a164b572fc5a50.json +++ b/allure-report/data/test-cases/8c1749fbe9590e77.json @@ -1 +1 @@ -{"uid":"58a164b572fc5a50","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"998c70b07f1415e5","name":"stdout","source":"998c70b07f1415e5.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"58a164b572fc5a50.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bb7d4237e3a80dd7.json b/allure-report/data/test-cases/8c263832e40387fc.json similarity index 81% rename from allure-report/data/test-cases/bb7d4237e3a80dd7.json rename to allure-report/data/test-cases/8c263832e40387fc.json index 68d9c43df9b..1a94a6dc945 100644 --- a/allure-report/data/test-cases/bb7d4237e3a80dd7.json +++ b/allure-report/data/test-cases/8c263832e40387fc.json @@ -1 +1 @@ -{"uid":"bb7d4237e3a80dd7","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bb7d4237e3a80dd7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/634b88b34b81a74c.json b/allure-report/data/test-cases/8c2738ac8b329dff.json similarity index 92% rename from allure-report/data/test-cases/634b88b34b81a74c.json rename to allure-report/data/test-cases/8c2738ac8b329dff.json index 5289e5596cf..ca78bc17fe5 100644 --- a/allure-report/data/test-cases/634b88b34b81a74c.json +++ b/allure-report/data/test-cases/8c2738ac8b329dff.json @@ -1 +1 @@ -{"uid":"634b88b34b81a74c","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":"634b88b34b81a74c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number 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}],"attachments":[{"uid":"5aca5b8e45147f1d","name":"stdout","source":"5aca5b8e45147f1d.txt","type":"text/plain","size":210}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase::0","time":{"start":1724735127688,"stop":1724735127688,"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":"parentSuite","value":"Novice"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Human Readable Time"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"8c72b971279020f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8caf8fe76e46aa0f.json b/allure-report/data/test-cases/8caf8fe76e46aa0f.json new file mode 100644 index 00000000000..19f3b16be49 --- /dev/null +++ b/allure-report/data/test-cases/8caf8fe76e46aa0f.json @@ -0,0 +1 @@ +{"uid":"8caf8fe76e46aa0f","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1733030100481,"stop":1733030100481,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1733030100465,"stop":1733030100481,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1733030100481,"stop":1733030100481,"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_GapTestCase::0","time":{"start":1733030100481,"stop":1733030100481,"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":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Find the longest gap!"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fee32280a5b8d3da","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0}},{"uid":"5cc568bcbc2453dc","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1}},{"uid":"12409260b34394eb","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"857509cc66fb3470","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"8caf8fe76e46aa0f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8cb8fb70f937622b.json b/allure-report/data/test-cases/8cb8fb70f937622b.json new file mode 100644 index 00000000000..d85a45a16a2 --- /dev/null +++ b/allure-report/data/test-cases/8cb8fb70f937622b.json @@ -0,0 +1 @@ +{"uid":"8cb8fb70f937622b","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e65c2aee0db2b724.json b/allure-report/data/test-cases/8d0f8b1f359d2e57.json similarity index 77% rename from allure-report/data/test-cases/e65c2aee0db2b724.json rename to allure-report/data/test-cases/8d0f8b1f359d2e57.json index 9213ad89f43..6f39714d95a 100644 --- a/allure-report/data/test-cases/e65c2aee0db2b724.json +++ b/allure-report/data/test-cases/8d0f8b1f359d2e57.json @@ -1 +1 @@ -{"uid":"e65c2aee0db2b724","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9806239f448fcb9","name":"stdout","source":"c9806239f448fcb9.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"e65c2aee0db2b724.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","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 summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d14e7908f9d07961","name":"stdout","source":"d14e7908f9d07961.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase::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":"story","value":"Grasshopper - Summation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Loops"},{"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.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"8d0f8b1f359d2e57.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee50880cc545f1d3.json b/allure-report/data/test-cases/8d156d3e42d4375b.json similarity index 60% rename from allure-report/data/test-cases/ee50880cc545f1d3.json rename to allure-report/data/test-cases/8d156d3e42d4375b.json index 113d5537811..9458578e1ac 100644 --- a/allure-report/data/test-cases/ee50880cc545f1d3.json +++ b/allure-report/data/test-cases/8d156d3e42d4375b.json @@ -1 +1 @@ -{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732764221245,"stop":1732764221245,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732764221247,"stop":1732764221247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase::0","time":{"start":1732764221248,"stop":1732764221248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BUGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3785819940a9985f","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0}},{"uid":"875881a97b3fc375","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"e6abe3c64e54cb9f","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"ee50880cc545f1d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"8d156d3e42d4375b","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SwapValuesTestCase","time":{"start":1732764221245,"stop":1732764221245,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing swap_values function\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with 2 values and swap them","time":{"start":1732764221247,"stop":1732764221247,"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_SwapValuesTestCase::0","time":{"start":1732764221248,"stop":1732764221248,"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":"BUGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Swap Values"},{"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.swap_values.test_swap_values"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5388f0e00b24c5635e000fc6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},"source":"8d156d3e42d4375b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31ab703bf65847e5.json b/allure-report/data/test-cases/8d4255e3e5d3d8a0.json similarity index 82% rename from allure-report/data/test-cases/31ab703bf65847e5.json rename to allure-report/data/test-cases/8d4255e3e5d3d8a0.json index 53923f92b4e..c14f80a693a 100644 --- a/allure-report/data/test-cases/31ab703bf65847e5.json +++ b/allure-report/data/test-cases/8d4255e3e5d3d8a0.json @@ -1 +1 @@ -{"uid":"31ab703bf65847e5","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"31ab703bf65847e5.json","parameterValues":[]} \ No newline at end of file +{"uid":"8d4255e3e5d3d8a0","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732428196084,"stop":1732428196084,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"8d4255e3e5d3d8a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98ca489a74667507.json b/allure-report/data/test-cases/8d44f2b97a47f0f3.json similarity index 64% rename from allure-report/data/test-cases/98ca489a74667507.json rename to allure-report/data/test-cases/8d44f2b97a47f0f3.json index aa3e1be7883..08a6e2df9cd 100644 --- a/allure-report/data/test-cases/98ca489a74667507.json +++ b/allure-report/data/test-cases/8d44f2b97a47f0f3.json @@ -1 +1 @@ -{"uid":"98ca489a74667507","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

Verify cipher function. This \"decode\" is used to decode a string.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"532d8f53f92733e9","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2}},{"uid":"58a164b572fc5a50","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"25b0f3d782a2ed03","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"98ca489a74667507.json","parameterValues":[]} \ No newline at end of file +{"uid":"8d44f2b97a47f0f3","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8271119e6077f333.json b/allure-report/data/test-cases/8da0b58109862b1b.json similarity index 93% rename from allure-report/data/test-cases/8271119e6077f333.json rename to allure-report/data/test-cases/8da0b58109862b1b.json index 187b91632f5..f4f81a2bc1c 100644 --- a/allure-report/data/test-cases/8271119e6077f333.json +++ b/allure-report/data/test-cases/8da0b58109862b1b.json @@ -1 +1 @@ -{"uid":"8271119e6077f333","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":"8271119e6077f333.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1733030100481,"stop":1733030100481,"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_TwoDecimalPlacesTestCase::0","time":{"start":1733030100481,"stop":1733030100481,"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":"Formatting decimal places #1"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Formatting"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d88ebfa77f8bc285","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0}},{"uid":"867f27ef53f4ce43","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0}},{"uid":"e697d79f20198964","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"e723e7f00f564943","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8db7c8bf0abe07bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5467cc7a05b3546.json b/allure-report/data/test-cases/8dc2c9fe3450d5a4.json similarity index 76% rename from allure-report/data/test-cases/a5467cc7a05b3546.json rename to allure-report/data/test-cases/8dc2c9fe3450d5a4.json index 9d35859571b..6799bd568a3 100644 --- a/allure-report/data/test-cases/a5467cc7a05b3546.json +++ b/allure-report/data/test-cases/8dc2c9fe3450d5a4.json @@ -1 +1 @@ -{"uid":"a5467cc7a05b3546","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"55f2f3a355e5f2ed","name":"stdout","source":"55f2f3a355e5f2ed.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a5467cc7a05b3546.json","parameterValues":[]} \ No newline at end of file +{"uid":"8dc2c9fe3450d5a4","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":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f79d82c8ac8b6bda","name":"stdout","source":"f79d82c8ac8b6bda.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724733474835,"stop":1724733474835,"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":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8dc2c9fe3450d5a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb60d649770273d6.json b/allure-report/data/test-cases/8dfb78838f25ea50.json similarity index 73% rename from allure-report/data/test-cases/eb60d649770273d6.json rename to allure-report/data/test-cases/8dfb78838f25ea50.json index cbb1c5dd85c..2aaff9e599c 100644 --- a/allure-report/data/test-cases/eb60d649770273d6.json +++ b/allure-report/data/test-cases/8dfb78838f25ea50.json @@ -1 +1 @@ -{"uid":"eb60d649770273d6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"53f4bbebe56fedf8","name":"stdout","source":"53f4bbebe56fedf8.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb60d649770273d6.json","parameterValues":[]} \ No newline at end of file +{"uid":"8dfb78838f25ea50","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfe73955a863d89d","name":"stdout","source":"cfe73955a863d89d.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8dfb78838f25ea50.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8e4b6f6bd251566.json b/allure-report/data/test-cases/8e4b6f6bd251566.json deleted file mode 100644 index a1e1e59ff00..00000000000 --- a/allure-report/data/test-cases/8e4b6f6bd251566.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732764219215,"stop":1732764219215,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1732764219216,"stop":1732764219216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Validation"},{"name":"story","value":"Valid Parentheses"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"99e68c3ce0169a01","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0}},{"uid":"b28ff46b20790be2","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"ea636867f014d21","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"8e4b6f6bd251566.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8eb80b15a6d6b848.json b/allure-report/data/test-cases/8eb80b15a6d6b848.json new file mode 100644 index 00000000000..5f4702a70bc --- /dev/null +++ b/allure-report/data/test-cases/8eb80b15a6d6b848.json @@ -0,0 +1 @@ +{"uid":"8eb80b15a6d6b848","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1733030099161,"stop":1733030099177,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PrimesTestCase","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"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_PrimesTestCase::0","time":{"start":1733030099177,"stop":1733030099177,"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":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Master your primes: sieve with memoization"},{"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.master_your_primes_sieve_with_memoization.test_primes"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58603c898989d15e9e000475","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"335bbd097bcd7f07","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0}},{"uid":"6dd8a24f05e81d8d","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0}},{"uid":"4ba6a0676ce201a1","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"40205ec1b133a2fd","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},"source":"8eb80b15a6d6b848.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8dcdfa9166c48fb8.json b/allure-report/data/test-cases/8ebc308a5806000e.json similarity index 79% rename from allure-report/data/test-cases/8dcdfa9166c48fb8.json rename to allure-report/data/test-cases/8ebc308a5806000e.json index 35528fee1f9..25fc4f18eb7 100644 --- a/allure-report/data/test-cases/8dcdfa9166c48fb8.json +++ b/allure-report/data/test-cases/8ebc308a5806000e.json @@ -1 +1 @@ -{"uid":"8dcdfa9166c48fb8","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"20e82e5aa37702bc","name":"stdout","source":"20e82e5aa37702bc.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8dcdfa9166c48fb8.json","parameterValues":[]} \ No newline at end of file +{"uid":"8ebc308a5806000e","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1bfd57b8cda6c028.json b/allure-report/data/test-cases/8f3c559eb697de75.json similarity index 81% rename from allure-report/data/test-cases/1bfd57b8cda6c028.json rename to allure-report/data/test-cases/8f3c559eb697de75.json index f088e7cf21e..be7539ebdee 100644 --- a/allure-report/data/test-cases/1bfd57b8cda6c028.json +++ b/allure-report/data/test-cases/8f3c559eb697de75.json @@ -1 +1 @@ -{"uid":"1bfd57b8cda6c028","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196288,"stop":1732428196288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1bfd57b8cda6c028.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1732428196286,"stop":1732428196287,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1732428196288,"stop":1732428196288,"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_HoopCountTestCase::0","time":{"start":1732428196295,"stop":1732428196295,"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":"feature","value":"Conditions"},{"name":"story","value":"Keep up the hoop"},{"name":"subSuite","value":"Unit Tests"},{"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_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"8f3c559eb697de75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3faad8d02b815fd.json b/allure-report/data/test-cases/8f411cd28b85874e.json similarity index 79% rename from allure-report/data/test-cases/c3faad8d02b815fd.json rename to allure-report/data/test-cases/8f411cd28b85874e.json index 5320e0bd54f..edc84e7ca1f 100644 --- a/allure-report/data/test-cases/c3faad8d02b815fd.json +++ b/allure-report/data/test-cases/8f411cd28b85874e.json @@ -1 +1 @@ -{"uid":"c3faad8d02b815fd","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b75f0fc5a14ca4fd","name":"stdout","source":"b75f0fc5a14ca4fd.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c3faad8d02b815fd.json","parameterValues":[]} \ No newline at end of file +{"uid":"8f411cd28b85874e","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":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4c101c06530a2e9e","name":"stdout","source":"4c101c06530a2e9e.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724733474429,"stop":1724733474429,"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":"story","value":"Simple Fun #152: Invite More Women?"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8f411cd28b85874e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ba00773a1bfae2e.json b/allure-report/data/test-cases/8fc3e4e9309f61b9.json similarity index 80% rename from allure-report/data/test-cases/2ba00773a1bfae2e.json rename to allure-report/data/test-cases/8fc3e4e9309f61b9.json index fe9085acb97..18ced3651ad 100644 --- a/allure-report/data/test-cases/2ba00773a1bfae2e.json +++ b/allure-report/data/test-cases/8fc3e4e9309f61b9.json @@ -1 +1 @@ -{"uid":"2ba00773a1bfae2e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d07a2236fba5201a","name":"stdout","source":"d07a2236fba5201a.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"2ba00773a1bfae2e.json","parameterValues":[]} \ No newline at end of file +{"uid":"8fc3e4e9309f61b9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"26a3b25de30a9620","name":"stdout","source":"26a3b25de30a9620.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"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 Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"8fc3e4e9309f61b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d4c3341dfe8e289.json b/allure-report/data/test-cases/901ad6e6b17ea71d.json similarity index 70% rename from allure-report/data/test-cases/1d4c3341dfe8e289.json rename to allure-report/data/test-cases/901ad6e6b17ea71d.json index 30e39d64724..a8e167bf241 100644 --- a/allure-report/data/test-cases/1d4c3341dfe8e289.json +++ b/allure-report/data/test-cases/901ad6e6b17ea71d.json @@ -1 +1 @@ -{"uid":"1d4c3341dfe8e289","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61ad30a7c0f382b9","name":"stdout","source":"61ad30a7c0f382b9.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1d4c3341dfe8e289.json","parameterValues":[]} \ No newline at end of file +{"uid":"901ad6e6b17ea71d","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724733474038,"stop":1724733474038,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3ecf2d6ad02962e9","name":"stdout","source":"3ecf2d6ad02962e9.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::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":"feature","value":"Lists"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 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_6.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"901ad6e6b17ea71d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/902288cde0f2109a.json b/allure-report/data/test-cases/902288cde0f2109a.json new file mode 100644 index 00000000000..40ffe88d6d1 --- /dev/null +++ b/allure-report/data/test-cases/902288cde0f2109a.json @@ -0,0 +1 @@ +{"uid":"902288cde0f2109a","name":"Testing 'parts_sums' function","fullName":"kyu_6.sums_of_parts.test_solution.PartsSumTestCase#test_parts_sum","historyId":"570c0d220c13fc0fd061240afc68e35d","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1733030100340,"stop":1733030100340,"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_PartsSumTestCase::0","time":{"start":1733030100340,"stop":1733030100340,"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":"Sums of Parts"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"931a1e301c63c1a1","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0}},{"uid":"2e552441092e62c5","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"168d1058a213deae","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0}},{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"902288cde0f2109a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f3bfc03f90689c3.json b/allure-report/data/test-cases/903c4d3d57375ecf.json similarity index 78% rename from allure-report/data/test-cases/3f3bfc03f90689c3.json rename to allure-report/data/test-cases/903c4d3d57375ecf.json index 17c719082c7..8a0e9787a3e 100644 --- a/allure-report/data/test-cases/3f3bfc03f90689c3.json +++ b/allure-report/data/test-cases/903c4d3d57375ecf.json @@ -1 +1 @@ -{"uid":"3f3bfc03f90689c3","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d4f2ea957f6fd3d1","name":"stdout","source":"d4f2ea957f6fd3d1.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3f3bfc03f90689c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"903c4d3d57375ecf","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724733472405,"stop":1724733472405,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/416bb0c0ac58f7b6.json b/allure-report/data/test-cases/90548ade83f4ad3f.json similarity index 68% rename from allure-report/data/test-cases/416bb0c0ac58f7b6.json rename to allure-report/data/test-cases/90548ade83f4ad3f.json index 886488539c3..da4027242e5 100644 --- a/allure-report/data/test-cases/416bb0c0ac58f7b6.json +++ b/allure-report/data/test-cases/90548ade83f4ad3f.json @@ -1 +1 @@ -{"uid":"416bb0c0ac58f7b6","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb7d4237e3a80dd7","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0}},{"uid":"1be5b98a41807de8","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"b7108f3053cbc60d","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"416bb0c0ac58f7b6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7324bd79d75b1976","name":"stdout","source":"7324bd79d75b1976.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724735129727,"stop":1724735129727,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"90ca6a0c009b593.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/aa1a2a69b8a9bf68.json b/allure-report/data/test-cases/91592072a42568a2.json similarity index 77% rename from allure-report/data/test-cases/aa1a2a69b8a9bf68.json rename to allure-report/data/test-cases/91592072a42568a2.json index 103d23fd8bb..e5d3c313ef2 100644 --- a/allure-report/data/test-cases/aa1a2a69b8a9bf68.json +++ b/allure-report/data/test-cases/91592072a42568a2.json @@ -1 +1 @@ -{"uid":"aa1a2a69b8a9bf68","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cfdd9038af68abcd","name":"stdout","source":"cfdd9038af68abcd.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aa1a2a69b8a9bf68.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/91aab0544068789.json b/allure-report/data/test-cases/91aab0544068789.json deleted file mode 100644 index 86e0c9373fe..00000000000 --- a/allure-report/data/test-cases/91aab0544068789.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"91aab0544068789","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ec0aa2198d4850df","name":"stdout","source":"ec0aa2198d4850df.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"91aab0544068789.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91c1d8a1fc37f84.json b/allure-report/data/test-cases/91c1d8a1fc37f84.json new file mode 100644 index 00000000000..47df25a640c --- /dev/null +++ b/allure-report/data/test-cases/91c1d8a1fc37f84.json @@ -0,0 +1 @@ +{"uid":"91c1d8a1fc37f84","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":1733030100403,"stop":1733030100403,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"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_SumOfNumbersTestCase::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":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5d6b33acb65bb93f","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0}},{"uid":"2989a8630844f025","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1}},{"uid":"77858b1148b2de9d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"8fc3e4e9309f61b9","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"91c1d8a1fc37f84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11ff02c2df19530d.json b/allure-report/data/test-cases/9212c6b19c8a287e.json similarity index 80% rename from allure-report/data/test-cases/11ff02c2df19530d.json rename to allure-report/data/test-cases/9212c6b19c8a287e.json index 6eb66b72949..7a2a011391b 100644 --- a/allure-report/data/test-cases/11ff02c2df19530d.json +++ b/allure-report/data/test-cases/9212c6b19c8a287e.json @@ -1 +1 @@ -{"uid":"11ff02c2df19530d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"943e8734629abe38","name":"stdout","source":"943e8734629abe38.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"11ff02c2df19530d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"189cde1d0b42e48e","name":"stdout","source":"189cde1d0b42e48e.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1724733474882,"stop":1724733474882,"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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Reversed Strings"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9212c6b19c8a287e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92695f36fc50d8a3.json b/allure-report/data/test-cases/92695f36fc50d8a3.json new file mode 100644 index 00000000000..6bb7cb80cbc --- /dev/null +++ b/allure-report/data/test-cases/92695f36fc50d8a3.json @@ -0,0 +1 @@ +{"uid":"92695f36fc50d8a3","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n\n For example:\n\n anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']\n anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']\n anagrams('laser', ['lazing', 'lazy', 'lacer']) => []\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e4c5f9ea62989e","name":"stdout","source":"8e4c5f9ea62989e.txt","type":"text/plain","size":170}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"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":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Where my anagrams at?"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"92695f36fc50d8a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/168d1058a213deae.json b/allure-report/data/test-cases/931a1e301c63c1a1.json similarity index 73% rename from allure-report/data/test-cases/168d1058a213deae.json rename to allure-report/data/test-cases/931a1e301c63c1a1.json index 064c607e9f7..19c17632ca7 100644 --- a/allure-report/data/test-cases/168d1058a213deae.json +++ b/allure-report/data/test-cases/931a1e301c63c1a1.json @@ -1 +1 @@ -{"uid":"168d1058a213deae","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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase::0","time":{"start":1732764220365,"stop":1732764220365,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Sums of Parts"},{"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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9665a188a4944ac6","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"168d1058a213deae.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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]

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PartsSumTestCase","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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]

","status":"passed","steps":[{"name":"Enter a list ls ([]) and verify the expected output ([0]) vs actual result ([0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([1, 2, 3, 4, 5, 6]) and verify the expected output ([21, 20, 18, 15, 11, 6, 0]) vs actual result ([21, 20, 18, 15, 11, 6, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([0, 1, 3, 6, 10]) and verify the expected output ([20, 20, 19, 16, 10, 0]) vs actual result ([20, 20, 19, 16, 10, 0])","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ls ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358]) and verify the expected output ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0]) vs actual result ([10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0])","time":{"start":1732764220362,"stop":1732764220362,"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_PartsSumTestCase::0","time":{"start":1732764220365,"stop":1732764220365,"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":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Sums of Parts"},{"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.sums_of_parts.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5ce399e0047a45001c853c2b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},"source":"931a1e301c63c1a1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd65eae3991d6c2c.json b/allure-report/data/test-cases/9328d9c37e2386a6.json similarity index 56% rename from allure-report/data/test-cases/bd65eae3991d6c2c.json rename to allure-report/data/test-cases/9328d9c37e2386a6.json index 39013477e51..cf41a7c8b58 100644 --- a/allure-report/data/test-cases/bd65eae3991d6c2c.json +++ b/allure-report/data/test-cases/9328d9c37e2386a6.json @@ -1 +1 @@ -{"uid":"bd65eae3991d6c2c","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":1732764220896,"stop":1732764220898,"duration":2},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"91cb28173d925ce2","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0}},{"uid":"ab62ce2428f0e01f","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"cb1927945c40fc3","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"bd65eae3991d6c2c.json","parameterValues":[]} \ No newline at end of file +{"uid":"9328d9c37e2386a6","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":1732764220896,"stop":1732764220898,"duration":2},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"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":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"9328d9c37e2386a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9086c98d6d71504.json b/allure-report/data/test-cases/93600ea56dc1843a.json similarity index 50% rename from allure-report/data/test-cases/b9086c98d6d71504.json rename to allure-report/data/test-cases/93600ea56dc1843a.json index 5bf5f1ca1ce..7636d8bcbe0 100644 --- a/allure-report/data/test-cases/b9086c98d6d71504.json +++ b/allure-report/data/test-cases/93600ea56dc1843a.json @@ -1 +1 @@ -{"uid":"b9086c98d6d71504","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30ae8f4eae56e738","name":"stdout","source":"30ae8f4eae56e738.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b9086c98d6d71504.json","parameterValues":[]} \ No newline at end of file +{"uid":"93600ea56dc1843a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/962ca80dcc908350.json b/allure-report/data/test-cases/94470fc1dd0d3d27.json similarity index 77% rename from allure-report/data/test-cases/962ca80dcc908350.json rename to allure-report/data/test-cases/94470fc1dd0d3d27.json index eaf83b6dc51..4c396a3bf43 100644 --- a/allure-report/data/test-cases/962ca80dcc908350.json +++ b/allure-report/data/test-cases/94470fc1dd0d3d27.json @@ -1 +1 @@ -{"uid":"962ca80dcc908350","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7899fdb7c4350c2b","name":"stdout","source":"7899fdb7c4350c2b.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"962ca80dcc908350.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/552b72a0721ea486.json b/allure-report/data/test-cases/946874b940758475.json similarity index 83% rename from allure-report/data/test-cases/552b72a0721ea486.json rename to allure-report/data/test-cases/946874b940758475.json index 5c82b4cef7f..9ab43a059ec 100644 --- a/allure-report/data/test-cases/552b72a0721ea486.json +++ b/allure-report/data/test-cases/946874b940758475.json @@ -1 +1 @@ -{"uid":"552b72a0721ea486","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"552b72a0721ea486.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/fa6c346b04c031d5.json b/allure-report/data/test-cases/94887fb9761f9305.json similarity index 65% rename from allure-report/data/test-cases/fa6c346b04c031d5.json rename to allure-report/data/test-cases/94887fb9761f9305.json index 94a93ee87f3..0cb9d4a0b25 100644 --- a/allure-report/data/test-cases/fa6c346b04c031d5.json +++ b/allure-report/data/test-cases/94887fb9761f9305.json @@ -1 +1 @@ -{"uid":"fa6c346b04c031d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732764220731,"stop":1732764220731,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"170ac645fcf8229c","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0}},{"uid":"9a17297856f21a74","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"72c86ca38c98258","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"fa6c346b04c031d5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1732764220731,"stop":1732764220731,"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_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"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 Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"94887fb9761f9305.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac65ef6ef01656e6.json b/allure-report/data/test-cases/94a0f5c0bb41d73c.json similarity index 76% rename from allure-report/data/test-cases/ac65ef6ef01656e6.json rename to allure-report/data/test-cases/94a0f5c0bb41d73c.json index 65b85482b81..de0a7d5264a 100644 --- a/allure-report/data/test-cases/ac65ef6ef01656e6.json +++ b/allure-report/data/test-cases/94a0f5c0bb41d73c.json @@ -1 +1 @@ -{"uid":"ac65ef6ef01656e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"58062fc7761306e3","name":"stdout","source":"58062fc7761306e3.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ac65ef6ef01656e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"94a0f5c0bb41d73c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78536cfa8705ace3","name":"stdout","source":"78536cfa8705ace3.txt","type":"text/plain","size":40}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"MakeUpperCase"},{"name":"feature","value":"String"},{"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.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"94a0f5c0bb41d73c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8a70d9350601da5.json b/allure-report/data/test-cases/94a29fbc0358d34a.json similarity index 61% rename from allure-report/data/test-cases/c8a70d9350601da5.json rename to allure-report/data/test-cases/94a29fbc0358d34a.json index 74bb0c11cc2..9558e4f1aa6 100644 --- a/allure-report/data/test-cases/c8a70d9350601da5.json +++ b/allure-report/data/test-cases/94a29fbc0358d34a.json @@ -1 +1 @@ -{"uid":"c8a70d9350601da5","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":1732764221235,"stop":1732764221235,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732764221237,"stop":1732764221237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"GEOMETRY"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ALGEBRA"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Surface Area and Volume of a Box"},{"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.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7eedfccbd9267527","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0}},{"uid":"e29868febcecd61d","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"68489cf8ea35171c","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"c8a70d9350601da5.json","parameterValues":[]} \ No newline at end of file +{"uid":"94a29fbc0358d34a","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":1732764221235,"stop":1732764221235,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732764221235,"stop":1732764221235,"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_GetSizeTestCase::0","time":{"start":1732764221237,"stop":1732764221237,"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":"GEOMETRY"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ALGEBRA"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Surface Area and Volume of a Box"},{"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.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"94a29fbc0358d34a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8605c2bc186d7f9a.json b/allure-report/data/test-cases/94aee1df5a6d75c7.json similarity index 58% rename from allure-report/data/test-cases/8605c2bc186d7f9a.json rename to allure-report/data/test-cases/94aee1df5a6d75c7.json index 905e390cb39..54d855f9059 100644 --- a/allure-report/data/test-cases/8605c2bc186d7f9a.json +++ b/allure-report/data/test-cases/94aee1df5a6d75c7.json @@ -1 +1 @@ -{"uid":"8605c2bc186d7f9a","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":1732764220171,"stop":1732764220172,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a29d5673ddcf7e8e","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1}},{"uid":"895071e6126c1fbc","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"383972b39eec664a","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"8605c2bc186d7f9a.json","parameterValues":[]} \ No newline at end of file +{"uid":"94aee1df5a6d75c7","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":1732764220171,"stop":1732764220172,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732764220172,"stop":1732764220172,"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_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"94aee1df5a6d75c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3846518071a02e50.json b/allure-report/data/test-cases/94d4bd5574aa8f7b.json similarity index 65% rename from allure-report/data/test-cases/3846518071a02e50.json rename to allure-report/data/test-cases/94d4bd5574aa8f7b.json index 2200d2eba59..fed8492c185 100644 --- a/allure-report/data/test-cases/3846518071a02e50.json +++ b/allure-report/data/test-cases/94d4bd5574aa8f7b.json @@ -1 +1 @@ -{"uid":"3846518071a02e50","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1732764221226,"stop":1732764221226,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1732764221228,"stop":1732764221228,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Boolean"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BOOLEANS"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"L1: Set Alarm"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f631ad3e8bb02244","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0}},{"uid":"68ad711bfb950e6e","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"ea733e6b4760e89e","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"3846518071a02e50.json","parameterValues":[]} \ No newline at end of file +{"uid":"94d4bd5574aa8f7b","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1732764221226,"stop":1732764221226,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221226,"stop":1732764221226,"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_SetAlarmTestCase::0","time":{"start":1732764221228,"stop":1732764221228,"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":"Boolean"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BOOLEANS"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"L1: Set Alarm"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"94d4bd5574aa8f7b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68a2b9760a533e02.json b/allure-report/data/test-cases/94ea40491ebef366.json similarity index 93% rename from allure-report/data/test-cases/68a2b9760a533e02.json rename to allure-report/data/test-cases/94ea40491ebef366.json index 0d4730d87db..166a71b67d1 100644 --- a/allure-report/data/test-cases/68a2b9760a533e02.json +++ b/allure-report/data/test-cases/94ea40491ebef366.json @@ -1 +1 @@ -{"uid":"68a2b9760a533e02","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732428194190,"stop":1732428194190,"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":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":"68a2b9760a533e02.json","parameterValues":[]} \ No newline at end of file +{"uid":"94ea40491ebef366","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1732428194190,"stop":1732428194190,"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":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/7331de8e7202ad57.json b/allure-report/data/test-cases/9546971ec41b8ce1.json similarity index 71% rename from allure-report/data/test-cases/7331de8e7202ad57.json rename to allure-report/data/test-cases/9546971ec41b8ce1.json index 6fbbdbb0ba7..5910a341a96 100644 --- a/allure-report/data/test-cases/7331de8e7202ad57.json +++ b/allure-report/data/test-cases/9546971ec41b8ce1.json @@ -1 +1 @@ -{"uid":"7331de8e7202ad57","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732764218697,"stop":1732764218697,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4b22647a9cdd2bef","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60}},{"uid":"ce75fbdf4ccd46b8","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"30ac3ffad3316fea","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"7331de8e7202ad57.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1733030100648,"stop":1733030100648,"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_SolutionTestCase::0","time":{"start":1733030100648,"stop":1733030100648,"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":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"a9fe3e48d71bee45","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0}},{"uid":"ee7921cf820a84c7","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0}},{"uid":"6d57e0044d071709","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"c50564bf93e2ebd9","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"95500b18da61d76.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ee59d9a8c304f3b.json b/allure-report/data/test-cases/9555c80771d907bb.json similarity index 86% rename from allure-report/data/test-cases/2ee59d9a8c304f3b.json rename to allure-report/data/test-cases/9555c80771d907bb.json index 79e5ef4af78..8ab0004448b 100644 --- a/allure-report/data/test-cases/2ee59d9a8c304f3b.json +++ b/allure-report/data/test-cases/9555c80771d907bb.json @@ -1 +1 @@ -{"uid":"2ee59d9a8c304f3b","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732428195810,"stop":1732428195810,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"2ee59d9a8c304f3b.json","parameterValues":[]} \ No newline at end of file +{"uid":"9555c80771d907bb","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732428195810,"stop":1732428195810,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195810,"stop":1732428195810,"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_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"9555c80771d907bb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d2d9b386eb6ebf2.json b/allure-report/data/test-cases/95b80642b494d437.json similarity index 83% rename from allure-report/data/test-cases/4d2d9b386eb6ebf2.json rename to allure-report/data/test-cases/95b80642b494d437.json index 879bd9f8447..b620a0e8011 100644 --- a/allure-report/data/test-cases/4d2d9b386eb6ebf2.json +++ b/allure-report/data/test-cases/95b80642b494d437.json @@ -1 +1 @@ -{"uid":"4d2d9b386eb6ebf2","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195659,"stop":1732428195659,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732428195661,"stop":1732428195661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"4d2d9b386eb6ebf2.json","parameterValues":[]} \ No newline at end of file +{"uid":"95b80642b494d437","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732428195659,"stop":1732428195659,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732428195660,"stop":1732428195660,"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_HasSubpatternTestCase::0","time":{"start":1732428195661,"stop":1732428195661,"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":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"95b80642b494d437.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c3655d4a978bd79.json b/allure-report/data/test-cases/95fe30b3b4a958d6.json similarity index 59% rename from allure-report/data/test-cases/1c3655d4a978bd79.json rename to allure-report/data/test-cases/95fe30b3b4a958d6.json index d5d8b6f7662..1c7bb744c96 100644 --- a/allure-report/data/test-cases/1c3655d4a978bd79.json +++ b/allure-report/data/test-cases/95fe30b3b4a958d6.json @@ -1 +1 @@ -{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1732764220192,"stop":1732764220192,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732764220190,"stop":1732764220190,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1230413e064883bb","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0}},{"uid":"ae5dc2ec4f03f9e5","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"a7599be0f5459a3d","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"1c3655d4a978bd79.json","parameterValues":[]} \ No newline at end of file +{"uid":"95fe30b3b4a958d6","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1732764220192,"stop":1732764220192,"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":"

Codewars badge:

Test Description:

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/fd85877ffe0d5722.json b/allure-report/data/test-cases/9675429ac75e0c11.json similarity index 78% rename from allure-report/data/test-cases/fd85877ffe0d5722.json rename to allure-report/data/test-cases/9675429ac75e0c11.json index 87c3570cfa2..3f797d0dba5 100644 --- a/allure-report/data/test-cases/fd85877ffe0d5722.json +++ b/allure-report/data/test-cases/9675429ac75e0c11.json @@ -1 +1 @@ -{"uid":"fd85877ffe0d5722","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9b1c37b21b76b29e","name":"stdout","source":"9b1c37b21b76b29e.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fd85877ffe0d5722.json","parameterValues":[]} \ No newline at end of file +{"uid":"9675429ac75e0c11","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724733474116,"stop":1724733474116,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b8eb00e308a84c71","name":"stdout","source":"b8eb00e308a84c71.txt","type":"text/plain","size":150}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1724733474116,"stop":1724733474116,"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 Digits / Digital Root"},{"name":"epic","value":"6 kyu"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9675429ac75e0c11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96938210802b960f.json b/allure-report/data/test-cases/96938210802b960f.json new file mode 100644 index 00000000000..8fdf3576dae --- /dev/null +++ b/allure-report/data/test-cases/96938210802b960f.json @@ -0,0 +1 @@ +{"uid":"96938210802b960f","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"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":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/971c2aa5dd36f62c.json b/allure-report/data/test-cases/971c2aa5dd36f62c.json new file mode 100644 index 00000000000..52938a4ef49 --- /dev/null +++ b/allure-report/data/test-cases/971c2aa5dd36f62c.json @@ -0,0 +1 @@ +{"uid":"971c2aa5dd36f62c","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","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 max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::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":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Maximum Multiple"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Control Flow"},{"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.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bc5f75e76b0bf63","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0}},{"uid":"bc04b77b7c90af86","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0}},{"uid":"40fa5a64adc09d6a","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"640e02afdf541b21","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"971c2aa5dd36f62c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77a9a3d99a741f47.json b/allure-report/data/test-cases/975470b122402791.json similarity index 77% rename from allure-report/data/test-cases/77a9a3d99a741f47.json rename to allure-report/data/test-cases/975470b122402791.json index 9142bbb2e1a..2c96bea1681 100644 --- a/allure-report/data/test-cases/77a9a3d99a741f47.json +++ b/allure-report/data/test-cases/975470b122402791.json @@ -1 +1 @@ -{"uid":"77a9a3d99a741f47","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"77a9a3d99a741f47.json","parameterValues":[]} \ No newline at end of file +{"uid":"975470b122402791","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/97a2a77f06d4866c.json b/allure-report/data/test-cases/97a2a77f06d4866c.json deleted file mode 100644 index 4271e6520ba..00000000000 --- a/allure-report/data/test-cases/97a2a77f06d4866c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"97a2a77f06d4866c","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":1732428196352,"stop":1732428196352,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1732428196354,"stop":1732428196354,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Remove String Spaces"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"97a2a77f06d4866c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/97e1e8aa5714e13a.json b/allure-report/data/test-cases/97c98bd57653ce11.json similarity index 78% rename from allure-report/data/test-cases/97e1e8aa5714e13a.json rename to allure-report/data/test-cases/97c98bd57653ce11.json index 48ec288b166..26bbfa760de 100644 --- a/allure-report/data/test-cases/97e1e8aa5714e13a.json +++ b/allure-report/data/test-cases/97c98bd57653ce11.json @@ -1 +1 @@ -{"uid":"97e1e8aa5714e13a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732428196416,"stop":1732428196417,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732428196419,"stop":1732428196419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"97e1e8aa5714e13a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732428196416,"stop":1732428196417,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732428196417,"stop":1732428196417,"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_OtherAngleTestCase::0","time":{"start":1732428196419,"stop":1732428196419,"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":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"97c98bd57653ce11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88ed1c9da2d9b53b.json b/allure-report/data/test-cases/97d66dc06144a438.json similarity index 73% rename from allure-report/data/test-cases/88ed1c9da2d9b53b.json rename to allure-report/data/test-cases/97d66dc06144a438.json index 22b433a214a..0beb26dc166 100644 --- a/allure-report/data/test-cases/88ed1c9da2d9b53b.json +++ b/allure-report/data/test-cases/97d66dc06144a438.json @@ -1 +1 @@ -{"uid":"88ed1c9da2d9b53b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e573d2ead28469f","name":"stdout","source":"9e573d2ead28469f.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"88ed1c9da2d9b53b.json","parameterValues":[]} \ No newline at end of file +{"uid":"97d66dc06144a438","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f17cc6d65b0932fd.json b/allure-report/data/test-cases/981acdaf3faf1d8f.json similarity index 78% rename from allure-report/data/test-cases/f17cc6d65b0932fd.json rename to allure-report/data/test-cases/981acdaf3faf1d8f.json index 671289064f3..ee642c537f5 100644 --- a/allure-report/data/test-cases/f17cc6d65b0932fd.json +++ b/allure-report/data/test-cases/981acdaf3faf1d8f.json @@ -1 +1 @@ -{"uid":"f17cc6d65b0932fd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef5ba384071190d7","name":"stdout","source":"ef5ba384071190d7.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f17cc6d65b0932fd.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6a636a909012a6f0.json b/allure-report/data/test-cases/9823bb7abc34f758.json similarity index 61% rename from allure-report/data/test-cases/6a636a909012a6f0.json rename to allure-report/data/test-cases/9823bb7abc34f758.json index dde92d83dc4..4aba3212135 100644 --- a/allure-report/data/test-cases/6a636a909012a6f0.json +++ b/allure-report/data/test-cases/9823bb7abc34f758.json @@ -1 +1 @@ -{"uid":"6a636a909012a6f0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732764221258,"stop":1732764221258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dfae17616fb702cf","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0}},{"uid":"f20c6ac583494462","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"625a87864855843c","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"6a636a909012a6f0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732764221258,"stop":1732764221258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732764221259,"stop":1732764221259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732764221259,"stop":1732764221259,"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_MoveTestCase::0","time":{"start":1732764221259,"stop":1732764221259,"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":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9823bb7abc34f758.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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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":1733030100122,"stop":1733030100122,"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_EncryptThisTestCase::0","time":{"start":1733030100122,"stop":1733030100122,"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":"CIPHERS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fd479ce41ec7634c","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0}},{"uid":"a42f9f61a6c45aa8","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0}},{"uid":"a66f07e5b377a93b","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"e83e1a2466fbcf0b","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"984b8a80ce69773d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f520dc2a3cdded7a.json b/allure-report/data/test-cases/988614c511102150.json similarity index 82% rename from allure-report/data/test-cases/f520dc2a3cdded7a.json rename to allure-report/data/test-cases/988614c511102150.json index 9036627b3b7..58d520576ef 100644 --- a/allure-report/data/test-cases/f520dc2a3cdded7a.json +++ b/allure-report/data/test-cases/988614c511102150.json @@ -1 +1 @@ -{"uid":"f520dc2a3cdded7a","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f520dc2a3cdded7a.json","parameterValues":[]} \ No newline at end of file +{"uid":"988614c511102150","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a7d954f4aff6f601.json b/allure-report/data/test-cases/99363c879a15b2c4.json similarity index 79% rename from allure-report/data/test-cases/a7d954f4aff6f601.json rename to allure-report/data/test-cases/99363c879a15b2c4.json index f7406d1a053..821b784a121 100644 --- a/allure-report/data/test-cases/a7d954f4aff6f601.json +++ b/allure-report/data/test-cases/99363c879a15b2c4.json @@ -1 +1 @@ -{"uid":"a7d954f4aff6f601","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a7d954f4aff6f601.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724735129211,"stop":1724735129211,"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_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"99363c879a15b2c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bf0909978db7e30.json b/allure-report/data/test-cases/99e1739d168a007c.json similarity index 81% rename from allure-report/data/test-cases/5bf0909978db7e30.json rename to allure-report/data/test-cases/99e1739d168a007c.json index 6d9fa17f585..e4b50071821 100644 --- a/allure-report/data/test-cases/5bf0909978db7e30.json +++ b/allure-report/data/test-cases/99e1739d168a007c.json @@ -1 +1 @@ -{"uid":"5bf0909978db7e30","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1732428196281,"stop":1732428196281,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Keep Hydrated!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5bf0909978db7e30.json","parameterValues":[]} \ No newline at end of file +{"uid":"99e1739d168a007c","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1732428196278,"stop":1732428196278,"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_KeepHydratedTestCase::0","time":{"start":1732428196281,"stop":1732428196281,"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":"story","value":"Keep Hydrated!"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"99e1739d168a007c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99e31d655e3161a.json b/allure-report/data/test-cases/99e31d655e3161a.json deleted file mode 100644 index 336f5a33fad..00000000000 --- a/allure-report/data/test-cases/99e31d655e3161a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"99e31d655e3161a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"99e31d655e3161a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99e95613ed424b35.json b/allure-report/data/test-cases/99e95613ed424b35.json new file mode 100644 index 00000000000..322d91cd5a2 --- /dev/null +++ b/allure-report/data/test-cases/99e95613ed424b35.json @@ -0,0 +1 @@ +{"uid":"99e95613ed424b35","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":1733030098864,"stop":1733030098864,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/9a17297856f21a74.json b/allure-report/data/test-cases/9a17297856f21a74.json deleted file mode 100644 index b8ec308442e..00000000000 --- a/allure-report/data/test-cases/9a17297856f21a74.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9a17297856f21a74","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":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b202dd3c9afa278","name":"stdout","source":"3b202dd3c9afa278.txt","type":"text/plain","size":37}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9a17297856f21a74.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76614b580d9bd7f8.json b/allure-report/data/test-cases/9a76d6db19b09f54.json similarity index 80% rename from allure-report/data/test-cases/76614b580d9bd7f8.json rename to allure-report/data/test-cases/9a76d6db19b09f54.json index 752094c52a0..d4c33dbf923 100644 --- a/allure-report/data/test-cases/76614b580d9bd7f8.json +++ b/allure-report/data/test-cases/9a76d6db19b09f54.json @@ -1 +1 @@ -{"uid":"76614b580d9bd7f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2a2e64e7212768ad","name":"stdout","source":"2a2e64e7212768ad.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"76614b580d9bd7f8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8474eb0f72326e17","name":"stdout","source":"8474eb0f72326e17.txt","type":"text/plain","size":12051}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474085,"stop":1724733474085,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"String subpattern recognition I"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9a76d6db19b09f54.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e248ed6a4ff28aaa.json b/allure-report/data/test-cases/9b26a570961ab395.json similarity index 85% rename from allure-report/data/test-cases/e248ed6a4ff28aaa.json rename to allure-report/data/test-cases/9b26a570961ab395.json index 1466d227814..60a23d88b67 100644 --- a/allure-report/data/test-cases/e248ed6a4ff28aaa.json +++ b/allure-report/data/test-cases/9b26a570961ab395.json @@ -1 +1 @@ -{"uid":"e248ed6a4ff28aaa","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732428194512,"stop":1732428194512,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e248ed6a4ff28aaa.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b26a570961ab395","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732428194512,"stop":1732428194512,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1857a7ece8075aa5.json b/allure-report/data/test-cases/9b5e6753141602b8.json similarity index 64% rename from allure-report/data/test-cases/1857a7ece8075aa5.json rename to allure-report/data/test-cases/9b5e6753141602b8.json index 85630edf532..40ce4f9d0e5 100644 --- a/allure-report/data/test-cases/1857a7ece8075aa5.json +++ b/allure-report/data/test-cases/9b5e6753141602b8.json @@ -1 +1 @@ -{"uid":"1857a7ece8075aa5","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1b6850c9f0a02820","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1}},{"uid":"dc9bdff2273b81f8","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"7ed5e03fb846420f","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1857a7ece8075aa5.json","parameterValues":[]} \ No newline at end of file +{"uid":"9b5e6753141602b8","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/42358797bb03e774.json b/allure-report/data/test-cases/9b6456a02fb8e586.json similarity index 84% rename from allure-report/data/test-cases/42358797bb03e774.json rename to allure-report/data/test-cases/9b6456a02fb8e586.json index 5517d4c47fd..65ee7cf1bab 100644 --- a/allure-report/data/test-cases/42358797bb03e774.json +++ b/allure-report/data/test-cases/9b6456a02fb8e586.json @@ -1 +1 @@ -{"uid":"42358797bb03e774","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"42358797bb03e774.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1733030100695,"stop":1733030100695,"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_SumTriangularNumbersTestCase::0","time":{"start":1733030100695,"stop":1733030100695,"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":"suite","value":"Algorithms"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c24c0d6b556365c6","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0}},{"uid":"600ff9f84893303e","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0}},{"uid":"7de5228b774a8541","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"5ac2db6b2e80def2","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"9b651a3e27842d38.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ba260a0149e6341.json b/allure-report/data/test-cases/9ba260a0149e6341.json new file mode 100644 index 00000000000..3a218ad825e --- /dev/null +++ b/allure-report/data/test-cases/9ba260a0149e6341.json @@ -0,0 +1 @@ +{"uid":"9ba260a0149e6341","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","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 a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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":1733030099224,"stop":1733030099224,"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_StringIncrementerTestCase::0","time":{"start":1733030099224,"stop":1733030099224,"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":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5e72598a5c064723","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2}},{"uid":"efb129a92346c1e2","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0}},{"uid":"a912833bc91830ef","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"2c9576ef35dcd75d","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":"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}}]},"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"9ba260a0149e6341.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2f619fce2ea028d.json b/allure-report/data/test-cases/9bb51a042d358695.json similarity index 56% rename from allure-report/data/test-cases/b2f619fce2ea028d.json rename to allure-report/data/test-cases/9bb51a042d358695.json index 9bc6a16329e..e31510e5ca3 100644 --- a/allure-report/data/test-cases/b2f619fce2ea028d.json +++ b/allure-report/data/test-cases/9bb51a042d358695.json @@ -1 +1 @@ -{"uid":"b2f619fce2ea028d","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":1732764221144,"stop":1732764221144,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase::0","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"54122a7c8f1149b2","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0}},{"uid":"ac65ef6ef01656e6","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"a5467cc7a05b3546","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"b2f619fce2ea028d.json","parameterValues":[]} \ No newline at end of file +{"uid":"9bb51a042d358695","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":1732764221144,"stop":1732764221144,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1732764221144,"stop":1732764221144,"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_MakeUpperCaseTestCase::0","time":{"start":1732764221144,"stop":1732764221144,"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":"MakeUpperCase"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9bb51a042d358695.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c497f5f830a2958.json b/allure-report/data/test-cases/9c497f5f830a2958.json new file mode 100644 index 00000000000..2ea2ed99c29 --- /dev/null +++ b/allure-report/data/test-cases/9c497f5f830a2958.json @@ -0,0 +1 @@ +{"uid":"9c497f5f830a2958","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4279fe2563b48bb","name":"stdout","source":"4279fe2563b48bb.txt","type":"text/plain","size":129}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9c497f5f830a2958.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ee094a1f359821e.json b/allure-report/data/test-cases/9c58cd2f052b55a6.json similarity index 77% rename from allure-report/data/test-cases/9ee094a1f359821e.json rename to allure-report/data/test-cases/9c58cd2f052b55a6.json index afb77b80612..ea320af2f83 100644 --- a/allure-report/data/test-cases/9ee094a1f359821e.json +++ b/allure-report/data/test-cases/9c58cd2f052b55a6.json @@ -1 +1 @@ -{"uid":"9ee094a1f359821e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6de140d5a479d77f","name":"stdout","source":"6de140d5a479d77f.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9ee094a1f359821e.json","parameterValues":[]} \ No newline at end of file +{"uid":"9c58cd2f052b55a6","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/9cc2024d730e5f8a.json b/allure-report/data/test-cases/9cc2024d730e5f8a.json new file mode 100644 index 00000000000..f0455ba638b --- /dev/null +++ b/allure-report/data/test-cases/9cc2024d730e5f8a.json @@ -0,0 +1 @@ +{"uid":"9cc2024d730e5f8a","name":"Test for valid large string","fullName":"kyu_7.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses_large_valid","historyId":"4355f798d978bdfe8915957eb9636552","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"description":"\n Test valid_parentheses function with\n valid large string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/afca78445b5fa23f.json b/allure-report/data/test-cases/9d0a0378192b3dfd.json similarity index 82% rename from allure-report/data/test-cases/afca78445b5fa23f.json rename to allure-report/data/test-cases/9d0a0378192b3dfd.json index 2c3a460dd38..eb35f3bb466 100644 --- a/allure-report/data/test-cases/afca78445b5fa23f.json +++ b/allure-report/data/test-cases/9d0a0378192b3dfd.json @@ -1 +1 @@ -{"uid":"afca78445b5fa23f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"afca78445b5fa23f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/30e62f45ee93d21d.json b/allure-report/data/test-cases/9d10648422f3aeed.json similarity index 84% rename from allure-report/data/test-cases/30e62f45ee93d21d.json rename to allure-report/data/test-cases/9d10648422f3aeed.json index 81029f12f49..25d33bc336a 100644 --- a/allure-report/data/test-cases/30e62f45ee93d21d.json +++ b/allure-report/data/test-cases/9d10648422f3aeed.json @@ -1 +1 @@ -{"uid":"30e62f45ee93d21d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"30e62f45ee93d21d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/cf349408f505ed67.json b/allure-report/data/test-cases/9d243bfb1021bb63.json similarity index 81% rename from allure-report/data/test-cases/cf349408f505ed67.json rename to allure-report/data/test-cases/9d243bfb1021bb63.json index 4e2e7e4c989..7cd4328de6a 100644 --- a/allure-report/data/test-cases/cf349408f505ed67.json +++ b/allure-report/data/test-cases/9d243bfb1021bb63.json @@ -1 +1 @@ -{"uid":"cf349408f505ed67","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"17e1f12bcdd4240f","name":"stdout","source":"17e1f12bcdd4240f.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cf349408f505ed67.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a60431e704cfd67c","name":"stdout","source":"a60431e704cfd67c.txt","type":"text/plain","size":487}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PasswordTestCase::0","time":{"start":1724733474335,"stop":1724733474335,"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":"Password validator"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.password_validator.test_password"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9d243bfb1021bb63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/938f6f7ebecca4c3.json b/allure-report/data/test-cases/9d27d41bfa6de8dc.json similarity index 79% rename from allure-report/data/test-cases/938f6f7ebecca4c3.json rename to allure-report/data/test-cases/9d27d41bfa6de8dc.json index febc0ffbad4..610d03b6862 100644 --- a/allure-report/data/test-cases/938f6f7ebecca4c3.json +++ b/allure-report/data/test-cases/9d27d41bfa6de8dc.json @@ -1 +1 @@ -{"uid":"938f6f7ebecca4c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5f8aca645c6a63be","name":"stdout","source":"5f8aca645c6a63be.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"938f6f7ebecca4c3.json","parameterValues":[]} \ No newline at end of file +{"uid":"9d27d41bfa6de8dc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a99ebb2468b16b95","name":"stdout","source":"a99ebb2468b16b95.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9d27d41bfa6de8dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f30d62828063f744.json b/allure-report/data/test-cases/9d4c9ba0aff07821.json similarity index 83% rename from allure-report/data/test-cases/f30d62828063f744.json rename to allure-report/data/test-cases/9d4c9ba0aff07821.json index cf0f2ac959b..8fc549c9e9d 100644 --- a/allure-report/data/test-cases/f30d62828063f744.json +++ b/allure-report/data/test-cases/9d4c9ba0aff07821.json @@ -1 +1 @@ -{"uid":"f30d62828063f744","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1732428194701,"stop":1732428194701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Duplicate Encoder"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"f30d62828063f744.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194698,"stop":1732428194698,"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_DuplicateEncodeTestCase::0","time":{"start":1732428194701,"stop":1732428194701,"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":"Duplicate Encoder"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54b42f9314d9229fd6000d9c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"9d4c9ba0aff07821.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d50fe36fd5059ab.json b/allure-report/data/test-cases/9d50fe36fd5059ab.json deleted file mode 100644 index f566120fb42..00000000000 --- a/allure-report/data/test-cases/9d50fe36fd5059ab.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9d50fe36fd5059ab","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8ecb0410a6ed3d7","name":"stdout","source":"8ecb0410a6ed3d7.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9d50fe36fd5059ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/574cb5d6827dca2a.json b/allure-report/data/test-cases/9d8106b104f30ee6.json similarity index 84% rename from allure-report/data/test-cases/574cb5d6827dca2a.json rename to allure-report/data/test-cases/9d8106b104f30ee6.json index 256ad0312ad..8350f64af47 100644 --- a/allure-report/data/test-cases/574cb5d6827dca2a.json +++ b/allure-report/data/test-cases/9d8106b104f30ee6.json @@ -1 +1 @@ -{"uid":"574cb5d6827dca2a","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":1732428194237,"stop":1732428194238,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"574cb5d6827dca2a.json","parameterValues":[]} \ No newline at end of file +{"uid":"9d8106b104f30ee6","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":1732428194237,"stop":1732428194238,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/9e10b0087e5b64c.json b/allure-report/data/test-cases/9e10b0087e5b64c.json new file mode 100644 index 00000000000..0d2349fb000 --- /dev/null +++ b/allure-report/data/test-cases/9e10b0087e5b64c.json @@ -0,0 +1 @@ +{"uid":"9e10b0087e5b64c","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"9e10b0087e5b64c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d40466198fa34e6.json b/allure-report/data/test-cases/9e4cc550b1ac8808.json similarity index 66% rename from allure-report/data/test-cases/3d40466198fa34e6.json rename to allure-report/data/test-cases/9e4cc550b1ac8808.json index cc457d7caf0..2bc71b62d02 100644 --- a/allure-report/data/test-cases/3d40466198fa34e6.json +++ b/allure-report/data/test-cases/9e4cc550b1ac8808.json @@ -1 +1 @@ -{"uid":"3d40466198fa34e6","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"696e651c40149097","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0}},{"uid":"7fb0d954404a7411","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"efdfaccb93c4c6b4","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"3d40466198fa34e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"9e4cc550b1ac8808","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1c217987ee1a1d39.json b/allure-report/data/test-cases/9e692004742b5469.json similarity index 77% rename from allure-report/data/test-cases/1c217987ee1a1d39.json rename to allure-report/data/test-cases/9e692004742b5469.json index f3d96660212..af255d89b89 100644 --- a/allure-report/data/test-cases/1c217987ee1a1d39.json +++ b/allure-report/data/test-cases/9e692004742b5469.json @@ -1 +1 @@ -{"uid":"1c217987ee1a1d39","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1ef36a16a608c99","name":"stdout","source":"d1ef36a16a608c99.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1c217987ee1a1d39.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::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":"normal"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Lists"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55bf5f341a824ad0","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0}},{"uid":"14fe289b5296dbe2","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0}},{"uid":"ccc1ac75f035d282","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"aade1eebfa7ac9cf","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"9e884f6ea55b7c35.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9eaae816682ea6e3.json b/allure-report/data/test-cases/9eaae816682ea6e3.json new file mode 100644 index 00000000000..a0664bff26f --- /dev/null +++ b/allure-report/data/test-cases/9eaae816682ea6e3.json @@ -0,0 +1 @@ +{"uid":"9eaae816682ea6e3","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":1733030101117,"stop":1733030101117,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1733030101117,"stop":1733030101117,"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_WellTestCase::0","time":{"start":1733030101117,"stop":1733030101117,"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":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"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.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c149947a189c0282","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2}},{"uid":"b37405ca3882bd1c","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0}},{"uid":"1039c276c50498c7","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"1f322fed435e4c7b","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"9eaae816682ea6e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63a8ebd07b8fa1c4.json b/allure-report/data/test-cases/9edb2b589904d584.json similarity index 64% rename from allure-report/data/test-cases/63a8ebd07b8fa1c4.json rename to allure-report/data/test-cases/9edb2b589904d584.json index 573091683bf..3541fb38a0a 100644 --- a/allure-report/data/test-cases/63a8ebd07b8fa1c4.json +++ b/allure-report/data/test-cases/9edb2b589904d584.json @@ -1 +1 @@ -{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1732764220340,"stop":1732764220340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"String subpattern recognition III"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4d2d9b386eb6ebf2","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0}},{"uid":"c739525d6df646b0","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"95e7a9865f127b46","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"63a8ebd07b8fa1c4.json","parameterValues":[]} \ No newline at end of file +{"uid":"9edb2b589904d584","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1732764220337,"stop":1732764220337,"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_HasSubpatternTestCase::0","time":{"start":1732764220340,"stop":1732764220340,"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":"story","value":"String subpattern recognition III"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9edb2b589904d584.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa69c95248558058.json b/allure-report/data/test-cases/9f56730a0e41c609.json similarity index 82% rename from allure-report/data/test-cases/fa69c95248558058.json rename to allure-report/data/test-cases/9f56730a0e41c609.json index b53cc09a4b0..20dcc5a1c24 100644 --- a/allure-report/data/test-cases/fa69c95248558058.json +++ b/allure-report/data/test-cases/9f56730a0e41c609.json @@ -1 +1 @@ -{"uid":"fa69c95248558058","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a42bbda54a679e90","name":"stdout","source":"a42bbda54a679e90.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa69c95248558058.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"712c159a049ff459","name":"stdout","source":"712c159a049ff459.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724733473202,"stop":1724733473202,"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":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9f56730a0e41c609.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f8d638b621270bd.json b/allure-report/data/test-cases/9f8d638b621270bd.json deleted file mode 100644 index 633b1cff8dd..00000000000 --- a/allure-report/data/test-cases/9f8d638b621270bd.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9f8d638b621270bd","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":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ebde2b3c5f7bae47","name":"stdout","source":"ebde2b3c5f7bae47.txt","type":"text/plain","size":104}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9f8d638b621270bd.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7059a7f2ea4f1d21","name":"stdout","source":"7059a7f2ea4f1d21.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1724735128868,"stop":1724735128868,"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":"Permute a Palindrome"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9faa60a73c33e8b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5abe74757b94997a.json b/allure-report/data/test-cases/9fb9fb1a0489c1a3.json similarity index 85% rename from allure-report/data/test-cases/5abe74757b94997a.json rename to allure-report/data/test-cases/9fb9fb1a0489c1a3.json index b2a040aaa0d..395b9816387 100644 --- a/allure-report/data/test-cases/5abe74757b94997a.json +++ b/allure-report/data/test-cases/9fb9fb1a0489c1a3.json @@ -1 +1 @@ -{"uid":"5abe74757b94997a","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":1732428194603,"stop":1732428194603,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"5abe74757b94997a.json","parameterValues":[]} \ No newline at end of file +{"uid":"9fb9fb1a0489c1a3","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":1732428194603,"stop":1732428194603,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732428194603,"stop":1732428194603,"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_LetterFrequencyTestCase::0","time":{"start":1732428194612,"stop":1732428194612,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Character frequency"},{"name":"tag","value":"UTILITIES"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"9fb9fb1a0489c1a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0445feeac697184.json b/allure-report/data/test-cases/a0445feeac697184.json new file mode 100644 index 00000000000..2aa415a0aa7 --- /dev/null +++ b/allure-report/data/test-cases/a0445feeac697184.json @@ -0,0 +1 @@ +{"uid":"a0445feeac697184","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196092,"stop":1732428196092,"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_AlternatingCaseTestCase::0","time":{"start":1732428196095,"stop":1732428196095,"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":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a0445feeac697184.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a088624abb606e0e.json b/allure-report/data/test-cases/a088624abb606e0e.json new file mode 100644 index 00000000000..2d3500a46a7 --- /dev/null +++ b/allure-report/data/test-cases/a088624abb606e0e.json @@ -0,0 +1 @@ +{"uid":"a088624abb606e0e","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/126c2e67245419a9.json b/allure-report/data/test-cases/a124532204114d8a.json similarity index 78% rename from allure-report/data/test-cases/126c2e67245419a9.json rename to allure-report/data/test-cases/a124532204114d8a.json index f3a85b045d8..3b6ed9955c1 100644 --- a/allure-report/data/test-cases/126c2e67245419a9.json +++ b/allure-report/data/test-cases/a124532204114d8a.json @@ -1 +1 @@ -{"uid":"126c2e67245419a9","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":1732428195854,"stop":1732428195854,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"126c2e67245419a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a124532204114d8a","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":1732428195854,"stop":1732428195854,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a13c451f0f676900.json b/allure-report/data/test-cases/a13c451f0f676900.json deleted file mode 100644 index 6005a567ec9..00000000000 --- a/allure-report/data/test-cases/a13c451f0f676900.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a13c451f0f676900","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":1732764220628,"stop":1732764220637,"duration":9},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732764220628,"stop":1732764220636,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"be4d78eb60a06aeb","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3}},{"uid":"a7d954f4aff6f601","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"4dfeb434e28153fe","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"a13c451f0f676900.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7108f3053cbc60d.json b/allure-report/data/test-cases/a1726ce9583568d0.json similarity index 79% rename from allure-report/data/test-cases/b7108f3053cbc60d.json rename to allure-report/data/test-cases/a1726ce9583568d0.json index 970cd049d20..b00e0ea6c36 100644 --- a/allure-report/data/test-cases/b7108f3053cbc60d.json +++ b/allure-report/data/test-cases/a1726ce9583568d0.json @@ -1 +1 @@ -{"uid":"b7108f3053cbc60d","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2b123edd90aa8cfa","name":"stdout","source":"2b123edd90aa8cfa.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7108f3053cbc60d.json","parameterValues":[]} \ No newline at end of file +{"uid":"a1726ce9583568d0","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a1980ae57d2c7b3.json b/allure-report/data/test-cases/a1980ae57d2c7b3.json deleted file mode 100644 index 2ea6004e418..00000000000 --- a/allure-report/data/test-cases/a1980ae57d2c7b3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a1980ae57d2c7b3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"175a566935f714fc","name":"stdout","source":"175a566935f714fc.txt","type":"text/plain","size":539}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Maximum Multiple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"a1980ae57d2c7b3.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1733030100961,"stop":1733030100961,"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_PeriodIsLateTestCase::0","time":{"start":1733030100961,"stop":1733030100961,"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":"story","value":"Is your period late"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f234151114f72d73","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0}},{"uid":"25e6937e43cdeebb","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0}},{"uid":"1527893d1e9640cd","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"e463bf406b88f537","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"a1c87b2c2a6c0bb7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1e3818ccb62ed24.json b/allure-report/data/test-cases/a1e3818ccb62ed24.json new file mode 100644 index 00000000000..86c98d4d371 --- /dev/null +++ b/allure-report/data/test-cases/a1e3818ccb62ed24.json @@ -0,0 +1 @@ +{"uid":"a1e3818ccb62ed24","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":1733030100789,"stop":1733030100789,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1733030100789,"stop":1733030100789,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e3e2f391aab3cb96","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1}},{"uid":"c361fae801a29bfb","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0}},{"uid":"5ddbb977ec343693","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"1d6bdee17d8fe6b6","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"a1e3818ccb62ed24.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6df3cbfc02e5094.json b/allure-report/data/test-cases/a200977d521a9785.json similarity index 84% rename from allure-report/data/test-cases/f6df3cbfc02e5094.json rename to allure-report/data/test-cases/a200977d521a9785.json index c2c9abaaf84..67d0a00c4cb 100644 --- a/allure-report/data/test-cases/f6df3cbfc02e5094.json +++ b/allure-report/data/test-cases/a200977d521a9785.json @@ -1 +1 @@ -{"uid":"f6df3cbfc02e5094","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732428195634,"stop":1732428195634,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"f6df3cbfc02e5094.json","parameterValues":[]} \ No newline at end of file +{"uid":"a200977d521a9785","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732428195634,"stop":1732428195634,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/27e5ed0c95dfc112.json b/allure-report/data/test-cases/a24b90978f06ce4b.json similarity index 78% rename from allure-report/data/test-cases/27e5ed0c95dfc112.json rename to allure-report/data/test-cases/a24b90978f06ce4b.json index d4ec3f6a85e..efe8d72a45f 100644 --- a/allure-report/data/test-cases/27e5ed0c95dfc112.json +++ b/allure-report/data/test-cases/a24b90978f06ce4b.json @@ -1 +1 @@ -{"uid":"27e5ed0c95dfc112","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"27e5ed0c95dfc112.json","parameterValues":[]} \ No newline at end of file +{"uid":"a24b90978f06ce4b","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732428196163,"stop":1732428196163,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a24b90978f06ce4b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a9def5039f12f67.json b/allure-report/data/test-cases/a24df28711252fb3.json similarity index 72% rename from allure-report/data/test-cases/9a9def5039f12f67.json rename to allure-report/data/test-cases/a24df28711252fb3.json index 6b088710cdf..099f9ee681c 100644 --- a/allure-report/data/test-cases/9a9def5039f12f67.json +++ b/allure-report/data/test-cases/a24df28711252fb3.json @@ -1 +1 @@ -{"uid":"9a9def5039f12f67","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1732764220392,"stop":1732764220392,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732764220394,"stop":1732764220394,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Vasya - Clerk"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5c0c21f2226a901c","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0}},{"uid":"8f6f88ab23c0d630","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"765c2af6ca77e4e9","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"9a9def5039f12f67.json","parameterValues":[]} \ No newline at end of file +{"uid":"a24df28711252fb3","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1732764220392,"stop":1732764220392,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732764220392,"stop":1732764220392,"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_TicketsTestCase::0","time":{"start":1732764220394,"stop":1732764220394,"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":"Vasya - Clerk"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"a24df28711252fb3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7567c87108e55931.json b/allure-report/data/test-cases/a293120689451651.json similarity index 78% rename from allure-report/data/test-cases/7567c87108e55931.json rename to allure-report/data/test-cases/a293120689451651.json index de097564ac9..fe32c8e7b2e 100644 --- a/allure-report/data/test-cases/7567c87108e55931.json +++ b/allure-report/data/test-cases/a293120689451651.json @@ -1 +1 @@ -{"uid":"7567c87108e55931","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7567c87108e55931.json","parameterValues":[]} \ No newline at end of file +{"uid":"a293120689451651","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6de398181d9095ee.json b/allure-report/data/test-cases/a2c0d72771fc18f1.json similarity index 63% rename from allure-report/data/test-cases/6de398181d9095ee.json rename to allure-report/data/test-cases/a2c0d72771fc18f1.json index 10a34ba9432..010adfa0324 100644 --- a/allure-report/data/test-cases/6de398181d9095ee.json +++ b/allure-report/data/test-cases/a2c0d72771fc18f1.json @@ -1 +1 @@ -{"uid":"6de398181d9095ee","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d705772211817a","name":"stdout","source":"5d705772211817a.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6de398181d9095ee.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a2d5dff34138108f.json b/allure-report/data/test-cases/a2d5dff34138108f.json new file mode 100644 index 00000000000..18fec115bc7 --- /dev/null +++ b/allure-report/data/test-cases/a2d5dff34138108f.json @@ -0,0 +1 @@ +{"uid":"a2d5dff34138108f","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":1732428194567,"stop":1732428194567,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/edfd5d811972f420.json b/allure-report/data/test-cases/a2ff67830434b9af.json similarity index 71% rename from allure-report/data/test-cases/edfd5d811972f420.json rename to allure-report/data/test-cases/a2ff67830434b9af.json index 5edc3185333..b1cf42a384a 100644 --- a/allure-report/data/test-cases/edfd5d811972f420.json +++ b/allure-report/data/test-cases/a2ff67830434b9af.json @@ -1 +1 @@ -{"uid":"edfd5d811972f420","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1732764220689,"stop":1732764220689,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Lists"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Sort Out The Men From Boys"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"294aa341a28271bb","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1}},{"uid":"139cceadff83cc0d","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"5815fdb3e38780e6","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"edfd5d811972f420.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1732764220683,"stop":1732764220683,"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_MenFromBoysTestCase::0","time":{"start":1732764220689,"stop":1732764220689,"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":"feature","value":"Lists"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Sort Out The Men From Boys"},{"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_7.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"a2ff67830434b9af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c38b32e4e940b443.json b/allure-report/data/test-cases/a30886bec4fc9e3b.json similarity index 82% rename from allure-report/data/test-cases/c38b32e4e940b443.json rename to allure-report/data/test-cases/a30886bec4fc9e3b.json index 21d3fda0e08..4b7a1e1d0fb 100644 --- a/allure-report/data/test-cases/c38b32e4e940b443.json +++ b/allure-report/data/test-cases/a30886bec4fc9e3b.json @@ -1 +1 @@ -{"uid":"c38b32e4e940b443","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3934a31f83c6b392","name":"stdout","source":"3934a31f83c6b392.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c38b32e4e940b443.json","parameterValues":[]} \ No newline at end of file +{"uid":"a30886bec4fc9e3b","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e8a1dedd1940971","name":"stdout","source":"9e8a1dedd1940971.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a30886bec4fc9e3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3fa4d42fb1064a9.json b/allure-report/data/test-cases/a30e32170a464ad0.json similarity index 84% rename from allure-report/data/test-cases/b3fa4d42fb1064a9.json rename to allure-report/data/test-cases/a30e32170a464ad0.json index ad466985dee..924eeef4561 100644 --- a/allure-report/data/test-cases/b3fa4d42fb1064a9.json +++ b/allure-report/data/test-cases/a30e32170a464ad0.json @@ -1 +1 @@ -{"uid":"b3fa4d42fb1064a9","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b3fa4d42fb1064a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a30e32170a464ad0","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/afe0c9a0972467a3.json b/allure-report/data/test-cases/a32047be9db53ed6.json similarity index 80% rename from allure-report/data/test-cases/afe0c9a0972467a3.json rename to allure-report/data/test-cases/a32047be9db53ed6.json index 827e3fd6bb6..0a77b75974b 100644 --- a/allure-report/data/test-cases/afe0c9a0972467a3.json +++ b/allure-report/data/test-cases/a32047be9db53ed6.json @@ -1 +1 @@ -{"uid":"afe0c9a0972467a3","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a2484027e285a197","name":"stdout","source":"a2484027e285a197.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"afe0c9a0972467a3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/82f0a19d19bd8125.json b/allure-report/data/test-cases/a394baafe8edd2c5.json similarity index 65% rename from allure-report/data/test-cases/82f0a19d19bd8125.json rename to allure-report/data/test-cases/a394baafe8edd2c5.json index 6df55252139..52d085e3c13 100644 --- a/allure-report/data/test-cases/82f0a19d19bd8125.json +++ b/allure-report/data/test-cases/a394baafe8edd2c5.json @@ -1 +1 @@ -{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732764220486,"stop":1732764220486,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732764220487,"stop":1732764220487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"303f99106d04e0c7","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0}},{"uid":"bd413f89b47699c","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"4f2bbc07480f42a4","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"82f0a19d19bd8125.json","parameterValues":[]} \ No newline at end of file +{"uid":"a394baafe8edd2c5","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732764220486,"stop":1732764220486,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732764220486,"stop":1732764220486,"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_FactorialTestCase::0","time":{"start":1732764220487,"stop":1732764220487,"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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a394baafe8edd2c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/707862d33841a8ff.json b/allure-report/data/test-cases/a3b8656ba40e9af1.json similarity index 81% rename from allure-report/data/test-cases/707862d33841a8ff.json rename to allure-report/data/test-cases/a3b8656ba40e9af1.json index b13873fa146..fc702c7dc9a 100644 --- a/allure-report/data/test-cases/707862d33841a8ff.json +++ b/allure-report/data/test-cases/a3b8656ba40e9af1.json @@ -1 +1 @@ -{"uid":"707862d33841a8ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"707862d33841a8ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3b8656ba40e9af1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1724733474382,"stop":1724733474382,"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_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a3b8656ba40e9af1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d2f9028315647c1.json b/allure-report/data/test-cases/a3e36a462ba6b0e6.json similarity index 81% rename from allure-report/data/test-cases/6d2f9028315647c1.json rename to allure-report/data/test-cases/a3e36a462ba6b0e6.json index 33a0f4dfa85..dc178772020 100644 --- a/allure-report/data/test-cases/6d2f9028315647c1.json +++ b/allure-report/data/test-cases/a3e36a462ba6b0e6.json @@ -1 +1 @@ -{"uid":"6d2f9028315647c1","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"6d2f9028315647c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3e36a462ba6b0e6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"a3e36a462ba6b0e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b684b0c7250ecf6d.json b/allure-report/data/test-cases/a3e837b6100ae0c4.json similarity index 68% rename from allure-report/data/test-cases/b684b0c7250ecf6d.json rename to allure-report/data/test-cases/a3e837b6100ae0c4.json index 3414cb6e99f..3ff8a99ecbc 100644 --- a/allure-report/data/test-cases/b684b0c7250ecf6d.json +++ b/allure-report/data/test-cases/a3e837b6100ae0c4.json @@ -1 +1 @@ -{"uid":"b684b0c7250ecf6d","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3fa4d42fb1064a9","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4}},{"uid":"994a4ad6b5f0c1e0","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"4f20da98ae3e1985","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b684b0c7250ecf6d.json","parameterValues":[]} \ No newline at end of file +{"uid":"a3e837b6100ae0c4","name":"Testing advice function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_first_non_repeating_letter","historyId":"dc079813fc553d210a3def6568230a25","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4ab01f4fc722fa2f.json b/allure-report/data/test-cases/a42f9f61a6c45aa8.json similarity index 77% rename from allure-report/data/test-cases/4ab01f4fc722fa2f.json rename to allure-report/data/test-cases/a42f9f61a6c45aa8.json index d52f0fb0720..105ed8b34ad 100644 --- a/allure-report/data/test-cases/4ab01f4fc722fa2f.json +++ b/allure-report/data/test-cases/a42f9f61a6c45aa8.json @@ -1 +1 @@ -{"uid":"4ab01f4fc722fa2f","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732428195456,"stop":1732428195456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"4ab01f4fc722fa2f.json","parameterValues":[]} \ No newline at end of file +{"uid":"a42f9f61a6c45aa8","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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":1732428195452,"stop":1732428195452,"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_EncryptThisTestCase::0","time":{"start":1732428195456,"stop":1732428195456,"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":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Encrypt this!"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SECURITY"},{"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.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"a42f9f61a6c45aa8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/765c2af6ca77e4e9.json b/allure-report/data/test-cases/a43120edfc7294d0.json similarity index 82% rename from allure-report/data/test-cases/765c2af6ca77e4e9.json rename to allure-report/data/test-cases/a43120edfc7294d0.json index a619044c3bb..8b156a1169f 100644 --- a/allure-report/data/test-cases/765c2af6ca77e4e9.json +++ b/allure-report/data/test-cases/a43120edfc7294d0.json @@ -1 +1 @@ -{"uid":"765c2af6ca77e4e9","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b1cd53c85d21b130","name":"stdout","source":"b1cd53c85d21b130.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"765c2af6ca77e4e9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a43120edfc7294d0","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724733474132,"stop":1724733474132,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cb0ee2e023f35346","name":"stdout","source":"cb0ee2e023f35346.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::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":"Vasya - Clerk"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a43120edfc7294d0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a492c358ecb2902d.json b/allure-report/data/test-cases/a492c358ecb2902d.json new file mode 100644 index 00000000000..c763c761ced --- /dev/null +++ b/allure-report/data/test-cases/a492c358ecb2902d.json @@ -0,0 +1 @@ +{"uid":"a492c358ecb2902d","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":1733030100882,"stop":1733030100882,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1733030100882,"stop":1733030100882,"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_FirstNonConsecutiveTestCase::0","time":{"start":1733030100882,"stop":1733030100882,"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":"story","value":"Find the first non-consecutive number"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d2b6a960777edb8f","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1}},{"uid":"beae761fcafbcfaf","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0}},{"uid":"f530c22a860ae687","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"13f07332e607443a","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a492c358ecb2902d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6d9aec252d158762.json b/allure-report/data/test-cases/a4aa1c9fe84c9cc9.json similarity index 91% rename from allure-report/data/test-cases/6d9aec252d158762.json rename to allure-report/data/test-cases/a4aa1c9fe84c9cc9.json index c7f5acc97c7..dc8798d9dcb 100644 --- a/allure-report/data/test-cases/6d9aec252d158762.json +++ b/allure-report/data/test-cases/a4aa1c9fe84c9cc9.json @@ -1 +1 @@ -{"uid":"6d9aec252d158762","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"6d9aec252d158762.json","parameterValues":[]} \ No newline at end of file +{"uid":"a4aa1c9fe84c9cc9","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a4cb6a94c77f28ce.json b/allure-report/data/test-cases/a4cb6a94c77f28ce.json new file mode 100644 index 00000000000..18563bf25cb --- /dev/null +++ b/allure-report/data/test-cases/a4cb6a94c77f28ce.json @@ -0,0 +1 @@ +{"uid":"a4cb6a94c77f28ce","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a53e477b227bdf44.json b/allure-report/data/test-cases/a53e477b227bdf44.json deleted file mode 100644 index b89c3826727..00000000000 --- a/allure-report/data/test-cases/a53e477b227bdf44.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a53e477b227bdf44","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d473fba435502d8","name":"stdout","source":"d473fba435502d8.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a53e477b227bdf44.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a5bb3631db18a9d9.json b/allure-report/data/test-cases/a5bb3631db18a9d9.json deleted file mode 100644 index 9e06f5046f0..00000000000 --- a/allure-report/data/test-cases/a5bb3631db18a9d9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a5bb3631db18a9d9","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"a5bb3631db18a9d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d05de3d43cf437d.json b/allure-report/data/test-cases/a5ef1e97378ae643.json similarity index 61% rename from allure-report/data/test-cases/3d05de3d43cf437d.json rename to allure-report/data/test-cases/a5ef1e97378ae643.json index cec67571a88..5813ab6ee1e 100644 --- a/allure-report/data/test-cases/3d05de3d43cf437d.json +++ b/allure-report/data/test-cases/a5ef1e97378ae643.json @@ -1 +1 @@ -{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

Advanced Warrior class assertions

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"10f08e5166368fc8","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0}},{"uid":"70c180d1e9f40ddc","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"4941703c69aa6dd8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"3d05de3d43cf437d.json","parameterValues":[]} \ No newline at end of file +{"uid":"a5ef1e97378ae643","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/378b8959bf0b41a9.json b/allure-report/data/test-cases/a65123311cff1206.json similarity index 85% rename from allure-report/data/test-cases/378b8959bf0b41a9.json rename to allure-report/data/test-cases/a65123311cff1206.json index 7d08958b6ba..c7266582e82 100644 --- a/allure-report/data/test-cases/378b8959bf0b41a9.json +++ b/allure-report/data/test-cases/a65123311cff1206.json @@ -1 +1 @@ -{"uid":"378b8959bf0b41a9","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ee8e3a23a26b4600","name":"stdout","source":"ee8e3a23a26b4600.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"378b8959bf0b41a9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a65123311cff1206","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":1724735127672,"stop":1724735127672,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15ba330274e4476f","name":"stdout","source":"15ba330274e4476f.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724735127672,"stop":1724735127672,"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":"String"},{"name":"story","value":"First non-repeating character"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SEARCH"},{"name":"tag","value":"STRINGS"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"a65123311cff1206.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/152d6167de0fb37e.json b/allure-report/data/test-cases/a654bf006c33c2bc.json similarity index 80% rename from allure-report/data/test-cases/152d6167de0fb37e.json rename to allure-report/data/test-cases/a654bf006c33c2bc.json index fd38ee6fa11..b49f1b47975 100644 --- a/allure-report/data/test-cases/152d6167de0fb37e.json +++ b/allure-report/data/test-cases/a654bf006c33c2bc.json @@ -1 +1 @@ -{"uid":"152d6167de0fb37e","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"41d5484e0bc70d7d","name":"stdout","source":"41d5484e0bc70d7d.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"152d6167de0fb37e.json","parameterValues":[]} \ No newline at end of file +{"uid":"a654bf006c33c2bc","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724735128961,"stop":1724735128961,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e23896a75b3be671","name":"stdout","source":"e23896a75b3be671.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724735128961,"stop":1724735128961,"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":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"String transformer"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a654bf006c33c2bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98366b42396826ce.json b/allure-report/data/test-cases/a65eaf9a40469196.json similarity index 77% rename from allure-report/data/test-cases/98366b42396826ce.json rename to allure-report/data/test-cases/a65eaf9a40469196.json index fbafda8af97..bb23dce7fa0 100644 --- a/allure-report/data/test-cases/98366b42396826ce.json +++ b/allure-report/data/test-cases/a65eaf9a40469196.json @@ -1 +1 @@ -{"uid":"98366b42396826ce","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"157d07999fe8bb77","name":"stdout","source":"157d07999fe8bb77.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"98366b42396826ce.json","parameterValues":[]} \ No newline at end of file +{"uid":"a65eaf9a40469196","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1751fe3c0a6687c3.json b/allure-report/data/test-cases/a66f07e5b377a93b.json similarity index 78% rename from allure-report/data/test-cases/1751fe3c0a6687c3.json rename to allure-report/data/test-cases/a66f07e5b377a93b.json index 6bfed4d3e4f..c452aacb364 100644 --- a/allure-report/data/test-cases/1751fe3c0a6687c3.json +++ b/allure-report/data/test-cases/a66f07e5b377a93b.json @@ -1 +1 @@ -{"uid":"1751fe3c0a6687c3","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d23d24d51ab0f2ec","name":"stdout","source":"d23d24d51ab0f2ec.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"1751fe3c0a6687c3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"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":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"551e85d4261ef859","name":"stdout","source":"551e85d4261ef859.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724735128758,"stop":1724735128758,"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":"CIPHERS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"a66f07e5b377a93b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6a651d904577cf4.json b/allure-report/data/test-cases/a6a651d904577cf4.json new file mode 100644 index 00000000000..a46d0b203aa --- /dev/null +++ b/allure-report/data/test-cases/a6a651d904577cf4.json @@ -0,0 +1 @@ +{"uid":"a6a651d904577cf4","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c52dc9ba56a64495.json b/allure-report/data/test-cases/a6ecb3b474360e70.json similarity index 63% rename from allure-report/data/test-cases/c52dc9ba56a64495.json rename to allure-report/data/test-cases/a6ecb3b474360e70.json index 8a9a97b32dd..f52bb05d46a 100644 --- a/allure-report/data/test-cases/c52dc9ba56a64495.json +++ b/allure-report/data/test-cases/a6ecb3b474360e70.json @@ -1 +1 @@ -{"uid":"c52dc9ba56a64495","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732764220760,"stop":1732764220761,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732764220764,"stop":1732764220764,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"name":"tag","value":"ARRAYS"},{"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.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"843678da53c540e6","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0}},{"uid":"f2826391ba216705","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"59a630e9120dbf2c","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c52dc9ba56a64495.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732764220760,"stop":1732764220761,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732764220762,"stop":1732764220762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732764220762,"stop":1732764220762,"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_SumTwoSmallestNumbersTestCase::0","time":{"start":1732764220764,"stop":1732764220764,"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":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"name":"tag","value":"ARRAYS"},{"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.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a6ecb3b474360e70.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56d019840f444cec.json b/allure-report/data/test-cases/a6f615adf58af171.json similarity index 75% rename from allure-report/data/test-cases/56d019840f444cec.json rename to allure-report/data/test-cases/a6f615adf58af171.json index 6b6a6cdf9e7..cdd7dfd6879 100644 --- a/allure-report/data/test-cases/56d019840f444cec.json +++ b/allure-report/data/test-cases/a6f615adf58af171.json @@ -1 +1 @@ -{"uid":"56d019840f444cec","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1732764220536,"stop":1732764220536,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732764220538,"stop":1732764220538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ea092b3f85ebfcb","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0}},{"uid":"f71bd4516df37f52","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"91d86d4a26e41755","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"56d019840f444cec.json","parameterValues":[]} \ No newline at end of file +{"uid":"a6f615adf58af171","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1732764220536,"stop":1732764220536,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732764220536,"stop":1732764220536,"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_GrowingPlantTestCase::0","time":{"start":1732764220538,"stop":1732764220538,"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":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"a6f615adf58af171.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6a59cc8a0131a02.json b/allure-report/data/test-cases/a712aa917a11c1d8.json similarity index 78% rename from allure-report/data/test-cases/a6a59cc8a0131a02.json rename to allure-report/data/test-cases/a712aa917a11c1d8.json index 079b68bb347..ba8b4a92131 100644 --- a/allure-report/data/test-cases/a6a59cc8a0131a02.json +++ b/allure-report/data/test-cases/a712aa917a11c1d8.json @@ -1 +1 @@ -{"uid":"a6a59cc8a0131a02","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194678,"stop":1732428194678,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a6a59cc8a0131a02.json","parameterValues":[]} \ No newline at end of file +{"uid":"a712aa917a11c1d8","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/17c9a97f8a5ea815.json b/allure-report/data/test-cases/a72e2d4e966e7c09.json similarity index 65% rename from allure-report/data/test-cases/17c9a97f8a5ea815.json rename to allure-report/data/test-cases/a72e2d4e966e7c09.json index d2985d5ff5a..05ad05df440 100644 --- a/allure-report/data/test-cases/17c9a97f8a5ea815.json +++ b/allure-report/data/test-cases/a72e2d4e966e7c09.json @@ -1 +1 @@ -{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219332,"stop":1732764219332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a8e7ed0b9e8a05d4","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0}},{"uid":"632eacb89b6e193e","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"4430fa612ad99844","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"17c9a97f8a5ea815.json","parameterValues":[]} \ No newline at end of file +{"uid":"a72e2d4e966e7c09","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f9778b72019f6060.json b/allure-report/data/test-cases/a7585b25b34695fe.json similarity index 94% rename from allure-report/data/test-cases/f9778b72019f6060.json rename to allure-report/data/test-cases/a7585b25b34695fe.json index c84ee13aaac..1b705686b05 100644 --- a/allure-report/data/test-cases/f9778b72019f6060.json +++ b/allure-report/data/test-cases/a7585b25b34695fe.json @@ -1 +1 @@ -{"uid":"f9778b72019f6060","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":"f9778b72019f6060.json","parameterValues":[]} \ No newline at end of file +{"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/861fc17326f7d16a.json b/allure-report/data/test-cases/a7645184155771ad.json similarity index 79% rename from allure-report/data/test-cases/861fc17326f7d16a.json rename to allure-report/data/test-cases/a7645184155771ad.json index cc4d487957d..ebc414d6425 100644 --- a/allure-report/data/test-cases/861fc17326f7d16a.json +++ b/allure-report/data/test-cases/a7645184155771ad.json @@ -1 +1 @@ -{"uid":"861fc17326f7d16a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5473bc31f56d9a8c","name":"stdout","source":"5473bc31f56d9a8c.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"861fc17326f7d16a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9adef8938da49aa4","name":"stdout","source":"9adef8938da49aa4.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724733474694,"stop":1724733474694,"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":"Grasshopper - Check for factor"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a7645184155771ad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a78b9243c26a61bf.json b/allure-report/data/test-cases/a78b9243c26a61bf.json deleted file mode 100644 index 9a605713960..00000000000 --- a/allure-report/data/test-cases/a78b9243c26a61bf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a78b9243c26a61bf","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":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing append method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"875e90b046ec092c","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0}},{"uid":"f25197354d7a779d","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"86447fe348b226fe","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"a78b9243c26a61bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0b1085f1fbfd7ed.json b/allure-report/data/test-cases/a78dd64f3f2b4648.json similarity index 62% rename from allure-report/data/test-cases/c0b1085f1fbfd7ed.json rename to allure-report/data/test-cases/a78dd64f3f2b4648.json index 8c960de9074..461c574237e 100644 --- a/allure-report/data/test-cases/c0b1085f1fbfd7ed.json +++ b/allure-report/data/test-cases/a78dd64f3f2b4648.json @@ -1 +1 @@ -{"uid":"c0b1085f1fbfd7ed","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":1732764220254,"stop":1732764220254,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"288e814175ef5830","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1}},{"uid":"7612354cc3c699d","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"5956e80e98375be","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c0b1085f1fbfd7ed.json","parameterValues":[]} \ No newline at end of file +{"uid":"a78dd64f3f2b4648","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":1732764220254,"stop":1732764220254,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220254,"stop":1732764220254,"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_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"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":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"a78dd64f3f2b4648.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a81b8ca7a7877717.json b/allure-report/data/test-cases/a81b8ca7a7877717.json new file mode 100644 index 00000000000..bfd1af7fb73 --- /dev/null +++ b/allure-report/data/test-cases/a81b8ca7a7877717.json @@ -0,0 +1 @@ +{"uid":"a81b8ca7a7877717","name":"Testing Walker class - position property from negative grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1b24a6e8f9065ccb.json b/allure-report/data/test-cases/a86267feca446780.json similarity index 82% rename from allure-report/data/test-cases/1b24a6e8f9065ccb.json rename to allure-report/data/test-cases/a86267feca446780.json index dcfae60e73f..5b38b727c87 100644 --- a/allure-report/data/test-cases/1b24a6e8f9065ccb.json +++ b/allure-report/data/test-cases/a86267feca446780.json @@ -1 +1 @@ -{"uid":"1b24a6e8f9065ccb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase::0","time":{"start":1732428195676,"stop":1732428195676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of Digits / Digital Root"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"1b24a6e8f9065ccb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DigitalRootTestCase","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195675,"stop":1732428195675,"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_DigitalRootTestCase::0","time":{"start":1732428195676,"stop":1732428195676,"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 Digits / Digital Root"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.sum_of_digits_digital_root.test_digital_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/541c8630095125aba6000c00","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"a86267feca446780.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a890c2eb991483c.json b/allure-report/data/test-cases/a890c2eb991483c.json new file mode 100644 index 00000000000..f96e557e7a1 --- /dev/null +++ b/allure-report/data/test-cases/a890c2eb991483c.json @@ -0,0 +1 @@ +{"uid":"a890c2eb991483c","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732428195946,"stop":1732428195946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732428195946,"stop":1732428195947,"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_SharePriceTestCase::0","time":{"start":1732428195947,"stop":1732428195947,"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":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Share prices"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"a890c2eb991483c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8ac1a16737b16a.json b/allure-report/data/test-cases/a8ac1a16737b16a.json new file mode 100644 index 00000000000..329999c642c --- /dev/null +++ b/allure-report/data/test-cases/a8ac1a16737b16a.json @@ -0,0 +1 @@ +{"uid":"a8ac1a16737b16a","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/36552864c04c1cf9.json b/allure-report/data/test-cases/a8ceda5e3158297c.json similarity index 79% rename from allure-report/data/test-cases/36552864c04c1cf9.json rename to allure-report/data/test-cases/a8ceda5e3158297c.json index 364e1f1582a..3c69150377b 100644 --- a/allure-report/data/test-cases/36552864c04c1cf9.json +++ b/allure-report/data/test-cases/a8ceda5e3158297c.json @@ -1 +1 @@ -{"uid":"36552864c04c1cf9","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1d47ca07980ea016","name":"stdout","source":"1d47ca07980ea016.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"36552864c04c1cf9.json","parameterValues":[]} \ No newline at end of file +{"uid":"a8ceda5e3158297c","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":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"833d260c3e69ae73","name":"stdout","source":"833d260c3e69ae73.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"a8ceda5e3158297c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a90239b6ef90f6a6.json b/allure-report/data/test-cases/a90239b6ef90f6a6.json new file mode 100644 index 00000000000..4a27e10b112 --- /dev/null +++ b/allure-report/data/test-cases/a90239b6ef90f6a6.json @@ -0,0 +1 @@ +{"uid":"a90239b6ef90f6a6","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":1733030098911,"stop":1733030098911,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a908975bd67b2eca.json b/allure-report/data/test-cases/a908975bd67b2eca.json deleted file mode 100644 index ea11399ee4e..00000000000 --- a/allure-report/data/test-cases/a908975bd67b2eca.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1732764218803,"stop":1732764218803,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0df4a2c5fe59a12","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0}},{"uid":"d4d3736adb97380b","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"6de398181d9095ee","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"a908975bd67b2eca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6f428498c7694b0.json b/allure-report/data/test-cases/a912833bc91830ef.json similarity index 75% rename from allure-report/data/test-cases/a6f428498c7694b0.json rename to allure-report/data/test-cases/a912833bc91830ef.json index 23c61116a7b..f2c12d8ef64 100644 --- a/allure-report/data/test-cases/a6f428498c7694b0.json +++ b/allure-report/data/test-cases/a912833bc91830ef.json @@ -1 +1 @@ -{"uid":"a6f428498c7694b0","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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4f546882d08a1ac","name":"stdout","source":"f4f546882d08a1ac.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"a6f428498c7694b0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"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":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f432fb3d00b5421","name":"stdout","source":"1f432fb3d00b5421.txt","type":"text/plain","size":531}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"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":"String incrementer"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"a912833bc91830ef.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeReadableTestCase","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test number and verify the output","time":{"start":1733030099005,"stop":1733030099005,"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_MakeReadableTestCase::0","time":{"start":1733030099021,"stop":1733030099021,"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":"tag","value":"DATES/TIME"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Human Readable Time"},{"name":"tag","value":"ALGORITHMS"},{"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.human_readable_time.test_make_readable"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52685f7382004e774f0001f7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"839787eb550f06c0","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0}},{"uid":"259fe2f0923b6d92","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0}},{"uid":"8c72b971279020f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"2e82de27bb7feb41","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},"source":"a92222b0b7f4d601.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a95c24b51d5c9432.json b/allure-report/data/test-cases/a95c24b51d5c9432.json new file mode 100644 index 00000000000..5abad3ab4fe --- /dev/null +++ b/allure-report/data/test-cases/a95c24b51d5c9432.json @@ -0,0 +1 @@ +{"uid":"a95c24b51d5c9432","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":1733030100851,"stop":1733030100851,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::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":"story","value":"Counting sheep..."},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"432b6e8e59506414","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0}},{"uid":"36cf4add9af1788b","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1}},{"uid":"154178490b84fb33","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"67660b7a0592cf4d","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a95c24b51d5c9432.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ece4d55c6bd3b35.json b/allure-report/data/test-cases/a9aa7cc6bd5c34be.json similarity index 82% rename from allure-report/data/test-cases/9ece4d55c6bd3b35.json rename to allure-report/data/test-cases/a9aa7cc6bd5c34be.json index 49dd68e6cec..30b2b28fa1d 100644 --- a/allure-report/data/test-cases/9ece4d55c6bd3b35.json +++ b/allure-report/data/test-cases/a9aa7cc6bd5c34be.json @@ -1 +1 @@ -{"uid":"9ece4d55c6bd3b35","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"9ece4d55c6bd3b35.json","parameterValues":[]} \ No newline at end of file +{"uid":"a9aa7cc6bd5c34be","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1c9684bf403c80de.json b/allure-report/data/test-cases/a9f0e43ae54089ff.json similarity index 63% rename from allure-report/data/test-cases/1c9684bf403c80de.json rename to allure-report/data/test-cases/a9f0e43ae54089ff.json index 5700b81e14d..3b4deeda8e7 100644 --- a/allure-report/data/test-cases/1c9684bf403c80de.json +++ b/allure-report/data/test-cases/a9f0e43ae54089ff.json @@ -1 +1 @@ -{"uid":"1c9684bf403c80de","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1732764219139,"stop":1732764219139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Moving Zeros To The End"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4df5cc35809df545","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0}},{"uid":"482801cdd802c850","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"1b9a7ef859e6370c","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"1c9684bf403c80de.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1732764219137,"stop":1732764219137,"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_MoveZerosTestCase::0","time":{"start":1732764219139,"stop":1732764219139,"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":"Moving Zeros To The End"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"a9f0e43ae54089ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f97df940bb3f46a.json b/allure-report/data/test-cases/a9fe3e48d71bee45.json similarity index 66% rename from allure-report/data/test-cases/5f97df940bb3f46a.json rename to allure-report/data/test-cases/a9fe3e48d71bee45.json index a587642bb09..8a776d7d239 100644 --- a/allure-report/data/test-cases/5f97df940bb3f46a.json +++ b/allure-report/data/test-cases/a9fe3e48d71bee45.json @@ -1 +1 @@ -{"uid":"5f97df940bb3f46a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220695,"stop":1732764220695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764220697,"stop":1732764220697,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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":"b98e581eac70f265","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0}},{"uid":"afc07e402ebe38d8","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"8fd9fc1a4b426539","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"5f97df940bb3f46a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220695,"stop":1732764220695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732764220696,"stop":1732764220696,"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_SolutionTestCase::0","time":{"start":1732764220697,"stop":1732764220697,"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":"STRING FORMATTING"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"a9fe3e48d71bee45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6035f0fe38b5a062.json b/allure-report/data/test-cases/aa00c7be0a861177.json similarity index 64% rename from allure-report/data/test-cases/6035f0fe38b5a062.json rename to allure-report/data/test-cases/aa00c7be0a861177.json index c7f82ca4183..5335a8e6f7c 100644 --- a/allure-report/data/test-cases/6035f0fe38b5a062.json +++ b/allure-report/data/test-cases/aa00c7be0a861177.json @@ -1 +1 @@ -{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

Basic test: level, experience, rank

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f520dc2a3cdded7a","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1}},{"uid":"3bb063d5045f38b5","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"ba3e30be8784f086","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"6035f0fe38b5a062.json","parameterValues":[]} \ No newline at end of file +{"uid":"aa00c7be0a861177","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3cb7f65d354963ea.json b/allure-report/data/test-cases/aa0a102aebb2ddf0.json similarity index 69% rename from allure-report/data/test-cases/3cb7f65d354963ea.json rename to allure-report/data/test-cases/aa0a102aebb2ddf0.json index f00a5bd65d3..f6b9a44d31e 100644 --- a/allure-report/data/test-cases/3cb7f65d354963ea.json +++ b/allure-report/data/test-cases/aa0a102aebb2ddf0.json @@ -1 +1 @@ -{"uid":"3cb7f65d354963ea","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1732764221267,"stop":1732764221268,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"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_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51021ef4547a41f8","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0}},{"uid":"579e5f45553c02f2","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"43c9c9efb1c04251","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"3cb7f65d354963ea.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1732764221265,"stop":1732764221265,"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_FeastTestCase::0","time":{"start":1732764221267,"stop":1732764221268,"duration":1},"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":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"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_8.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"aa0a102aebb2ddf0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa0fd3e8d8009a95.json b/allure-report/data/test-cases/aa0fd3e8d8009a95.json new file mode 100644 index 00000000000..63db74937fa --- /dev/null +++ b/allure-report/data/test-cases/aa0fd3e8d8009a95.json @@ -0,0 +1 @@ +{"uid":"aa0fd3e8d8009a95","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with digits only","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with special chars only","time":{"start":1733030100153,"stop":1733030100153,"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_FirstDupTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1809b6a5abfda186","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0}},{"uid":"523993bf26b2b2d","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0}},{"uid":"3d317930834fc5a0","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"4bc08c1baeba1126","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":"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}}]},"tags":["ALGORITHMS"]},"source":"aa7d2e5e86b66673.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b9bf67d4df9c3970.json b/allure-report/data/test-cases/aade1eebfa7ac9cf.json similarity index 81% rename from allure-report/data/test-cases/b9bf67d4df9c3970.json rename to allure-report/data/test-cases/aade1eebfa7ac9cf.json index 4ec7aa1319c..3f45bfca7d8 100644 --- a/allure-report/data/test-cases/b9bf67d4df9c3970.json +++ b/allure-report/data/test-cases/aade1eebfa7ac9cf.json @@ -1 +1 @@ -{"uid":"b9bf67d4df9c3970","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"3fc74f16bec5bbf3","name":"stdout","source":"3fc74f16bec5bbf3.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"b9bf67d4df9c3970.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"dbdc65123191fc3f","name":"stdout","source":"dbdc65123191fc3f.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724733475007,"stop":1724733475007,"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":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"aade1eebfa7ac9cf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fe040c66880e0b15.json b/allure-report/data/test-cases/aadfe826c6aeccf6.json similarity index 81% rename from allure-report/data/test-cases/fe040c66880e0b15.json rename to allure-report/data/test-cases/aadfe826c6aeccf6.json index a5af5ad3bd7..3c49b6f412d 100644 --- a/allure-report/data/test-cases/fe040c66880e0b15.json +++ b/allure-report/data/test-cases/aadfe826c6aeccf6.json @@ -1 +1 @@ -{"uid":"fe040c66880e0b15","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc532e29d77b891e","name":"stdout","source":"cc532e29d77b891e.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"fe040c66880e0b15.json","parameterValues":[]} \ No newline at end of file +{"uid":"aadfe826c6aeccf6","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724733474069,"stop":1724733474069,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a61ba5af03a1f296.json b/allure-report/data/test-cases/ab2861d9bed3765e.json similarity index 68% rename from allure-report/data/test-cases/a61ba5af03a1f296.json rename to allure-report/data/test-cases/ab2861d9bed3765e.json index 831985ca6a3..6aed942e98a 100644 --- a/allure-report/data/test-cases/a61ba5af03a1f296.json +++ b/allure-report/data/test-cases/ab2861d9bed3765e.json @@ -1 +1 @@ -{"uid":"a61ba5af03a1f296","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732764220965,"stop":1732764220965,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Formatting decimal places #0"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Formatting"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc6ce7cf48700667","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1}},{"uid":"c20970878e009fc6","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"842b955d145895ca","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a61ba5af03a1f296.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220961,"stop":1732764220961,"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_TwoDecimalPlacesTestCase::0","time":{"start":1732764220965,"stop":1732764220965,"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":"story","value":"Formatting decimal places #0"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Formatting"},{"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_8.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ab2861d9bed3765e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/437936b48694b75d.json b/allure-report/data/test-cases/ab6068d2916c95e9.json similarity index 77% rename from allure-report/data/test-cases/437936b48694b75d.json rename to allure-report/data/test-cases/ab6068d2916c95e9.json index ee945bd5e4e..0f3def8e067 100644 --- a/allure-report/data/test-cases/437936b48694b75d.json +++ b/allure-report/data/test-cases/ab6068d2916c95e9.json @@ -1 +1 @@ -{"uid":"437936b48694b75d","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"613c4bb712b376ab","name":"stdout","source":"613c4bb712b376ab.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"437936b48694b75d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ab6068d2916c95e9","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/abf4f2031d384e78.json b/allure-report/data/test-cases/ab7fe234dc976ac6.json similarity index 74% rename from allure-report/data/test-cases/abf4f2031d384e78.json rename to allure-report/data/test-cases/ab7fe234dc976ac6.json index 70a4552db46..607dd89c412 100644 --- a/allure-report/data/test-cases/abf4f2031d384e78.json +++ b/allure-report/data/test-cases/ab7fe234dc976ac6.json @@ -1 +1 @@ -{"uid":"abf4f2031d384e78","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"72a9f976cb96a98d","name":"stdout","source":"72a9f976cb96a98d.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"abf4f2031d384e78.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6ef44675aea47099.json b/allure-report/data/test-cases/abbcc324b9e8a1ea.json similarity index 55% rename from allure-report/data/test-cases/6ef44675aea47099.json rename to allure-report/data/test-cases/abbcc324b9e8a1ea.json index eec38045961..ec07d8f18dd 100644 --- a/allure-report/data/test-cases/6ef44675aea47099.json +++ b/allure-report/data/test-cases/abbcc324b9e8a1ea.json @@ -1 +1 @@ -{"uid":"6ef44675aea47099","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732764219113,"stop":1732764219113,"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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6aba04a431b7fd70","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194439,"stop":1732428194439,"duration":0}},{"uid":"6566372edd2dc54c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"c264906d7bf954d5","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"6ef44675aea47099.json","parameterValues":[]} \ No newline at end of file +{"uid":"abbcc324b9e8a1ea","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732764219113,"stop":1732764219113,"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":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/288e814175ef5830.json b/allure-report/data/test-cases/abe925767bdb0e39.json similarity index 79% rename from allure-report/data/test-cases/288e814175ef5830.json rename to allure-report/data/test-cases/abe925767bdb0e39.json index f463946a3ed..d5ede068aa3 100644 --- a/allure-report/data/test-cases/288e814175ef5830.json +++ b/allure-report/data/test-cases/abe925767bdb0e39.json @@ -1 +1 @@ -{"uid":"288e814175ef5830","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"288e814175ef5830.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195573,"stop":1732428195573,"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_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"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":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"abe925767bdb0e39.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41a6baf598873d9b.json b/allure-report/data/test-cases/abfe637076f1879d.json similarity index 82% rename from allure-report/data/test-cases/41a6baf598873d9b.json rename to allure-report/data/test-cases/abfe637076f1879d.json index d9e27cc99c5..c08ecaba740 100644 --- a/allure-report/data/test-cases/41a6baf598873d9b.json +++ b/allure-report/data/test-cases/abfe637076f1879d.json @@ -1 +1 @@ -{"uid":"41a6baf598873d9b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"41a6baf598873d9b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/624b364c1e1f6bc7.json b/allure-report/data/test-cases/ac366a2ecd02d5dd.json similarity index 94% rename from allure-report/data/test-cases/624b364c1e1f6bc7.json rename to allure-report/data/test-cases/ac366a2ecd02d5dd.json index e90031649b0..0403b3c7856 100644 --- a/allure-report/data/test-cases/624b364c1e1f6bc7.json +++ b/allure-report/data/test-cases/ac366a2ecd02d5dd.json @@ -1 +1 @@ -{"uid":"624b364c1e1f6bc7","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":"624b364c1e1f6bc7.json","parameterValues":[]} \ No newline at end of file +{"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/9a72e64592e0ae1b.json b/allure-report/data/test-cases/ac4b8e11c3d56a6a.json similarity index 80% rename from allure-report/data/test-cases/9a72e64592e0ae1b.json rename to allure-report/data/test-cases/ac4b8e11c3d56a6a.json index cea68896611..4de3c8957d8 100644 --- a/allure-report/data/test-cases/9a72e64592e0ae1b.json +++ b/allure-report/data/test-cases/ac4b8e11c3d56a6a.json @@ -1 +1 @@ -{"uid":"9a72e64592e0ae1b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"14f2aef00cdbb284","name":"stdout","source":"14f2aef00cdbb284.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9a72e64592e0ae1b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"39d04d48da97fae9","name":"stdout","source":"39d04d48da97fae9.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LongestRepetitionTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.longest_repetition.test_longest_repetition"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac4b8e11c3d56a6a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/747c525d425e0efa.json b/allure-report/data/test-cases/ac66f87691632de7.json similarity index 82% rename from allure-report/data/test-cases/747c525d425e0efa.json rename to allure-report/data/test-cases/ac66f87691632de7.json index cc0f1209582..1777ac1b956 100644 --- a/allure-report/data/test-cases/747c525d425e0efa.json +++ b/allure-report/data/test-cases/ac66f87691632de7.json @@ -1 +1 @@ -{"uid":"747c525d425e0efa","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2857c06d429f0757","name":"stdout","source":"2857c06d429f0757.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"747c525d425e0efa.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac66f87691632de7","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1733030099177,"stop":1733030099177,"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_MoveZerosTestCase::0","time":{"start":1733030099192,"stop":1733030099192,"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":"SORTING"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Moving Zeros To The End"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52597aa56021e91c93000cb0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a9f0e43ae54089ff","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0}},{"uid":"7423494f63e5e438","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0}},{"uid":"3e8030135d08e5ec","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"f0b0565c8c046b9","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"ac824f903545a6e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5aba2cd944d7efd.json b/allure-report/data/test-cases/ac8d0c005e499da5.json similarity index 66% rename from allure-report/data/test-cases/d5aba2cd944d7efd.json rename to allure-report/data/test-cases/ac8d0c005e499da5.json index c8283667ea2..a942ece76d0 100644 --- a/allure-report/data/test-cases/d5aba2cd944d7efd.json +++ b/allure-report/data/test-cases/ac8d0c005e499da5.json @@ -1 +1 @@ -{"uid":"d5aba2cd944d7efd","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"494bc5055e76bf71","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2}},{"uid":"6558b0da7e100d83","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"747c525d425e0efa","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"d5aba2cd944d7efd.json","parameterValues":[]} \ No newline at end of file +{"uid":"ac8d0c005e499da5","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/256439519ef758bc.json b/allure-report/data/test-cases/acad0a25b607c9fe.json similarity index 76% rename from allure-report/data/test-cases/256439519ef758bc.json rename to allure-report/data/test-cases/acad0a25b607c9fe.json index 33275205507..1f07eed8bc9 100644 --- a/allure-report/data/test-cases/256439519ef758bc.json +++ b/allure-report/data/test-cases/acad0a25b607c9fe.json @@ -1 +1 @@ -{"uid":"256439519ef758bc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47a1750ca1ae0253","name":"stdout","source":"47a1750ca1ae0253.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"256439519ef758bc.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ad3e6b6eddb975ef.json b/allure-report/data/test-cases/ad3e6b6eddb975ef.json new file mode 100644 index 00000000000..f8bcf6c469e --- /dev/null +++ b/allure-report/data/test-cases/ad3e6b6eddb975ef.json @@ -0,0 +1 @@ +{"uid":"ad3e6b6eddb975ef","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a positive number as an input and verify the output","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a positive number as an input and verify the output","time":{"start":1733030100695,"stop":1733030100695,"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_SumTriangularNumbersTestCase::0","time":{"start":1733030100695,"stop":1733030100695,"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":"suite","value":"Algorithms"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"35dae73baea1e718","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0}},{"uid":"4d0543e962e43a97","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0}},{"uid":"2cf064760bcef1c9","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"206559a31da63112","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"ad642268f112be60.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e88e2d0381e105a.json b/allure-report/data/test-cases/adba958b88eb7661.json similarity index 83% rename from allure-report/data/test-cases/3e88e2d0381e105a.json rename to allure-report/data/test-cases/adba958b88eb7661.json index 32741e8bba0..3ed4550ab0c 100644 --- a/allure-report/data/test-cases/3e88e2d0381e105a.json +++ b/allure-report/data/test-cases/adba958b88eb7661.json @@ -1 +1 @@ -{"uid":"3e88e2d0381e105a","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a93887f366c469bf","name":"stdout","source":"a93887f366c469bf.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3e88e2d0381e105a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c19e4739f2d4d64c.json b/allure-report/data/test-cases/add9ef76ac7e1779.json similarity index 60% rename from allure-report/data/test-cases/c19e4739f2d4d64c.json rename to allure-report/data/test-cases/add9ef76ac7e1779.json index 196011edf1a..d0b2b7b27df 100644 --- a/allure-report/data/test-cases/c19e4739f2d4d64c.json +++ b/allure-report/data/test-cases/add9ef76ac7e1779.json @@ -1 +1 @@ -{"uid":"c19e4739f2d4d64c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732764220828,"stop":1732764220828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31ab703bf65847e5","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0}},{"uid":"764219a087e938f","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"4fc00e9c47abe8d0","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"c19e4739f2d4d64c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1732764220828,"stop":1732764220828,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"add9ef76ac7e1779.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ae08758c48a63481.json b/allure-report/data/test-cases/ae08758c48a63481.json deleted file mode 100644 index 866fd960ac4..00000000000 --- a/allure-report/data/test-cases/ae08758c48a63481.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ae08758c48a63481","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e01af9821f0d361c","name":"stdout","source":"e01af9821f0d361c.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ae08758c48a63481.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ae87022eb9b205bd.json b/allure-report/data/test-cases/ae87022eb9b205bd.json new file mode 100644 index 00000000000..815be6ef2cc --- /dev/null +++ b/allure-report/data/test-cases/ae87022eb9b205bd.json @@ -0,0 +1 @@ +{"uid":"ae87022eb9b205bd","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":1733030100575,"stop":1733030100575,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1733030100575,"stop":1733030100575,"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_RemoveSmallestTestCase::0","time":{"start":1733030100601,"stop":1733030100601,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4b8e18ee349d818","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1}},{"uid":"f909236d8dbf12db","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0}},{"uid":"eae8b41d97e1bc2d","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"de63ba79b87d23ab","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"ae87022eb9b205bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ff9c64bdd3b3fc0c.json b/allure-report/data/test-cases/ae9c6bad3687824e.json similarity index 56% rename from allure-report/data/test-cases/ff9c64bdd3b3fc0c.json rename to allure-report/data/test-cases/ae9c6bad3687824e.json index 2cb597da709..257b4cca2b3 100644 --- a/allure-report/data/test-cases/ff9c64bdd3b3fc0c.json +++ b/allure-report/data/test-cases/ae9c6bad3687824e.json @@ -1 +1 @@ -{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732764220276,"stop":1732764220276,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732764220277,"stop":1732764220277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Pyramid Array"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5cf96cca0ab2f52","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1}},{"uid":"329cbbd27ed228a7","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"1d4c3341dfe8e289","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"ff9c64bdd3b3fc0c.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae9c6bad3687824e","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732764220276,"stop":1732764220276,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732764220276,"stop":1732764220276,"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_PyramidTestCase::0","time":{"start":1732764220277,"stop":1732764220277,"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":"Pyramid Array"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"ae9c6bad3687824e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea77ab4395e92566.json b/allure-report/data/test-cases/ae9de108d4c0920c.json similarity index 59% rename from allure-report/data/test-cases/ea77ab4395e92566.json rename to allure-report/data/test-cases/ae9de108d4c0920c.json index c2423cd31d9..86715e6f3d8 100644 --- a/allure-report/data/test-cases/ea77ab4395e92566.json +++ b/allure-report/data/test-cases/ae9de108d4c0920c.json @@ -1 +1 @@ -{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f678007c09ea2b5","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1}},{"uid":"88ed1c9da2d9b53b","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"e8a3e54ef5fe796f","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"ea77ab4395e92566.json","parameterValues":[]} \ No newline at end of file +{"uid":"ae9de108d4c0920c","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/584f8bdd5c7f3c16.json b/allure-report/data/test-cases/aea42439e3c082b4.json similarity index 77% rename from allure-report/data/test-cases/584f8bdd5c7f3c16.json rename to allure-report/data/test-cases/aea42439e3c082b4.json index 7a60f1cb6c6..29a6d03dde7 100644 --- a/allure-report/data/test-cases/584f8bdd5c7f3c16.json +++ b/allure-report/data/test-cases/aea42439e3c082b4.json @@ -1 +1 @@ -{"uid":"584f8bdd5c7f3c16","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2e61a28436ed8397","name":"stdout","source":"2e61a28436ed8397.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"584f8bdd5c7f3c16.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/68489cf8ea35171c.json b/allure-report/data/test-cases/aeae161caad1a65f.json similarity index 76% rename from allure-report/data/test-cases/68489cf8ea35171c.json rename to allure-report/data/test-cases/aeae161caad1a65f.json index 697eeb2cdc1..3cb0056aac4 100644 --- a/allure-report/data/test-cases/68489cf8ea35171c.json +++ b/allure-report/data/test-cases/aeae161caad1a65f.json @@ -1 +1 @@ -{"uid":"68489cf8ea35171c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e367429b8224516","name":"stdout","source":"9e367429b8224516.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"68489cf8ea35171c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7e6e0f3580253245","name":"stdout","source":"7e6e0f3580253245.txt","type":"text/plain","size":232}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1724733474913,"stop":1724733474913,"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":"Geometry"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGEBRA"},{"name":"tag","value":"GEOMETRY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"aeae161caad1a65f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a29d5673ddcf7e8e.json b/allure-report/data/test-cases/aeaf73e97e8c5fe3.json similarity index 77% rename from allure-report/data/test-cases/a29d5673ddcf7e8e.json rename to allure-report/data/test-cases/aeaf73e97e8c5fe3.json index 5e2dcdec52c..5234bbccf07 100644 --- a/allure-report/data/test-cases/a29d5673ddcf7e8e.json +++ b/allure-report/data/test-cases/aeaf73e97e8c5fe3.json @@ -1 +1 @@ -{"uid":"a29d5673ddcf7e8e","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":1732428195484,"stop":1732428195485,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"a29d5673ddcf7e8e.json","parameterValues":[]} \ No newline at end of file +{"uid":"aeaf73e97e8c5fe3","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":1732428195484,"stop":1732428195485,"duration":1},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1732428195484,"stop":1732428195484,"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_FirstDupTestCase::0","time":{"start":1732428195495,"stop":1732428195495,"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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"aeaf73e97e8c5fe3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aec2fb642901e92.json b/allure-report/data/test-cases/aec2fb642901e92.json deleted file mode 100644 index 3c607c26a11..00000000000 --- a/allure-report/data/test-cases/aec2fb642901e92.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"aec2fb642901e92","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aec2fb642901e92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/359cda8d66959d20.json b/allure-report/data/test-cases/aee1417e53524250.json similarity index 76% rename from allure-report/data/test-cases/359cda8d66959d20.json rename to allure-report/data/test-cases/aee1417e53524250.json index e67d8051189..2853f4713b6 100644 --- a/allure-report/data/test-cases/359cda8d66959d20.json +++ b/allure-report/data/test-cases/aee1417e53524250.json @@ -1 +1 @@ -{"uid":"359cda8d66959d20","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e6e24d1199424ffc","name":"stdout","source":"e6e24d1199424ffc.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"359cda8d66959d20.json","parameterValues":[]} \ No newline at end of file +{"uid":"aee1417e53524250","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/aef6b82f43e1b4b4.json b/allure-report/data/test-cases/aef6b82f43e1b4b4.json new file mode 100644 index 00000000000..ab5daebb192 --- /dev/null +++ b/allure-report/data/test-cases/aef6b82f43e1b4b4.json @@ -0,0 +1 @@ +{"uid":"aef6b82f43e1b4b4","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1732764219215,"stop":1732764219215,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219215,"stop":1732764219215,"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":1732764219216,"stop":1732764219216,"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":"Validation"},{"name":"story","value":"Valid Parentheses"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"aef6b82f43e1b4b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d7a8665bbc3ca3a.json b/allure-report/data/test-cases/aef740a566ef8e93.json similarity index 80% rename from allure-report/data/test-cases/1d7a8665bbc3ca3a.json rename to allure-report/data/test-cases/aef740a566ef8e93.json index 825f30cf502..abe8d766e91 100644 --- a/allure-report/data/test-cases/1d7a8665bbc3ca3a.json +++ b/allure-report/data/test-cases/aef740a566ef8e93.json @@ -1 +1 @@ -{"uid":"1d7a8665bbc3ca3a","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":1732428195961,"stop":1732428195961,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"1d7a8665bbc3ca3a.json","parameterValues":[]} \ No newline at end of file +{"uid":"aef740a566ef8e93","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":1732428195961,"stop":1732428195961,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428195961,"stop":1732428195961,"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_InviteMoreWomenTestCase::0","time":{"start":1732428195967,"stop":1732428195967,"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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"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.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"aef740a566ef8e93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af16ce1f4d774662.json b/allure-report/data/test-cases/af16ce1f4d774662.json new file mode 100644 index 00000000000..a570e9ec7e7 --- /dev/null +++ b/allure-report/data/test-cases/af16ce1f4d774662.json @@ -0,0 +1 @@ +{"uid":"af16ce1f4d774662","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/afa4196b56245753.json b/allure-report/data/test-cases/afa4196b56245753.json new file mode 100644 index 00000000000..34af002fd57 --- /dev/null +++ b/allure-report/data/test-cases/afa4196b56245753.json @@ -0,0 +1 @@ +{"uid":"afa4196b56245753","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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":1733030099349,"stop":1733030099349,"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_DecipherThisTestCase::0","time":{"start":1733030099349,"stop":1733030099349,"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":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c77ad5c459e90990","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0}},{"uid":"6a0a7c65d5636a5c","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0}},{"uid":"53900b5a556367f8","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"c46f98a697de9b7","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":"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"afa4196b56245753.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/afc8e5dacd30bc41.json b/allure-report/data/test-cases/afc8e5dacd30bc41.json new file mode 100644 index 00000000000..65690a4c3b7 --- /dev/null +++ b/allure-report/data/test-cases/afc8e5dacd30bc41.json @@ -0,0 +1 @@ +{"uid":"afc8e5dacd30bc41","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":1733030101023,"stop":1733030101023,"duration":0},"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/edb8f84ee9c3dd36.json b/allure-report/data/test-cases/b00d5d40ec75b250.json similarity index 61% rename from allure-report/data/test-cases/edb8f84ee9c3dd36.json rename to allure-report/data/test-cases/b00d5d40ec75b250.json index 0ad3ba17975..93a222a1fac 100644 --- a/allure-report/data/test-cases/edb8f84ee9c3dd36.json +++ b/allure-report/data/test-cases/b00d5d40ec75b250.json @@ -1 +1 @@ -{"uid":"edb8f84ee9c3dd36","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732764221158,"stop":1732764221158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase::0","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d39d2cfc8c05650c","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0}},{"uid":"dfa8d9395e9495b6","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"97bb72caed16dfa0","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"edb8f84ee9c3dd36.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MultiplyTestCase","time":{"start":1732764221158,"stop":1732764221158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert (a * b) result","time":{"start":1732764221159,"stop":1732764221159,"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_MultiplyTestCase::0","time":{"start":1732764221159,"stop":1732764221159,"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":"Multiply"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Multiplication"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"INTRODUCTION"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.multiply.test_multiply"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/50654ddff44f800200000004","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},"source":"b00d5d40ec75b250.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/319c2fc51c0b8912.json b/allure-report/data/test-cases/b01a24c8d7b81de4.json similarity index 52% rename from allure-report/data/test-cases/319c2fc51c0b8912.json rename to allure-report/data/test-cases/b01a24c8d7b81de4.json index 389b8057af5..42f0f713f6c 100644 --- a/allure-report/data/test-cases/319c2fc51c0b8912.json +++ b/allure-report/data/test-cases/b01a24c8d7b81de4.json @@ -1 +1 @@ -{"uid":"319c2fc51c0b8912","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"506f9b1aa47477d8","name":"stdout","source":"506f9b1aa47477d8.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"319c2fc51c0b8912.json","parameterValues":[]} \ No newline at end of file +{"uid":"b01a24c8d7b81de4","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b0da8ff80b8db87.json b/allure-report/data/test-cases/b0da8ff80b8db87.json new file mode 100644 index 00000000000..af6fe774e69 --- /dev/null +++ b/allure-report/data/test-cases/b0da8ff80b8db87.json @@ -0,0 +1 @@ +{"uid":"b0da8ff80b8db87","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e604a93a8ee1253f.json b/allure-report/data/test-cases/b1b08a9c0991d73d.json similarity index 67% rename from allure-report/data/test-cases/e604a93a8ee1253f.json rename to allure-report/data/test-cases/b1b08a9c0991d73d.json index 52e4b489a85..3e47858a968 100644 --- a/allure-report/data/test-cases/e604a93a8ee1253f.json +++ b/allure-report/data/test-cases/b1b08a9c0991d73d.json @@ -1 +1 @@ -{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218682,"stop":1732764218682,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ec528f5ba60e276b","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0}},{"uid":"395a8f7cfcd6a2c9","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"3400d1d080e82f75","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"e604a93a8ee1253f.json","parameterValues":[]} \ No newline at end of file +{"uid":"b1b08a9c0991d73d","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b024c4fc790da6a0","name":"stdout","source":"b024c4fc790da6a0.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b1b4ed481e88bb25.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/71f8f5b376b254cf.json b/allure-report/data/test-cases/b1ed0faa67962e1c.json similarity index 84% rename from allure-report/data/test-cases/71f8f5b376b254cf.json rename to allure-report/data/test-cases/b1ed0faa67962e1c.json index 942f2ca6873..cb32e7a3db6 100644 --- a/allure-report/data/test-cases/71f8f5b376b254cf.json +++ b/allure-report/data/test-cases/b1ed0faa67962e1c.json @@ -1 +1 @@ -{"uid":"71f8f5b376b254cf","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"71f8f5b376b254cf.json","parameterValues":[]} \ No newline at end of file +{"uid":"b1ed0faa67962e1c","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/91d86d4a26e41755.json b/allure-report/data/test-cases/b27497f64988d4cb.json similarity index 87% rename from allure-report/data/test-cases/91d86d4a26e41755.json rename to allure-report/data/test-cases/b27497f64988d4cb.json index 065016b79ca..b0f387c0663 100644 --- a/allure-report/data/test-cases/91d86d4a26e41755.json +++ b/allure-report/data/test-cases/b27497f64988d4cb.json @@ -1 +1 @@ -{"uid":"91d86d4a26e41755","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5967a008f3d7b308","name":"stdout","source":"5967a008f3d7b308.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"91d86d4a26e41755.json","parameterValues":[]} \ No newline at end of file +{"uid":"b27497f64988d4cb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4cb1b482ef5803db","name":"stdout","source":"4cb1b482ef5803db.txt","type":"text/plain","size":227}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::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":"Simple Fun #74: Growing Plant"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b27497f64988d4cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0ce09c4ba5ff697.json b/allure-report/data/test-cases/b289d731e65d2b32.json similarity index 75% rename from allure-report/data/test-cases/d0ce09c4ba5ff697.json rename to allure-report/data/test-cases/b289d731e65d2b32.json index e2942641a39..3f4f98b6758 100644 --- a/allure-report/data/test-cases/d0ce09c4ba5ff697.json +++ b/allure-report/data/test-cases/b289d731e65d2b32.json @@ -1 +1 @@ -{"uid":"d0ce09c4ba5ff697","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9b22cc9dc28f439","name":"stdout","source":"c9b22cc9dc28f439.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d0ce09c4ba5ff697.json","parameterValues":[]} \ No newline at end of file +{"uid":"b289d731e65d2b32","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":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"49113f874a139db1","name":"stdout","source":"49113f874a139db1.txt","type":"text/plain","size":96}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b289d731e65d2b32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2b39aab9a2e66b.json b/allure-report/data/test-cases/b2b39aab9a2e66b.json new file mode 100644 index 00000000000..e40458f422e --- /dev/null +++ b/allure-report/data/test-cases/b2b39aab9a2e66b.json @@ -0,0 +1 @@ +{"uid":"b2b39aab9a2e66b","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":1732428196352,"stop":1732428196352,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1732428196352,"stop":1732428196352,"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_NoSpaceTestCase::0","time":{"start":1732428196354,"stop":1732428196354,"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":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Remove String Spaces"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"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_8.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"b2b39aab9a2e66b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/921715088233c4e7.json b/allure-report/data/test-cases/b35458785abd4d83.json similarity index 83% rename from allure-report/data/test-cases/921715088233c4e7.json rename to allure-report/data/test-cases/b35458785abd4d83.json index b3516b6c6c3..aa4c5808aea 100644 --- a/allure-report/data/test-cases/921715088233c4e7.json +++ b/allure-report/data/test-cases/b35458785abd4d83.json @@ -1 +1 @@ -{"uid":"921715088233c4e7","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"921715088233c4e7.json","parameterValues":[]} \ No newline at end of file +{"uid":"b35458785abd4d83","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1733030100340,"stop":1733030100340,"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_UniqueInOrderTestCase::0","time":{"start":1733030100340,"stop":1733030100340,"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":"Unique In Order"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b759b096d671749a","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0}},{"uid":"f8f168b037580997","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0}},{"uid":"c8aec766397234af","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"fbe0584170aaf70b","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"b3654581f89b5576.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9689f8dcf21c7e63.json b/allure-report/data/test-cases/b37405ca3882bd1c.json similarity index 83% rename from allure-report/data/test-cases/9689f8dcf21c7e63.json rename to allure-report/data/test-cases/b37405ca3882bd1c.json index 3613a85b810..437533814e9 100644 --- a/allure-report/data/test-cases/9689f8dcf21c7e63.json +++ b/allure-report/data/test-cases/b37405ca3882bd1c.json @@ -1 +1 @@ -{"uid":"9689f8dcf21c7e63","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":1732428196425,"stop":1732428196425,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"9689f8dcf21c7e63.json","parameterValues":[]} \ No newline at end of file +{"uid":"b37405ca3882bd1c","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":1732428196425,"stop":1732428196425,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732428196425,"stop":1732428196425,"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_WellTestCase::0","time":{"start":1732428196437,"stop":1732428196437,"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":"Well of Ideas - Easy Version"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"REFACTORING"},{"name":"tag","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_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"b37405ca3882bd1c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/682ca0c47ecc45d4.json b/allure-report/data/test-cases/b37adbf845502fe8.json similarity index 72% rename from allure-report/data/test-cases/682ca0c47ecc45d4.json rename to allure-report/data/test-cases/b37adbf845502fe8.json index 3326d77b97b..e5c4efd521a 100644 --- a/allure-report/data/test-cases/682ca0c47ecc45d4.json +++ b/allure-report/data/test-cases/b37adbf845502fe8.json @@ -1 +1 @@ -{"uid":"682ca0c47ecc45d4","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732428193998,"stop":1732428193998,"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', 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":"682ca0c47ecc45d4.json","parameterValues":[]} \ No newline at end of file +{"uid":"b37adbf845502fe8","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732764218647,"stop":1732764218647,"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', 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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b3d5b9d863751a3f.json b/allure-report/data/test-cases/b3d5b9d863751a3f.json deleted file mode 100644 index 453f7a4ba2f..00000000000 --- a/allure-report/data/test-cases/b3d5b9d863751a3f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b3d5b9d863751a3f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1732428195955,"stop":1732428195955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Significant Figures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"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_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"b3d5b9d863751a3f.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1733030100898,"stop":1733030100898,"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_CheckForFactorTestCase::0","time":{"start":1733030100898,"stop":1733030100898,"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":"feature","value":"Calculation"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b8c210754da93c52","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2}},{"uid":"74b0e8a5cfe71956","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0}},{"uid":"fca8b44cee8413d5","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"a7645184155771ad","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b40f27be3da7edd7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4318b89966fb16.json b/allure-report/data/test-cases/b4318b89966fb16.json new file mode 100644 index 00000000000..16073c0c03a --- /dev/null +++ b/allure-report/data/test-cases/b4318b89966fb16.json @@ -0,0 +1 @@ +{"uid":"b4318b89966fb16","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1732764218803,"stop":1732764218803,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/329cbbd27ed228a7.json b/allure-report/data/test-cases/b43edc8fd032be6e.json similarity index 70% rename from allure-report/data/test-cases/329cbbd27ed228a7.json rename to allure-report/data/test-cases/b43edc8fd032be6e.json index 1e3a17f9bd8..c9487fd0634 100644 --- a/allure-report/data/test-cases/329cbbd27ed228a7.json +++ b/allure-report/data/test-cases/b43edc8fd032be6e.json @@ -1 +1 @@ -{"uid":"329cbbd27ed228a7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"77ebc227660f6677","name":"stdout","source":"77ebc227660f6677.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"329cbbd27ed228a7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e225c605af3cdfe6","name":"stdout","source":"e225c605af3cdfe6.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b43edc8fd032be6e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4e0153f9704bfbb.json b/allure-report/data/test-cases/b4423bcb7f125986.json similarity index 86% rename from allure-report/data/test-cases/b4e0153f9704bfbb.json rename to allure-report/data/test-cases/b4423bcb7f125986.json index 4574d1870ad..9620afaeab4 100644 --- a/allure-report/data/test-cases/b4e0153f9704bfbb.json +++ b/allure-report/data/test-cases/b4423bcb7f125986.json @@ -1 +1 @@ -{"uid":"b4e0153f9704bfbb","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732428195803,"stop":1732428195803,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b4e0153f9704bfbb.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4423bcb7f125986","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732428195803,"stop":1732428195803,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732428195803,"stop":1732428195803,"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_SaveTestCase::0","time":{"start":1732428195811,"stop":1732428195811,"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":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b4423bcb7f125986.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/66020f911b054e74.json b/allure-report/data/test-cases/b4a93aab25c4b5f7.json similarity index 62% rename from allure-report/data/test-cases/66020f911b054e74.json rename to allure-report/data/test-cases/b4a93aab25c4b5f7.json index 04654db99e6..9982ce96913 100644 --- a/allure-report/data/test-cases/66020f911b054e74.json +++ b/allure-report/data/test-cases/b4a93aab25c4b5f7.json @@ -1 +1 @@ -{"uid":"66020f911b054e74","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4acb1c573ef8b7bb","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0}},{"uid":"fe13696efb68455a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2399abc94e3173da","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"66020f911b054e74.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4a93aab25c4b5f7","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732764221218,"stop":1732764221218,"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_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"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":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"b4a93aab25c4b5f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e751c9c9dc3d04e6.json b/allure-report/data/test-cases/b4b8e18ee349d818.json similarity index 58% rename from allure-report/data/test-cases/e751c9c9dc3d04e6.json rename to allure-report/data/test-cases/b4b8e18ee349d818.json index 2b318b0808a..04ddeff32f2 100644 --- a/allure-report/data/test-cases/e751c9c9dc3d04e6.json +++ b/allure-report/data/test-cases/b4b8e18ee349d818.json @@ -1 +1 @@ -{"uid":"e751c9c9dc3d04e6","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":1732764220624,"stop":1732764220625,"duration":1},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732764220625,"stop":1732764220625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"74f816020df3559","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0}},{"uid":"4f999b555dd62215","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c4d9587a3ff2d229","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"e751c9c9dc3d04e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"b4b8e18ee349d818","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":1732764220624,"stop":1732764220625,"duration":1},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732764220625,"stop":1732764220625,"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_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"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":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"b4b8e18ee349d818.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4bcf3d5a4367d8.json b/allure-report/data/test-cases/b4bcf3d5a4367d8.json deleted file mode 100644 index d591ab96dbe..00000000000 --- a/allure-report/data/test-cases/b4bcf3d5a4367d8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b4bcf3d5a4367d8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dfbdbb71de71756e","name":"stdout","source":"dfbdbb71de71756e.txt","type":"text/plain","size":808}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b4bcf3d5a4367d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4c3bd7788c9f57d.json b/allure-report/data/test-cases/b4c3bd7788c9f57d.json new file mode 100644 index 00000000000..4ce22c4c64c --- /dev/null +++ b/allure-report/data/test-cases/b4c3bd7788c9f57d.json @@ -0,0 +1 @@ +{"uid":"b4c3bd7788c9f57d","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1733030100309,"stop":1733030100309,"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_HasSubpatternTestCase::0","time":{"start":1733030100309,"stop":1733030100309,"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":"6 kyu"},{"name":"story","value":"String subpattern recognition III"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9edb2b589904d584","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0}},{"uid":"95b80642b494d437","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0}},{"uid":"bdfd73520247929b","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"d23a28a2b97dc203","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"b4c3bd7788c9f57d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b4cae88de9afaa55.json b/allure-report/data/test-cases/b4cae88de9afaa55.json new file mode 100644 index 00000000000..0ce3fbae431 --- /dev/null +++ b/allure-report/data/test-cases/b4cae88de9afaa55.json @@ -0,0 +1 @@ +{"uid":"b4cae88de9afaa55","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":1733030101039,"stop":1733030101039,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1733030101039,"stop":1733030101039,"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_NoSpaceTestCase::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":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Remove String Spaces"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"184d3db7becc05d3","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0}},{"uid":"b2b39aab9a2e66b","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0}},{"uid":"e60399983521438f","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"21e692bd1f008ebc","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"b4cae88de9afaa55.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb4d3d652c38eb3f.json b/allure-report/data/test-cases/b56ab9fe385db93a.json similarity index 82% rename from allure-report/data/test-cases/eb4d3d652c38eb3f.json rename to allure-report/data/test-cases/b56ab9fe385db93a.json index 10601298a71..8e811374b8c 100644 --- a/allure-report/data/test-cases/eb4d3d652c38eb3f.json +++ b/allure-report/data/test-cases/b56ab9fe385db93a.json @@ -1 +1 @@ -{"uid":"eb4d3d652c38eb3f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f451e0abb748fcc1","name":"stdout","source":"f451e0abb748fcc1.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eb4d3d652c38eb3f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2519fe596c9290b5","name":"stdout","source":"2519fe596c9290b5.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724733474241,"stop":1724733474241,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b56ab9fe385db93a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6ad7a05187743ff.json b/allure-report/data/test-cases/b56e159e9a8b128f.json similarity index 60% rename from allure-report/data/test-cases/d6ad7a05187743ff.json rename to allure-report/data/test-cases/b56e159e9a8b128f.json index 26757c21166..334f3216292 100644 --- a/allure-report/data/test-cases/d6ad7a05187743ff.json +++ b/allure-report/data/test-cases/b56e159e9a8b128f.json @@ -1 +1 @@ -{"uid":"d6ad7a05187743ff","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":1732764219308,"stop":1732764219309,"duration":1},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732764219308,"stop":1732764219308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase::0","time":{"start":1732764219310,"stop":1732764219310,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"HASHES"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3d09efb523dadc81","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0}},{"uid":"893f14f04872e4c5","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"9ef5212b94420bba","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"d6ad7a05187743ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"b56e159e9a8b128f","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":1732764219308,"stop":1732764219309,"duration":1},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountLettersInStringTestCase","time":{"start":1732764219308,"stop":1732764219308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219309,"stop":1732764219309,"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":1732764219309,"stop":1732764219309,"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":1732764219309,"stop":1732764219309,"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":1732764219309,"stop":1732764219309,"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":1732764219309,"stop":1732764219309,"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_CountLettersInStringTestCase::0","time":{"start":1732764219310,"stop":1732764219310,"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":"HASHES"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"story","value":"Count letters in string"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"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.count_letters_in_string.test_count_letters_in_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},"source":"b56e159e9a8b128f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4710cc2182eb85cb.json b/allure-report/data/test-cases/b591ce46c92300fc.json similarity index 63% rename from allure-report/data/test-cases/4710cc2182eb85cb.json rename to allure-report/data/test-cases/b591ce46c92300fc.json index 4a271d409ed..51a249aff14 100644 --- a/allure-report/data/test-cases/4710cc2182eb85cb.json +++ b/allure-report/data/test-cases/b591ce46c92300fc.json @@ -1 +1 @@ -{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Negative test cases for is_prime function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"71f8f5b376b254cf","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0}},{"uid":"406377324fdf0256","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"335c39c3e0f7aa15","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4710cc2182eb85cb.json","parameterValues":[]} \ No newline at end of file +{"uid":"b591ce46c92300fc","name":"Negative test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_negative","historyId":"2dc5f3dd0a3e6e7beee8f439047c4032","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::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":"feature","value":"Calculation"},{"name":"story","value":"Will there be enough space?"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"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_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"da018a416a2e5798","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0}},{"uid":"4aeb02bd06c6709d","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0}},{"uid":"763ac19ad87ac3cd","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"ffb404aff6d39348","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":"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}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"b59318a9c97ef9f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5ba84846c075db5.json b/allure-report/data/test-cases/b5ba84846c075db5.json new file mode 100644 index 00000000000..0d16e1d5acf --- /dev/null +++ b/allure-report/data/test-cases/b5ba84846c075db5.json @@ -0,0 +1 @@ +{"uid":"b5ba84846c075db5","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":1733030100836,"stop":1733030100836,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::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":"story","value":"Counting sheep..."},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7062f727dbe31207","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1}},{"uid":"622aea036e4cf24e","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1}},{"uid":"3f9c404f9b9586bb","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"efb8b59d749a7701","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b5ba84846c075db5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa37770dd2142a16.json b/allure-report/data/test-cases/b69923e60de0964d.json similarity index 60% rename from allure-report/data/test-cases/aa37770dd2142a16.json rename to allure-report/data/test-cases/b69923e60de0964d.json index c4f30800b05..d734d12456b 100644 --- a/allure-report/data/test-cases/aa37770dd2142a16.json +++ b/allure-report/data/test-cases/b69923e60de0964d.json @@ -1 +1 @@ -{"uid":"aa37770dd2142a16","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":1732764221293,"stop":1732764221294,"duration":1},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732764221293,"stop":1732764221293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6c94325f55b8b56c","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0}},{"uid":"3c275e4650ef1fcb","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"46de5298b06a2e8f","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"aa37770dd2142a16.json","parameterValues":[]} \ No newline at end of file +{"uid":"b69923e60de0964d","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":1732764221293,"stop":1732764221294,"duration":1},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1732764221293,"stop":1732764221293,"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_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"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":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"b69923e60de0964d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/935b6bf420709ca7.json b/allure-report/data/test-cases/b6d612c29223f1e3.json similarity index 72% rename from allure-report/data/test-cases/935b6bf420709ca7.json rename to allure-report/data/test-cases/b6d612c29223f1e3.json index f2946804981..70027116e1c 100644 --- a/allure-report/data/test-cases/935b6bf420709ca7.json +++ b/allure-report/data/test-cases/b6d612c29223f1e3.json @@ -1 +1 @@ -{"uid":"935b6bf420709ca7","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"379cf75cca245ee2","name":"stdout","source":"379cf75cca245ee2.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"935b6bf420709ca7.json","parameterValues":[]} \ No newline at end of file +{"uid":"b6d612c29223f1e3","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":1724735129555,"stop":1724735129555,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dfcb4cec23e82cb9","name":"stdout","source":"dfcb4cec23e82cb9.txt","type":"text/plain","size":316}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724735129555,"stop":1724735129555,"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":"Is your period late"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b6d612c29223f1e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b744224a1d89f44f.json b/allure-report/data/test-cases/b744224a1d89f44f.json new file mode 100644 index 00000000000..42a89eab64d --- /dev/null +++ b/allure-report/data/test-cases/b744224a1d89f44f.json @@ -0,0 +1 @@ +{"uid":"b744224a1d89f44f","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"25bffeb92bc30f28","name":"stdout","source":"25bffeb92bc30f28.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b744224a1d89f44f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b74e7e51e0827a84.json b/allure-report/data/test-cases/b74e7e51e0827a84.json new file mode 100644 index 00000000000..4832a3db913 --- /dev/null +++ b/allure-report/data/test-cases/b74e7e51e0827a84.json @@ -0,0 +1 @@ +{"uid":"b74e7e51e0827a84","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":1732428195568,"stop":1732428195568,"duration":0},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732428195568,"stop":1732428195568,"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_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"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":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"b74e7e51e0827a84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19cfe4000991e820.json b/allure-report/data/test-cases/b759b096d671749a.json similarity index 60% rename from allure-report/data/test-cases/19cfe4000991e820.json rename to allure-report/data/test-cases/b759b096d671749a.json index e1840707753..ce38700cfc9 100644 --- a/allure-report/data/test-cases/19cfe4000991e820.json +++ b/allure-report/data/test-cases/b759b096d671749a.json @@ -1 +1 @@ -{"uid":"19cfe4000991e820","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":1732764220374,"stop":1732764220374,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732764220376,"stop":1732764220376,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Unique In Order"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f0cf41ee7ec62257","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0}},{"uid":"8bbe3b647eb4bfeb","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"d7ea74c17659aeca","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"19cfe4000991e820.json","parameterValues":[]} \ No newline at end of file +{"uid":"b759b096d671749a","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":1732764220374,"stop":1732764220374,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220374,"stop":1732764220374,"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_UniqueInOrderTestCase::0","time":{"start":1732764220376,"stop":1732764220376,"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":"Unique In Order"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"b759b096d671749a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b7874e896ca052d2.json b/allure-report/data/test-cases/b7874e896ca052d2.json deleted file mode 100644 index 00704ebd6d5..00000000000 --- a/allure-report/data/test-cases/b7874e896ca052d2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b7874e896ca052d2","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1724735127266,"stop":1724735127266,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cff9f69ec70ee0f7","name":"stdout","source":"cff9f69ec70ee0f7.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b7874e896ca052d2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5194ad39db439d08.json b/allure-report/data/test-cases/b79318ff2ae67fee.json similarity index 67% rename from allure-report/data/test-cases/5194ad39db439d08.json rename to allure-report/data/test-cases/b79318ff2ae67fee.json index 8409104dd02..d8426fdda58 100644 --- a/allure-report/data/test-cases/5194ad39db439d08.json +++ b/allure-report/data/test-cases/b79318ff2ae67fee.json @@ -1 +1 @@ -{"uid":"5194ad39db439d08","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732764218552,"stop":1732764218553,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732764218555,"stop":1732764218555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1a204aa873a93d86","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0}},{"uid":"197e00510d3eb166","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"abed1b9a0913387d","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"5194ad39db439d08.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732764218552,"stop":1732764218553,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732764218553,"stop":1732764218553,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732764218553,"stop":1732764218553,"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":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732764218553,"stop":1732764218553,"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_CalculatorTestCase::0","time":{"start":1732764218555,"stop":1732764218555,"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":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"b79318ff2ae67fee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd86378e3a37dfe4.json b/allure-report/data/test-cases/b7eddfa61552d783.json similarity index 74% rename from allure-report/data/test-cases/dd86378e3a37dfe4.json rename to allure-report/data/test-cases/b7eddfa61552d783.json index 665cde8fddc..1ca1b7f80b7 100644 --- a/allure-report/data/test-cases/dd86378e3a37dfe4.json +++ b/allure-report/data/test-cases/b7eddfa61552d783.json @@ -1 +1 @@ -{"uid":"dd86378e3a37dfe4","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":"

Codewars badge:

Test Description:

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":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase","time":{"start":1732764220300,"stop":1732764220300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cbe27b4f7111917c","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"dd86378e3a37dfe4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/10f08e5166368fc8.json b/allure-report/data/test-cases/b81b0ae77ee26a61.json similarity index 73% rename from allure-report/data/test-cases/10f08e5166368fc8.json rename to allure-report/data/test-cases/b81b0ae77ee26a61.json index 0917ba481bd..e003c421f3d 100644 --- a/allure-report/data/test-cases/10f08e5166368fc8.json +++ b/allure-report/data/test-cases/b81b0ae77ee26a61.json @@ -1 +1 @@ -{"uid":"10f08e5166368fc8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"10f08e5166368fc8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4941703c69aa6dd8.json b/allure-report/data/test-cases/b82b2a2c9febe0c6.json similarity index 73% rename from allure-report/data/test-cases/4941703c69aa6dd8.json rename to allure-report/data/test-cases/b82b2a2c9febe0c6.json index 30052588514..138dabfd9c1 100644 --- a/allure-report/data/test-cases/4941703c69aa6dd8.json +++ b/allure-report/data/test-cases/b82b2a2c9febe0c6.json @@ -1 +1 @@ -{"uid":"4941703c69aa6dd8","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5d2b03d7ca85feb9","name":"stdout","source":"5d2b03d7ca85feb9.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"4941703c69aa6dd8.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/98e0aca6e090522b.json b/allure-report/data/test-cases/b876874728bc13e3.json similarity index 59% rename from allure-report/data/test-cases/98e0aca6e090522b.json rename to allure-report/data/test-cases/b876874728bc13e3.json index a94575197c0..a7e26640985 100644 --- a/allure-report/data/test-cases/98e0aca6e090522b.json +++ b/allure-report/data/test-cases/b876874728bc13e3.json @@ -1 +1 @@ -{"uid":"98e0aca6e090522b","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"27e5ed0c95dfc112","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0}},{"uid":"fa27e6e3693a7b83","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"f6681b778f42e33c","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"98e0aca6e090522b.json","parameterValues":[]} \ No newline at end of file +{"uid":"b876874728bc13e3","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1732764220933,"stop":1732764220933,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"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":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b876874728bc13e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b87f80755bc77034.json b/allure-report/data/test-cases/b87f80755bc77034.json new file mode 100644 index 00000000000..49ac887f4fc --- /dev/null +++ b/allure-report/data/test-cases/b87f80755bc77034.json @@ -0,0 +1 @@ +{"uid":"b87f80755bc77034","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb84be60b66700fa","name":"stdout","source":"fb84be60b66700fa.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b87f80755bc77034.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96ce14353b4f3e49.json b/allure-report/data/test-cases/b89f1a91511e43fe.json similarity index 93% rename from allure-report/data/test-cases/96ce14353b4f3e49.json rename to allure-report/data/test-cases/b89f1a91511e43fe.json index de48256c4ca..feed8e9fd5f 100644 --- a/allure-report/data/test-cases/96ce14353b4f3e49.json +++ b/allure-report/data/test-cases/b89f1a91511e43fe.json @@ -1 +1 @@ -{"uid":"96ce14353b4f3e49","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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":"96ce14353b4f3e49.json","parameterValues":[]} \ No newline at end of file +{"uid":"b89f1a91511e43fe","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724733472312,"stop":1724733472312,"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":"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/ff18bec5c293c228.json b/allure-report/data/test-cases/b8c210754da93c52.json similarity index 62% rename from allure-report/data/test-cases/ff18bec5c293c228.json rename to allure-report/data/test-cases/b8c210754da93c52.json index d4ba10507d0..1d01111b846 100644 --- a/allure-report/data/test-cases/ff18bec5c293c228.json +++ b/allure-report/data/test-cases/b8c210754da93c52.json @@ -1 +1 @@ -{"uid":"ff18bec5c293c228","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732764220975,"stop":1732764220976,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dd53e52e1ab13306","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0}},{"uid":"ea018bd2743d350e","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"861fc17326f7d16a","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ff18bec5c293c228.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1732764220975,"stop":1732764220976,"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_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"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":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b8c210754da93c52.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f9e0beeb8300348","name":"stdout","source":"f9e0beeb8300348.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724733474788,"stop":1724733474788,"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":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep Hydrated!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b8f26140fdddc630.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b054542ab329d2ac.json b/allure-report/data/test-cases/b91b3028c146d7df.json similarity index 79% rename from allure-report/data/test-cases/b054542ab329d2ac.json rename to allure-report/data/test-cases/b91b3028c146d7df.json index 7c8c5aa6b33..bbb2d89aa0e 100644 --- a/allure-report/data/test-cases/b054542ab329d2ac.json +++ b/allure-report/data/test-cases/b91b3028c146d7df.json @@ -1 +1 @@ -{"uid":"b054542ab329d2ac","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732428194015,"stop":1732428194015,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b054542ab329d2ac.json","parameterValues":[]} \ No newline at end of file +{"uid":"b91b3028c146d7df","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1732428194015,"stop":1732428194015,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6f9dcb0c09ae9f13.json b/allure-report/data/test-cases/b95dabcc1b6701ba.json similarity index 82% rename from allure-report/data/test-cases/6f9dcb0c09ae9f13.json rename to allure-report/data/test-cases/b95dabcc1b6701ba.json index 4c867719053..89900d23d7a 100644 --- a/allure-report/data/test-cases/6f9dcb0c09ae9f13.json +++ b/allure-report/data/test-cases/b95dabcc1b6701ba.json @@ -1 +1 @@ -{"uid":"6f9dcb0c09ae9f13","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d7d20a8fa5049ef","name":"stdout","source":"4d7d20a8fa5049ef.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6f9dcb0c09ae9f13.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase","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 duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4b7e6475d8bd7c13","name":"stdout","source":"4b7e6475d8bd7c13.txt","type":"text/plain","size":160}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DuplicateEncodeTestCase::0","time":{"start":1724735128094,"stop":1724735128094,"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":"Duplicate Encoder"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.duplicate_encoder.test_duplicate_encode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b95dabcc1b6701ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8a2da685a579f99.json b/allure-report/data/test-cases/b9ceaeaa317803af.json similarity index 65% rename from allure-report/data/test-cases/b8a2da685a579f99.json rename to allure-report/data/test-cases/b9ceaeaa317803af.json index 5644395919a..d2034a6a0ea 100644 --- a/allure-report/data/test-cases/b8a2da685a579f99.json +++ b/allure-report/data/test-cases/b9ceaeaa317803af.json @@ -1 +1 @@ -{"uid":"b8a2da685a579f99","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732764221126,"stop":1732764221126,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d493d526198a7a0a","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1}},{"uid":"2064c7d6b1732474","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"e9f92529af3ab5ff","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b8a2da685a579f99.json","parameterValues":[]} \ No newline at end of file +{"uid":"b9ceaeaa317803af","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732764221126,"stop":1732764221126,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732764221126,"stop":1732764221126,"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_LogicalCalculatorTestCase::0","time":{"start":1732764221137,"stop":1732764221137,"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":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b9ceaeaa317803af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba2c8f43220f0c44.json b/allure-report/data/test-cases/ba2c8f43220f0c44.json deleted file mode 100644 index 41b4819c01f..00000000000 --- a/allure-report/data/test-cases/ba2c8f43220f0c44.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ba2c8f43220f0c44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"24af1d7a0c0925a","name":"stdout","source":"24af1d7a0c0925a.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Jaden Casing Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"ba2c8f43220f0c44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13f340b5f893b4e2.json b/allure-report/data/test-cases/ba4a3c35a46d9d79.json similarity index 58% rename from allure-report/data/test-cases/13f340b5f893b4e2.json rename to allure-report/data/test-cases/ba4a3c35a46d9d79.json index bf94ae32e60..395ae7905f9 100644 --- a/allure-report/data/test-cases/13f340b5f893b4e2.json +++ b/allure-report/data/test-cases/ba4a3c35a46d9d79.json @@ -1 +1 @@ -{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732764220798,"stop":1732764220798,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"76b07a3b0b784bd3","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1}},{"uid":"ed242b4479970e98","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"6d2f9028315647c1","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"13f340b5f893b4e2.json","parameterValues":[]} \ No newline at end of file +{"uid":"ba4a3c35a46d9d79","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732764220798,"stop":1732764220798,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"ba4a3c35a46d9d79.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccb7c5007831ab45.json b/allure-report/data/test-cases/babd57c21b463d43.json similarity index 56% rename from allure-report/data/test-cases/ccb7c5007831ab45.json rename to allure-report/data/test-cases/babd57c21b463d43.json index 96a6137a230..5c7fa62843e 100644 --- a/allure-report/data/test-cases/ccb7c5007831ab45.json +++ b/allure-report/data/test-cases/babd57c21b463d43.json @@ -1 +1 @@ -{"uid":"ccb7c5007831ab45","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3fc324c4038294","name":"stdout","source":"b3fc324c4038294.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ccb7c5007831ab45.json","parameterValues":[]} \ No newline at end of file +{"uid":"babd57c21b463d43","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":1724735128836,"stop":1724735128852,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/664f2a2d41bf2bd8.json b/allure-report/data/test-cases/badb2c1a8c5e2d2d.json similarity index 67% rename from allure-report/data/test-cases/664f2a2d41bf2bd8.json rename to allure-report/data/test-cases/badb2c1a8c5e2d2d.json index edecd8ed1ea..f22caa7d6ba 100644 --- a/allure-report/data/test-cases/664f2a2d41bf2bd8.json +++ b/allure-report/data/test-cases/badb2c1a8c5e2d2d.json @@ -1 +1 @@ -{"uid":"664f2a2d41bf2bd8","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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f6883e774d20c18","name":"stdout","source":"1f6883e774d20c18.txt","type":"text/plain","size":791}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":4,"unknown":0,"total":4},"items":[{"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":"664f2a2d41bf2bd8.json","parameterValues":[]} \ No newline at end of file +{"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/baf923b3ced2f0a.json b/allure-report/data/test-cases/baf923b3ced2f0a.json deleted file mode 100644 index 8f5c33b95a3..00000000000 --- a/allure-report/data/test-cases/baf923b3ced2f0a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"baf923b3ced2f0a","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1732428196095,"stop":1732428196095,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"baf923b3ced2f0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3de1512f067d459d.json b/allure-report/data/test-cases/bb728a3601eecc02.json similarity index 66% rename from allure-report/data/test-cases/3de1512f067d459d.json rename to allure-report/data/test-cases/bb728a3601eecc02.json index cfad75712fa..eb3ffd51c3a 100644 --- a/allure-report/data/test-cases/3de1512f067d459d.json +++ b/allure-report/data/test-cases/bb728a3601eecc02.json @@ -1 +1 @@ -{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase::0","time":{"start":1732764219197,"stop":1732764219197,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e5d70f307aec9205","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0}},{"uid":"a9ecee1b4fc0ab11","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"c12e168b06d36fc7","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["SORTING","ALGORITHMS"]},"source":"3de1512f067d459d.json","parameterValues":[]} \ No newline at end of file +{"uid":"bb728a3601eecc02","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenerateHashtagTestCase","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a test string and verify the output:","time":{"start":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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":1732764219193,"stop":1732764219193,"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_GenerateHashtagTestCase::0","time":{"start":1732764219197,"stop":1732764219197,"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":"5 kyu"},{"name":"story","value":"The Hashtag Generator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING"},{"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_5.the_hashtag_generator.test_generate_hashtag"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52449b062fb80683ec000024","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS"]},"source":"bb728a3601eecc02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb8e119491d2ebc3.json b/allure-report/data/test-cases/bb8e119491d2ebc3.json new file mode 100644 index 00000000000..6d9861293d4 --- /dev/null +++ b/allure-report/data/test-cases/bb8e119491d2ebc3.json @@ -0,0 +1 @@ +{"uid":"bb8e119491d2ebc3","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/77ce7ba6af0b177a.json b/allure-report/data/test-cases/bb902a37816cc407.json similarity index 62% rename from allure-report/data/test-cases/77ce7ba6af0b177a.json rename to allure-report/data/test-cases/bb902a37816cc407.json index 7117bfa23fb..52bac42960f 100644 --- a/allure-report/data/test-cases/77ce7ba6af0b177a.json +++ b/allure-report/data/test-cases/bb902a37816cc407.json @@ -1 +1 @@ -{"uid":"77ce7ba6af0b177a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1732764221279,"stop":1732764221279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97e1e8aa5714e13a","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1}},{"uid":"756610bb1a8856d4","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"20569c47774cf3c7","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"77ce7ba6af0b177a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1732764221276,"stop":1732764221276,"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_OtherAngleTestCase::0","time":{"start":1732764221279,"stop":1732764221279,"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":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"bb902a37816cc407.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bbb128976da4f18a.json b/allure-report/data/test-cases/bbb128976da4f18a.json new file mode 100644 index 00000000000..a1a131f793a --- /dev/null +++ b/allure-report/data/test-cases/bbb128976da4f18a.json @@ -0,0 +1 @@ +{"uid":"bbb128976da4f18a","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":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3399e5458489501f","name":"stdout","source":"3399e5458489501f.txt","type":"text/plain","size":80}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::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":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"First character that repeats"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bbb128976da4f18a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/710a5d14f0382e2f.json b/allure-report/data/test-cases/bc04b77b7c90af86.json similarity index 85% rename from allure-report/data/test-cases/710a5d14f0382e2f.json rename to allure-report/data/test-cases/bc04b77b7c90af86.json index e7c533aa60b..c10f09aeab8 100644 --- a/allure-report/data/test-cases/710a5d14f0382e2f.json +++ b/allure-report/data/test-cases/bc04b77b7c90af86.json @@ -1 +1 @@ -{"uid":"710a5d14f0382e2f","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732428195889,"stop":1732428195889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase::0","time":{"start":1732428195891,"stop":1732428195891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Maximum Multiple"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"710a5d14f0382e2f.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732428195889,"stop":1732428195889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732428195890,"stop":1732428195890,"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_MaximumMultipleTestCase::0","time":{"start":1732428195891,"stop":1732428195891,"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":"Maximum Multiple"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"bc04b77b7c90af86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9eac58d1342209e0.json b/allure-report/data/test-cases/bc0d03d768c84e9a.json similarity index 93% rename from allure-report/data/test-cases/9eac58d1342209e0.json rename to allure-report/data/test-cases/bc0d03d768c84e9a.json index 11df2f8d498..7c17be7c57b 100644 --- a/allure-report/data/test-cases/9eac58d1342209e0.json +++ b/allure-report/data/test-cases/bc0d03d768c84e9a.json @@ -1 +1 @@ -{"uid":"9eac58d1342209e0","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":"9eac58d1342209e0.json","parameterValues":[]} \ No newline at end of file +{"uid":"bc0d03d768c84e9a","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":"bc0d03d768c84e9a.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MaximumMultipleTestCase","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter divisor, bound and verify the output","time":{"start":1732764220590,"stop":1732764220590,"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_MaximumMultipleTestCase::0","time":{"start":1732764220591,"stop":1732764220591,"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":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"name":"story","value":"Maximum Multiple"},{"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_7.maximum_multiple.test_maximum_multiple"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aba780a6a176b029800041c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},"source":"bc5f75e76b0bf63.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/303f99106d04e0c7.json b/allure-report/data/test-cases/bc719674954c58b2.json similarity index 84% rename from allure-report/data/test-cases/303f99106d04e0c7.json rename to allure-report/data/test-cases/bc719674954c58b2.json index 7a506e17305..a4b0b8a83ab 100644 --- a/allure-report/data/test-cases/303f99106d04e0c7.json +++ b/allure-report/data/test-cases/bc719674954c58b2.json @@ -1 +1 @@ -{"uid":"303f99106d04e0c7","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732428195795,"stop":1732428195795,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1732428195797,"stop":1732428195797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"303f99106d04e0c7.json","parameterValues":[]} \ No newline at end of file +{"uid":"bc719674954c58b2","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1732428195795,"stop":1732428195795,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1732428195795,"stop":1732428195795,"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_FactorialTestCase::0","time":{"start":1732428195797,"stop":1732428195797,"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 Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bc719674954c58b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4dfeb434e28153fe.json b/allure-report/data/test-cases/bcbd2adc2b6db91f.json similarity index 79% rename from allure-report/data/test-cases/4dfeb434e28153fe.json rename to allure-report/data/test-cases/bcbd2adc2b6db91f.json index 01d6016d93b..4417f20403f 100644 --- a/allure-report/data/test-cases/4dfeb434e28153fe.json +++ b/allure-report/data/test-cases/bcbd2adc2b6db91f.json @@ -1 +1 @@ -{"uid":"4dfeb434e28153fe","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4dfeb434e28153fe.json","parameterValues":[]} \ No newline at end of file +{"uid":"bcbd2adc2b6db91f","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1724733474397,"stop":1724733474397,"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_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bcbd2adc2b6db91f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee16b6e353dfd7cd.json b/allure-report/data/test-cases/bcfec9a648915f6a.json similarity index 82% rename from allure-report/data/test-cases/ee16b6e353dfd7cd.json rename to allure-report/data/test-cases/bcfec9a648915f6a.json index 3d96792d1e0..08af11230b5 100644 --- a/allure-report/data/test-cases/ee16b6e353dfd7cd.json +++ b/allure-report/data/test-cases/bcfec9a648915f6a.json @@ -1 +1 @@ -{"uid":"ee16b6e353dfd7cd","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195529,"stop":1732428195529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195531,"stop":1732428195531,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"ee16b6e353dfd7cd.json","parameterValues":[]} \ No newline at end of file +{"uid":"bcfec9a648915f6a","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195529,"stop":1732428195529,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732428195530,"stop":1732428195530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"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_SolutionTestCase::0","time":{"start":1732428195531,"stop":1732428195531,"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":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"bcfec9a648915f6a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bd413f89b47699c.json b/allure-report/data/test-cases/bd413f89b47699c.json deleted file mode 100644 index 903071f5015..00000000000 --- a/allure-report/data/test-cases/bd413f89b47699c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bd413f89b47699c","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dc735d6cbaa38cba","name":"stdout","source":"dc735d6cbaa38cba.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bd413f89b47699c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/998a460e800cbb2b.json b/allure-report/data/test-cases/bd6b8dc125a7712d.json similarity index 93% rename from allure-report/data/test-cases/998a460e800cbb2b.json rename to allure-report/data/test-cases/bd6b8dc125a7712d.json index c6391682a19..c1d92322940 100644 --- a/allure-report/data/test-cases/998a460e800cbb2b.json +++ b/allure-report/data/test-cases/bd6b8dc125a7712d.json @@ -1 +1 @@ -{"uid":"998a460e800cbb2b","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732428194259,"stop":1732428194259,"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\").\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":"998a460e800cbb2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"bd6b8dc125a7712d","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1732428194259,"stop":1732428194259,"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\").\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/bdcd06f2ac6e82c9.json b/allure-report/data/test-cases/bdcd06f2ac6e82c9.json deleted file mode 100644 index 67bdd38eaff..00000000000 --- a/allure-report/data/test-cases/bdcd06f2ac6e82c9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bdcd06f2ac6e82c9","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e07fc7bf167a48cd","name":"stdout","source":"e07fc7bf167a48cd.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bdcd06f2ac6e82c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c739525d6df646b0.json b/allure-report/data/test-cases/bdfd73520247929b.json similarity index 83% rename from allure-report/data/test-cases/c739525d6df646b0.json rename to allure-report/data/test-cases/bdfd73520247929b.json index eeee3309367..50000065404 100644 --- a/allure-report/data/test-cases/c739525d6df646b0.json +++ b/allure-report/data/test-cases/bdfd73520247929b.json @@ -1 +1 @@ -{"uid":"c739525d6df646b0","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f82dd65f45ebad45","name":"stdout","source":"f82dd65f45ebad45.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c739525d6df646b0.json","parameterValues":[]} \ No newline at end of file +{"uid":"bdfd73520247929b","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f751d5dc8f66594","name":"stdout","source":"1f751d5dc8f66594.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724735128946,"stop":1724735128946,"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":"String subpattern recognition III"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"bdfd73520247929b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8f6f88ab23c0d630.json b/allure-report/data/test-cases/be22b07b7195c319.json similarity index 82% rename from allure-report/data/test-cases/8f6f88ab23c0d630.json rename to allure-report/data/test-cases/be22b07b7195c319.json index 80cd78615c4..87aa9915fad 100644 --- a/allure-report/data/test-cases/8f6f88ab23c0d630.json +++ b/allure-report/data/test-cases/be22b07b7195c319.json @@ -1 +1 @@ -{"uid":"8f6f88ab23c0d630","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"baaad4c171b47b9e","name":"stdout","source":"baaad4c171b47b9e.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8f6f88ab23c0d630.json","parameterValues":[]} \ No newline at end of file +{"uid":"be22b07b7195c319","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bbfc3fd670d975ed","name":"stdout","source":"bbfc3fd670d975ed.txt","type":"text/plain","size":604}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Vasya - Clerk"},{"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.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"be22b07b7195c319.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c359ea3a207c31eb.json b/allure-report/data/test-cases/beae761fcafbcfaf.json similarity index 78% rename from allure-report/data/test-cases/c359ea3a207c31eb.json rename to allure-report/data/test-cases/beae761fcafbcfaf.json index 420ca892076..33265d724d0 100644 --- a/allure-report/data/test-cases/c359ea3a207c31eb.json +++ b/allure-report/data/test-cases/beae761fcafbcfaf.json @@ -1 +1 @@ -{"uid":"c359ea3a207c31eb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c359ea3a207c31eb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732428196179,"stop":1732428196179,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"beae761fcafbcfaf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5cf96cca0ab2f52.json b/allure-report/data/test-cases/bebb2bc7f67aea79.json similarity index 72% rename from allure-report/data/test-cases/c5cf96cca0ab2f52.json rename to allure-report/data/test-cases/bebb2bc7f67aea79.json index 1b2de56449e..64cabf5b178 100644 --- a/allure-report/data/test-cases/c5cf96cca0ab2f52.json +++ b/allure-report/data/test-cases/bebb2bc7f67aea79.json @@ -1 +1 @@ -{"uid":"c5cf96cca0ab2f52","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732428195597,"stop":1732428195597,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase::0","time":{"start":1732428195600,"stop":1732428195600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Pyramid Array"},{"name":"epic","value":"6 kyu"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"c5cf96cca0ab2f52.json","parameterValues":[]} \ No newline at end of file +{"uid":"bebb2bc7f67aea79","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PyramidTestCase","time":{"start":1732428195597,"stop":1732428195597,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass zero","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass one","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass two","time":{"start":1732428195598,"stop":1732428195598,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass three","time":{"start":1732428195598,"stop":1732428195598,"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_PyramidTestCase::0","time":{"start":1732428195600,"stop":1732428195600,"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":"Pyramid Array"},{"name":"epic","value":"6 kyu"},{"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.pyramid_array.test_pyramid_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/515f51d438015969f7000013","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"bebb2bc7f67aea79.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c700736d12b44c86.json b/allure-report/data/test-cases/bef296bdea9fd681.json similarity index 63% rename from allure-report/data/test-cases/c700736d12b44c86.json rename to allure-report/data/test-cases/bef296bdea9fd681.json index c2aa57e412f..251642651c9 100644 --- a/allure-report/data/test-cases/c700736d12b44c86.json +++ b/allure-report/data/test-cases/bef296bdea9fd681.json @@ -1 +1 @@ -{"uid":"c700736d12b44c86","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":1732764220619,"stop":1732764220619,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6209b3d491320ab9","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0}},{"uid":"1b95adcea61e4ef5","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"707862d33841a8ff","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"c700736d12b44c86.json","parameterValues":[]} \ No newline at end of file +{"uid":"bef296bdea9fd681","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":1732764220619,"stop":1732764220619,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732764220619,"stop":1732764220619,"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_RemoveSmallestTestCase::0","time":{"start":1732764220644,"stop":1732764220644,"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":"The museum of incredible dull things"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"bef296bdea9fd681.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b26a6745cd367097.json b/allure-report/data/test-cases/bf262768264e0cc2.json similarity index 61% rename from allure-report/data/test-cases/b26a6745cd367097.json rename to allure-report/data/test-cases/bf262768264e0cc2.json index 77dd57a1815..11655336904 100644 --- a/allure-report/data/test-cases/b26a6745cd367097.json +++ b/allure-report/data/test-cases/bf262768264e0cc2.json @@ -1 +1 @@ -{"uid":"b26a6745cd367097","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bd28741372a5f921","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1}},{"uid":"af99dc37dcb7799b","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"e6ed73d965a64ee5","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"b26a6745cd367097.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1732764220973,"stop":1732764220973,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return true if it is a factor","time":{"start":1732764220981,"stop":1732764220981,"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_CheckForFactorTestCase::0","time":{"start":1732764220982,"stop":1732764220982,"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":"Calculation"},{"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":"story","value":"Grasshopper - Check for factor"},{"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.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"bf262768264e0cc2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88503943247ae8d5.json b/allure-report/data/test-cases/bf2cbfcfafa25fb5.json similarity index 83% rename from allure-report/data/test-cases/88503943247ae8d5.json rename to allure-report/data/test-cases/bf2cbfcfafa25fb5.json index af66b883e56..b71afe20433 100644 --- a/allure-report/data/test-cases/88503943247ae8d5.json +++ b/allure-report/data/test-cases/bf2cbfcfafa25fb5.json @@ -1 +1 @@ -{"uid":"88503943247ae8d5","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"88503943247ae8d5.json","parameterValues":[]} \ No newline at end of file +{"uid":"bf2cbfcfafa25fb5","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732428196075,"stop":1732428196075,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"bf2cbfcfafa25fb5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfe3079800be8e80.json b/allure-report/data/test-cases/bfe3079800be8e80.json new file mode 100644 index 00000000000..36fe7856399 --- /dev/null +++ b/allure-report/data/test-cases/bfe3079800be8e80.json @@ -0,0 +1 @@ +{"uid":"bfe3079800be8e80","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/59e860fc2782867c.json b/allure-report/data/test-cases/bff3d119847a95d6.json similarity index 57% rename from allure-report/data/test-cases/59e860fc2782867c.json rename to allure-report/data/test-cases/bff3d119847a95d6.json index 40bd2ce8479..426257a4921 100644 --- a/allure-report/data/test-cases/59e860fc2782867c.json +++ b/allure-report/data/test-cases/bff3d119847a95d6.json @@ -1 +1 @@ -{"uid":"59e860fc2782867c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1732764220157,"stop":1732764220157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"38d84fb9239b5f2e","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0}},{"uid":"82d71f1a1b9a4c08","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"3c99f2489842209e","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"59e860fc2782867c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220156,"stop":1732764220156,"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_FindTheOddIntTestCase::0","time":{"start":1732764220157,"stop":1732764220157,"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":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the odd int"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"bff3d119847a95d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c005f5247ce8619b.json b/allure-report/data/test-cases/c005f5247ce8619b.json deleted file mode 100644 index 462628e9cf3..00000000000 --- a/allure-report/data/test-cases/c005f5247ce8619b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c005f5247ce8619b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ceb0c3e5ec48d975","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1}},{"uid":"d0ce09c4ba5ff697","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"821065d4dc841edb","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c005f5247ce8619b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6209b3d491320ab9.json b/allure-report/data/test-cases/c0bcf993972d49ba.json similarity index 82% rename from allure-report/data/test-cases/6209b3d491320ab9.json rename to allure-report/data/test-cases/c0bcf993972d49ba.json index e77432081d1..ea4b57b9693 100644 --- a/allure-report/data/test-cases/6209b3d491320ab9.json +++ b/allure-report/data/test-cases/c0bcf993972d49ba.json @@ -1 +1 @@ -{"uid":"6209b3d491320ab9","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":1732428195921,"stop":1732428195921,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"6209b3d491320ab9.json","parameterValues":[]} \ No newline at end of file +{"uid":"c0bcf993972d49ba","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":1732428195921,"stop":1732428195921,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1732428195921,"stop":1732428195921,"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_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"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":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"c0bcf993972d49ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7c4d343c90ce082.json b/allure-report/data/test-cases/c1010dc09e66b779.json similarity index 78% rename from allure-report/data/test-cases/c7c4d343c90ce082.json rename to allure-report/data/test-cases/c1010dc09e66b779.json index 20baa38e15c..6b1e5661a83 100644 --- a/allure-report/data/test-cases/c7c4d343c90ce082.json +++ b/allure-report/data/test-cases/c1010dc09e66b779.json @@ -1 +1 @@ -{"uid":"c7c4d343c90ce082","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c7c4d343c90ce082.json","parameterValues":[]} \ No newline at end of file +{"uid":"c1010dc09e66b779","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/addec93357f6e501.json b/allure-report/data/test-cases/c12d427c645c762f.json similarity index 61% rename from allure-report/data/test-cases/addec93357f6e501.json rename to allure-report/data/test-cases/c12d427c645c762f.json index 87c9359d084..859416d4ce5 100644 --- a/allure-report/data/test-cases/addec93357f6e501.json +++ b/allure-report/data/test-cases/c12d427c645c762f.json @@ -1 +1 @@ -{"uid":"addec93357f6e501","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732764220604,"stop":1732764220604,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1732764220606,"stop":1732764220606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Flow Control"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d756394430052ee","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0}},{"uid":"28847243d9b7f290","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"78450b76b8629fe6","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"addec93357f6e501.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1732764220604,"stop":1732764220604,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1732764220605,"stop":1732764220605,"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_LargestPowerTestCase::0","time":{"start":1732764220606,"stop":1732764220606,"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":"Flow Control"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Powers of 3"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"LOOPS"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57be674b93687de78c0001d9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},"source":"c12d427c645c762f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1326d9a3ad9ddfb.json b/allure-report/data/test-cases/c1326d9a3ad9ddfb.json new file mode 100644 index 00000000000..2cf08938a7a --- /dev/null +++ b/allure-report/data/test-cases/c1326d9a3ad9ddfb.json @@ -0,0 +1 @@ +{"uid":"c1326d9a3ad9ddfb","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":1733030100294,"stop":1733030100294,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1733030100294,"stop":1733030100294,"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_HasSubpatternTestCase::0","time":{"start":1733030100294,"stop":1733030100294,"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":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"String subpattern recognition I"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.string_subpattern_recognition_1.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"57fc1349073137a7","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0}},{"uid":"7a1146c2cbd99038","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0}},{"uid":"5cb1c27a6629db87","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"9a76d6db19b09f54","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c1326d9a3ad9ddfb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1393951861e51a9.json b/allure-report/data/test-cases/c1393951861e51a9.json new file mode 100644 index 00000000000..05d6ffbd261 --- /dev/null +++ b/allure-report/data/test-cases/c1393951861e51a9.json @@ -0,0 +1 @@ +{"uid":"c1393951861e51a9","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1732764221286,"stop":1732764221286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with no 'good' in it","time":{"start":1732764221288,"stop":1732764221288,"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_WellTestCase::0","time":{"start":1732764221299,"stop":1732764221299,"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":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"c149947a189c0282.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1ac88d1c8e8cadf.json b/allure-report/data/test-cases/c1ac88d1c8e8cadf.json deleted file mode 100644 index 22b22d405c5..00000000000 --- a/allure-report/data/test-cases/c1ac88d1c8e8cadf.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c1ac88d1c8e8cadf","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"817f3cd0d39f56b9","name":"stdout","source":"817f3cd0d39f56b9.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c1ac88d1c8e8cadf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebb627dfa50cb94d.json b/allure-report/data/test-cases/c1dfde6c70281ff2.json similarity index 63% rename from allure-report/data/test-cases/ebb627dfa50cb94d.json rename to allure-report/data/test-cases/c1dfde6c70281ff2.json index b8e8dad13c6..92b47ea70cc 100644 --- a/allure-report/data/test-cases/ebb627dfa50cb94d.json +++ b/allure-report/data/test-cases/c1dfde6c70281ff2.json @@ -1 +1 @@ -{"uid":"ebb627dfa50cb94d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ba852967ab446eeb","name":"stdout","source":"ba852967ab446eeb.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ebb627dfa50cb94d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c4c9e9114ad6559f","name":"stdout","source":"c4c9e9114ad6559f.txt","type":"text/plain","size":302}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c1dfde6c70281ff2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1f0d1467179d957.json b/allure-report/data/test-cases/c1f0d1467179d957.json new file mode 100644 index 00000000000..83f8d29b252 --- /dev/null +++ b/allure-report/data/test-cases/c1f0d1467179d957.json @@ -0,0 +1 @@ +{"uid":"c1f0d1467179d957","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3a4cf54bcea79f","name":"stdout","source":"e3a4cf54bcea79f.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"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":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c1f0d1467179d957.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b78b9d24e53cd100.json b/allure-report/data/test-cases/c24c0d6b556365c6.json similarity index 61% rename from allure-report/data/test-cases/b78b9d24e53cd100.json rename to allure-report/data/test-cases/c24c0d6b556365c6.json index 3d82256c5f2..8121477b9ca 100644 --- a/allure-report/data/test-cases/b78b9d24e53cd100.json +++ b/allure-report/data/test-cases/c24c0d6b556365c6.json @@ -1 +1 @@ -{"uid":"b78b9d24e53cd100","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6650fdbb71631571","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0}},{"uid":"23199ebc2c7c1fa2","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"330a0128cd73780c","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"b78b9d24e53cd100.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1732764220730,"stop":1732764220730,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter negative number and verify the output","time":{"start":1732764220737,"stop":1732764220737,"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_SumTriangularNumbersTestCase::0","time":{"start":1732764220750,"stop":1732764220750,"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 Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"c24c0d6b556365c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c25f8210fdb51a41.json b/allure-report/data/test-cases/c25f8210fdb51a41.json deleted file mode 100644 index eeb33f3b5b6..00000000000 --- a/allure-report/data/test-cases/c25f8210fdb51a41.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c25f8210fdb51a41","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1732764218647,"stop":1732764218647,"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', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"682ca0c47ecc45d4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193998,"stop":1732428193998,"duration":0}},{"uid":"740e72b931a3ed2d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"ef2ebe964f1d2f5f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"c25f8210fdb51a41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/616388e3d3f3ad4c.json b/allure-report/data/test-cases/c2cb5c7eee700e38.json similarity index 77% rename from allure-report/data/test-cases/616388e3d3f3ad4c.json rename to allure-report/data/test-cases/c2cb5c7eee700e38.json index 2aaecb65378..afda4474efc 100644 --- a/allure-report/data/test-cases/616388e3d3f3ad4c.json +++ b/allure-report/data/test-cases/c2cb5c7eee700e38.json @@ -1 +1 @@ -{"uid":"616388e3d3f3ad4c","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d8a2a5280a09e0f4","name":"stdout","source":"d8a2a5280a09e0f4.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"616388e3d3f3ad4c.json","parameterValues":[]} \ No newline at end of file +{"uid":"c2cb5c7eee700e38","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724733472296,"stop":1724733472296,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b9d60ed71764b7f4.json b/allure-report/data/test-cases/c361fae801a29bfb.json similarity index 81% rename from allure-report/data/test-cases/b9d60ed71764b7f4.json rename to allure-report/data/test-cases/c361fae801a29bfb.json index aa4e100edcb..5c9cba3e0bd 100644 --- a/allure-report/data/test-cases/b9d60ed71764b7f4.json +++ b/allure-report/data/test-cases/c361fae801a29bfb.json @@ -1 +1 @@ -{"uid":"b9d60ed71764b7f4","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":1732428196079,"stop":1732428196079,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"b9d60ed71764b7f4.json","parameterValues":[]} \ No newline at end of file +{"uid":"c361fae801a29bfb","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":1732428196079,"stop":1732428196079,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732428196079,"stop":1732428196079,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c361fae801a29bfb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23151e1dbdaacb09.json b/allure-report/data/test-cases/c371f8df57328f01.json similarity index 77% rename from allure-report/data/test-cases/23151e1dbdaacb09.json rename to allure-report/data/test-cases/c371f8df57328f01.json index 5ebed6e73e6..c52f753679a 100644 --- a/allure-report/data/test-cases/23151e1dbdaacb09.json +++ b/allure-report/data/test-cases/c371f8df57328f01.json @@ -1 +1 @@ -{"uid":"23151e1dbdaacb09","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"23151e1dbdaacb09.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8dfef1ba8856d412.json b/allure-report/data/test-cases/c3dd54ea07cba973.json similarity index 66% rename from allure-report/data/test-cases/8dfef1ba8856d412.json rename to allure-report/data/test-cases/c3dd54ea07cba973.json index 66e7384ff8e..1cb198b897c 100644 --- a/allure-report/data/test-cases/8dfef1ba8856d412.json +++ b/allure-report/data/test-cases/c3dd54ea07cba973.json @@ -1 +1 @@ -{"uid":"8dfef1ba8856d412","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"42358797bb03e774","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1}},{"uid":"30e62f45ee93d21d","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"b3ade822e686b250","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8dfef1ba8856d412.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c3e164f822b7bae.json b/allure-report/data/test-cases/c3e164f822b7bae.json deleted file mode 100644 index 0880deab3d2..00000000000 --- a/allure-report/data/test-cases/c3e164f822b7bae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c3e164f822b7bae","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732428196258,"stop":1732428196258,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732428196257,"stop":1732428196257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::0","time":{"start":1732428196259,"stop":1732428196259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c3e164f822b7bae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/696e651c40149097.json b/allure-report/data/test-cases/c3f4680f378d24e0.json similarity index 81% rename from allure-report/data/test-cases/696e651c40149097.json rename to allure-report/data/test-cases/c3f4680f378d24e0.json index 58529d44326..144bc3a6ee5 100644 --- a/allure-report/data/test-cases/696e651c40149097.json +++ b/allure-report/data/test-cases/c3f4680f378d24e0.json @@ -1 +1 @@ -{"uid":"696e651c40149097","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"696e651c40149097.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/82d71f1a1b9a4c08.json b/allure-report/data/test-cases/c3fd98c434ab7b3d.json similarity index 77% rename from allure-report/data/test-cases/82d71f1a1b9a4c08.json rename to allure-report/data/test-cases/c3fd98c434ab7b3d.json index b0c21d28828..77e0e95201f 100644 --- a/allure-report/data/test-cases/82d71f1a1b9a4c08.json +++ b/allure-report/data/test-cases/c3fd98c434ab7b3d.json @@ -1 +1 @@ -{"uid":"82d71f1a1b9a4c08","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85c42dfa3ebb2236","name":"stdout","source":"85c42dfa3ebb2236.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"82d71f1a1b9a4c08.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73e1a08147f0ff00","name":"stdout","source":"73e1a08147f0ff00.txt","type":"text/plain","size":86}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase::0","time":{"start":1724735128774,"stop":1724735128774,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the odd int"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c3fd98c434ab7b3d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/767acc864b347295.json b/allure-report/data/test-cases/c4045fa90cc64964.json similarity index 94% rename from allure-report/data/test-cases/767acc864b347295.json rename to allure-report/data/test-cases/c4045fa90cc64964.json index b3e8c346c0c..895b6b66f26 100644 --- a/allure-report/data/test-cases/767acc864b347295.json +++ b/allure-report/data/test-cases/c4045fa90cc64964.json @@ -1 +1 @@ -{"uid":"767acc864b347295","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":"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":"767acc864b347295.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4045fa90cc64964","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724735127656,"stop":1724735127656,"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":"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/c0b9bbb0a9f351b0.json b/allure-report/data/test-cases/c409a300546c15a6.json similarity index 77% rename from allure-report/data/test-cases/c0b9bbb0a9f351b0.json rename to allure-report/data/test-cases/c409a300546c15a6.json index 382fe6673cf..46f67f6dcd3 100644 --- a/allure-report/data/test-cases/c0b9bbb0a9f351b0.json +++ b/allure-report/data/test-cases/c409a300546c15a6.json @@ -1 +1 @@ -{"uid":"c0b9bbb0a9f351b0","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2e0ebd0ab799745b","name":"stdout","source":"2e0ebd0ab799745b.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c0b9bbb0a9f351b0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c46f98a697de9b7.json b/allure-report/data/test-cases/c46f98a697de9b7.json new file mode 100644 index 00000000000..84e5d943b8d --- /dev/null +++ b/allure-report/data/test-cases/c46f98a697de9b7.json @@ -0,0 +1 @@ +{"uid":"c46f98a697de9b7","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","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 decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"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":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dcbab4e3ea8be2cb","name":"stdout","source":"dcbab4e3ea8be2cb.txt","type":"text/plain","size":992}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1724733473139,"stop":1724733473139,"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":"ARRAYS"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","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.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"c46f98a697de9b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8b4a2733a1f48dc.json b/allure-report/data/test-cases/c4de7ce2ddbb42a4.json similarity index 79% rename from allure-report/data/test-cases/d8b4a2733a1f48dc.json rename to allure-report/data/test-cases/c4de7ce2ddbb42a4.json index 7fa7bcc2e3e..90828a97b6f 100644 --- a/allure-report/data/test-cases/d8b4a2733a1f48dc.json +++ b/allure-report/data/test-cases/c4de7ce2ddbb42a4.json @@ -1 +1 @@ -{"uid":"d8b4a2733a1f48dc","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eb5eccf50db39cb4","name":"stdout","source":"eb5eccf50db39cb4.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d8b4a2733a1f48dc.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4de7ce2ddbb42a4","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724733472968,"stop":1724733472968,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a125eb4c92d61148","name":"stdout","source":"a125eb4c92d61148.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724733472968,"stop":1724733472968,"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":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"c4de7ce2ddbb42a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3400d1d080e82f75.json b/allure-report/data/test-cases/c4eaee07c56e2bda.json similarity index 83% rename from allure-report/data/test-cases/3400d1d080e82f75.json rename to allure-report/data/test-cases/c4eaee07c56e2bda.json index f6e95e28449..f100230015c 100644 --- a/allure-report/data/test-cases/3400d1d080e82f75.json +++ b/allure-report/data/test-cases/c4eaee07c56e2bda.json @@ -1 +1 @@ -{"uid":"3400d1d080e82f75","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a3653a5d01cb978a","name":"stdout","source":"a3653a5d01cb978a.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3400d1d080e82f75.json","parameterValues":[]} \ No newline at end of file +{"uid":"c4eaee07c56e2bda","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8fd9fc1a4b426539.json b/allure-report/data/test-cases/c50564bf93e2ebd9.json similarity index 80% rename from allure-report/data/test-cases/8fd9fc1a4b426539.json rename to allure-report/data/test-cases/c50564bf93e2ebd9.json index b0c7511c050..85d5116b903 100644 --- a/allure-report/data/test-cases/8fd9fc1a4b426539.json +++ b/allure-report/data/test-cases/c50564bf93e2ebd9.json @@ -1 +1 @@ -{"uid":"8fd9fc1a4b426539","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6d437f4331d47546","name":"stdout","source":"6d437f4331d47546.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"8fd9fc1a4b426539.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733474444,"stop":1724733474444,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d440fc5c222001d7","name":"stdout","source":"d440fc5c222001d7.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733474444,"stop":1724733474444,"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":"STRING FORMATTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"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.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"c50564bf93e2ebd9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c50649c997228fe6.json b/allure-report/data/test-cases/c50649c997228fe6.json new file mode 100644 index 00000000000..43eb87eb733 --- /dev/null +++ b/allure-report/data/test-cases/c50649c997228fe6.json @@ -0,0 +1 @@ +{"uid":"c50649c997228fe6","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1733030101070,"stop":1733030101070,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030101070,"stop":1733030101070,"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_SetAlarmTestCase::0","time":{"start":1733030101070,"stop":1733030101070,"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":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Boolean"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"BOOLEANS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"94d4bd5574aa8f7b","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0}},{"uid":"60f76b164a916b4e","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0}},{"uid":"e64a446631b3c9dc","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"5016998388e149a3","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","BOOLEANS"]},"source":"c50649c997228fe6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c515ef635fa26df1.json b/allure-report/data/test-cases/c515ef635fa26df1.json new file mode 100644 index 00000000000..ccd91b311d8 --- /dev/null +++ b/allure-report/data/test-cases/c515ef635fa26df1.json @@ -0,0 +1 @@ +{"uid":"c515ef635fa26df1","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c2a15dd126224894.json b/allure-report/data/test-cases/c51d0888e1777a9e.json similarity index 63% rename from allure-report/data/test-cases/c2a15dd126224894.json rename to allure-report/data/test-cases/c51d0888e1777a9e.json index bf600579a66..113768a228b 100644 --- a/allure-report/data/test-cases/c2a15dd126224894.json +++ b/allure-report/data/test-cases/c51d0888e1777a9e.json @@ -1 +1 @@ -{"uid":"c2a15dd126224894","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Remove First and Last Character"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5cbf19148d05755c","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0}},{"uid":"3604ad2531e10e0a","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"1ae269d449ac7d5e","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"c2a15dd126224894.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1732764221181,"stop":1732764221181,"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_RemoveCharTestCase::0","time":{"start":1732764221181,"stop":1732764221181,"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":"Remove First and Last Character"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"c51d0888e1777a9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5bfa9ec903b7b32.json b/allure-report/data/test-cases/c5bfa9ec903b7b32.json deleted file mode 100644 index 4b5347947b9..00000000000 --- a/allure-report/data/test-cases/c5bfa9ec903b7b32.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c5bfa9ec903b7b32","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4d30848274c8ad1","name":"stdout","source":"4d30848274c8ad1.txt","type":"text/plain","size":99}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c5bfa9ec903b7b32.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e066328cfed2428.json b/allure-report/data/test-cases/c5e6a87af3754f9e.json similarity index 60% rename from allure-report/data/test-cases/7e066328cfed2428.json rename to allure-report/data/test-cases/c5e6a87af3754f9e.json index 3f4050aa3c4..f19905013ad 100644 --- a/allure-report/data/test-cases/7e066328cfed2428.json +++ b/allure-report/data/test-cases/c5e6a87af3754f9e.json @@ -1 +1 @@ -{"uid":"7e066328cfed2428","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":1732764220670,"stop":1732764220670,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d7a8665bbc3ca3a","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0}},{"uid":"fb64f9c33c11676a","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"c3faad8d02b815fd","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["GAMES","PUZZLES"]},"source":"7e066328cfed2428.json","parameterValues":[]} \ No newline at end of file +{"uid":"c5e6a87af3754f9e","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":1732764220670,"stop":1732764220670,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764220670,"stop":1732764220670,"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_InviteMoreWomenTestCase::0","time":{"start":1732764220677,"stop":1732764220677,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58acfe4ae0201e1708000075","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","PUZZLES"]},"source":"c5e6a87af3754f9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c61d34eb10bf204.json b/allure-report/data/test-cases/c61d34eb10bf204.json deleted file mode 100644 index 1a191e6917c..00000000000 --- a/allure-report/data/test-cases/c61d34eb10bf204.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c61d34eb10bf204","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d2685b3f41e9f61c","name":"stdout","source":"d2685b3f41e9f61c.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c61d34eb10bf204.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c62025a79b33eb3.json b/allure-report/data/test-cases/c62025a79b33eb3.json new file mode 100644 index 00000000000..83766a3925c --- /dev/null +++ b/allure-report/data/test-cases/c62025a79b33eb3.json @@ -0,0 +1 @@ +{"uid":"c62025a79b33eb3","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"description":"\n Testing using empty test data\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/302e450946481df3.json b/allure-report/data/test-cases/c666a2fc70e4969f.json similarity index 60% rename from allure-report/data/test-cases/302e450946481df3.json rename to allure-report/data/test-cases/c666a2fc70e4969f.json index d1543e04a65..6257db49393 100644 --- a/allure-report/data/test-cases/302e450946481df3.json +++ b/allure-report/data/test-cases/c666a2fc70e4969f.json @@ -1 +1 @@ -{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732764220887,"stop":1732764220887,"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"510e078ddda4bd3c","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1}},{"uid":"68235061ff0b1d1d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"5a4c9eb3dcb32bf5","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"302e450946481df3.json","parameterValues":[]} \ No newline at end of file +{"uid":"c666a2fc70e4969f","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1732764220887,"stop":1732764220887,"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 :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1732764220907,"stop":1732764220907,"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":"Counting sheep..."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c666a2fc70e4969f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c66ea864985e641.json b/allure-report/data/test-cases/c66ea864985e641.json new file mode 100644 index 00000000000..230b0c6e1db --- /dev/null +++ b/allure-report/data/test-cases/c66ea864985e641.json @@ -0,0 +1 @@ +{"uid":"c66ea864985e641","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732428194619,"stop":1732428194619,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5aa7474450de295f.json b/allure-report/data/test-cases/c6b40d117da688e8.json similarity index 92% rename from allure-report/data/test-cases/5aa7474450de295f.json rename to allure-report/data/test-cases/c6b40d117da688e8.json index 01b9621cb89..6f77d21ef8b 100644 --- a/allure-report/data/test-cases/5aa7474450de295f.json +++ b/allure-report/data/test-cases/c6b40d117da688e8.json @@ -1 +1 @@ -{"uid":"5aa7474450de295f","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":"5aa7474450de295f.json","parameterValues":[]} \ No newline at end of file +{"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/5ad5cb812fbd5d4a.json b/allure-report/data/test-cases/c6c0fd894bae942b.json similarity index 69% rename from allure-report/data/test-cases/5ad5cb812fbd5d4a.json rename to allure-report/data/test-cases/c6c0fd894bae942b.json index d5420c66d0a..9c6a71d5e55 100644 --- a/allure-report/data/test-cases/5ad5cb812fbd5d4a.json +++ b/allure-report/data/test-cases/c6c0fd894bae942b.json @@ -1 +1 @@ -{"uid":"5ad5cb812fbd5d4a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732764218925,"stop":1732764218925,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732764218927,"stop":1732764218927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"ALGORITHMS"},{"name":"tag","value":"SEARCH"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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_5.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e41edf94f198f2c7","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0}},{"uid":"378b8959bf0b41a9","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"31a691fa5a56c905","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"5ad5cb812fbd5d4a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732764218925,"stop":1732764218925,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764218926,"stop":1732764218926,"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_FirstNonRepeatingLetterTestCase::0","time":{"start":1732764218927,"stop":1732764218927,"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":"ALGORITHMS"},{"name":"tag","value":"SEARCH"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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_5.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"c6c0fd894bae942b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c457590f118b700.json b/allure-report/data/test-cases/c6f6863411d36c7a.json similarity index 79% rename from allure-report/data/test-cases/6c457590f118b700.json rename to allure-report/data/test-cases/c6f6863411d36c7a.json index f1c44455ed1..5409c0f093f 100644 --- a/allure-report/data/test-cases/6c457590f118b700.json +++ b/allure-report/data/test-cases/c6f6863411d36c7a.json @@ -1 +1 @@ -{"uid":"6c457590f118b700","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"85d8941907447826","name":"stdout","source":"85d8941907447826.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6c457590f118b700.json","parameterValues":[]} \ No newline at end of file +{"uid":"c6f6863411d36c7a","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":1724735129570,"stop":1724735129570,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"918ce551f75f4a0e","name":"stdout","source":"918ce551f75f4a0e.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Keep up the hoop"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Conditions"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c6f6863411d36c7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c730b39a7cf9843.json b/allure-report/data/test-cases/c730b39a7cf9843.json deleted file mode 100644 index 69d692b273a..00000000000 --- a/allure-report/data/test-cases/c730b39a7cf9843.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c730b39a7cf9843","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8afe9706a7ce18ad","name":"stdout","source":"8afe9706a7ce18ad.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c730b39a7cf9843.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/37bcd45d30c593a7.json b/allure-report/data/test-cases/c77ad5c459e90990.json similarity index 67% rename from allure-report/data/test-cases/37bcd45d30c593a7.json rename to allure-report/data/test-cases/c77ad5c459e90990.json index 6f264be9642..47a5e2a95d2 100644 --- a/allure-report/data/test-cases/37bcd45d30c593a7.json +++ b/allure-report/data/test-cases/c77ad5c459e90990.json @@ -1 +1 @@ -{"uid":"37bcd45d30c593a7","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase::0","time":{"start":1732764219317,"stop":1732764219317,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Decipher this!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d86eb3695c9130c6","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0}},{"uid":"67e470215248af57","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"4719969d944ed48a","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"37bcd45d30c593a7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecipherThisTestCase","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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":1732764219315,"stop":1732764219315,"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_DecipherThisTestCase::0","time":{"start":1732764219317,"stop":1732764219317,"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":"story","value":"Decipher this!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.decipher_this.test_decipher_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e014b55f2c52bb00000f8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},"source":"c77ad5c459e90990.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61de742601660eab.json b/allure-report/data/test-cases/c77cd6e80c5f42f2.json similarity index 77% rename from allure-report/data/test-cases/61de742601660eab.json rename to allure-report/data/test-cases/c77cd6e80c5f42f2.json index b9b9a43ef7b..6c9391fe155 100644 --- a/allure-report/data/test-cases/61de742601660eab.json +++ b/allure-report/data/test-cases/c77cd6e80c5f42f2.json @@ -1 +1 @@ -{"uid":"61de742601660eab","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a9137c6294090d64","name":"stdout","source":"a9137c6294090d64.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"61de742601660eab.json","parameterValues":[]} \ No newline at end of file +{"uid":"c77cd6e80c5f42f2","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c78900977fa836.json b/allure-report/data/test-cases/c78900977fa836.json deleted file mode 100644 index dc260dcd043..00000000000 --- a/allure-report/data/test-cases/c78900977fa836.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c78900977fa836","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4562f85c852f0a97","name":"stdout","source":"4562f85c852f0a97.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c78900977fa836.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94e103957a6e541c.json b/allure-report/data/test-cases/c78ec33b6fe131a0.json similarity index 80% rename from allure-report/data/test-cases/94e103957a6e541c.json rename to allure-report/data/test-cases/c78ec33b6fe131a0.json index ba38b89b580..861073073ce 100644 --- a/allure-report/data/test-cases/94e103957a6e541c.json +++ b/allure-report/data/test-cases/c78ec33b6fe131a0.json @@ -1 +1 @@ -{"uid":"94e103957a6e541c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bbc90d26ad4a4f8d","name":"stdout","source":"bbc90d26ad4a4f8d.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"94e103957a6e541c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass medium size array","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large size array #2","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b010e8f0a161de92","name":"stdout","source":"b010e8f0a161de92.txt","type":"text/plain","size":985}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"c78ec33b6fe131a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/59a630e9120dbf2c.json b/allure-report/data/test-cases/c793fa14312a7752.json similarity index 78% rename from allure-report/data/test-cases/59a630e9120dbf2c.json rename to allure-report/data/test-cases/c793fa14312a7752.json index a2c401c9605..9750402803a 100644 --- a/allure-report/data/test-cases/59a630e9120dbf2c.json +++ b/allure-report/data/test-cases/c793fa14312a7752.json @@ -1 +1 @@ -{"uid":"59a630e9120dbf2c","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"59a630e9120dbf2c.json","parameterValues":[]} \ No newline at end of file +{"uid":"c793fa14312a7752","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":1724733474491,"stop":1724733474507,"duration":16},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1724733474491,"stop":1724733474491,"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_SumTwoSmallestNumbersTestCase::0","time":{"start":1724733474507,"stop":1724733474507,"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":"epic","value":"7 kyu"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c793fa14312a7752.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7a57b49fa57ab27.json b/allure-report/data/test-cases/c7a57b49fa57ab27.json new file mode 100644 index 00000000000..2bf1d3c299a --- /dev/null +++ b/allure-report/data/test-cases/c7a57b49fa57ab27.json @@ -0,0 +1 @@ +{"uid":"c7a57b49fa57ab27","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5ae64153eb7d8fd5","name":"stdout","source":"5ae64153eb7d8fd5.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c7a57b49fa57ab27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0a4502fedd41667.json b/allure-report/data/test-cases/c8141b2abd713c90.json similarity index 61% rename from allure-report/data/test-cases/c0a4502fedd41667.json rename to allure-report/data/test-cases/c8141b2abd713c90.json index 3943a011eb9..2adfc8d300c 100644 --- a/allure-report/data/test-cases/c0a4502fedd41667.json +++ b/allure-report/data/test-cases/c8141b2abd713c90.json @@ -1 +1 @@ -{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing remove method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a6a59cc8a0131a02","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1}},{"uid":"ae08758c48a63481","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"7de68906bfa0f18","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c0a4502fedd41667.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8141b2abd713c90","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1733030100773,"stop":1733030100773,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ba4a3c35a46d9d79","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1}},{"uid":"f798d0ae3c0161ae","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1}},{"uid":"5e446730ae629c6c","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"a3e36a462ba6b0e6","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"c8680b20dd7e19d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8bbe3b647eb4bfeb.json b/allure-report/data/test-cases/c8aec766397234af.json similarity index 81% rename from allure-report/data/test-cases/8bbe3b647eb4bfeb.json rename to allure-report/data/test-cases/c8aec766397234af.json index 2ecfde14582..bdcaea955bf 100644 --- a/allure-report/data/test-cases/8bbe3b647eb4bfeb.json +++ b/allure-report/data/test-cases/c8aec766397234af.json @@ -1 +1 @@ -{"uid":"8bbe3b647eb4bfeb","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"da21be7860f58cf6","name":"stdout","source":"da21be7860f58cf6.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8bbe3b647eb4bfeb.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8aec766397234af","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":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"301d26c401259420","name":"stdout","source":"301d26c401259420.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724735128977,"stop":1724735128977,"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":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Unique In Order"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c8aec766397234af.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8c57e21dd6fea81.json b/allure-report/data/test-cases/c8c57e21dd6fea81.json new file mode 100644 index 00000000000..d73fde44ef2 --- /dev/null +++ b/allure-report/data/test-cases/c8c57e21dd6fea81.json @@ -0,0 +1 @@ +{"uid":"c8c57e21dd6fea81","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SummationTestCase","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter number and verify the output","time":{"start":1733030100914,"stop":1733030100914,"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_SummationTestCase::0","time":{"start":1733030100914,"stop":1733030100914,"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":"CONTROL FLOW"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Control Flow"},{"name":"feature","value":"Loops"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Grasshopper - Summation"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_summation.test_summation"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55d24f55d7dd296eb9000030","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31e5836e8c9c8975","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2}},{"uid":"842c6d1ee8161eef","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0}},{"uid":"3371b53ac373c146","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"8d0f8b1f359d2e57","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":"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},"source":"c8c57e21dd6fea81.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fef2d68159e448ff.json b/allure-report/data/test-cases/c8d9a4d573dbda2b.json similarity index 54% rename from allure-report/data/test-cases/fef2d68159e448ff.json rename to allure-report/data/test-cases/c8d9a4d573dbda2b.json index b28bb5d4861..93e8bbdf383 100644 --- a/allure-report/data/test-cases/fef2d68159e448ff.json +++ b/allure-report/data/test-cases/c8d9a4d573dbda2b.json @@ -1 +1 @@ -{"uid":"fef2d68159e448ff","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1732764218932,"stop":1732764218932,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1732764218935,"stop":1732764218935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"flatten()"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"50b7ff1fe714521a","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0}},{"uid":"200c9d07d930b3b1","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"9e3c99258a0c64df","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"fef2d68159e448ff.json","parameterValues":[]} \ No newline at end of file +{"uid":"c8d9a4d573dbda2b","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1733030099005,"stop":1733030099005,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1733030099005,"stop":1733030099005,"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_FlattenTestCase::0","time":{"start":1733030099005,"stop":1733030099005,"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":"flatten()"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1d0688b018eb523","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0}},{"uid":"5ffc12c38a719895","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0}},{"uid":"43e580c8ccbc2ae0","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"dbc901f56e1e91ea","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS","ARRAYS"]},"source":"c8d9a4d573dbda2b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4fc00e9c47abe8d0.json b/allure-report/data/test-cases/c9095528631735ce.json similarity index 82% rename from allure-report/data/test-cases/4fc00e9c47abe8d0.json rename to allure-report/data/test-cases/c9095528631735ce.json index df00b8fc643..ff61003011c 100644 --- a/allure-report/data/test-cases/4fc00e9c47abe8d0.json +++ b/allure-report/data/test-cases/c9095528631735ce.json @@ -1 +1 @@ -{"uid":"4fc00e9c47abe8d0","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"4fc00e9c47abe8d0.json","parameterValues":[]} \ No newline at end of file +{"uid":"c9095528631735ce","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c9095528631735ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c91f2e2d1c4e5a72.json b/allure-report/data/test-cases/c91f2e2d1c4e5a72.json deleted file mode 100644 index b15a7a86f14..00000000000 --- a/allure-report/data/test-cases/c91f2e2d1c4e5a72.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c91f2e2d1c4e5a72","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1dfb198a7253b941","name":"stdout","source":"1dfb198a7253b941.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"c91f2e2d1c4e5a72.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8bc93f78736d3a0e.json b/allure-report/data/test-cases/c93838d5eefff03d.json similarity index 76% rename from allure-report/data/test-cases/8bc93f78736d3a0e.json rename to allure-report/data/test-cases/c93838d5eefff03d.json index 62b0e444868..0b7f66bbdbb 100644 --- a/allure-report/data/test-cases/8bc93f78736d3a0e.json +++ b/allure-report/data/test-cases/c93838d5eefff03d.json @@ -1 +1 @@ -{"uid":"8bc93f78736d3a0e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2f4fbc6ed8dc7bd7","name":"stdout","source":"2f4fbc6ed8dc7bd7.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8bc93f78736d3a0e.json","parameterValues":[]} \ No newline at end of file +{"uid":"c93838d5eefff03d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d7c022e7514eebb0","name":"stdout","source":"d7c022e7514eebb0.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c93838d5eefff03d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eac7f340d73193c2.json b/allure-report/data/test-cases/c9b5322357724fe7.json similarity index 82% rename from allure-report/data/test-cases/eac7f340d73193c2.json rename to allure-report/data/test-cases/c9b5322357724fe7.json index 975423f446f..4956baafb4b 100644 --- a/allure-report/data/test-cases/eac7f340d73193c2.json +++ b/allure-report/data/test-cases/c9b5322357724fe7.json @@ -1 +1 @@ -{"uid":"eac7f340d73193c2","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"eac7f340d73193c2.json","parameterValues":[]} \ No newline at end of file +{"uid":"c9b5322357724fe7","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bf7dba429c84fe69.json b/allure-report/data/test-cases/c9c9a6a75f3a249f.json similarity index 52% rename from allure-report/data/test-cases/bf7dba429c84fe69.json rename to allure-report/data/test-cases/c9c9a6a75f3a249f.json index dae7be70d69..5e6cab34314 100644 --- a/allure-report/data/test-cases/bf7dba429c84fe69.json +++ b/allure-report/data/test-cases/c9c9a6a75f3a249f.json @@ -1 +1 @@ -{"uid":"bf7dba429c84fe69","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1732428194619,"stop":1732428194619,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"bf7dba429c84fe69.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/814ad2f745782ad7.json b/allure-report/data/test-cases/c9fb9d40396e984d.json similarity index 82% rename from allure-report/data/test-cases/814ad2f745782ad7.json rename to allure-report/data/test-cases/c9fb9d40396e984d.json index 9248a60f5b2..9d994182e2b 100644 --- a/allure-report/data/test-cases/814ad2f745782ad7.json +++ b/allure-report/data/test-cases/c9fb9d40396e984d.json @@ -1 +1 @@ -{"uid":"814ad2f745782ad7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"814ad2f745782ad7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1724733474538,"stop":1724733474538,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"c9fb9d40396e984d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ca1eccae180a083e.json b/allure-report/data/test-cases/ca1eccae180a083e.json new file mode 100644 index 00000000000..fd3ca9f4a66 --- /dev/null +++ b/allure-report/data/test-cases/ca1eccae180a083e.json @@ -0,0 +1 @@ +{"uid":"ca1eccae180a083e","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d0246537274067fb.json b/allure-report/data/test-cases/caa8571433eea386.json similarity index 66% rename from allure-report/data/test-cases/d0246537274067fb.json rename to allure-report/data/test-cases/caa8571433eea386.json index e87f7e1bf28..ffb8716e617 100644 --- a/allure-report/data/test-cases/d0246537274067fb.json +++ b/allure-report/data/test-cases/caa8571433eea386.json @@ -1 +1 @@ -{"uid":"d0246537274067fb","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732764221017,"stop":1732764221017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7e0fbf3b4505484b","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0}},{"uid":"3e88e2d0381e105a","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"a12dc2585f9de41f","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"d0246537274067fb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1230413e064883bb.json b/allure-report/data/test-cases/cab8fd48239210db.json similarity index 85% rename from allure-report/data/test-cases/1230413e064883bb.json rename to allure-report/data/test-cases/cab8fd48239210db.json index 2e017b98bf7..e7d3bd8c840 100644 --- a/allure-report/data/test-cases/1230413e064883bb.json +++ b/allure-report/data/test-cases/cab8fd48239210db.json @@ -1 +1 @@ -{"uid":"1230413e064883bb","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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":"1230413e064883bb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732764220948,"stop":1732764220948,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"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":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cac786da5d1fffa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65e9477143af3f55.json b/allure-report/data/test-cases/caf9670d0e0965a0.json similarity index 59% rename from allure-report/data/test-cases/65e9477143af3f55.json rename to allure-report/data/test-cases/caf9670d0e0965a0.json index 9a6927cb43f..13af5cfdf54 100644 --- a/allure-report/data/test-cases/65e9477143af3f55.json +++ b/allure-report/data/test-cases/caf9670d0e0965a0.json @@ -1 +1 @@ -{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Positive test cases for gen_primes function testing.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"f3b1ea272cafb8c8","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0}},{"uid":"22f939e586318511","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"40a0fe54277654cc","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"65e9477143af3f55.json","parameterValues":[]} \ No newline at end of file +{"uid":"caf9670d0e0965a0","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030100789,"stop":1733030100789,"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_AlternatingCaseTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"18ce21893b263766","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0}},{"uid":"a0445feeac697184","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0}},{"uid":"e21d0927a22c6c46","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"cd858786e595fd45","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"cb005e45e7b312b5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb1927945c40fc3.json b/allure-report/data/test-cases/cb1927945c40fc3.json deleted file mode 100644 index 4662c356e8f..00000000000 --- a/allure-report/data/test-cases/cb1927945c40fc3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cb1927945c40fc3","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":1724733474616,"stop":1724733474616,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"2d724952cd20b6e1","name":"stdout","source":"2d724952cd20b6e1.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cb1927945c40fc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ea092b3f85ebfcb.json b/allure-report/data/test-cases/cb1c1fa1e4f21add.json similarity index 88% rename from allure-report/data/test-cases/4ea092b3f85ebfcb.json rename to allure-report/data/test-cases/cb1c1fa1e4f21add.json index 743d7346e35..d1accb2c745 100644 --- a/allure-report/data/test-cases/4ea092b3f85ebfcb.json +++ b/allure-report/data/test-cases/cb1c1fa1e4f21add.json @@ -1 +1 @@ -{"uid":"4ea092b3f85ebfcb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase::0","time":{"start":1732428195847,"stop":1732428195847,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Simple Fun #74: Growing Plant"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"4ea092b3f85ebfcb.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GrowingPlantTestCase","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter upSpeed, downSpeed and desiredHeight and verify the output","time":{"start":1732428195846,"stop":1732428195846,"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_GrowingPlantTestCase::0","time":{"start":1732428195847,"stop":1732428195847,"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":"story","value":"Simple Fun #74: Growing Plant"},{"name":"feature","value":"Calculation"},{"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_7.growing_plant.test_growing_plant"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58941fec8afa3618c9000184","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"cb1c1fa1e4f21add.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7677af29e8a1671e.json b/allure-report/data/test-cases/cb1f986a714e3e2e.json similarity index 87% rename from allure-report/data/test-cases/7677af29e8a1671e.json rename to allure-report/data/test-cases/cb1f986a714e3e2e.json index 2d974617b33..3375ddba212 100644 --- a/allure-report/data/test-cases/7677af29e8a1671e.json +++ b/allure-report/data/test-cases/cb1f986a714e3e2e.json @@ -1 +1 @@ -{"uid":"7677af29e8a1671e","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3e106a35f51e50cd","name":"stdout","source":"3e106a35f51e50cd.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7677af29e8a1671e.json","parameterValues":[]} \ No newline at end of file +{"uid":"cb1f986a714e3e2e","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d64758690dcdce52.json b/allure-report/data/test-cases/cb74d5229c88c838.json similarity index 82% rename from allure-report/data/test-cases/d64758690dcdce52.json rename to allure-report/data/test-cases/cb74d5229c88c838.json index 222faeaf8e8..8d9007579ea 100644 --- a/allure-report/data/test-cases/d64758690dcdce52.json +++ b/allure-report/data/test-cases/cb74d5229c88c838.json @@ -1 +1 @@ -{"uid":"d64758690dcdce52","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61785349fe52fbcf","name":"stdout","source":"61785349fe52fbcf.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d64758690dcdce52.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/cb7d8edff0d47cc5.json b/allure-report/data/test-cases/cb7d8edff0d47cc5.json deleted file mode 100644 index 911180405da..00000000000 --- a/allure-report/data/test-cases/cb7d8edff0d47cc5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cb7d8edff0d47cc5","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":1724733474460,"stop":1724733474460,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9ca1d978c6df1121","name":"stdout","source":"9ca1d978c6df1121.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cb7d8edff0d47cc5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf8fa237e5fc3101.json b/allure-report/data/test-cases/cb921d8c86204096.json similarity index 78% rename from allure-report/data/test-cases/cf8fa237e5fc3101.json rename to allure-report/data/test-cases/cb921d8c86204096.json index ecce177b793..17a5731d993 100644 --- a/allure-report/data/test-cases/cf8fa237e5fc3101.json +++ b/allure-report/data/test-cases/cb921d8c86204096.json @@ -1 +1 @@ -{"uid":"cf8fa237e5fc3101","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cf8fa237e5fc3101.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with negative non consecutive number","time":{"start":1732428196168,"stop":1732428196168,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"cb921d8c86204096.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78450b76b8629fe6.json b/allure-report/data/test-cases/cbaa99833f802aa6.json similarity index 79% rename from allure-report/data/test-cases/78450b76b8629fe6.json rename to allure-report/data/test-cases/cbaa99833f802aa6.json index f478b9d710d..4ad8a167055 100644 --- a/allure-report/data/test-cases/78450b76b8629fe6.json +++ b/allure-report/data/test-cases/cbaa99833f802aa6.json @@ -1 +1 @@ -{"uid":"78450b76b8629fe6","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"15093916dbf3d716","name":"stdout","source":"15093916dbf3d716.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"78450b76b8629fe6.json","parameterValues":[]} \ No newline at end of file +{"uid":"cbaa99833f802aa6","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27bed6305313af96","name":"stdout","source":"27bed6305313af96.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724733474366,"stop":1724733474366,"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":"feature","value":"Flow Control"},{"name":"story","value":"Powers of 3"},{"name":"epic","value":"7 kyu"},{"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_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cbaa99833f802aa6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e91954f86960f5cf.json b/allure-report/data/test-cases/cbad1c121fb6a6fb.json similarity index 76% rename from allure-report/data/test-cases/e91954f86960f5cf.json rename to allure-report/data/test-cases/cbad1c121fb6a6fb.json index 00f47ebd70a..669c806a55a 100644 --- a/allure-report/data/test-cases/e91954f86960f5cf.json +++ b/allure-report/data/test-cases/cbad1c121fb6a6fb.json @@ -1 +1 @@ -{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1732764218819,"stop":1732764218819,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732764218818,"stop":1732764218819,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e776a97a9aadedfc","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0}},{"uid":"a456e8af4c590649","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"47f8dbee3cb403d3","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},"source":"e91954f86960f5cf.json","parameterValues":[]} \ No newline at end of file +{"uid":"cbad1c121fb6a6fb","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1732764218819,"stop":1732764218819,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckRootTestCase::0","time":{"start":1733030100387,"stop":1733030100387,"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":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING FORMATTING"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Always perfect"},{"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.always_perfect.test_check_root"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f3facb78a9fd5b26000036","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6826d14915228b29","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1}},{"uid":"66b2d8dadf3898","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0}},{"uid":"41a0b3fc08086e96","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"238aa65764e1d222","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":"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}}]},"tags":["MATHEMATICS","FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},"source":"cbb9443875889585.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8bd7a062c96fe90.json b/allure-report/data/test-cases/cbf123a6aa236a3b.json similarity index 85% rename from allure-report/data/test-cases/b8bd7a062c96fe90.json rename to allure-report/data/test-cases/cbf123a6aa236a3b.json index 3f75f3cc0bc..c720da05c89 100644 --- a/allure-report/data/test-cases/b8bd7a062c96fe90.json +++ b/allure-report/data/test-cases/cbf123a6aa236a3b.json @@ -1 +1 @@ -{"uid":"b8bd7a062c96fe90","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"b8bd7a062c96fe90.json","parameterValues":[]} \ No newline at end of file +{"uid":"cbf123a6aa236a3b","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/abed1b9a0913387d.json b/allure-report/data/test-cases/cc051f6a400be208.json similarity index 77% rename from allure-report/data/test-cases/abed1b9a0913387d.json rename to allure-report/data/test-cases/cc051f6a400be208.json index 57a325f46e0..95c9832b5ae 100644 --- a/allure-report/data/test-cases/abed1b9a0913387d.json +++ b/allure-report/data/test-cases/cc051f6a400be208.json @@ -1 +1 @@ -{"uid":"abed1b9a0913387d","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"678cbfc79956849c","name":"stdout","source":"678cbfc79956849c.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"abed1b9a0913387d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724733472312,"stop":1724733472312,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724733472312,"stop":1724733472312,"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":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"24199b96cc9c8ec3","name":"stdout","source":"24199b96cc9c8ec3.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724733472312,"stop":1724733472312,"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":"Calculator"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"cc051f6a400be208.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6aba04a431b7fd70.json b/allure-report/data/test-cases/cc2dceff6dc83502.json similarity index 94% rename from allure-report/data/test-cases/6aba04a431b7fd70.json rename to allure-report/data/test-cases/cc2dceff6dc83502.json index 54d8b9a2661..be61bb5cc48 100644 --- a/allure-report/data/test-cases/6aba04a431b7fd70.json +++ b/allure-report/data/test-cases/cc2dceff6dc83502.json @@ -1 +1 @@ -{"uid":"6aba04a431b7fd70","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732428194439,"stop":1732428194439,"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":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":"6aba04a431b7fd70.json","parameterValues":[]} \ No newline at end of file +{"uid":"cc2dceff6dc83502","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1732428194439,"stop":1732428194439,"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":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/a8e7ed0b9e8a05d4.json b/allure-report/data/test-cases/ccac52878bec48b6.json similarity index 81% rename from allure-report/data/test-cases/a8e7ed0b9e8a05d4.json rename to allure-report/data/test-cases/ccac52878bec48b6.json index e5a35f59153..620b73c3c0e 100644 --- a/allure-report/data/test-cases/a8e7ed0b9e8a05d4.json +++ b/allure-report/data/test-cases/ccac52878bec48b6.json @@ -1 +1 @@ -{"uid":"a8e7ed0b9e8a05d4","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

Testing __getitem__ method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a8e7ed0b9e8a05d4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3b252f71e94d60c3.json b/allure-report/data/test-cases/ccc1ac75f035d282.json similarity index 81% rename from allure-report/data/test-cases/3b252f71e94d60c3.json rename to allure-report/data/test-cases/ccc1ac75f035d282.json index 3ec9282b177..2b5642fdacc 100644 --- a/allure-report/data/test-cases/3b252f71e94d60c3.json +++ b/allure-report/data/test-cases/ccc1ac75f035d282.json @@ -1 +1 @@ -{"uid":"3b252f71e94d60c3","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"d497d06498897878","name":"stdout","source":"d497d06498897878.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"3b252f71e94d60c3.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"a3650a70b5eae511","name":"stdout","source":"a3650a70b5eae511.txt","type":"text/plain","size":146}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"ccc1ac75f035d282.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccc6c3ffee5b9f76.json b/allure-report/data/test-cases/ccc6c3ffee5b9f76.json new file mode 100644 index 00000000000..c38f2fde991 --- /dev/null +++ b/allure-report/data/test-cases/ccc6c3ffee5b9f76.json @@ -0,0 +1 @@ +{"uid":"ccc6c3ffee5b9f76","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":1732764220999,"stop":1732764220999,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732764220999,"stop":1732764220999,"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_GreetTestCase::0","time":{"start":1732764221002,"stop":1732764221002,"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":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"story","value":"Personalized greeting"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"ccc6c3ffee5b9f76.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3604ad2531e10e0a.json b/allure-report/data/test-cases/cd3e27d521a2ebd0.json similarity index 78% rename from allure-report/data/test-cases/3604ad2531e10e0a.json rename to allure-report/data/test-cases/cd3e27d521a2ebd0.json index f5dc69f9cbd..227e179a4cc 100644 --- a/allure-report/data/test-cases/3604ad2531e10e0a.json +++ b/allure-report/data/test-cases/cd3e27d521a2ebd0.json @@ -1 +1 @@ -{"uid":"3604ad2531e10e0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"45f7f0c7806d7a5f","name":"stdout","source":"45f7f0c7806d7a5f.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 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":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"3604ad2531e10e0a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass 'eloquent' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'country' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'person' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'place' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass 'ok' string and verify the output","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c451fef2d9e750cf","name":"stdout","source":"c451fef2d9e750cf.txt","type":"text/plain","size":196}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveCharTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"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":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Remove First and Last Character"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.remove_first_and_last_character.test_remove_char"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},"source":"cd3e27d521a2ebd0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd56af2e749c4e8a.json b/allure-report/data/test-cases/cd56af2e749c4e8a.json new file mode 100644 index 00000000000..4455c641661 --- /dev/null +++ b/allure-report/data/test-cases/cd56af2e749c4e8a.json @@ -0,0 +1 @@ +{"uid":"cd56af2e749c4e8a","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":1733030100711,"stop":1733030100711,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatedTestCase","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030100711,"stop":1733030100711,"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_FirstNonRepeatedTestCase::0","time":{"start":1733030100711,"stop":1733030100711,"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":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"The First Non Repeated Character In A String"},{"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.the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/570f6436b29c708a32000826","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e3617735ee8a318","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0}},{"uid":"73ef94971e1ebc98","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0}},{"uid":"b1b4ed481e88bb25","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"5a12cd507dfc239d","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"cd56af2e749c4e8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5360156ef396b6e.json b/allure-report/data/test-cases/cd72a87cc33096c5.json similarity index 81% rename from allure-report/data/test-cases/d5360156ef396b6e.json rename to allure-report/data/test-cases/cd72a87cc33096c5.json index bab400b0d13..1998e4b6e62 100644 --- a/allure-report/data/test-cases/d5360156ef396b6e.json +++ b/allure-report/data/test-cases/cd72a87cc33096c5.json @@ -1 +1 @@ -{"uid":"d5360156ef396b6e","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":1732428194577,"stop":1732428194577,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d5360156ef396b6e.json","parameterValues":[]} \ No newline at end of file +{"uid":"cd72a87cc33096c5","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":1732428194577,"stop":1732428194577,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/24df9329b634133a.json b/allure-report/data/test-cases/cd858786e595fd45.json similarity index 79% rename from allure-report/data/test-cases/24df9329b634133a.json rename to allure-report/data/test-cases/cd858786e595fd45.json index bf290096f6f..60b249cfec2 100644 --- a/allure-report/data/test-cases/24df9329b634133a.json +++ b/allure-report/data/test-cases/cd858786e595fd45.json @@ -1 +1 @@ -{"uid":"24df9329b634133a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2b2e74011774c312","name":"stdout","source":"2b2e74011774c312.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"24df9329b634133a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6148a5719472274d","name":"stdout","source":"6148a5719472274d.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"cd858786e595fd45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a20726936132e0f6.json b/allure-report/data/test-cases/cde33394de2ec155.json similarity index 84% rename from allure-report/data/test-cases/a20726936132e0f6.json rename to allure-report/data/test-cases/cde33394de2ec155.json index 93cff11791f..49aadd7b1ca 100644 --- a/allure-report/data/test-cases/a20726936132e0f6.json +++ b/allure-report/data/test-cases/cde33394de2ec155.json @@ -1 +1 @@ -{"uid":"a20726936132e0f6","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f146e27128e108d6","name":"stdout","source":"f146e27128e108d6.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"a20726936132e0f6.json","parameterValues":[]} \ No newline at end of file +{"uid":"cde33394de2ec155","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1b39872f125fb2ef","name":"stdout","source":"1b39872f125fb2ef.txt","type":"text/plain","size":288}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringToArrayTestCase::0","time":{"start":1724733474585,"stop":1724733474585,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Convert a string to an array"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.convert_string_to_an_array.test_string_to_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"cde33394de2ec155.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20569c47774cf3c7.json b/allure-report/data/test-cases/cde4151d7e05fca5.json similarity index 76% rename from allure-report/data/test-cases/20569c47774cf3c7.json rename to allure-report/data/test-cases/cde4151d7e05fca5.json index 049b4f23a33..4ffcf9f9b5e 100644 --- a/allure-report/data/test-cases/20569c47774cf3c7.json +++ b/allure-report/data/test-cases/cde4151d7e05fca5.json @@ -1 +1 @@ -{"uid":"20569c47774cf3c7","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c37932e6bf05499f","name":"stdout","source":"c37932e6bf05499f.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"20569c47774cf3c7.json","parameterValues":[]} \ No newline at end of file +{"uid":"cde4151d7e05fca5","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":1724733474944,"stop":1724733474944,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter values of two angles and return the 3rd","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3cfc143b96c54cf6","name":"stdout","source":"3cfc143b96c54cf6.txt","type":"text/plain","size":145}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OtherAngleTestCase::0","time":{"start":1724733474944,"stop":1724733474944,"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":"Third Angle of a Triangle"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a023c426975981341000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"cde4151d7e05fca5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6592dc6717fe514.json b/allure-report/data/test-cases/ce004e41100b8867.json similarity index 57% rename from allure-report/data/test-cases/a6592dc6717fe514.json rename to allure-report/data/test-cases/ce004e41100b8867.json index 6a2d186b0d8..8a86b78315d 100644 --- a/allure-report/data/test-cases/a6592dc6717fe514.json +++ b/allure-report/data/test-cases/ce004e41100b8867.json @@ -1 +1 @@ -{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1732764220780,"stop":1732764220780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"V A P O R C O D E"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a672dac8835c46c1","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0}},{"uid":"7d3b7c7449825e20","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"d50213dc9ab240ff","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"a6592dc6717fe514.json","parameterValues":[]} \ No newline at end of file +{"uid":"ce004e41100b8867","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1732764220779,"stop":1732764220779,"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_VaporcodeTestCase::0","time":{"start":1732764220780,"stop":1732764220780,"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":"V A P O R C O D E"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5966eeb31b229e44eb00007a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ce004e41100b8867.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce6714fc18aff8ec.json b/allure-report/data/test-cases/ce6714fc18aff8ec.json new file mode 100644 index 00000000000..13397c8b6d3 --- /dev/null +++ b/allure-report/data/test-cases/ce6714fc18aff8ec.json @@ -0,0 +1 @@ +{"uid":"ce6714fc18aff8ec","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":1733030100976,"stop":1733030100976,"duration":0},"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1733030100976,"stop":1733030100976,"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_HoopCountTestCase::0","time":{"start":1733030100992,"stop":1733030100992,"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":"feature","value":"Conditions"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"44275f12522bda28","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0}},{"uid":"8f3c559eb697de75","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2}},{"uid":"c6f6863411d36c7a","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"f997fb8bda584215","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"ce6714fc18aff8ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d0958f9149b5791.json b/allure-report/data/test-cases/ce842a0bacb75304.json similarity index 92% rename from allure-report/data/test-cases/4d0958f9149b5791.json rename to allure-report/data/test-cases/ce842a0bacb75304.json index 86d943f40aa..7946b1c3639 100644 --- a/allure-report/data/test-cases/4d0958f9149b5791.json +++ b/allure-report/data/test-cases/ce842a0bacb75304.json @@ -1 +1 @@ -{"uid":"4d0958f9149b5791","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"4d0958f9149b5791.json","parameterValues":[]} \ No newline at end of file +{"uid":"ce842a0bacb75304","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","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', 52, '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":"ce842a0bacb75304.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cef1ed2aef537de7.json b/allure-report/data/test-cases/cef1ed2aef537de7.json new file mode 100644 index 00000000000..9e14fcfbe4b --- /dev/null +++ b/allure-report/data/test-cases/cef1ed2aef537de7.json @@ -0,0 +1 @@ +{"uid":"cef1ed2aef537de7","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1733030100434,"stop":1733030100434,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","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 The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data ans assert the result","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ans assert the result","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":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1733030100434,"stop":1733030100434,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"Disemvowel Trolls"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52fba66badcd10859f00097e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7f6d50d19e0f3de2","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0}},{"uid":"274cead41a0d037b","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0}},{"uid":"dcbe3576bc7fc285","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"857dc75c5bd2dd17","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":"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"cef1ed2aef537de7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df9c941adb35f26.json b/allure-report/data/test-cases/cfba8b314ab82273.json similarity index 80% rename from allure-report/data/test-cases/4df9c941adb35f26.json rename to allure-report/data/test-cases/cfba8b314ab82273.json index 23f9d1d962b..be25c46ac28 100644 --- a/allure-report/data/test-cases/4df9c941adb35f26.json +++ b/allure-report/data/test-cases/cfba8b314ab82273.json @@ -1 +1 @@ -{"uid":"4df9c941adb35f26","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7ac45d8c1df7c43f","name":"stdout","source":"7ac45d8c1df7c43f.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"4df9c941adb35f26.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"abf9a812b0a61e07","name":"stdout","source":"abf9a812b0a61e07.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1724735127860,"stop":1724735127860,"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":"story","value":"Not very secure"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BUGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"cfba8b314ab82273.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cfca05e0b975fd2.json b/allure-report/data/test-cases/cfca05e0b975fd2.json new file mode 100644 index 00000000000..d66a0482d29 --- /dev/null +++ b/allure-report/data/test-cases/cfca05e0b975fd2.json @@ -0,0 +1 @@ +{"uid":"cfca05e0b975fd2","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1733030098630,"stop":1733030098630,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1733030098630,"stop":1733030098630,"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":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","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_CalculatorTestCase::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":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b79318ff2ae67fee","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0}},{"uid":"fe6da9468168286a","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0}},{"uid":"daa21ce701ca0a19","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"cc051f6a400be208","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"d06d6d8db945d4d7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0b6dccad411741e.json b/allure-report/data/test-cases/d0b6dccad411741e.json new file mode 100644 index 00000000000..b3476465f80 --- /dev/null +++ b/allure-report/data/test-cases/d0b6dccad411741e.json @@ -0,0 +1 @@ +{"uid":"d0b6dccad411741e","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1733030100184,"stop":1733030100184,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1733030100184,"stop":1733030100184,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1733030100184,"stop":1733030100184,"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_SolutionTestCase::0","time":{"start":1733030100184,"stop":1733030100184,"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":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4bec70d6611b3f1","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0}},{"uid":"bcfec9a648915f6a","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1}},{"uid":"16c1a97c5d8eacc8","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"2620650c036fa5d9","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"d0b6dccad411741e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28847243d9b7f290.json b/allure-report/data/test-cases/d0c0a10a6587c56e.json similarity index 79% rename from allure-report/data/test-cases/28847243d9b7f290.json rename to allure-report/data/test-cases/d0c0a10a6587c56e.json index 0df2020f200..35453311606 100644 --- a/allure-report/data/test-cases/28847243d9b7f290.json +++ b/allure-report/data/test-cases/d0c0a10a6587c56e.json @@ -1 +1 @@ -{"uid":"28847243d9b7f290","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c81a97703cb852b3","name":"stdout","source":"c81a97703cb852b3.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"28847243d9b7f290.json","parameterValues":[]} \ No newline at end of file +{"uid":"d0c0a10a6587c56e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an integer and verify the output","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a11058edff9d734d","name":"stdout","source":"a11058edff9d734d.txt","type":"text/plain","size":54}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LargestPowerTestCase::0","time":{"start":1724735129196,"stop":1724735129196,"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":"Flow Control"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Powers of 3"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.powers_of_3.test_largest_power"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d0c0a10a6587c56e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d0cba34627dad034.json b/allure-report/data/test-cases/d0cba34627dad034.json new file mode 100644 index 00000000000..db22ad0db76 --- /dev/null +++ b/allure-report/data/test-cases/d0cba34627dad034.json @@ -0,0 +1 @@ +{"uid":"d0cba34627dad034","name":"Test for invalid large string","fullName":"kyu_7.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses_large_invalid","historyId":"b51be2be310394256f22a0dcf45fea1f","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"description":"\n Test valid_parentheses function with\n invalid large string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/68235061ff0b1d1d.json b/allure-report/data/test-cases/d10b96136002b581.json similarity index 81% rename from allure-report/data/test-cases/68235061ff0b1d1d.json rename to allure-report/data/test-cases/d10b96136002b581.json index 44d39ca1074..8ecb2f49569 100644 --- a/allure-report/data/test-cases/68235061ff0b1d1d.json +++ b/allure-report/data/test-cases/d10b96136002b581.json @@ -1 +1 @@ -{"uid":"68235061ff0b1d1d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"406f6d7cefafc12f","name":"stdout","source":"406f6d7cefafc12f.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"68235061ff0b1d1d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"2dd32f5139296bc1","name":"stdout","source":"2dd32f5139296bc1.txt","type":"text/plain","size":181}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724735129430,"stop":1724735129430,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Counting sheep..."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d10b96136002b581.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a13c6a89153460b.json b/allure-report/data/test-cases/d12e38fc8c8ec4dd.json similarity index 71% rename from allure-report/data/test-cases/1a13c6a89153460b.json rename to allure-report/data/test-cases/d12e38fc8c8ec4dd.json index 28583762493..b4f42b1e807 100644 --- a/allure-report/data/test-cases/1a13c6a89153460b.json +++ b/allure-report/data/test-cases/d12e38fc8c8ec4dd.json @@ -1 +1 @@ -{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1732764218545,"stop":1732764218545,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aec2fb642901e92","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0}},{"uid":"1c217987ee1a1d39","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"616388e3d3f3ad4c","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"1a13c6a89153460b.json","parameterValues":[]} \ No newline at end of file +{"uid":"d12e38fc8c8ec4dd","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1732764218545,"stop":1732764218545,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d9e7bf55554cd705.json b/allure-report/data/test-cases/d157034757bf8b88.json similarity index 79% rename from allure-report/data/test-cases/d9e7bf55554cd705.json rename to allure-report/data/test-cases/d157034757bf8b88.json index 0549d7ca2f9..ae8b059f464 100644 --- a/allure-report/data/test-cases/d9e7bf55554cd705.json +++ b/allure-report/data/test-cases/d157034757bf8b88.json @@ -1 +1 @@ -{"uid":"d9e7bf55554cd705","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27790d440082a497","name":"stdout","source":"27790d440082a497.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d9e7bf55554cd705.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/610300a29faa4ee4.json b/allure-report/data/test-cases/d1be51368671f899.json similarity index 83% rename from allure-report/data/test-cases/610300a29faa4ee4.json rename to allure-report/data/test-cases/d1be51368671f899.json index 456be74e7df..e90315aac19 100644 --- a/allure-report/data/test-cases/610300a29faa4ee4.json +++ b/allure-report/data/test-cases/d1be51368671f899.json @@ -1 +1 @@ -{"uid":"610300a29faa4ee4","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8c55c5917aa6e797","name":"stdout","source":"8c55c5917aa6e797.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"610300a29faa4ee4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string 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},{"name":"Enter a string 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},{"name":"Enter a string 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":"269b686a0975db0c","name":"stdout","source":"269b686a0975db0c.txt","type":"text/plain","size":276}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Your order, please"},{"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":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"d1be51368671f899.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5392fbee850dfcf4.json b/allure-report/data/test-cases/d208c625c151e61d.json similarity index 80% rename from allure-report/data/test-cases/5392fbee850dfcf4.json rename to allure-report/data/test-cases/d208c625c151e61d.json index 1a7dad70c0d..05237d748ba 100644 --- a/allure-report/data/test-cases/5392fbee850dfcf4.json +++ b/allure-report/data/test-cases/d208c625c151e61d.json @@ -1 +1 @@ -{"uid":"5392fbee850dfcf4","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bcefb385384ff8bd","name":"stdout","source":"bcefb385384ff8bd.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5392fbee850dfcf4.json","parameterValues":[]} \ No newline at end of file +{"uid":"d208c625c151e61d","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724733473124,"stop":1724733473124,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1733030100356,"stop":1733030100356,"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_TicketsTestCase::0","time":{"start":1733030100356,"stop":1733030100356,"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":"epic","value":"6 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Vasya - Clerk"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a24df28711252fb3","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0}},{"uid":"f7d85b85e5647233","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0}},{"uid":"be22b07b7195c319","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"a43120edfc7294d0","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":"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"d20d06b45fb65ddb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b2be2c8b8f3d0bb.json b/allure-report/data/test-cases/d20f10e7196a7103.json similarity index 84% rename from allure-report/data/test-cases/3b2be2c8b8f3d0bb.json rename to allure-report/data/test-cases/d20f10e7196a7103.json index 6a52f4ac431..256ddb7e362 100644 --- a/allure-report/data/test-cases/3b2be2c8b8f3d0bb.json +++ b/allure-report/data/test-cases/d20f10e7196a7103.json @@ -1 +1 @@ -{"uid":"3b2be2c8b8f3d0bb","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47ad300a7de26866","name":"stdout","source":"47ad300a7de26866.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"3b2be2c8b8f3d0bb.json","parameterValues":[]} \ No newline at end of file +{"uid":"d20f10e7196a7103","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c4f63c652fed664c.json b/allure-report/data/test-cases/d21849f45071cee3.json similarity index 77% rename from allure-report/data/test-cases/c4f63c652fed664c.json rename to allure-report/data/test-cases/d21849f45071cee3.json index 8b6207e2d0a..d021607941d 100644 --- a/allure-report/data/test-cases/c4f63c652fed664c.json +++ b/allure-report/data/test-cases/d21849f45071cee3.json @@ -1 +1 @@ -{"uid":"c4f63c652fed664c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"c4f63c652fed664c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732428195562,"stop":1732428195562,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1732428195563,"stop":1732428195563,"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_PermutePalindromeTestCase::0","time":{"start":1732428195574,"stop":1732428195574,"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":"Permute a Palindrome"},{"name":"feature","value":"String"},{"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":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"d21849f45071cee3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95e7a9865f127b46.json b/allure-report/data/test-cases/d23a28a2b97dc203.json similarity index 83% rename from allure-report/data/test-cases/95e7a9865f127b46.json rename to allure-report/data/test-cases/d23a28a2b97dc203.json index 9f7c999a548..091abb2dc06 100644 --- a/allure-report/data/test-cases/95e7a9865f127b46.json +++ b/allure-report/data/test-cases/d23a28a2b97dc203.json @@ -1 +1 @@ -{"uid":"95e7a9865f127b46","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"44f1e11e2ff687a2","name":"stdout","source":"44f1e11e2ff687a2.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"95e7a9865f127b46.json","parameterValues":[]} \ No newline at end of file +{"uid":"d23a28a2b97dc203","name":"Testing 'has_subpattern' (part 3) function","fullName":"kyu_6.string_subpattern_recognition_3.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"89f53112353ba49dc8f3a4029d39ba34","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that 'has_subpattern' function\n\n Return a subpattern with sorted characters,\n otherwise return the base string with sorted\n characters (you might consider this case as\n an edge case, with the subpattern being repeated\n only once and thus equalling the original input string).\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a89bd43066f4143","name":"stdout","source":"6a89bd43066f4143.txt","type":"text/plain","size":3892}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HasSubpatternTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"String subpattern recognition III"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"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_6.string_subpattern_recognition_3.test_has_subpattern"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a4a2973d8e14586c700000a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"d23a28a2b97dc203.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d2acdc5e027859f4.json b/allure-report/data/test-cases/d2acdc5e027859f4.json new file mode 100644 index 00000000000..9c9c9c26efb --- /dev/null +++ b/allure-report/data/test-cases/d2acdc5e027859f4.json @@ -0,0 +1 @@ +{"uid":"d2acdc5e027859f4","name":"Testing anagrams function","fullName":"kyu_5.where_my_anagrams_at.test_anagrams.AnagramsTestCase#test_anagrams","historyId":"c060fb3e36725c887b4b4edce83f7142","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"description":"\n Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase","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 Test a function that will find all the anagrams of a word from a list.\n You will be given two inputs a word and an array with words. You should\n return an array of all the anagrams or an empty array if there are none.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list of strings) and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AnagramsTestCase::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":"5 kyu"},{"name":"story","value":"Where my anagrams at?"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.where_my_anagrams_at.test_anagrams"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523a86aa4230ebb5420001e1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1df66f77b1cc31ad","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0}},{"uid":"610996d8ca2c99cc","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0}},{"uid":"92695f36fc50d8a3","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"547e143b73834674","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"d2acdc5e027859f4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d2af0876e7f45a7f.json b/allure-report/data/test-cases/d2af0876e7f45a7f.json new file mode 100644 index 00000000000..594eced1833 --- /dev/null +++ b/allure-report/data/test-cases/d2af0876e7f45a7f.json @@ -0,0 +1 @@ +{"uid":"d2af0876e7f45a7f","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":1733030100575,"stop":1733030100575,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the start of the list","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from near the end of the list","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove smallest value from the end of the list","time":{"start":1733030100575,"stop":1733030100575,"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_RemoveSmallestTestCase::0","time":{"start":1733030100601,"stop":1733030100601,"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":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bef296bdea9fd681","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0}},{"uid":"c0bcf993972d49ba","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0}},{"uid":"5a6f2f90ae14c26f","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"a3b8656ba40e9af1","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"d2af0876e7f45a7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fcb92722bb71757b.json b/allure-report/data/test-cases/d2b6a960777edb8f.json similarity index 63% rename from allure-report/data/test-cases/fcb92722bb71757b.json rename to allure-report/data/test-cases/d2b6a960777edb8f.json index c3c0098ef9f..9df3f7adb28 100644 --- a/allure-report/data/test-cases/fcb92722bb71757b.json +++ b/allure-report/data/test-cases/d2b6a960777edb8f.json @@ -1 +1 @@ -{"uid":"fcb92722bb71757b","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":1732764220954,"stop":1732764220955,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220954,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c359ea3a207c31eb","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0}},{"uid":"ae4ebdaea3850cc0","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"8817b6c726fc2884","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"fcb92722bb71757b.json","parameterValues":[]} \ No newline at end of file +{"uid":"d2b6a960777edb8f","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":1732764220954,"stop":1732764220955,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732764220932,"stop":1732764220932,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220954,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1732764220955,"stop":1732764220955,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732764220955,"stop":1732764220955,"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":"Find the first non-consecutive number"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d2b6a960777edb8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d3b84ca939222bc6.json b/allure-report/data/test-cases/d3b84ca939222bc6.json new file mode 100644 index 00000000000..86806b61a0d --- /dev/null +++ b/allure-report/data/test-cases/d3b84ca939222bc6.json @@ -0,0 +1 @@ +{"uid":"d3b84ca939222bc6","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":1732764220545,"stop":1732764220545,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5b904804aa9a6e53.json b/allure-report/data/test-cases/d4260955f91337ec.json similarity index 81% rename from allure-report/data/test-cases/5b904804aa9a6e53.json rename to allure-report/data/test-cases/d4260955f91337ec.json index d1f66c2b1b9..b846d89077e 100644 --- a/allure-report/data/test-cases/5b904804aa9a6e53.json +++ b/allure-report/data/test-cases/d4260955f91337ec.json @@ -1 +1 @@ -{"uid":"5b904804aa9a6e53","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5b904804aa9a6e53.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4260955f91337ec","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/631ed8ca3aead56c.json b/allure-report/data/test-cases/d4597108775e2ebb.json similarity index 63% rename from allure-report/data/test-cases/631ed8ca3aead56c.json rename to allure-report/data/test-cases/d4597108775e2ebb.json index 5ac59c1136a..fc2a324dd71 100644 --- a/allure-report/data/test-cases/631ed8ca3aead56c.json +++ b/allure-report/data/test-cases/d4597108775e2ebb.json @@ -1 +1 @@ -{"uid":"631ed8ca3aead56c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732764220715,"stop":1732764220715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732764220715,"stop":1732764220718,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732764220721,"stop":1732764220721,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"epic","value":"7 kyu"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"15315242cf60389c","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0}},{"uid":"7f0995b9351caed2","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"58bbccd3c8af3c06","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"631ed8ca3aead56c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase","time":{"start":1732764220715,"stop":1732764220715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass n = 1 and verify the output","time":{"start":1732764220715,"stop":1732764220718,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 2 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 4 and verify the output","time":{"start":1732764220718,"stop":1732764220718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 6 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 14 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 32 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 128 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 512 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 514 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 688 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 8197 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 1966 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 134217736 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 140737488355330 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 35184372088896 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass n = 9007199254740991 and verify the output","time":{"start":1732764220719,"stop":1732764220719,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":16,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfPowerOfTwoTestCase::0","time":{"start":1732764220721,"stop":1732764220721,"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":"Calculation"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of powers of 2"},{"name":"epic","value":"7 kyu"},{"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_7.sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d9f95424a336600278a9632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d4597108775e2ebb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/faf400d308fb1d4e.json b/allure-report/data/test-cases/d4662f23ff8e6620.json similarity index 79% rename from allure-report/data/test-cases/faf400d308fb1d4e.json rename to allure-report/data/test-cases/d4662f23ff8e6620.json index e66338b23fd..0e2cde94e50 100644 --- a/allure-report/data/test-cases/faf400d308fb1d4e.json +++ b/allure-report/data/test-cases/d4662f23ff8e6620.json @@ -1 +1 @@ -{"uid":"faf400d308fb1d4e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2696faacdbe9d8c7","name":"stdout","source":"2696faacdbe9d8c7.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"faf400d308fb1d4e.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4662f23ff8e6620","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c9f5f46a27073adb","name":"stdout","source":"c9f5f46a27073adb.txt","type":"text/plain","size":124}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"tag","value":"ARRAYS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Jaden Casing Strings"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"d4662f23ff8e6620.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4eb91d777aea105a.json b/allure-report/data/test-cases/d49eccd60ce84feb.json similarity index 57% rename from allure-report/data/test-cases/4eb91d777aea105a.json rename to allure-report/data/test-cases/d49eccd60ce84feb.json index 456a258d95d..baf4ea1e51f 100644 --- a/allure-report/data/test-cases/4eb91d777aea105a.json +++ b/allure-report/data/test-cases/d49eccd60ce84feb.json @@ -1 +1 @@ -{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732764218860,"stop":1732764218860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aa8525de66192fb3","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0}},{"uid":"a07fccce3e37ee4a","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"f7f7ddd6c717f082","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"4eb91d777aea105a.json","parameterValues":[]} \ No newline at end of file +{"uid":"d49eccd60ce84feb","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/41668c3c4e1a677a.json b/allure-report/data/test-cases/d4bec70d6611b3f1.json similarity index 66% rename from allure-report/data/test-cases/41668c3c4e1a677a.json rename to allure-report/data/test-cases/d4bec70d6611b3f1.json index 3fd7d85265a..144413a1970 100644 --- a/allure-report/data/test-cases/41668c3c4e1a677a.json +++ b/allure-report/data/test-cases/d4bec70d6611b3f1.json @@ -1 +1 @@ -{"uid":"41668c3c4e1a677a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220212,"stop":1732764220212,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764220214,"stop":1732764220214,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ee16b6e353dfd7cd","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1}},{"uid":"3a617c2d20fe6a0a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"741a61f0f9cb4c37","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"41668c3c4e1a677a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764220212,"stop":1732764220212,"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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data (4) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (200) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (-1) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass test data (1291) and verify the output","time":{"start":1732764220213,"stop":1732764220213,"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_SolutionTestCase::0","time":{"start":1732764220214,"stop":1732764220214,"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":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Multiples of 3 or 5"},{"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.multiples_of_3_or_5.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514b92a657cdc65150000006","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},"source":"d4bec70d6611b3f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/950acbfbefb81796.json b/allure-report/data/test-cases/d4ccdeadb2c9dbf3.json similarity index 78% rename from allure-report/data/test-cases/950acbfbefb81796.json rename to allure-report/data/test-cases/d4ccdeadb2c9dbf3.json index d1bad8547e9..87321f3efa5 100644 --- a/allure-report/data/test-cases/950acbfbefb81796.json +++ b/allure-report/data/test-cases/d4ccdeadb2c9dbf3.json @@ -1 +1 @@ -{"uid":"950acbfbefb81796","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":1732428194216,"stop":1732428194216,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"950acbfbefb81796.json","parameterValues":[]} \ No newline at end of file +{"uid":"d4ccdeadb2c9dbf3","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":1732428194216,"stop":1732428194216,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d4f29bba77fd180.json b/allure-report/data/test-cases/d4f29bba77fd180.json deleted file mode 100644 index 1ad34ac4f21..00000000000 --- a/allure-report/data/test-cases/d4f29bba77fd180.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d4f29bba77fd180","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":1732428194567,"stop":1732428194567,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4f29bba77fd180.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with more than 2 'good' in it","time":{"start":1733030101117,"stop":1733030101117,"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_WellTestCase::0","time":{"start":1733030101117,"stop":1733030101117,"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":"tag","value":"REFACTORING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Well of Ideas - Easy Version"},{"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.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"258638d82f4f543b","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0}},{"uid":"13bf02549cf3b6be","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1}},{"uid":"4968a6d06aaa9f9c","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"1a7cac845fe0b74b","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"d518579b8137712e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6bf2acd0a0db42e5.json b/allure-report/data/test-cases/d532fafc0994a83d.json similarity index 86% rename from allure-report/data/test-cases/6bf2acd0a0db42e5.json rename to allure-report/data/test-cases/d532fafc0994a83d.json index fd0da988e1b..b6d080fea5d 100644 --- a/allure-report/data/test-cases/6bf2acd0a0db42e5.json +++ b/allure-report/data/test-cases/d532fafc0994a83d.json @@ -1 +1 @@ -{"uid":"6bf2acd0a0db42e5","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732428195838,"stop":1732428195839,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195838,"stop":1732428195838,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"6bf2acd0a0db42e5.json","parameterValues":[]} \ No newline at end of file +{"uid":"d532fafc0994a83d","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732428195838,"stop":1732428195839,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1732428195832,"stop":1732428195832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1732428195838,"stop":1732428195838,"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_LengthTestCase::0","time":{"start":1732428195840,"stop":1732428195840,"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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"tag","value":"FUNDAMENTALS"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"d532fafc0994a83d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef53249dd3798b49.json b/allure-report/data/test-cases/d56b8598f52532d4.json similarity index 56% rename from allure-report/data/test-cases/ef53249dd3798b49.json rename to allure-report/data/test-cases/d56b8598f52532d4.json index 1464e81df6e..e7f03635e8c 100644 --- a/allure-report/data/test-cases/ef53249dd3798b49.json +++ b/allure-report/data/test-cases/d56b8598f52532d4.json @@ -1 +1 @@ -{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732764221343,"stop":1732764221343,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c7165b4538deb01d","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0}},{"uid":"a586415c7c751146","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"bf68fdf036dd98c9","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"ef53249dd3798b49.json","parameterValues":[]} \ No newline at end of file +{"uid":"d56b8598f52532d4","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1732764221343,"stop":1732764221343,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1732764221329,"stop":1732764221329,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1732764221344,"stop":1732764221344,"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 wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"d56b8598f52532d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ae5dc2ec4f03f9e5.json b/allure-report/data/test-cases/d579d28da21d0458.json similarity index 81% rename from allure-report/data/test-cases/ae5dc2ec4f03f9e5.json rename to allure-report/data/test-cases/d579d28da21d0458.json index d16a20e9f2c..9aaa1cd8ab8 100644 --- a/allure-report/data/test-cases/ae5dc2ec4f03f9e5.json +++ b/allure-report/data/test-cases/d579d28da21d0458.json @@ -1 +1 @@ -{"uid":"ae5dc2ec4f03f9e5","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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":"c5a486abc69fc1fc","name":"stdout","source":"c5a486abc69fc1fc.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ae5dc2ec4f03f9e5.json","parameterValues":[]} \ No newline at end of file +{"uid":"d579d28da21d0458","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724735128805,"stop":1724735128805,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test with all zeroes","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test with positive integers","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3f0b8846373b1989","name":"stdout","source":"3f0b8846373b1989.txt","type":"text/plain","size":130}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GoalsTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"Messi goals function"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f73be6e12baaa5900000d4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d5cb7590517b0cc1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/577d9e765fb39849.json b/allure-report/data/test-cases/d645ef6b4817b107.json similarity index 50% rename from allure-report/data/test-cases/577d9e765fb39849.json rename to allure-report/data/test-cases/d645ef6b4817b107.json index 40fa41e144e..9c7ccc70194 100644 --- a/allure-report/data/test-cases/577d9e765fb39849.json +++ b/allure-report/data/test-cases/d645ef6b4817b107.json @@ -1 +1 @@ -{"uid":"577d9e765fb39849","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"63ceea7fe946ff07","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193914,"stop":1732428193914,"duration":0}},{"uid":"f10852a0a46489bf","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"96ce14353b4f3e49","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"577d9e765fb39849.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c793ab5339736af5.json b/allure-report/data/test-cases/d74e6ece91df2759.json similarity index 80% rename from allure-report/data/test-cases/c793ab5339736af5.json rename to allure-report/data/test-cases/d74e6ece91df2759.json index 89a0c54c9af..dd7c8ebd8bc 100644 --- a/allure-report/data/test-cases/c793ab5339736af5.json +++ b/allure-report/data/test-cases/d74e6ece91df2759.json @@ -1 +1 @@ -{"uid":"c793ab5339736af5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d0bc1ad841243b6a","name":"stdout","source":"d0bc1ad841243b6a.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c793ab5339736af5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f0da0353e68cf34","name":"stdout","source":"8f0da0353e68cf34.txt","type":"text/plain","size":512}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NumberOfSigFigsTestCase::0","time":{"start":1724735129242,"stop":1724735129242,"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":"parentSuite","value":"Beginner"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Significant Figures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.significant_figures.test_number_of_sigfigs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d74e6ece91df2759.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dfae17616fb702cf.json b/allure-report/data/test-cases/d7c080fc06195b6c.json similarity index 79% rename from allure-report/data/test-cases/dfae17616fb702cf.json rename to allure-report/data/test-cases/d7c080fc06195b6c.json index 6ce1b0c9c47..3c5f94724f9 100644 --- a/allure-report/data/test-cases/dfae17616fb702cf.json +++ b/allure-report/data/test-cases/d7c080fc06195b6c.json @@ -1 +1 @@ -{"uid":"dfae17616fb702cf","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732428196400,"stop":1732428196400,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732428196399,"stop":1732428196399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1732428196401,"stop":1732428196401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"dfae17616fb702cf.json","parameterValues":[]} \ No newline at end of file +{"uid":"d7c080fc06195b6c","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732428196400,"stop":1732428196400,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1732428196399,"stop":1732428196399,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1732428196400,"stop":1732428196400,"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_MoveTestCase::0","time":{"start":1732428196401,"stop":1732428196401,"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":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"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.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d7c080fc06195b6c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9246dbe4ecdc42ce.json b/allure-report/data/test-cases/d88ebfa77f8bc285.json similarity index 69% rename from allure-report/data/test-cases/9246dbe4ecdc42ce.json rename to allure-report/data/test-cases/d88ebfa77f8bc285.json index aa8a0cd5f76..b7b0f9da030 100644 --- a/allure-report/data/test-cases/9246dbe4ecdc42ce.json +++ b/allure-report/data/test-cases/d88ebfa77f8bc285.json @@ -1 +1 @@ -{"uid":"9246dbe4ecdc42ce","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":1732764220516,"stop":1732764220516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220515,"stop":1732764220515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1732764220517,"stop":1732764220517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Formatting decimal places #1"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Formatting"},{"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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d56667f6ac1424a3","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0}},{"uid":"4eaed4684cfaee8f","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"8782c11be4532248","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9246dbe4ecdc42ce.json","parameterValues":[]} \ No newline at end of file +{"uid":"d88ebfa77f8bc285","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":1732764220516,"stop":1732764220516,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1732764220515,"stop":1732764220515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1732764220516,"stop":1732764220516,"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_TwoDecimalPlacesTestCase::0","time":{"start":1732764220517,"stop":1732764220517,"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":"Formatting decimal places #1"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"Formatting"},{"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_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641c3f809bf31f008000042","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d88ebfa77f8bc285.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e55f716219844475.json b/allure-report/data/test-cases/d8938caa254e2720.json similarity index 80% rename from allure-report/data/test-cases/e55f716219844475.json rename to allure-report/data/test-cases/d8938caa254e2720.json index 346a82624de..e0c628ca41b 100644 --- a/allure-report/data/test-cases/e55f716219844475.json +++ b/allure-report/data/test-cases/d8938caa254e2720.json @@ -1 +1 @@ -{"uid":"e55f716219844475","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e55f716219844475.json","parameterValues":[]} \ No newline at end of file +{"uid":"d8938caa254e2720","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f6681b778f42e33c.json b/allure-report/data/test-cases/d8a647ffef20d33c.json similarity index 77% rename from allure-report/data/test-cases/f6681b778f42e33c.json rename to allure-report/data/test-cases/d8a647ffef20d33c.json index 1586b2d2b73..08d8dd599fc 100644 --- a/allure-report/data/test-cases/f6681b778f42e33c.json +++ b/allure-report/data/test-cases/d8a647ffef20d33c.json @@ -1 +1 @@ -{"uid":"f6681b778f42e33c","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8d340a810a5e354f","name":"stdout","source":"8d340a810a5e354f.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f6681b778f42e33c.json","parameterValues":[]} \ No newline at end of file +{"uid":"d8a647ffef20d33c","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f4fc65b495fcb88b","name":"stdout","source":"f4fc65b495fcb88b.txt","type":"text/plain","size":1155}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724733474663,"stop":1724733474663,"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":"tag","value":"ARRAYS"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d8a647ffef20d33c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73622414b649e45a.json b/allure-report/data/test-cases/d8c3cab37b2e7dbb.json similarity index 80% rename from allure-report/data/test-cases/73622414b649e45a.json rename to allure-report/data/test-cases/d8c3cab37b2e7dbb.json index b116c58d56e..ea6793dcf35 100644 --- a/allure-report/data/test-cases/73622414b649e45a.json +++ b/allure-report/data/test-cases/d8c3cab37b2e7dbb.json @@ -1 +1 @@ -{"uid":"73622414b649e45a","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bc75ae4e4dd30a2d","name":"stdout","source":"bc75ae4e4dd30a2d.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"73622414b649e45a.json","parameterValues":[]} \ No newline at end of file +{"uid":"d8c3cab37b2e7dbb","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1724735128016,"stop":1724735128016,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/30977e1fdeed6f0a.json b/allure-report/data/test-cases/d9035fa8f853a08a.json similarity index 62% rename from allure-report/data/test-cases/30977e1fdeed6f0a.json rename to allure-report/data/test-cases/d9035fa8f853a08a.json index 0f5b94e2133..8e97ba19d1a 100644 --- a/allure-report/data/test-cases/30977e1fdeed6f0a.json +++ b/allure-report/data/test-cases/d9035fa8f853a08a.json @@ -1 +1 @@ -{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7567c87108e55931","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0}},{"uid":"f6dea82ce819c148","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"801881710b06074","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"30977e1fdeed6f0a.json","parameterValues":[]} \ No newline at end of file +{"uid":"d9035fa8f853a08a","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/946a2bd47c8adfbc.json b/allure-report/data/test-cases/d94530c5ab1a7ba8.json similarity index 81% rename from allure-report/data/test-cases/946a2bd47c8adfbc.json rename to allure-report/data/test-cases/d94530c5ab1a7ba8.json index 521e4f5e578..02578755b82 100644 --- a/allure-report/data/test-cases/946a2bd47c8adfbc.json +++ b/allure-report/data/test-cases/d94530c5ab1a7ba8.json @@ -1 +1 @@ -{"uid":"946a2bd47c8adfbc","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"946a2bd47c8adfbc.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1732428196300,"stop":1732428196300,"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_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"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":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d94530c5ab1a7ba8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a39b53ea962a31f1.json b/allure-report/data/test-cases/d95f3589be6b0bcb.json similarity index 77% rename from allure-report/data/test-cases/a39b53ea962a31f1.json rename to allure-report/data/test-cases/d95f3589be6b0bcb.json index 04bdb722b83..08c3ecbff1d 100644 --- a/allure-report/data/test-cases/a39b53ea962a31f1.json +++ b/allure-report/data/test-cases/d95f3589be6b0bcb.json @@ -1 +1 @@ -{"uid":"a39b53ea962a31f1","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732428193889,"stop":1732428193889,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a39b53ea962a31f1.json","parameterValues":[]} \ No newline at end of file +{"uid":"d95f3589be6b0bcb","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732428193889,"stop":1732428193889,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e0e01cfda157cf01.json b/allure-report/data/test-cases/d9826ef645180f7d.json similarity index 80% rename from allure-report/data/test-cases/e0e01cfda157cf01.json rename to allure-report/data/test-cases/d9826ef645180f7d.json index bb17c8de4de..98795ccb334 100644 --- a/allure-report/data/test-cases/e0e01cfda157cf01.json +++ b/allure-report/data/test-cases/d9826ef645180f7d.json @@ -1 +1 @@ -{"uid":"e0e01cfda157cf01","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6f187ca9e0f038e3","name":"stdout","source":"6f187ca9e0f038e3.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"e0e01cfda157cf01.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f476dbef5564bf84","name":"stdout","source":"f476dbef5564bf84.txt","type":"text/plain","size":272}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1724733472983,"stop":1724733472983,"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":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Simple Pig Latin"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"d9826ef645180f7d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9d827d0af3ba710.json b/allure-report/data/test-cases/d9d827d0af3ba710.json new file mode 100644 index 00000000000..49b0e24f541 --- /dev/null +++ b/allure-report/data/test-cases/d9d827d0af3ba710.json @@ -0,0 +1 @@ +{"uid":"d9d827d0af3ba710","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/c31558e9c7981ac7.json b/allure-report/data/test-cases/da018a416a2e5798.json similarity index 61% rename from allure-report/data/test-cases/c31558e9c7981ac7.json rename to allure-report/data/test-cases/da018a416a2e5798.json index 951f4c11330..578c5d4a9e1 100644 --- a/allure-report/data/test-cases/c31558e9c7981ac7.json +++ b/allure-report/data/test-cases/da018a416a2e5798.json @@ -1 +1 @@ -{"uid":"c31558e9c7981ac7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1732764221310,"stop":1732764221310,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f1c17d8d31f590b0","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0}},{"uid":"f5725ff55458d02a","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"210d6cbbe1051e7b","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","NUMBERS"]},"source":"c31558e9c7981ac7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221308,"stop":1732764221308,"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_EnoughTestCase::0","time":{"start":1732764221310,"stop":1732764221310,"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":"Will there be enough space?"},{"name":"feature","value":"Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"da018a416a2e5798.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da0fce94db2e25fb.json b/allure-report/data/test-cases/da0fce94db2e25fb.json new file mode 100644 index 00000000000..48efcc621c9 --- /dev/null +++ b/allure-report/data/test-cases/da0fce94db2e25fb.json @@ -0,0 +1 @@ +{"uid":"da0fce94db2e25fb","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1732764220494,"stop":1732764220494,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220494,"stop":1732764220494,"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_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"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":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"da0fce94db2e25fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d85f39401914c16.json b/allure-report/data/test-cases/da31e11488208aed.json similarity index 74% rename from allure-report/data/test-cases/8d85f39401914c16.json rename to allure-report/data/test-cases/da31e11488208aed.json index 2a6c186aa82..dbde5b3dfec 100644 --- a/allure-report/data/test-cases/8d85f39401914c16.json +++ b/allure-report/data/test-cases/da31e11488208aed.json @@ -1 +1 @@ -{"uid":"8d85f39401914c16","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d1599295a3f41ee0","name":"stdout","source":"d1599295a3f41ee0.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"8d85f39401914c16.json","parameterValues":[]} \ No newline at end of file +{"uid":"da31e11488208aed","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bca9ba5488466979.json b/allure-report/data/test-cases/da622740411a3e7a.json similarity index 61% rename from allure-report/data/test-cases/bca9ba5488466979.json rename to allure-report/data/test-cases/da622740411a3e7a.json index 2ea7881bfc9..9fbb3b0ba7a 100644 --- a/allure-report/data/test-cases/bca9ba5488466979.json +++ b/allure-report/data/test-cases/da622740411a3e7a.json @@ -1 +1 @@ -{"uid":"bca9ba5488466979","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"88503943247ae8d5","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0}},{"uid":"d35364e5c638d89f","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"814ad2f745782ad7","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"bca9ba5488466979.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test -1","time":{"start":1732764220804,"stop":1732764220804,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"da622740411a3e7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da6f4b236162247c.json b/allure-report/data/test-cases/da6f4b236162247c.json new file mode 100644 index 00000000000..5f8507d4cd4 --- /dev/null +++ b/allure-report/data/test-cases/da6f4b236162247c.json @@ -0,0 +1 @@ +{"uid":"da6f4b236162247c","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/da807d1d651bf07b.json b/allure-report/data/test-cases/da807d1d651bf07b.json new file mode 100644 index 00000000000..851931dc771 --- /dev/null +++ b/allure-report/data/test-cases/da807d1d651bf07b.json @@ -0,0 +1 @@ +{"uid":"da807d1d651bf07b","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":1733030099317,"stop":1733030099317,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1733030099317,"stop":1733030099317,"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_LetterFrequencyTestCase::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":"tag","value":"UTILITIES"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc354bf003c2f263","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0}},{"uid":"66dedca947415b6c","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0}},{"uid":"c1dfde6c70281ff2","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"5b87063c55d646fa","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":"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"da807d1d651bf07b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ed5e03fb846420f.json b/allure-report/data/test-cases/da87c785a6ba7322.json similarity index 73% rename from allure-report/data/test-cases/7ed5e03fb846420f.json rename to allure-report/data/test-cases/da87c785a6ba7322.json index f05003e0332..ce7a432f440 100644 --- a/allure-report/data/test-cases/7ed5e03fb846420f.json +++ b/allure-report/data/test-cases/da87c785a6ba7322.json @@ -1 +1 @@ -{"uid":"7ed5e03fb846420f","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"30e865fe73fa5b27","name":"stdout","source":"30e865fe73fa5b27.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"7ed5e03fb846420f.json","parameterValues":[]} \ No newline at end of file +{"uid":"da87c785a6ba7322","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/197e00510d3eb166.json b/allure-report/data/test-cases/daa21ce701ca0a19.json similarity index 58% rename from allure-report/data/test-cases/197e00510d3eb166.json rename to allure-report/data/test-cases/daa21ce701ca0a19.json index 2d2fd53ad3a..e348ceffaff 100644 --- a/allure-report/data/test-cases/197e00510d3eb166.json +++ b/allure-report/data/test-cases/daa21ce701ca0a19.json @@ -1 +1 @@ -{"uid":"197e00510d3eb166","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9799e3f6110c5a32","name":"stdout","source":"9799e3f6110c5a32.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"197e00510d3eb166.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","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 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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1724735127157,"stop":1724735127157,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1724735127157,"stop":1724735127157,"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":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2f1b1cb1ae72af","name":"stdout","source":"c2f1b1cb1ae72af.txt","type":"text/plain","size":896}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1724735127172,"stop":1724735127172,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"EXPRESSIONS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"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.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"daa21ce701ca0a19.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/720b65d3a7d8ec34.json b/allure-report/data/test-cases/db31ba951eab96a9.json similarity index 69% rename from allure-report/data/test-cases/720b65d3a7d8ec34.json rename to allure-report/data/test-cases/db31ba951eab96a9.json index e231a11ad19..7f8d62820a2 100644 --- a/allure-report/data/test-cases/720b65d3a7d8ec34.json +++ b/allure-report/data/test-cases/db31ba951eab96a9.json @@ -1 +1 @@ -{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732764218877,"stop":1732764218877,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase::0","time":{"start":1732764218878,"stop":1732764218878,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c948f5411c74f4a1","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0}},{"uid":"8bf0e4ddc17f51c8","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"f253bf40e74f545d","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"720b65d3a7d8ec34.json","parameterValues":[]} \ No newline at end of file +{"uid":"db31ba951eab96a9","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1732764218877,"stop":1732764218877,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AllFibonacciNumbersTestCase","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Run all_fibonacci_numbers function and verify the result","time":{"start":1732764218877,"stop":1732764218877,"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_AllFibonacciNumbersTestCase::0","time":{"start":1732764218878,"stop":1732764218878,"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":"story","value":"Fibonacci Streaming"},{"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.fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55695bc4f75bbaea5100016b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"db31ba951eab96a9.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NumericalsTestCase","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 Testing 'numericals' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass the string and verify the output","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass the string and verify the output","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_NumericalsTestCase::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":"parentSuite","value":"Novice"},{"name":"tag","value":"PUZZLES"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Numericals of a String"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"PERFORMANCE"},{"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_6.numericals_of_string.test_numericals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5b4070144d7d8bbfe7000001","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6410dd1650b4faab","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0}},{"uid":"81fc21ff964037a2","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0}},{"uid":"30782fdca988a45e","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"75b2a36530573b63","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},"source":"db9b592f660c3c08.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f801b2352cd357fc.json b/allure-report/data/test-cases/dba029f7988869ef.json similarity index 85% rename from allure-report/data/test-cases/f801b2352cd357fc.json rename to allure-report/data/test-cases/dba029f7988869ef.json index c4bf7e162f4..5b5b2cc24df 100644 --- a/allure-report/data/test-cases/f801b2352cd357fc.json +++ b/allure-report/data/test-cases/dba029f7988869ef.json @@ -1 +1 @@ -{"uid":"f801b2352cd357fc","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3aa04a43be2f48f8","name":"stdout","source":"3aa04a43be2f48f8.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f801b2352cd357fc.json","parameterValues":[]} \ No newline at end of file +{"uid":"dba029f7988869ef","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":1724733474804,"stop":1724733474804,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a03148d44cb41cd1","name":"stdout","source":"a03148d44cb41cd1.txt","type":"text/plain","size":55}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"dba029f7988869ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e3c99258a0c64df.json b/allure-report/data/test-cases/dbc901f56e1e91ea.json similarity index 80% rename from allure-report/data/test-cases/9e3c99258a0c64df.json rename to allure-report/data/test-cases/dbc901f56e1e91ea.json index 37aae3e06cf..8d76e1ddc9e 100644 --- a/allure-report/data/test-cases/9e3c99258a0c64df.json +++ b/allure-report/data/test-cases/dbc901f56e1e91ea.json @@ -1 +1 @@ -{"uid":"9e3c99258a0c64df","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"485b7a7482b5d8a7","name":"stdout","source":"485b7a7482b5d8a7.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"9e3c99258a0c64df.json","parameterValues":[]} \ No newline at end of file +{"uid":"dbc901f56e1e91ea","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data #1 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #2 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #3 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #4 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data #5 and verify the output","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f40eb1a37e76915b","name":"stdout","source":"f40eb1a37e76915b.txt","type":"text/plain","size":352}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FlattenTestCase::0","time":{"start":1724733472780,"stop":1724733472780,"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":"flatten()"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"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.flatten.test_flatten"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/513fa1d75e4297ba38000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","ARRAYS"]},"source":"dbc901f56e1e91ea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dbd543834c91eda6.json b/allure-report/data/test-cases/dbd543834c91eda6.json new file mode 100644 index 00000000000..0ac10cc366f --- /dev/null +++ b/allure-report/data/test-cases/dbd543834c91eda6.json @@ -0,0 +1 @@ +{"uid":"dbd543834c91eda6","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e78a552d574aad16.json b/allure-report/data/test-cases/dbe420147c1da53b.json similarity index 83% rename from allure-report/data/test-cases/e78a552d574aad16.json rename to allure-report/data/test-cases/dbe420147c1da53b.json index 9a4643c4b95..6dc10586f99 100644 --- a/allure-report/data/test-cases/e78a552d574aad16.json +++ b/allure-report/data/test-cases/dbe420147c1da53b.json @@ -1 +1 @@ -{"uid":"e78a552d574aad16","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732428194472,"stop":1732428194472,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"e78a552d574aad16.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194471,"stop":1732428194471,"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_AlphanumericTestCase::0","time":{"start":1732428194472,"stop":1732428194472,"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":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"BUGS"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"dbe420147c1da53b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1dd416b71393e4f8.json b/allure-report/data/test-cases/dbfb622c1ebb235b.json similarity index 87% rename from allure-report/data/test-cases/1dd416b71393e4f8.json rename to allure-report/data/test-cases/dbfb622c1ebb235b.json index 4dee2b797c2..3335151c11e 100644 --- a/allure-report/data/test-cases/1dd416b71393e4f8.json +++ b/allure-report/data/test-cases/dbfb622c1ebb235b.json @@ -1 +1 @@ -{"uid":"1dd416b71393e4f8","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1dd416b71393e4f8.json","parameterValues":[]} \ No newline at end of file +{"uid":"dbfb622c1ebb235b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"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_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"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":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dbfb622c1ebb235b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ceb0c3e5ec48d975.json b/allure-report/data/test-cases/dc885b646bda3346.json similarity index 82% rename from allure-report/data/test-cases/ceb0c3e5ec48d975.json rename to allure-report/data/test-cases/dc885b646bda3346.json index 29c1a341b4e..c21e2f27293 100644 --- a/allure-report/data/test-cases/ceb0c3e5ec48d975.json +++ b/allure-report/data/test-cases/dc885b646bda3346.json @@ -1 +1 @@ -{"uid":"ceb0c3e5ec48d975","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":1732428196174,"stop":1732428196175,"duration":1},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ceb0c3e5ec48d975.json","parameterValues":[]} \ No newline at end of file +{"uid":"dc885b646bda3346","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":1732428196174,"stop":1732428196175,"duration":1},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1732428196174,"stop":1732428196174,"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_FirstNonConsecutiveTestCase::0","time":{"start":1732428196180,"stop":1732428196180,"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":"Find the first non-consecutive number"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"dc885b646bda3346.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dc89f010c8fc632.json b/allure-report/data/test-cases/dc89f010c8fc632.json deleted file mode 100644 index eeed4ec8562..00000000000 --- a/allure-report/data/test-cases/dc89f010c8fc632.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"dc89f010c8fc632","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"dc89f010c8fc632.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dc0ca62f1db510f.json b/allure-report/data/test-cases/dcbe3576bc7fc285.json similarity index 81% rename from allure-report/data/test-cases/9dc0ca62f1db510f.json rename to allure-report/data/test-cases/dcbe3576bc7fc285.json index 939bbce6a9f..74704cf76a6 100644 --- a/allure-report/data/test-cases/9dc0ca62f1db510f.json +++ b/allure-report/data/test-cases/dcbe3576bc7fc285.json @@ -1 +1 @@ -{"uid":"9dc0ca62f1db510f","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6a40280d8ceb16cd","name":"stdout","source":"6a40280d8ceb16cd.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"9dc0ca62f1db510f.json","parameterValues":[]} \ No newline at end of file +{"uid":"dcbe3576bc7fc285","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1724735129055,"stop":1724735129055,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bf99ecdb396f2260","name":"stdout","source":"bf99ecdb396f2260.txt","type":"text/plain","size":82}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DisemvowelTestCase::0","time":{"start":1724735129055,"stop":1724735129055,"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":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Disemvowel Trolls"},{"name":"feature","value":"String"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.disemvowel_trolls.test_disemvowel_trolls"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"dcbe3576bc7fc285.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dee6c3b3d0dc73e4.json b/allure-report/data/test-cases/ddab479d47dfd717.json similarity index 74% rename from allure-report/data/test-cases/dee6c3b3d0dc73e4.json rename to allure-report/data/test-cases/ddab479d47dfd717.json index eaea2181823..408bc8329b4 100644 --- a/allure-report/data/test-cases/dee6c3b3d0dc73e4.json +++ b/allure-report/data/test-cases/ddab479d47dfd717.json @@ -1 +1 @@ -{"uid":"dee6c3b3d0dc73e4","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":11,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dee6c3b3d0dc73e4.json","parameterValues":[]} \ No newline at end of file +{"uid":"ddab479d47dfd717","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Create a random list","time":{"start":1724733474397,"stop":1724733474397,"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}],"attachments":[],"parameters":[],"stepsCount":11,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ddab479d47dfd717.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de0a077377bec456.json b/allure-report/data/test-cases/de0a077377bec456.json deleted file mode 100644 index 6012019238a..00000000000 --- a/allure-report/data/test-cases/de0a077377bec456.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"de0a077377bec456","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a96837b21492cfc6","name":"stdout","source":"a96837b21492cfc6.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"de0a077377bec456.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c4d9587a3ff2d229.json b/allure-report/data/test-cases/de63ba79b87d23ab.json similarity index 79% rename from allure-report/data/test-cases/c4d9587a3ff2d229.json rename to allure-report/data/test-cases/de63ba79b87d23ab.json index d82ffdbbf92..039f3c39a1e 100644 --- a/allure-report/data/test-cases/c4d9587a3ff2d229.json +++ b/allure-report/data/test-cases/de63ba79b87d23ab.json @@ -1 +1 @@ -{"uid":"c4d9587a3ff2d229","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c4d9587a3ff2d229.json","parameterValues":[]} \ No newline at end of file +{"uid":"de63ba79b87d23ab","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":1724733474397,"stop":1724733474397,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724733474397,"stop":1724733474397,"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_RemoveSmallestTestCase::0","time":{"start":1724733474397,"stop":1724733474397,"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":"7 kyu"},{"name":"story","value":"The museum of incredible dull things"},{"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.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"de63ba79b87d23ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b5105f2c1baa9ed.json b/allure-report/data/test-cases/de7442e95e2bcada.json similarity index 76% rename from allure-report/data/test-cases/9b5105f2c1baa9ed.json rename to allure-report/data/test-cases/de7442e95e2bcada.json index 72fe105264d..9940e69f162 100644 --- a/allure-report/data/test-cases/9b5105f2c1baa9ed.json +++ b/allure-report/data/test-cases/de7442e95e2bcada.json @@ -1 +1 @@ -{"uid":"9b5105f2c1baa9ed","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"636126aa0fb68ef3","name":"stdout","source":"636126aa0fb68ef3.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9b5105f2c1baa9ed.json","parameterValues":[]} \ No newline at end of file +{"uid":"de7442e95e2bcada","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a892fb7f4ca8f546","name":"stdout","source":"a892fb7f4ca8f546.txt","type":"text/plain","size":281}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"de7442e95e2bcada.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/497e27a7f74365e8.json b/allure-report/data/test-cases/de75cf0cb11d4a8a.json similarity index 83% rename from allure-report/data/test-cases/497e27a7f74365e8.json rename to allure-report/data/test-cases/de75cf0cb11d4a8a.json index d06cb04226a..d69ee93fa3a 100644 --- a/allure-report/data/test-cases/497e27a7f74365e8.json +++ b/allure-report/data/test-cases/de75cf0cb11d4a8a.json @@ -1 +1 @@ -{"uid":"497e27a7f74365e8","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e255c73086be3d07","name":"stdout","source":"e255c73086be3d07.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"497e27a7f74365e8.json","parameterValues":[]} \ No newline at end of file +{"uid":"de75cf0cb11d4a8a","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/be4d78eb60a06aeb.json b/allure-report/data/test-cases/defdbaa3c0a6eace.json similarity index 81% rename from allure-report/data/test-cases/be4d78eb60a06aeb.json rename to allure-report/data/test-cases/defdbaa3c0a6eace.json index 50b1f17c354..7807a693b8c 100644 --- a/allure-report/data/test-cases/be4d78eb60a06aeb.json +++ b/allure-report/data/test-cases/defdbaa3c0a6eace.json @@ -1 +1 @@ -{"uid":"be4d78eb60a06aeb","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":1732428195930,"stop":1732428195933,"duration":3},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732428195930,"stop":1732428195932,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"be4d78eb60a06aeb.json","parameterValues":[]} \ No newline at end of file +{"uid":"defdbaa3c0a6eace","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":1732428195930,"stop":1732428195933,"duration":3},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list with one element only","time":{"start":1732428195930,"stop":1732428195932,"duration":2},"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_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"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":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"defdbaa3c0a6eace.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31a691fa5a56c905.json b/allure-report/data/test-cases/df6ed9e3e14c891a.json similarity index 85% rename from allure-report/data/test-cases/31a691fa5a56c905.json rename to allure-report/data/test-cases/df6ed9e3e14c891a.json index fd260f1806b..ece4917203e 100644 --- a/allure-report/data/test-cases/31a691fa5a56c905.json +++ b/allure-report/data/test-cases/df6ed9e3e14c891a.json @@ -1 +1 @@ -{"uid":"31a691fa5a56c905","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a8645f795d532c99","name":"stdout","source":"a8645f795d532c99.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"31a691fa5a56c905.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a156897cab59d4a9","name":"stdout","source":"a156897cab59d4a9.txt","type":"text/plain","size":392}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::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":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"SEARCH"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First non-repeating character"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"df6ed9e3e14c891a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df9a9f68276bbb84.json b/allure-report/data/test-cases/df9a9f68276bbb84.json deleted file mode 100644 index a58840a7a07..00000000000 --- a/allure-report/data/test-cases/df9a9f68276bbb84.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"df9a9f68276bbb84","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter hours and verify the output","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e22a14740da9552","name":"stdout","source":"e22a14740da9552.txt","type":"text/plain","size":233}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_KeepHydratedTestCase::0","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"story","value":"Keep Hydrated!"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_hydrated.test_keep_hydrated"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/582cb0224e56e068d800003c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"df9a9f68276bbb84.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13c5e35ef3c791a0.json b/allure-report/data/test-cases/dfb2b5c458a3460e.json similarity index 87% rename from allure-report/data/test-cases/13c5e35ef3c791a0.json rename to allure-report/data/test-cases/dfb2b5c458a3460e.json index 5a3e2eb6500..7f2f817aef5 100644 --- a/allure-report/data/test-cases/13c5e35ef3c791a0.json +++ b/allure-report/data/test-cases/dfb2b5c458a3460e.json @@ -1 +1 @@ -{"uid":"13c5e35ef3c791a0","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"13c5e35ef3c791a0.json","parameterValues":[]} \ No newline at end of file +{"uid":"dfb2b5c458a3460e","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/aea343086c8abd68.json b/allure-report/data/test-cases/e032c4a87bedaab7.json similarity index 78% rename from allure-report/data/test-cases/aea343086c8abd68.json rename to allure-report/data/test-cases/e032c4a87bedaab7.json index 558b9c12f27..181f5c4ff6a 100644 --- a/allure-report/data/test-cases/aea343086c8abd68.json +++ b/allure-report/data/test-cases/e032c4a87bedaab7.json @@ -1 +1 @@ -{"uid":"aea343086c8abd68","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aea343086c8abd68.json","parameterValues":[]} \ No newline at end of file +{"uid":"e032c4a87bedaab7","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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/e0d2f09c0da8121.json b/allure-report/data/test-cases/e0d2f09c0da8121.json deleted file mode 100644 index 3d99e24f706..00000000000 --- a/allure-report/data/test-cases/e0d2f09c0da8121.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e0d2f09c0da8121","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2c51ebffe286fde1","name":"stdout","source":"2c51ebffe286fde1.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e0d2f09c0da8121.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0dd8dfaed76aa75.json b/allure-report/data/test-cases/e0dd8dfaed76aa75.json new file mode 100644 index 00000000000..8fc13401141 --- /dev/null +++ b/allure-report/data/test-cases/e0dd8dfaed76aa75.json @@ -0,0 +1 @@ +{"uid":"e0dd8dfaed76aa75","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1733030100497,"stop":1733030100497,"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_LengthTestCase::0","time":{"start":1733030100497,"stop":1733030100497,"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":"feature","value":"Lists"},{"name":"story","value":"Fun with lists: length"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"31754715fc04b029","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0}},{"uid":"2f5a6152612f841f","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1}},{"uid":"8b09bdc5a519a070","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"f0006f98d015ae52","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"e0dd8dfaed76aa75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0013817978e9f1b.json b/allure-report/data/test-cases/e15a7b3e54da206a.json similarity index 79% rename from allure-report/data/test-cases/a0013817978e9f1b.json rename to allure-report/data/test-cases/e15a7b3e54da206a.json index 9453c4f1210..cd29d69a2a3 100644 --- a/allure-report/data/test-cases/a0013817978e9f1b.json +++ b/allure-report/data/test-cases/e15a7b3e54da206a.json @@ -1 +1 @@ -{"uid":"a0013817978e9f1b","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"94063c17619b52a4","name":"stdout","source":"94063c17619b52a4.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a0013817978e9f1b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e184ca1912266ffb.json b/allure-report/data/test-cases/e184ca1912266ffb.json new file mode 100644 index 00000000000..10459710390 --- /dev/null +++ b/allure-report/data/test-cases/e184ca1912266ffb.json @@ -0,0 +1 @@ +{"uid":"e184ca1912266ffb","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":[{"uid":"5538d98488e22a1","name":"stdout","source":"5538d98488e22a1.txt","type":"text/plain","size":556}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase::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":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"Is it a palindrome?"},{"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.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e184ca1912266ffb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/764219a087e938f.json b/allure-report/data/test-cases/e186908da5e6d7c.json similarity index 82% rename from allure-report/data/test-cases/764219a087e938f.json rename to allure-report/data/test-cases/e186908da5e6d7c.json index 9bac35973dd..46431ec3f8a 100644 --- a/allure-report/data/test-cases/764219a087e938f.json +++ b/allure-report/data/test-cases/e186908da5e6d7c.json @@ -1 +1 @@ -{"uid":"764219a087e938f","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"764219a087e938f.json","parameterValues":[]} \ No newline at end of file +{"uid":"e186908da5e6d7c","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724735129352,"stop":1724735129352,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"0 is a square number","time":{"start":1724735129367,"stop":1724735129367,"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_YouAreSquareTestCase::0","time":{"start":1724735129367,"stop":1724735129367,"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":"MATH"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"story","value":"You're a square"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"e186908da5e6d7c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40a0fe54277654cc.json b/allure-report/data/test-cases/e1aa1981a2c5874d.json similarity index 78% rename from allure-report/data/test-cases/40a0fe54277654cc.json rename to allure-report/data/test-cases/e1aa1981a2c5874d.json index 1e15ec0e4c3..c7ae1a613ce 100644 --- a/allure-report/data/test-cases/40a0fe54277654cc.json +++ b/allure-report/data/test-cases/e1aa1981a2c5874d.json @@ -1 +1 @@ -{"uid":"40a0fe54277654cc","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5f030da14b8e67d2","name":"stdout","source":"5f030da14b8e67d2.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"40a0fe54277654cc.json","parameterValues":[]} \ No newline at end of file +{"uid":"e1aa1981a2c5874d","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2da97da2ac2c9bbd.json b/allure-report/data/test-cases/e1b199f4400527d4.json similarity index 79% rename from allure-report/data/test-cases/2da97da2ac2c9bbd.json rename to allure-report/data/test-cases/e1b199f4400527d4.json index 12e420fcac1..c10e29690c5 100644 --- a/allure-report/data/test-cases/2da97da2ac2c9bbd.json +++ b/allure-report/data/test-cases/e1b199f4400527d4.json @@ -1 +1 @@ -{"uid":"2da97da2ac2c9bbd","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b7eae48ecc824334","name":"stdout","source":"b7eae48ecc824334.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2da97da2ac2c9bbd.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/a7599be0f5459a3d.json b/allure-report/data/test-cases/e1fc0b63790bda69.json similarity index 81% rename from allure-report/data/test-cases/a7599be0f5459a3d.json rename to allure-report/data/test-cases/e1fc0b63790bda69.json index c6f740737a8..36b2b726dea 100644 --- a/allure-report/data/test-cases/a7599be0f5459a3d.json +++ b/allure-report/data/test-cases/e1fc0b63790bda69.json @@ -1 +1 @@ -{"uid":"a7599be0f5459a3d","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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":"85813043366b6b90","name":"stdout","source":"85813043366b6b90.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a7599be0f5459a3d.json","parameterValues":[]} \ No newline at end of file +{"uid":"e1fc0b63790bda69","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f5f071e3b309d77","name":"stdout","source":"f5f071e3b309d77.txt","type":"text/plain","size":510}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlternatingCaseTestCase::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":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.alternating_case.test_alternating_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56efc695740d30f963000557/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e21d0927a22c6c46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1938d829429abf54.json b/allure-report/data/test-cases/e28dd76561e769e2.json similarity index 75% rename from allure-report/data/test-cases/1938d829429abf54.json rename to allure-report/data/test-cases/e28dd76561e769e2.json index 073c1edef51..80b21bc7679 100644 --- a/allure-report/data/test-cases/1938d829429abf54.json +++ b/allure-report/data/test-cases/e28dd76561e769e2.json @@ -1 +1 @@ -{"uid":"1938d829429abf54","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e1032190833aaac7","name":"stdout","source":"e1032190833aaac7.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1938d829429abf54.json","parameterValues":[]} \ No newline at end of file +{"uid":"e28dd76561e769e2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars only","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7ce02846f9ac9e3d","name":"stdout","source":"7ce02846f9ac9e3d.txt","type":"text/plain","size":36}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e28dd76561e769e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed0b0c9c45304a0b.json b/allure-report/data/test-cases/e298eeaddede77ad.json similarity index 86% rename from allure-report/data/test-cases/ed0b0c9c45304a0b.json rename to allure-report/data/test-cases/e298eeaddede77ad.json index b76b03be4d7..beba610262d 100644 --- a/allure-report/data/test-cases/ed0b0c9c45304a0b.json +++ b/allure-report/data/test-cases/e298eeaddede77ad.json @@ -1 +1 @@ -{"uid":"ed0b0c9c45304a0b","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732428195716,"stop":1732428195716,"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732428195715,"stop":1732428195715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase::0","time":{"start":1732428195717,"stop":1732428195717,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Your order, please"},{"name":"subSuite","value":"Unit Tests"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"ed0b0c9c45304a0b.json","parameterValues":[]} \ No newline at end of file +{"uid":"e298eeaddede77ad","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732428195716,"stop":1732428195716,"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OrderTestCase","time":{"start":1732428195715,"stop":1732428195715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a string and verify the expected output vs actual result","time":{"start":1732428195716,"stop":1732428195716,"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_OrderTestCase::0","time":{"start":1732428195717,"stop":1732428195717,"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":"Your order, please"},{"name":"subSuite","value":"Unit Tests"},{"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.your_order_please.test_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55c45be3b2079eccff00010f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"e298eeaddede77ad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e2a8e239adf783da.json b/allure-report/data/test-cases/e2a8e239adf783da.json deleted file mode 100644 index cd2f6668300..00000000000 --- a/allure-report/data/test-cases/e2a8e239adf783da.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e2a8e239adf783da","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3d868139d71d5f7","name":"stdout","source":"b3d868139d71d5f7.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e2a8e239adf783da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e71e34228180c1c.json b/allure-report/data/test-cases/e3e2f391aab3cb96.json similarity index 59% rename from allure-report/data/test-cases/9e71e34228180c1c.json rename to allure-report/data/test-cases/e3e2f391aab3cb96.json index 5076d0f268f..052517f779f 100644 --- a/allure-report/data/test-cases/9e71e34228180c1c.json +++ b/allure-report/data/test-cases/e3e2f391aab3cb96.json @@ -1 +1 @@ -{"uid":"9e71e34228180c1c","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":1732764220822,"stop":1732764220823,"duration":1},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732764220823,"stop":1732764220823,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b9d60ed71764b7f4","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0}},{"uid":"35f4051adfa3517","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"6aeb83ca0df8b3d8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"9e71e34228180c1c.json","parameterValues":[]} \ No newline at end of file +{"uid":"e3e2f391aab3cb96","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":1732764220822,"stop":1732764220823,"duration":1},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732764220786,"stop":1732764220786,"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 3","time":{"start":1732764220823,"stop":1732764220823,"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_YouAreSquareTestCase::0","time":{"start":1732764220829,"stop":1732764220829,"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":"Square Calculation"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"e3e2f391aab3cb96.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d493d526198a7a0a.json b/allure-report/data/test-cases/e417d815465280e9.json similarity index 80% rename from allure-report/data/test-cases/d493d526198a7a0a.json rename to allure-report/data/test-cases/e417d815465280e9.json index 2affd12f558..49423617dbe 100644 --- a/allure-report/data/test-cases/d493d526198a7a0a.json +++ b/allure-report/data/test-cases/e417d815465280e9.json @@ -1 +1 @@ -{"uid":"d493d526198a7a0a","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"d493d526198a7a0a.json","parameterValues":[]} \ No newline at end of file +{"uid":"e417d815465280e9","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1732428196307,"stop":1732428196307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1732428196307,"stop":1732428196307,"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_LogicalCalculatorTestCase::0","time":{"start":1732428196313,"stop":1732428196313,"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":"Logical Calculator"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_8.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e417d815465280e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5c9e062133dbbbb.json b/allure-report/data/test-cases/e427ef86cabe9ddd.json similarity index 57% rename from allure-report/data/test-cases/f5c9e062133dbbbb.json rename to allure-report/data/test-cases/e427ef86cabe9ddd.json index 57095b98e9e..056116d9be7 100644 --- a/allure-report/data/test-cases/f5c9e062133dbbbb.json +++ b/allure-report/data/test-cases/e427ef86cabe9ddd.json @@ -1 +1 @@ -{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Test Potion class that mix between 2 RGB colors.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732764220267,"stop":1732764220267,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77a9a3d99a741f47","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0}},{"uid":"79e5a850abe86297","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"111dbc365b1f3e78","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"f5c9e062133dbbbb.json","parameterValues":[]} \ No newline at end of file +{"uid":"e427ef86cabe9ddd","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeUpperCaseTestCase","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass lower case string and verify the output","time":{"start":1733030101007,"stop":1733030101007,"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_MakeUpperCaseTestCase::0","time":{"start":1733030101007,"stop":1733030101007,"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":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"MakeUpperCase"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.make_upper_case.test_make_upper_case"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a0556c7cb1f31ab3000ad7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9bb51a042d358695","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0}},{"uid":"705f3a50d2317813","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0}},{"uid":"94a0f5c0bb41d73c","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"8dc2c9fe3450d5a4","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"e42b69525abdede6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e4473b95f40f5c92.json b/allure-report/data/test-cases/e4473b95f40f5c92.json new file mode 100644 index 00000000000..ec03fd40a63 --- /dev/null +++ b/allure-report/data/test-cases/e4473b95f40f5c92.json @@ -0,0 +1 @@ +{"uid":"e4473b95f40f5c92","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":1733030100528,"stop":1733030100528,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple negative test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"suite","value":"Data Structures"},{"name":"story","value":"Jaden Casing Strings"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"520c156ef3917d19","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0}},{"uid":"7d5b1a2ffe0a970a","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0}},{"uid":"5c8e94c26f7e775d","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"a8ceda5e3158297c","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":"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"e4473b95f40f5c92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c03eb686eb3e5a89.json b/allure-report/data/test-cases/e463bf406b88f537.json similarity index 72% rename from allure-report/data/test-cases/c03eb686eb3e5a89.json rename to allure-report/data/test-cases/e463bf406b88f537.json index debc7011b52..b9f1407f715 100644 --- a/allure-report/data/test-cases/c03eb686eb3e5a89.json +++ b/allure-report/data/test-cases/e463bf406b88f537.json @@ -1 +1 @@ -{"uid":"c03eb686eb3e5a89","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"349072694382d10e","name":"stdout","source":"349072694382d10e.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c03eb686eb3e5a89.json","parameterValues":[]} \ No newline at end of file +{"uid":"e463bf406b88f537","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":1724733474772,"stop":1724733474772,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"604a50ef60eddbca","name":"stdout","source":"604a50ef60eddbca.txt","type":"text/plain","size":480}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1724733474772,"stop":1724733474772,"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":"Is your period late"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Date"},{"name":"tag","value":"FUNDAMENTALS"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"e463bf406b88f537.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/582aa68275dac68e.json b/allure-report/data/test-cases/e49d46057090e83e.json similarity index 75% rename from allure-report/data/test-cases/582aa68275dac68e.json rename to allure-report/data/test-cases/e49d46057090e83e.json index ed57e507953..4294fd56fb4 100644 --- a/allure-report/data/test-cases/582aa68275dac68e.json +++ b/allure-report/data/test-cases/e49d46057090e83e.json @@ -1 +1 @@ -{"uid":"582aa68275dac68e","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing pop method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"57a50be8b38a35c0","name":"stdout","source":"57a50be8b38a35c0.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"582aa68275dac68e.json","parameterValues":[]} \ No newline at end of file +{"uid":"e49d46057090e83e","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1531ff5e4d5380e4.json b/allure-report/data/test-cases/e50290ceef277be1.json similarity index 81% rename from allure-report/data/test-cases/1531ff5e4d5380e4.json rename to allure-report/data/test-cases/e50290ceef277be1.json index dd8b02a1303..430c73eccb7 100644 --- a/allure-report/data/test-cases/1531ff5e4d5380e4.json +++ b/allure-report/data/test-cases/e50290ceef277be1.json @@ -1 +1 @@ -{"uid":"1531ff5e4d5380e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"1531ff5e4d5380e4.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 25","time":{"start":1724733474522,"stop":1724733474522,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"e50290ceef277be1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89d5ee585c13bf38.json b/allure-report/data/test-cases/e50cfef6d8bb4879.json similarity index 64% rename from allure-report/data/test-cases/89d5ee585c13bf38.json rename to allure-report/data/test-cases/e50cfef6d8bb4879.json index b31455e25e6..2f4fe831be5 100644 --- a/allure-report/data/test-cases/89d5ee585c13bf38.json +++ b/allure-report/data/test-cases/e50cfef6d8bb4879.json @@ -1 +1 @@ -{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220499,"stop":1732764220499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2ee59d9a8c304f3b","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0}},{"uid":"df5176bbed48ed91","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"eb4d3d652c38eb3f","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"89d5ee585c13bf38.json","parameterValues":[]} \ No newline at end of file +{"uid":"e50cfef6d8bb4879","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1732764220499,"stop":1732764220499,"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_SaveTestCase::0","time":{"start":1732764220500,"stop":1732764220500,"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":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"e50cfef6d8bb4879.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e578dac1473f78ec.json b/allure-report/data/test-cases/e578dac1473f78ec.json new file mode 100644 index 00000000000..06dc3e499df --- /dev/null +++ b/allure-report/data/test-cases/e578dac1473f78ec.json @@ -0,0 +1 @@ +{"uid":"e578dac1473f78ec","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","time":{"start":1733030101164,"stop":1733030101164,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::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":"normal"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Lists"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d56b8598f52532d4","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0}},{"uid":"7a5a4eebadaab126","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0}},{"uid":"ee69e9682e62678d","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"45a592633cd8d633","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":"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"e578dac1473f78ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5a7c04cf0e6c2f9.json b/allure-report/data/test-cases/e5a7c04cf0e6c2f9.json deleted file mode 100644 index 1ee39edae77..00000000000 --- a/allure-report/data/test-cases/e5a7c04cf0e6c2f9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e5a7c04cf0e6c2f9","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"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":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8778cf7e4eef01cb","name":"stdout","source":"8778cf7e4eef01cb.txt","type":"text/plain","size":1079}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e5a7c04cf0e6c2f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6bab07231bfb8a25.json b/allure-report/data/test-cases/e5feb33263ee430e.json similarity index 64% rename from allure-report/data/test-cases/6bab07231bfb8a25.json rename to allure-report/data/test-cases/e5feb33263ee430e.json index 302e2cb131e..e441c91b562 100644 --- a/allure-report/data/test-cases/6bab07231bfb8a25.json +++ b/allure-report/data/test-cases/e5feb33263ee430e.json @@ -1 +1 @@ -{"uid":"6bab07231bfb8a25","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732764220401,"stop":1732764220401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2e0eb113649e95e6","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0}},{"uid":"4617147ad7612076","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"168ffd09c766442f","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"6bab07231bfb8a25.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/49044c1c42d54a81.json b/allure-report/data/test-cases/e60399983521438f.json similarity index 73% rename from allure-report/data/test-cases/49044c1c42d54a81.json rename to allure-report/data/test-cases/e60399983521438f.json index 13f2d067478..bb3b032addd 100644 --- a/allure-report/data/test-cases/49044c1c42d54a81.json +++ b/allure-report/data/test-cases/e60399983521438f.json @@ -1 +1 @@ -{"uid":"49044c1c42d54a81","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3163cc1ff017e55","name":"stdout","source":"b3163cc1ff017e55.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"49044c1c42d54a81.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with spaces and verify the result","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5442f35428b86593","name":"stdout","source":"5442f35428b86593.txt","type":"text/plain","size":353}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NoSpaceTestCase::0","time":{"start":1724735129633,"stop":1724735129633,"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":"Remove String Spaces"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.remove_string_spaces.test_remove_string_spaces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57eae20f5500ad98e50002c5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"e60399983521438f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/68ad711bfb950e6e.json b/allure-report/data/test-cases/e64a446631b3c9dc.json similarity index 79% rename from allure-report/data/test-cases/68ad711bfb950e6e.json rename to allure-report/data/test-cases/e64a446631b3c9dc.json index 74d8dceef66..5dffdecc279 100644 --- a/allure-report/data/test-cases/68ad711bfb950e6e.json +++ b/allure-report/data/test-cases/e64a446631b3c9dc.json @@ -1 +1 @@ -{"uid":"68ad711bfb950e6e","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f91cde579304f854","name":"stdout","source":"f91cde579304f854.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"68ad711bfb950e6e.json","parameterValues":[]} \ No newline at end of file +{"uid":"e64a446631b3c9dc","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724735129664,"stop":1724735129664,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ffe262df372f1494","name":"stdout","source":"ffe262df372f1494.txt","type":"text/plain","size":231}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SetAlarmTestCase::0","time":{"start":1724735129664,"stop":1724735129664,"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":"BOOLEANS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"L1: Set Alarm"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Boolean"},{"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.set_alarm.test_set_alarm"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/568dcc3c7f12767a62000038/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["BOOLEANS","FUNDAMENTALS"]},"source":"e64a446631b3c9dc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4eaed4684cfaee8f.json b/allure-report/data/test-cases/e697d79f20198964.json similarity index 80% rename from allure-report/data/test-cases/4eaed4684cfaee8f.json rename to allure-report/data/test-cases/e697d79f20198964.json index 36a7c770fe3..5e6f0d195d4 100644 --- a/allure-report/data/test-cases/4eaed4684cfaee8f.json +++ b/allure-report/data/test-cases/e697d79f20198964.json @@ -1 +1 @@ -{"uid":"4eaed4684cfaee8f","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4163d90850028d14","name":"stdout","source":"4163d90850028d14.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4eaed4684cfaee8f.json","parameterValues":[]} \ No newline at end of file +{"uid":"e697d79f20198964","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":1724735129117,"stop":1724735129117,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78b67cc840d0f4a8","name":"stdout","source":"78b67cc840d0f4a8.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724735129117,"stop":1724735129117,"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":"Formatting decimal places #1"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"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.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e697d79f20198964.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e6b67890527d37e6.json b/allure-report/data/test-cases/e6b67890527d37e6.json new file mode 100644 index 00000000000..fcebbe8d9eb --- /dev/null +++ b/allure-report/data/test-cases/e6b67890527d37e6.json @@ -0,0 +1 @@ +{"uid":"e6b67890527d37e6","name":"Testing the 'valid_braces' function","fullName":"kyu_6.valid_braces.test_valid_braces.ValidBracesTestCase#test_valid_braces","historyId":"6c14cedc5a513765002a31220c677a3f","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1733030100356,"stop":1733030100356,"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_ValidBracesTestCase::0","time":{"start":1733030100356,"stop":1733030100356,"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":"story","value":"Valid Braces"},{"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.valid_braces.test_valid_braces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5277c8a221e209d3f6000b56","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f52796969ad8c6a8","status":"passed","time":{"start":1732764220383,"stop":1732764220385,"duration":2}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"5908d364b75f844e","status":"passed","time":{"start":1732764220383,"stop":1732764220385,"duration":2}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"e6b67890527d37e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8782c11be4532248.json b/allure-report/data/test-cases/e723e7f00f564943.json similarity index 80% rename from allure-report/data/test-cases/8782c11be4532248.json rename to allure-report/data/test-cases/e723e7f00f564943.json index b850ce7c954..40639ae6c86 100644 --- a/allure-report/data/test-cases/8782c11be4532248.json +++ b/allure-report/data/test-cases/e723e7f00f564943.json @@ -1 +1 @@ -{"uid":"8782c11be4532248","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e4c3264e25c98281","name":"stdout","source":"e4c3264e25c98281.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8782c11be4532248.json","parameterValues":[]} \ No newline at end of file +{"uid":"e723e7f00f564943","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":1724733474257,"stop":1724733474257,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"df070dcdc10f9538","name":"stdout","source":"df070dcdc10f9538.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474257,"stop":1724733474257,"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":"feature","value":"Formatting"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Formatting decimal places #1"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.formatting_decimal_places_1.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e723e7f00f564943.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1733030100497,"stop":1733030100497,"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_LengthTestCase::0","time":{"start":1733030100497,"stop":1733030100497,"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":"feature","value":"Lists"},{"name":"story","value":"Fun with lists: length"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"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.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/581e476d5f59408553000a4b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"84e5ce529aafcfa9","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1}},{"uid":"d532fafc0994a83d","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1}},{"uid":"2ae21ed716f07041","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"dbfb622c1ebb235b","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},"source":"e7ac97a954c5e722.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e2354482de170d3.json b/allure-report/data/test-cases/e7d0a39712ee3eee.json similarity index 70% rename from allure-report/data/test-cases/5e2354482de170d3.json rename to allure-report/data/test-cases/e7d0a39712ee3eee.json index 8c672e8e866..9f264f18ed9 100644 --- a/allure-report/data/test-cases/5e2354482de170d3.json +++ b/allure-report/data/test-cases/e7d0a39712ee3eee.json @@ -1 +1 @@ -{"uid":"5e2354482de170d3","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"eac7f340d73193c2","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0}},{"uid":"8dcdfa9166c48fb8","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"ab7f75990cdffa76","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"5e2354482de170d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"e7d0a39712ee3eee","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ab3687d99fed99d0.json b/allure-report/data/test-cases/e7e1c54963ba7bf7.json similarity index 65% rename from allure-report/data/test-cases/ab3687d99fed99d0.json rename to allure-report/data/test-cases/e7e1c54963ba7bf7.json index f202e24ea99..ecf9713fff6 100644 --- a/allure-report/data/test-cases/ab3687d99fed99d0.json +++ b/allure-report/data/test-cases/e7e1c54963ba7bf7.json @@ -1 +1 @@ -{"uid":"ab3687d99fed99d0","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a3ca7d068d3e7d87","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0}},{"uid":"aa1a2a69b8a9bf68","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"44e584571b03be2","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ab3687d99fed99d0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/229dd074fbcb6ca1.json b/allure-report/data/test-cases/e83e1a2466fbcf0b.json similarity index 79% rename from allure-report/data/test-cases/229dd074fbcb6ca1.json rename to allure-report/data/test-cases/e83e1a2466fbcf0b.json index 3af6d2f6335..b1dc093810a 100644 --- a/allure-report/data/test-cases/229dd074fbcb6ca1.json +++ b/allure-report/data/test-cases/e83e1a2466fbcf0b.json @@ -1 +1 @@ -{"uid":"229dd074fbcb6ca1","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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"97c0819228c5b269","name":"stdout","source":"97c0819228c5b269.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"229dd074fbcb6ca1.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"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":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a6a60e5084ac1c11","name":"stdout","source":"a6a60e5084ac1c11.txt","type":"text/plain","size":1088}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1724733473905,"stop":1724733473905,"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":"Encrypt this!"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"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_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"e83e1a2466fbcf0b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/843678da53c540e6.json b/allure-report/data/test-cases/e897eac5693df65e.json similarity index 81% rename from allure-report/data/test-cases/843678da53c540e6.json rename to allure-report/data/test-cases/e897eac5693df65e.json index ff21862d94a..3a953c1297a 100644 --- a/allure-report/data/test-cases/843678da53c540e6.json +++ b/allure-report/data/test-cases/e897eac5693df65e.json @@ -1 +1 @@ -{"uid":"843678da53c540e6","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":1732428196037,"stop":1732428196037,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732428196036,"stop":1732428196036,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase::0","time":{"start":1732428196039,"stop":1732428196039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"843678da53c540e6.json","parameterValues":[]} \ No newline at end of file +{"uid":"e897eac5693df65e","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":1732428196037,"stop":1732428196037,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTwoSmallestNumbersTestCase","time":{"start":1732428196036,"stop":1732428196036,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Simple test","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the start/middle of the list","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Two smallest numbers in the middle of the list","time":{"start":1732428196037,"stop":1732428196037,"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_SumTwoSmallestNumbersTestCase::0","time":{"start":1732428196039,"stop":1732428196039,"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":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of two lowest positive integers"},{"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_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/558fc85d8fd1938afb000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e897eac5693df65e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c244be500ebdf146.json b/allure-report/data/test-cases/e8a2735e9df336cb.json similarity index 60% rename from allure-report/data/test-cases/c244be500ebdf146.json rename to allure-report/data/test-cases/e8a2735e9df336cb.json index 3b95bc4ea02..5cc1d48725a 100644 --- a/allure-report/data/test-cases/c244be500ebdf146.json +++ b/allure-report/data/test-cases/e8a2735e9df336cb.json @@ -1 +1 @@ -{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing extend method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219337,"stop":1732764219338,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732764219338,"stop":1732764219338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4941a73e9c93a57","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2}},{"uid":"256439519ef758bc","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"9d50fe36fd5059ab","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c244be500ebdf146.json","parameterValues":[]} \ No newline at end of file +{"uid":"e8a2735e9df336cb","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e8a3e54ef5fe796f.json b/allure-report/data/test-cases/e8a3e54ef5fe796f.json deleted file mode 100644 index 26c8e402872..00000000000 --- a/allure-report/data/test-cases/e8a3e54ef5fe796f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e8a3e54ef5fe796f","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

Testing insert method.

","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e693ea1a91f61ae","name":"stdout","source":"4e693ea1a91f61ae.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"e8a3e54ef5fe796f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e92026f4174cc7e.json b/allure-report/data/test-cases/e92026f4174cc7e.json new file mode 100644 index 00000000000..fff202108ff --- /dev/null +++ b/allure-report/data/test-cases/e92026f4174cc7e.json @@ -0,0 +1 @@ +{"uid":"e92026f4174cc7e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7cbc8ebd65fb8481","name":"stdout","source":"7cbc8ebd65fb8481.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e92026f4174cc7e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e95ba363003599d.json b/allure-report/data/test-cases/e95ba363003599d.json new file mode 100644 index 00000000000..f535bf48ac9 --- /dev/null +++ b/allure-report/data/test-cases/e95ba363003599d.json @@ -0,0 +1 @@ +{"uid":"e95ba363003599d","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":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass string with no repeating chars","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"12f8c2c15d255220","name":"stdout","source":"12f8c2c15d255220.txt","type":"text/plain","size":75}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e95ba363003599d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e96aee50481acdd6.json b/allure-report/data/test-cases/e96aee50481acdd6.json new file mode 100644 index 00000000000..f8c331005bc --- /dev/null +++ b/allure-report/data/test-cases/e96aee50481acdd6.json @@ -0,0 +1 @@ +{"uid":"e96aee50481acdd6","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1733030101070,"stop":1733030101070,"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_ReversedStringsTestCase::0","time":{"start":1733030101070,"stop":1733030101070,"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":"Reversed Strings"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4a93aab25c4b5f7","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0}},{"uid":"f645f4897564ea6f","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0}},{"uid":"3b9843a7de0fadce","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"8a29f61d53cfa694","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"e96aee50481acdd6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab7f75990cdffa76.json b/allure-report/data/test-cases/e97e117a0c1b5372.json similarity index 79% rename from allure-report/data/test-cases/ab7f75990cdffa76.json rename to allure-report/data/test-cases/e97e117a0c1b5372.json index 3e0b3798e03..28a52905900 100644 --- a/allure-report/data/test-cases/ab7f75990cdffa76.json +++ b/allure-report/data/test-cases/e97e117a0c1b5372.json @@ -1 +1 @@ -{"uid":"ab7f75990cdffa76","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2e7b358c14deeef","name":"stdout","source":"c2e7b358c14deeef.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"ab7f75990cdffa76.json","parameterValues":[]} \ No newline at end of file +{"uid":"e97e117a0c1b5372","name":"Testing next_bigger function","fullName":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger.NextBiggerTestCase#test_next_bigger","historyId":"efddacca930076c1013b396c6bf9ad2b","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f48dcf9628fe90ff.json b/allure-report/data/test-cases/e9c0a9198a3e1b18.json similarity index 66% rename from allure-report/data/test-cases/f48dcf9628fe90ff.json rename to allure-report/data/test-cases/e9c0a9198a3e1b18.json index f9f08ab8018..92dd2202a87 100644 --- a/allure-report/data/test-cases/f48dcf9628fe90ff.json +++ b/allure-report/data/test-cases/e9c0a9198a3e1b18.json @@ -1 +1 @@ -{"uid":"f48dcf9628fe90ff","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1732764220613,"stop":1732764220613,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cce644bc4fb0b16f","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0}},{"uid":"3d4ef3b1faaf3c9d","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"ebea1136229ab9bf","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"f48dcf9628fe90ff.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1732764220612,"stop":1732764220612,"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_SentencifyTestCase::0","time":{"start":1732764220613,"stop":1732764220613,"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":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Pull your words together, man!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59ad7d2e07157af687000070","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},"source":"e9c0a9198a3e1b18.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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ea636867f014d21.json b/allure-report/data/test-cases/ea636867f014d21.json deleted file mode 100644 index 377f42816e0..00000000000 --- a/allure-report/data/test-cases/ea636867f014d21.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ea636867f014d21","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"214be7d831eff2b3","name":"stdout","source":"214be7d831eff2b3.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Valid Parentheses"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"ea636867f014d21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fb895d93acc0bab.json b/allure-report/data/test-cases/ea6a7fadbe04578a.json similarity index 85% rename from allure-report/data/test-cases/2fb895d93acc0bab.json rename to allure-report/data/test-cases/ea6a7fadbe04578a.json index f89710b62d1..3500a78a336 100644 --- a/allure-report/data/test-cases/2fb895d93acc0bab.json +++ b/allure-report/data/test-cases/ea6a7fadbe04578a.json @@ -1 +1 @@ -{"uid":"2fb895d93acc0bab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"2fb895d93acc0bab.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass empty string and verify the output","time":{"start":1732428196364,"stop":1732428196364,"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_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"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":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"ea6a7fadbe04578a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea83ea1df97a1dc9.json b/allure-report/data/test-cases/ea83ea1df97a1dc9.json new file mode 100644 index 00000000000..326aa8a06ef --- /dev/null +++ b/allure-report/data/test-cases/ea83ea1df97a1dc9.json @@ -0,0 +1 @@ +{"uid":"ea83ea1df97a1dc9","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724735129086,"stop":1724735129086,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the output","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8824f11650f12248","name":"stdout","source":"8824f11650f12248.txt","type":"text/plain","size":216}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FactorialTestCase::0","time":{"start":1724735129086,"stop":1724735129086,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.factorial.test_factorial"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ea83ea1df97a1dc9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4d3736adb97380b.json b/allure-report/data/test-cases/ea9306ba22046ff3.json similarity index 73% rename from allure-report/data/test-cases/d4d3736adb97380b.json rename to allure-report/data/test-cases/ea9306ba22046ff3.json index 8871917af8d..c9bc88931f4 100644 --- a/allure-report/data/test-cases/d4d3736adb97380b.json +++ b/allure-report/data/test-cases/ea9306ba22046ff3.json @@ -1 +1 @@ -{"uid":"d4d3736adb97380b","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9d7d21f763543a21","name":"stdout","source":"9d7d21f763543a21.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"d4d3736adb97380b.json","parameterValues":[]} \ No newline at end of file +{"uid":"ea9306ba22046ff3","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/4f999b555dd62215.json b/allure-report/data/test-cases/eae8b41d97e1bc2d.json similarity index 79% rename from allure-report/data/test-cases/4f999b555dd62215.json rename to allure-report/data/test-cases/eae8b41d97e1bc2d.json index 3f8aaa5ce4f..444988b941f 100644 --- a/allure-report/data/test-cases/4f999b555dd62215.json +++ b/allure-report/data/test-cases/eae8b41d97e1bc2d.json @@ -1 +1 @@ -{"uid":"4f999b555dd62215","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f999b555dd62215.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1724735129211,"stop":1724735129211,"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_RemoveSmallestTestCase::0","time":{"start":1724735129227,"stop":1724735129227,"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":"Lists"},{"name":"story","value":"The museum of incredible dull things"},{"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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"eae8b41d97e1bc2d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/706d67120123862f.json b/allure-report/data/test-cases/eb28edf9a9f50007.json similarity index 92% rename from allure-report/data/test-cases/706d67120123862f.json rename to allure-report/data/test-cases/eb28edf9a9f50007.json index fe44e27ac39..a5681173662 100644 --- a/allure-report/data/test-cases/706d67120123862f.json +++ b/allure-report/data/test-cases/eb28edf9a9f50007.json @@ -1 +1 @@ -{"uid":"706d67120123862f","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":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":"706d67120123862f.json","parameterValues":[]} \ No newline at end of file +{"uid":"eb28edf9a9f50007","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":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":"eb28edf9a9f50007.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a618a1e47f6e349d.json b/allure-report/data/test-cases/eb6afac49e3912b1.json similarity index 53% rename from allure-report/data/test-cases/a618a1e47f6e349d.json rename to allure-report/data/test-cases/eb6afac49e3912b1.json index 5928dc97e9b..ce03c099e10 100644 --- a/allure-report/data/test-cases/a618a1e47f6e349d.json +++ b/allure-report/data/test-cases/eb6afac49e3912b1.json @@ -1 +1 @@ -{"uid":"a618a1e47f6e349d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"458fa73ae78d8720","name":"stdout","source":"458fa73ae78d8720.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a618a1e47f6e349d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (negative)","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9846fc0a17d839b","name":"stdout","source":"9846fc0a17d839b.txt","type":"text/plain","size":637}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724733474819,"stop":1724733474819,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"eb6afac49e3912b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47f8dbee3cb403d3.json b/allure-report/data/test-cases/eb79826fc1ce02b1.json similarity index 84% rename from allure-report/data/test-cases/47f8dbee3cb403d3.json rename to allure-report/data/test-cases/eb79826fc1ce02b1.json index 0671d0641f5..cdd251993d4 100644 --- a/allure-report/data/test-cases/47f8dbee3cb403d3.json +++ b/allure-report/data/test-cases/eb79826fc1ce02b1.json @@ -1 +1 @@ -{"uid":"47f8dbee3cb403d3","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b38075c83e7baebb","name":"stdout","source":"b38075c83e7baebb.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"47f8dbee3cb403d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"eb79826fc1ce02b1","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724733472546,"stop":1724733472546,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1733030100773,"stop":1733030100773,"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_YouAreSquareTestCase::0","time":{"start":1733030100789,"stop":1733030100789,"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":"Square Calculation"},{"name":"suite","value":"Math"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATH"},{"name":"story","value":"You're a square"},{"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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5567075f87625777","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1}},{"uid":"4c8c8098a5ba0587","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1}},{"uid":"630aba545cc07b30","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"ff4e61f1c87a50e9","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","MATH"]},"source":"eb8f6057b9598daa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb94d03877c16bb4.json b/allure-report/data/test-cases/eb94d03877c16bb4.json new file mode 100644 index 00000000000..e6b7ae48971 --- /dev/null +++ b/allure-report/data/test-cases/eb94d03877c16bb4.json @@ -0,0 +1 @@ +{"uid":"eb94d03877c16bb4","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":1733030098661,"stop":1733030098661,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/60d4140245a65d5.json b/allure-report/data/test-cases/ebdfd3783858102.json similarity index 61% rename from allure-report/data/test-cases/60d4140245a65d5.json rename to allure-report/data/test-cases/ebdfd3783858102.json index dcd997305d0..839e3d1d546 100644 --- a/allure-report/data/test-cases/60d4140245a65d5.json +++ b/allure-report/data/test-cases/ebdfd3783858102.json @@ -1 +1 @@ -{"uid":"60d4140245a65d5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732764220167,"stop":1732764220167,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220167,"stop":1732764220167,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f7ae1e1fc4481de3","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0}},{"uid":"5471ece0090e3d4","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"eb60d649770273d6","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"60d4140245a65d5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1732764220163,"stop":1732764220163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1732764220167,"stop":1732764220167,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1732764220167,"stop":1732764220167,"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_FirstDupTestCase::0","time":{"start":1732764220184,"stop":1732764220184,"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":"subSuite","value":"Unit Tests"},{"name":"story","value":"First character that repeats"},{"name":"suite","value":"Algorithms"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"ebdfd3783858102.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee7ac80cd7bb8f8d.json b/allure-report/data/test-cases/ebf90564de7fa557.json similarity index 93% rename from allure-report/data/test-cases/ee7ac80cd7bb8f8d.json rename to allure-report/data/test-cases/ebf90564de7fa557.json index 5430084a6d1..d42a8b669f3 100644 --- a/allure-report/data/test-cases/ee7ac80cd7bb8f8d.json +++ b/allure-report/data/test-cases/ebf90564de7fa557.json @@ -1 +1 @@ -{"uid":"ee7ac80cd7bb8f8d","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732428194185,"stop":1732428194185,"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":"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":"ee7ac80cd7bb8f8d.json","parameterValues":[]} \ No newline at end of file +{"uid":"ebf90564de7fa557","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732428194185,"stop":1732428194185,"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":"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase","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 Simple positive test\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass string and verify the output","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":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_JadenCasingStringsTestCase::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":"suite","value":"Data Structures"},{"name":"story","value":"Jaden Casing Strings"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"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.jaden_casing_strings.test_jaden_casing_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5390bac347d09b7da40006f6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"29ff0a22a55da068","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1}},{"uid":"69c302e5122b751d","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1}},{"uid":"d4662f23ff8e6620","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"8930ec9e348fd4d","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":"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}}]},"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},"source":"ec0c7de9a70a5f5e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/197e80b267cccc2b.json b/allure-report/data/test-cases/ec1f79d5effe1aa9.json similarity index 74% rename from allure-report/data/test-cases/197e80b267cccc2b.json rename to allure-report/data/test-cases/ec1f79d5effe1aa9.json index 287379644ff..87a5f4b5180 100644 --- a/allure-report/data/test-cases/197e80b267cccc2b.json +++ b/allure-report/data/test-cases/ec1f79d5effe1aa9.json @@ -1 +1 @@ -{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73b1a6171e8a5d4c","name":"stdout","source":"73b1a6171e8a5d4c.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9fea94ac2fbcf5b2","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"197e80b267cccc2b.json","parameterValues":[]} \ No newline at end of file +{"uid":"ec1f79d5effe1aa9","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724735127891,"stop":1724735127891,"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

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:

  • - Points
  • - Scoring differential (the difference between goals scored and those conceded)
  • - Goals scored
","status":"passed","steps":[{"name":"Enter a test data and verify the result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"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 result:","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dea29eab15838d9c","name":"stdout","source":"dea29eab15838d9c.txt","type":"text/plain","size":772}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ComputeRanksTestCase::0","time":{"start":1724735127891,"stop":1724735127891,"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":"Sports League Table Ranking"},{"name":"tag","value":"SORTING"},{"name":"feature","value":"Lists"},{"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":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sports_league_table_ranking.test_compute_ranks"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0baea9d772160032022e8c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"530cf97bef900b31","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},"source":"ec1f79d5effe1aa9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec58e61448a9c6a8.json b/allure-report/data/test-cases/ec58e61448a9c6a8.json new file mode 100644 index 00000000000..22563ca3d5f --- /dev/null +++ b/allure-report/data/test-cases/ec58e61448a9c6a8.json @@ -0,0 +1 @@ +{"uid":"ec58e61448a9c6a8","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","time":{"start":1733030098927,"stop":1733030098927,"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":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/ecd778da0cbd3ef.json b/allure-report/data/test-cases/ecd778da0cbd3ef.json new file mode 100644 index 00000000000..0e3afb157ee --- /dev/null +++ b/allure-report/data/test-cases/ecd778da0cbd3ef.json @@ -0,0 +1 @@ +{"uid":"ecd778da0cbd3ef","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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/be50565df8dfb0ab.json b/allure-report/data/test-cases/ed2f3c923fde4413.json similarity index 58% rename from allure-report/data/test-cases/be50565df8dfb0ab.json rename to allure-report/data/test-cases/ed2f3c923fde4413.json index bd6ad5a55a2..c5f10883dd5 100644 --- a/allure-report/data/test-cases/be50565df8dfb0ab.json +++ b/allure-report/data/test-cases/ed2f3c923fde4413.json @@ -1 +1 @@ -{"uid":"be50565df8dfb0ab","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3719e4e464aa700e","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0}},{"uid":"f1c13dcc2ec25637","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"9f8d638b621270bd","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"be50565df8dfb0ab.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1732764220438,"stop":1732764220438,"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_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ed2f3c923fde4413.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c39905963998c1b.json b/allure-report/data/test-cases/ed375a568ef53727.json similarity index 59% rename from allure-report/data/test-cases/9c39905963998c1b.json rename to allure-report/data/test-cases/ed375a568ef53727.json index 8faa979966b..b5c3470b2ef 100644 --- a/allure-report/data/test-cases/9c39905963998c1b.json +++ b/allure-report/data/test-cases/ed375a568ef53727.json @@ -1 +1 @@ -{"uid":"9c39905963998c1b","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":1732764220432,"stop":1732764220432,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"555a795f08de5e6c","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0}},{"uid":"de0a077377bec456","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"c730b39a7cf9843","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9c39905963998c1b.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed375a568ef53727","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":1732764220432,"stop":1732764220432,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732764220432,"stop":1732764220432,"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_SumOfNumbersTestCase::0","time":{"start":1732764220444,"stop":1732764220444,"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":"epic","value":"7 kyu"},{"name":"feature","value":"Addition"},{"name":"story","value":"Sum of Numbers"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ed375a568ef53727.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46de5298b06a2e8f.json b/allure-report/data/test-cases/ed660ef652aeab86.json similarity index 75% rename from allure-report/data/test-cases/46de5298b06a2e8f.json rename to allure-report/data/test-cases/ed660ef652aeab86.json index 5e4b0c87cb6..8cd80d62f87 100644 --- a/allure-report/data/test-cases/46de5298b06a2e8f.json +++ b/allure-report/data/test-cases/ed660ef652aeab86.json @@ -1 +1 @@ -{"uid":"46de5298b06a2e8f","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d31f2c0a44e75654","name":"stdout","source":"d31f2c0a44e75654.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"46de5298b06a2e8f.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed660ef652aeab86","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":1724733474960,"stop":1724733474960,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass list with one 'good' in it","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3608f48d89e26964","name":"stdout","source":"3608f48d89e26964.txt","type":"text/plain","size":72}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WellTestCase::0","time":{"start":1724733474960,"stop":1724733474960,"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":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"Well of Ideas - Easy Version"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"REFACTORING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57f222ce69e09c3630000212/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},"source":"ed660ef652aeab86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65bb39f46c25941f.json b/allure-report/data/test-cases/ed7d0b3c14fd80c8.json similarity index 77% rename from allure-report/data/test-cases/65bb39f46c25941f.json rename to allure-report/data/test-cases/ed7d0b3c14fd80c8.json index 266311e9d2d..a447aa67ed9 100644 --- a/allure-report/data/test-cases/65bb39f46c25941f.json +++ b/allure-report/data/test-cases/ed7d0b3c14fd80c8.json @@ -1 +1 @@ -{"uid":"65bb39f46c25941f","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6c8cae3bc3627567","name":"stdout","source":"6c8cae3bc3627567.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"65bb39f46c25941f.json","parameterValues":[]} \ No newline at end of file +{"uid":"ed7d0b3c14fd80c8","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/df5176bbed48ed91.json b/allure-report/data/test-cases/edad07e580a5e4ff.json similarity index 82% rename from allure-report/data/test-cases/df5176bbed48ed91.json rename to allure-report/data/test-cases/edad07e580a5e4ff.json index 517b80ea873..7a37b79d7ae 100644 --- a/allure-report/data/test-cases/df5176bbed48ed91.json +++ b/allure-report/data/test-cases/edad07e580a5e4ff.json @@ -1 +1 @@ -{"uid":"df5176bbed48ed91","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"eaf9f3a704742209","name":"stdout","source":"eaf9f3a704742209.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"df5176bbed48ed91.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4718f5d8ec029744","name":"stdout","source":"4718f5d8ec029744.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase::0","time":{"start":1724735129102,"stop":1724735129102,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Computer problem series #1: Fill the Hard Disk Drive"},{"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.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"edad07e580a5e4ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee07ce647fa212f.json b/allure-report/data/test-cases/ee07ce647fa212f.json deleted file mode 100644 index 077676c43ec..00000000000 --- a/allure-report/data/test-cases/ee07ce647fa212f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ee07ce647fa212f","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":1732764220284,"stop":1732764220287,"duration":3},"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732764220283,"stop":1732764220283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4a6083b6c2f5cc4b","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1}},{"uid":"14c8b0cd48caa4d6","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"f293d4274aefdd43","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ee07ce647fa212f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebea1136229ab9bf.json b/allure-report/data/test-cases/ee166a73f40d3c20.json similarity index 79% rename from allure-report/data/test-cases/ebea1136229ab9bf.json rename to allure-report/data/test-cases/ee166a73f40d3c20.json index c4dec1af449..10027dae5d3 100644 --- a/allure-report/data/test-cases/ebea1136229ab9bf.json +++ b/allure-report/data/test-cases/ee166a73f40d3c20.json @@ -1 +1 @@ -{"uid":"ebea1136229ab9bf","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"40d2195f3173474a","name":"stdout","source":"40d2195f3173474a.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ebea1136229ab9bf.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee166a73f40d3c20","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724733474382,"stop":1724733474382,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a list of strings and verify the result","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"156bd3bd78bc6da3","name":"stdout","source":"156bd3bd78bc6da3.txt","type":"text/plain","size":336}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SentencifyTestCase::0","time":{"start":1724733474382,"stop":1724733474382,"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":"Pull your words together, man!"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"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.pull_your_words_together_man.test_sentencify"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ee166a73f40d3c20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee3705e6f9b5a9fb.json b/allure-report/data/test-cases/ee3705e6f9b5a9fb.json new file mode 100644 index 00000000000..97bc36d5b00 --- /dev/null +++ b/allure-report/data/test-cases/ee3705e6f9b5a9fb.json @@ -0,0 +1 @@ +{"uid":"ee3705e6f9b5a9fb","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030099255,"stop":1733030099255,"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":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":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"tag","value":"UTILITIES"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aef6b82f43e1b4b4","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0}},{"uid":"327e71002be993d7","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0}},{"uid":"f0137718eeb8b928","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"3fd5a8d15bcf78fb","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":"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}}]},"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"ee5910cfe65a88ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a586415c7c751146.json b/allure-report/data/test-cases/ee69e9682e62678d.json similarity index 81% rename from allure-report/data/test-cases/a586415c7c751146.json rename to allure-report/data/test-cases/ee69e9682e62678d.json index d8cc8baaa05..bf02b67269f 100644 --- a/allure-report/data/test-cases/a586415c7c751146.json +++ b/allure-report/data/test-cases/ee69e9682e62678d.json @@ -1 +1 @@ -{"uid":"a586415c7c751146","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"f1567e8d01d8dfde","name":"stdout","source":"f1567e8d01d8dfde.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"a586415c7c751146.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee69e9682e62678d","name":"Wolf in the middle of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_in_middle","historyId":"3de540be96edd1a6ef052fccdb3f5cad","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"7f097b27d301b075","name":"stdout","source":"7f097b27d301b075.txt","type":"text/plain","size":411}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::0","time":{"start":1724735129758,"stop":1724735129758,"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":"tag","value":"LOOPS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"A wolf in sheep's clothing"},{"name":"feature","value":"Lists"},{"name":"suite","value":"Control Flow"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"ee69e9682e62678d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/625a87864855843c.json b/allure-report/data/test-cases/ee6c548e8326102a.json similarity index 77% rename from allure-report/data/test-cases/625a87864855843c.json rename to allure-report/data/test-cases/ee6c548e8326102a.json index bd8c081c7a9..441ea141618 100644 --- a/allure-report/data/test-cases/625a87864855843c.json +++ b/allure-report/data/test-cases/ee6c548e8326102a.json @@ -1 +1 @@ -{"uid":"625a87864855843c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9e245b3b58a92040","name":"stdout","source":"9e245b3b58a92040.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"625a87864855843c.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee6c548e8326102a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ccbd4e70fd917551","name":"stdout","source":"ccbd4e70fd917551.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"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":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ee6c548e8326102a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b98e581eac70f265.json b/allure-report/data/test-cases/ee7921cf820a84c7.json similarity index 88% rename from allure-report/data/test-cases/b98e581eac70f265.json rename to allure-report/data/test-cases/ee7921cf820a84c7.json index 96390711a75..f7364ade2e5 100644 --- a/allure-report/data/test-cases/b98e581eac70f265.json +++ b/allure-report/data/test-cases/ee7921cf820a84c7.json @@ -1 +1 @@ -{"uid":"b98e581eac70f265","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732428195982,"stop":1732428195982,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428195983,"stop":1732428195983,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"b98e581eac70f265.json","parameterValues":[]} \ No newline at end of file +{"uid":"ee7921cf820a84c7","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732428195982,"stop":1732428195982,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a number and verify the result","time":{"start":1732428195982,"stop":1732428195982,"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_SolutionTestCase::0","time":{"start":1732428195983,"stop":1732428195983,"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":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Substituting Variables Into Strings: Padded Numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRING FORMATTING"},{"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_7.substituting_variables_into_strings_padded_numbers.test_solution"},{"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","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},"source":"ee7921cf820a84c7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1065b8b44c0afc6f.json b/allure-report/data/test-cases/eeeab72dd7b98f53.json similarity index 85% rename from allure-report/data/test-cases/1065b8b44c0afc6f.json rename to allure-report/data/test-cases/eeeab72dd7b98f53.json index e4eac33b65f..b0da64e95d7 100644 --- a/allure-report/data/test-cases/1065b8b44c0afc6f.json +++ b/allure-report/data/test-cases/eeeab72dd7b98f53.json @@ -1 +1 @@ -{"uid":"1065b8b44c0afc6f","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3f196c8197b3dace","name":"stdout","source":"3f196c8197b3dace.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"1065b8b44c0afc6f.json","parameterValues":[]} \ No newline at end of file +{"uid":"eeeab72dd7b98f53","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724735127906,"stop":1724735127906,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/ef2b00c02db84592.json b/allure-report/data/test-cases/ef2b00c02db84592.json deleted file mode 100644 index 9cf039a9cba..00000000000 --- a/allure-report/data/test-cases/ef2b00c02db84592.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732764219186,"stop":1732764219186,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732764219184,"stop":1732764219184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e248ed6a4ff28aaa","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0}},{"uid":"1065b8b44c0afc6f","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"2c53cc9448de91f2","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"ef2b00c02db84592.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cad7274be200bf39.json b/allure-report/data/test-cases/ef31dfc3c5e1eba5.json similarity index 76% rename from allure-report/data/test-cases/cad7274be200bf39.json rename to allure-report/data/test-cases/ef31dfc3c5e1eba5.json index 8906f120797..4913a692685 100644 --- a/allure-report/data/test-cases/cad7274be200bf39.json +++ b/allure-report/data/test-cases/ef31dfc3c5e1eba5.json @@ -1 +1 @@ -{"uid":"cad7274be200bf39","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"cad7274be200bf39.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/8bc712dc2d3a7199.json b/allure-report/data/test-cases/ef78b96af32d8f44.json similarity index 63% rename from allure-report/data/test-cases/8bc712dc2d3a7199.json rename to allure-report/data/test-cases/ef78b96af32d8f44.json index ca4ed70f22b..4b7bfa4b583 100644 --- a/allure-report/data/test-cases/8bc712dc2d3a7199.json +++ b/allure-report/data/test-cases/ef78b96af32d8f44.json @@ -1 +1 @@ -{"uid":"8bc712dc2d3a7199","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"14cdd8696beec9a","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0}},{"uid":"11195fbf11e8bfc3","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"7b584cbfaa9e2f14","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"8bc712dc2d3a7199.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the result","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the result","time":{"start":1732764220248,"stop":1732764220248,"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_PermutePalindromeTestCase::0","time":{"start":1732764220255,"stop":1732764220255,"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":"Permute a Palindrome"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ef78b96af32d8f44.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/965e1d563752b7d3.json b/allure-report/data/test-cases/efb129a92346c1e2.json similarity index 79% rename from allure-report/data/test-cases/965e1d563752b7d3.json rename to allure-report/data/test-cases/efb129a92346c1e2.json index c413d60a953..876d0cdfd25 100644 --- a/allure-report/data/test-cases/965e1d563752b7d3.json +++ b/allure-report/data/test-cases/efb129a92346c1e2.json @@ -1 +1 @@ -{"uid":"965e1d563752b7d3","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732428194502,"stop":1732428194502,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase::0","time":{"start":1732428194504,"stop":1732428194504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS PARSING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"965e1d563752b7d3.json","parameterValues":[]} \ No newline at end of file +{"uid":"efb129a92346c1e2","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringIncrementerTestCase","time":{"start":1732428194502,"stop":1732428194502,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named increment_string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

- 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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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":1732428194503,"stop":1732428194503,"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_StringIncrementerTestCase::0","time":{"start":1732428194504,"stop":1732428194504,"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":"feature","value":"String"},{"name":"tag","value":"STRINGS PARSING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"String incrementer"},{"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.string_incrementer.test_increment_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54a91a4883a7de5d7800009c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"efb129a92346c1e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e76c8429b652e3f0.json b/allure-report/data/test-cases/efb8b59d749a7701.json similarity index 82% rename from allure-report/data/test-cases/e76c8429b652e3f0.json rename to allure-report/data/test-cases/efb8b59d749a7701.json index e48e74313e3..3ee7bc981b6 100644 --- a/allure-report/data/test-cases/e76c8429b652e3f0.json +++ b/allure-report/data/test-cases/efb8b59d749a7701.json @@ -1 +1 @@ -{"uid":"e76c8429b652e3f0","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"58c4828262135699","name":"stdout","source":"58c4828262135699.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"e76c8429b652e3f0.json","parameterValues":[]} \ No newline at end of file +{"uid":"efb8b59d749a7701","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":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[],"attachments":[{"uid":"ff5fc916c91c2ec1","name":"stdout","source":"ff5fc916c91c2ec1.txt","type":"text/plain","size":31}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CountingSheepTestCase::0","time":{"start":1724733474616,"stop":1724733474616,"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":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Counting sheep..."},{"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.counting_sheep.test_counting_sheep"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54edbc7200b811e956000556/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"efb8b59d749a7701.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed5a184ed941933a.json b/allure-report/data/test-cases/f0006f98d015ae52.json similarity index 75% rename from allure-report/data/test-cases/ed5a184ed941933a.json rename to allure-report/data/test-cases/f0006f98d015ae52.json index 08d319c4ff1..a7c51505f1f 100644 --- a/allure-report/data/test-cases/ed5a184ed941933a.json +++ b/allure-report/data/test-cases/f0006f98d015ae52.json @@ -1 +1 @@ -{"uid":"ed5a184ed941933a","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"db8507235524f855","name":"stdout","source":"db8507235524f855.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ed5a184ed941933a.json","parameterValues":[]} \ No newline at end of file +{"uid":"f0006f98d015ae52","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test node and verify the output","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"bc673310ad989d77","name":"stdout","source":"bc673310ad989d77.txt","type":"text/plain","size":97}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LengthTestCase::0","time":{"start":1724733474272,"stop":1724733474272,"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":"suite","value":"Data Structures"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Fun with lists: length"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.fun_with_lists_length.test_length"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f0006f98d015ae52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b28ff46b20790be2.json b/allure-report/data/test-cases/f0137718eeb8b928.json similarity index 81% rename from allure-report/data/test-cases/b28ff46b20790be2.json rename to allure-report/data/test-cases/f0137718eeb8b928.json index b9b54ab9bdb..da043dcebb5 100644 --- a/allure-report/data/test-cases/b28ff46b20790be2.json +++ b/allure-report/data/test-cases/f0137718eeb8b928.json @@ -1 +1 @@ -{"uid":"b28ff46b20790be2","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"609bbc010bbea5b7","name":"stdout","source":"609bbc010bbea5b7.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"b28ff46b20790be2.json","parameterValues":[]} \ No newline at end of file +{"uid":"f0137718eeb8b928","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","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 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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string 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":"d7e95fbbc7ae4edc","name":"stdout","source":"d7e95fbbc7ae4edc.txt","type":"text/plain","size":356}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1724735127938,"stop":1724735127938,"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":"UTILITIES"},{"name":"story","value":"Valid Parentheses"},{"name":"feature","value":"Validation"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"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.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52774a314c2333f0a7000688/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},"source":"f0137718eeb8b928.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f06328bb4646abe9.json b/allure-report/data/test-cases/f06328bb4646abe9.json new file mode 100644 index 00000000000..e6d352ce093 --- /dev/null +++ b/allure-report/data/test-cases/f06328bb4646abe9.json @@ -0,0 +1 @@ +{"uid":"f06328bb4646abe9","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":1733030100679,"stop":1733030100679,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumTriangularNumbersTestCase","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter a big number as an input and verify the output","time":{"start":1733030100679,"stop":1733030100679,"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_SumTriangularNumbersTestCase::0","time":{"start":1733030100695,"stop":1733030100695,"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":"suite","value":"Algorithms"},{"name":"story","value":"Sum of Triangular Numbers"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"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_7.sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/580878d5d27b84b64c000b51","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"94887fb9761f9305","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1}},{"uid":"6f2806a9130ac2bf","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0}},{"uid":"59cf1cc1a5cff79","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"2165433d4974d104","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"f06328bb4646abe9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/354cda6601a7cded.json b/allure-report/data/test-cases/f06c10d847061aa8.json similarity index 66% rename from allure-report/data/test-cases/354cda6601a7cded.json rename to allure-report/data/test-cases/f06c10d847061aa8.json index f2e63eee27e..b2befc15871 100644 --- a/allure-report/data/test-cases/354cda6601a7cded.json +++ b/allure-report/data/test-cases/f06c10d847061aa8.json @@ -1 +1 @@ -{"uid":"354cda6601a7cded","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"41a6baf598873d9b","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0}},{"uid":"359cda8d66959d20","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"6a8f943df9cf325c","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"354cda6601a7cded.json","parameterValues":[]} \ No newline at end of file +{"uid":"f06c10d847061aa8","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/111dbc365b1f3e78.json b/allure-report/data/test-cases/f0823718dfb5375c.json similarity index 83% rename from allure-report/data/test-cases/111dbc365b1f3e78.json rename to allure-report/data/test-cases/f0823718dfb5375c.json index e9494e47799..ec7251578d8 100644 --- a/allure-report/data/test-cases/111dbc365b1f3e78.json +++ b/allure-report/data/test-cases/f0823718dfb5375c.json @@ -1 +1 @@ -{"uid":"111dbc365b1f3e78","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"111dbc365b1f3e78.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f0b0565c8c046b9.json b/allure-report/data/test-cases/f0b0565c8c046b9.json new file mode 100644 index 00000000000..83fa28d9732 --- /dev/null +++ b/allure-report/data/test-cases/f0b0565c8c046b9.json @@ -0,0 +1 @@ +{"uid":"f0b0565c8c046b9","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724733472952,"stop":1724733472952,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data (list) and verify the output","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f3103a75268ee27b","name":"stdout","source":"f3103a75268ee27b.txt","type":"text/plain","size":939}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveZerosTestCase::0","time":{"start":1724733472952,"stop":1724733472952,"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":"SORTING"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Moving Zeros To The End"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"INTERVIEW QUESTIONS"},{"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.moving_zeros_to_the_end.test_move_zeros"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},"source":"f0b0565c8c046b9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0be518507eb4be5.json b/allure-report/data/test-cases/f0be518507eb4be5.json new file mode 100644 index 00000000000..6dd78368b7f --- /dev/null +++ b/allure-report/data/test-cases/f0be518507eb4be5.json @@ -0,0 +1 @@ +{"uid":"f0be518507eb4be5","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1732428196110,"stop":1732428196110,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckExamTestCase","time":{"start":1732428196109,"stop":1732428196109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter arr1 and arr2 and verify the output","time":{"start":1732428196110,"stop":1732428196110,"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_CheckExamTestCase::0","time":{"start":1732428196111,"stop":1732428196111,"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":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Check the exam"},{"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_8.check_the_exam.test_check_exam"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3dd29055519e23ec000074","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},"source":"f0be518507eb4be5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0d7d5d837d1a81d.json b/allure-report/data/test-cases/f0d7d5d837d1a81d.json new file mode 100644 index 00000000000..568e8c4fcfa --- /dev/null +++ b/allure-report/data/test-cases/f0d7d5d837d1a81d.json @@ -0,0 +1 @@ +{"uid":"f0d7d5d837d1a81d","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1733030100465,"stop":1733030100465,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SaveTestCase","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter sizes, hd and verify the output","time":{"start":1733030100465,"stop":1733030100465,"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_SaveTestCase::0","time":{"start":1733030100465,"stop":1733030100465,"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":"Computer problem series #1: Fill the Hard Disk Drive"},{"name":"tag","value":"LISTS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.fill_the_hard_disk_drive.test_save"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d49c93d089c6e000ff8428c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e50cfef6d8bb4879","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1}},{"uid":"9555c80771d907bb","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0}},{"uid":"edad07e580a5e4ff","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"b56ab9fe385db93a","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"f0d7d5d837d1a81d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95924b9d92f1ced5.json b/allure-report/data/test-cases/f1a12ce167e16758.json similarity index 76% rename from allure-report/data/test-cases/95924b9d92f1ced5.json rename to allure-report/data/test-cases/f1a12ce167e16758.json index 99f4d419ebf..faadeb7f174 100644 --- a/allure-report/data/test-cases/95924b9d92f1ced5.json +++ b/allure-report/data/test-cases/f1a12ce167e16758.json @@ -1 +1 @@ -{"uid":"95924b9d92f1ced5","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ad9ab8a22025032","name":"stdout","source":"1ad9ab8a22025032.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95924b9d92f1ced5.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"50169eac5bf8084a","name":"stdout","source":"50169eac5bf8084a.txt","type":"text/plain","size":41}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase::0","time":{"start":1724733473944,"stop":1724733473944,"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":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f1a12ce167e16758.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f20c6ac583494462.json b/allure-report/data/test-cases/f20c6ac583494462.json deleted file mode 100644 index 9a93a472d8c..00000000000 --- a/allure-report/data/test-cases/f20c6ac583494462.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f20c6ac583494462","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724735129680,"stop":1724735129680,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test start position zero","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position even number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test start position odd number","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e7a51c8d74f448fe","name":"stdout","source":"e7a51c8d74f448fe.txt","type":"text/plain","size":131}],"parameters":[],"stepsCount":3,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MoveTestCase::0","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Grasshopper - Terminal game move function"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.terminal_game_move_function.test_terminal_game_move_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563a631f7cbbc236cf0000c2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f20c6ac583494462.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2be24f9b66669d76.json b/allure-report/data/test-cases/f234151114f72d73.json similarity index 61% rename from allure-report/data/test-cases/2be24f9b66669d76.json rename to allure-report/data/test-cases/f234151114f72d73.json index 0536e6a8c56..bdfde702c99 100644 --- a/allure-report/data/test-cases/2be24f9b66669d76.json +++ b/allure-report/data/test-cases/f234151114f72d73.json @@ -1 +1 @@ -{"uid":"2be24f9b66669d76","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":1732764221056,"stop":1732764221056,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"75a0786e7098fd84","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0}},{"uid":"93cbb9687a6c19d2","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"c03eb686eb3e5a89","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FUNDAMENTALS"]},"source":"2be24f9b66669d76.json","parameterValues":[]} \ No newline at end of file +{"uid":"f234151114f72d73","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":1732764221056,"stop":1732764221056,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PeriodIsLateTestCase","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative tests\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass last, today and period length","time":{"start":1732764221056,"stop":1732764221056,"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_PeriodIsLateTestCase::0","time":{"start":1732764221067,"stop":1732764221067,"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":"FUNDAMENTALS"},{"name":"feature","value":"Date"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Is your period late"},{"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.is_your_period_late.test_is_your_period_late"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578a8a01e9fd1549e50001f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f234151114f72d73.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d3b7c7449825e20.json b/allure-report/data/test-cases/f293182f40cb67e1.json similarity index 73% rename from allure-report/data/test-cases/7d3b7c7449825e20.json rename to allure-report/data/test-cases/f293182f40cb67e1.json index ae5b49a969e..f7203549959 100644 --- a/allure-report/data/test-cases/7d3b7c7449825e20.json +++ b/allure-report/data/test-cases/f293182f40cb67e1.json @@ -1 +1 @@ -{"uid":"7d3b7c7449825e20","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ed45fb968677e918","name":"stdout","source":"ed45fb968677e918.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7d3b7c7449825e20.json","parameterValues":[]} \ No newline at end of file +{"uid":"f293182f40cb67e1","name":"Testing 'vaporcode' function","fullName":"kyu_7.vaporcode.test_vaporcode.VaporcodeTestCase#test_vaporcode","historyId":"91791ed1a852f76f936407ccb3d2dbaa","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'vaporcode' function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter string with spaces and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with special chars and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter crazy string and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string with charsonly and verify the output","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7425734ad14179e4","name":"stdout","source":"7425734ad14179e4.txt","type":"text/plain","size":424}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_VaporcodeTestCase::0","time":{"start":1724735129336,"stop":1724735129336,"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":"parentSuite","value":"Beginner"},{"name":"story","value":"V A P O R C O D E"},{"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.vaporcode.test_vaporcode"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f293182f40cb67e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/30ac3ffad3316fea.json b/allure-report/data/test-cases/f2960499936046d9.json similarity index 79% rename from allure-report/data/test-cases/30ac3ffad3316fea.json rename to allure-report/data/test-cases/f2960499936046d9.json index 46cb4807028..5fba8ea2bbf 100644 --- a/allure-report/data/test-cases/30ac3ffad3316fea.json +++ b/allure-report/data/test-cases/f2960499936046d9.json @@ -1 +1 @@ -{"uid":"30ac3ffad3316fea","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d21731264b505a67","name":"stdout","source":"d21731264b505a67.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"30ac3ffad3316fea.json","parameterValues":[]} \ No newline at end of file +{"uid":"f2960499936046d9","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":1724733472452,"stop":1724733472499,"duration":47},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/2e0eb113649e95e6.json b/allure-report/data/test-cases/f2bd505717a279f1.json similarity index 86% rename from allure-report/data/test-cases/2e0eb113649e95e6.json rename to allure-report/data/test-cases/f2bd505717a279f1.json index 0454ec12a4f..3a82454f8c0 100644 --- a/allure-report/data/test-cases/2e0eb113649e95e6.json +++ b/allure-report/data/test-cases/f2bd505717a279f1.json @@ -1 +1 @@ -{"uid":"2e0eb113649e95e6","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"2e0eb113649e95e6.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/6226ef3ddb316aa7.json b/allure-report/data/test-cases/f2e80dca05a524c5.json similarity index 52% rename from allure-report/data/test-cases/6226ef3ddb316aa7.json rename to allure-report/data/test-cases/f2e80dca05a524c5.json index b21d4328b82..838ef1530d1 100644 --- a/allure-report/data/test-cases/6226ef3ddb316aa7.json +++ b/allure-report/data/test-cases/f2e80dca05a524c5.json @@ -1 +1 @@ -{"uid":"6226ef3ddb316aa7","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47825a7b608174fa","name":"stdout","source":"47825a7b608174fa.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"6226ef3ddb316aa7.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1396f0b44562fb","name":"stdout","source":"1396f0b44562fb.txt","type":"text/plain","size":1649}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StringTransformerTestCase::0","time":{"start":1724733474101,"stop":1724733474101,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"story","value":"String transformer"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","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.string_transformer.test_string_transformer"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f2e80dca05a524c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa8525de66192fb3.json b/allure-report/data/test-cases/f30c1ecba64a2387.json similarity index 86% rename from allure-report/data/test-cases/aa8525de66192fb3.json rename to allure-report/data/test-cases/f30c1ecba64a2387.json index c8a62cf07b5..c6f1b4dfbec 100644 --- a/allure-report/data/test-cases/aa8525de66192fb3.json +++ b/allure-report/data/test-cases/f30c1ecba64a2387.json @@ -1 +1 @@ -{"uid":"aa8525de66192fb3","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"aa8525de66192fb3.json","parameterValues":[]} \ No newline at end of file +{"uid":"f30c1ecba64a2387","name":"Testing dir_reduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/e41edf94f198f2c7.json b/allure-report/data/test-cases/f3b126d8812a5b41.json similarity index 85% rename from allure-report/data/test-cases/e41edf94f198f2c7.json rename to allure-report/data/test-cases/f3b126d8812a5b41.json index 9f77f7ad642..bbf9ef0b4eb 100644 --- a/allure-report/data/test-cases/e41edf94f198f2c7.json +++ b/allure-report/data/test-cases/f3b126d8812a5b41.json @@ -1 +1 @@ -{"uid":"e41edf94f198f2c7","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":1732428194268,"stop":1732428194268,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase::0","time":{"start":1732428194270,"stop":1732428194270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"First non-repeating character"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SEARCH"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"e41edf94f198f2c7.json","parameterValues":[]} \ No newline at end of file +{"uid":"f3b126d8812a5b41","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":1732428194268,"stop":1732428194268,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonRepeatingLetterTestCase","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194268,"stop":1732428194268,"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_FirstNonRepeatingLetterTestCase::0","time":{"start":1732428194270,"stop":1732428194270,"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":"First non-repeating character"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SEARCH"},{"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.first_non_repeating_character.test_first_non_repeating_letter"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bc74d4ac05d0945d00054e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},"source":"f3b126d8812a5b41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f41e10c3a1cb906c.json b/allure-report/data/test-cases/f41e10c3a1cb906c.json new file mode 100644 index 00000000000..ae289dded62 --- /dev/null +++ b/allure-report/data/test-cases/f41e10c3a1cb906c.json @@ -0,0 +1 @@ +{"uid":"f41e10c3a1cb906c","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1732428196258,"stop":1732428196258,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPalindromeTestCase","time":{"start":1732428196257,"stop":1732428196257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428196258,"stop":1732428196258,"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_IsPalindromeTestCase::0","time":{"start":1732428196259,"stop":1732428196259,"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":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Is it a palindrome?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.is_it_a_palindrome.test_is_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57a1fd2ce298a731b20006a4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f41e10c3a1cb906c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7eedfccbd9267527.json b/allure-report/data/test-cases/f44e27fb1ad70c92.json similarity index 77% rename from allure-report/data/test-cases/7eedfccbd9267527.json rename to allure-report/data/test-cases/f44e27fb1ad70c92.json index ace99f4eb1a..bc049db371b 100644 --- a/allure-report/data/test-cases/7eedfccbd9267527.json +++ b/allure-report/data/test-cases/f44e27fb1ad70c92.json @@ -1 +1 @@ -{"uid":"7eedfccbd9267527","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":1732428196385,"stop":1732428196385,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase::0","time":{"start":1732428196386,"stop":1732428196386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"GEOMETRY"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"ALGEBRA"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"7eedfccbd9267527.json","parameterValues":[]} \ No newline at end of file +{"uid":"f44e27fb1ad70c92","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":1732428196385,"stop":1732428196385,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GetSizeTestCase","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass w, h, and d values and verify the result","time":{"start":1732428196385,"stop":1732428196385,"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_GetSizeTestCase::0","time":{"start":1732428196386,"stop":1732428196386,"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":"tag","value":"GEOMETRY"},{"name":"feature","value":"Geometry"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Surface Area and Volume of a Box"},{"name":"suite","value":"Math"},{"name":"tag","value":"ALGEBRA"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.surface_area_and_volume_of_box.test_get_size"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/565f5825379664a26b00007c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},"source":"f44e27fb1ad70c92.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4915582d5908ed3.json b/allure-report/data/test-cases/f4915582d5908ed3.json new file mode 100644 index 00000000000..5fc3a2bbb76 --- /dev/null +++ b/allure-report/data/test-cases/f4915582d5908ed3.json @@ -0,0 +1 @@ +{"uid":"f4915582d5908ed3","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":1733030100867,"stop":1733030100867,"duration":0},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with no non consecutive numbers","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with no non consecutive numbers","time":{"start":1733030100867,"stop":1733030100867,"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_FirstNonConsecutiveTestCase::0","time":{"start":1733030100882,"stop":1733030100882,"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":"story","value":"Find the first non-consecutive number"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cac786da5d1fffa","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2}},{"uid":"dc885b646bda3346","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1}},{"uid":"b289d731e65d2b32","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"630542b4d1ae1e45","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f4915582d5908ed3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43c9c9efb1c04251.json b/allure-report/data/test-cases/f4b278a94a1e847f.json similarity index 84% rename from allure-report/data/test-cases/43c9c9efb1c04251.json rename to allure-report/data/test-cases/f4b278a94a1e847f.json index fddd3883689..c3432e9e155 100644 --- a/allure-report/data/test-cases/43c9c9efb1c04251.json +++ b/allure-report/data/test-cases/f4b278a94a1e847f.json @@ -1 +1 @@ -{"uid":"43c9c9efb1c04251","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27ebdb1cdb347243","name":"stdout","source":"27ebdb1cdb347243.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"43c9c9efb1c04251.json","parameterValues":[]} \ No newline at end of file +{"uid":"f4b278a94a1e847f","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724733474929,"stop":1724733474929,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter animal's name and dish as arguments and assert the output","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1740535c6865a94c","name":"stdout","source":"1740535c6865a94c.txt","type":"text/plain","size":193}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FeastTestCase::0","time":{"start":1724733474929,"stop":1724733474929,"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":"epic","value":"8 kyu"},{"name":"story","value":"The Feast of Many Beasts"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"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.the_feast_of_many_beasts.test_feast"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5aa736a455f906981800360d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f4b278a94a1e847f.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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1733030100648,"stop":1733030100648,"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_MenFromBoysTestCase::0","time":{"start":1733030100648,"stop":1733030100648,"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":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"story","value":"Sort Out The Men From Boys"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5af15a37de4c7f223e00012d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a2ff67830434b9af","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0}},{"uid":"83db549d27afd32b","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1}},{"uid":"fa7a68ec7ece512f","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"5b0d83830c13fe88","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"f4e7ccb7c6ccb848.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4f1b439f55706.json b/allure-report/data/test-cases/f4f1b439f55706.json new file mode 100644 index 00000000000..d7c8d7b7c75 --- /dev/null +++ b/allure-report/data/test-cases/f4f1b439f55706.json @@ -0,0 +1 @@ +{"uid":"f4f1b439f55706","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724735129586,"stop":1724735129586,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass an array with 2 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass an array with 3 members (negative)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass large array (positive)","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"18d6da20137be417","name":"stdout","source":"18d6da20137be417.txt","type":"text/plain","size":560}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LogicalCalculatorTestCase::0","time":{"start":1724735129602,"stop":1724735129602,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Logical Calculator"},{"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.logical_calculator.test_logical_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57096af70dad013aa200007b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f4f1b439f55706.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bc730ff95f1c205.json b/allure-report/data/test-cases/f50250db1c4c6a23.json similarity index 79% rename from allure-report/data/test-cases/5bc730ff95f1c205.json rename to allure-report/data/test-cases/f50250db1c4c6a23.json index 23e4e086742..8e98f1df150 100644 --- a/allure-report/data/test-cases/5bc730ff95f1c205.json +++ b/allure-report/data/test-cases/f50250db1c4c6a23.json @@ -1 +1 @@ -{"uid":"5bc730ff95f1c205","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732428194528,"stop":1732428194528,"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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5bc730ff95f1c205.json","parameterValues":[]} \ No newline at end of file +{"uid":"f50250db1c4c6a23","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1732428194528,"stop":1732428194528,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/63ceea7fe946ff07.json b/allure-report/data/test-cases/f5045863352b0844.json similarity index 91% rename from allure-report/data/test-cases/63ceea7fe946ff07.json rename to allure-report/data/test-cases/f5045863352b0844.json index f479d37849c..93175bf9463 100644 --- a/allure-report/data/test-cases/63ceea7fe946ff07.json +++ b/allure-report/data/test-cases/f5045863352b0844.json @@ -1 +1 @@ -{"uid":"63ceea7fe946ff07","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":"63ceea7fe946ff07.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/5908d364b75f844e.json b/allure-report/data/test-cases/f52796969ad8c6a8.json similarity index 80% rename from allure-report/data/test-cases/5908d364b75f844e.json rename to allure-report/data/test-cases/f52796969ad8c6a8.json index 8383684bf2c..32007444ea9 100644 --- a/allure-report/data/test-cases/5908d364b75f844e.json +++ b/allure-report/data/test-cases/f52796969ad8c6a8.json @@ -1 +1 @@ -{"uid":"5908d364b75f844e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase","time":{"start":1732764220382,"stop":1732764220382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220384,"stop":1732764220384,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase::0","time":{"start":1732764220386,"stop":1732764220386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"Valid Braces"},{"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.valid_braces.test_valid_braces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5277c8a221e209d3f6000b56","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"5908d364b75f844e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidBracesTestCase","time":{"start":1732764220382,"stop":1732764220382,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732764220384,"stop":1732764220384,"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_ValidBracesTestCase::0","time":{"start":1732764220386,"stop":1732764220386,"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":"Valid Braces"},{"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.valid_braces.test_valid_braces"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5277c8a221e209d3f6000b56","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f52796969ad8c6a8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ae4ebdaea3850cc0.json b/allure-report/data/test-cases/f530c22a860ae687.json similarity index 78% rename from allure-report/data/test-cases/ae4ebdaea3850cc0.json rename to allure-report/data/test-cases/f530c22a860ae687.json index 707f73e9600..11f35dcbece 100644 --- a/allure-report/data/test-cases/ae4ebdaea3850cc0.json +++ b/allure-report/data/test-cases/f530c22a860ae687.json @@ -1 +1 @@ -{"uid":"ae4ebdaea3850cc0","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6ccbedecdc10bf7c","name":"stdout","source":"6ccbedecdc10bf7c.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"ae4ebdaea3850cc0.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a list with positive non consecutive number","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f0f675da06acca44","name":"stdout","source":"f0f675da06acca44.txt","type":"text/plain","size":453}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase::0","time":{"start":1724735129461,"stop":1724735129461,"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":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Find the first non-consecutive number"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f530c22a860ae687.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f55783c4fa90131e.json b/allure-report/data/test-cases/f55783c4fa90131e.json new file mode 100644 index 00000000000..4cd4b014696 --- /dev/null +++ b/allure-report/data/test-cases/f55783c4fa90131e.json @@ -0,0 +1 @@ +{"uid":"f55783c4fa90131e","name":"Simple test for invalid parentheses","fullName":"kyu_7.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses_false","historyId":"94f83aeabc8bb6c972cdb636509770fa","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of mixed type of chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Input consist of alphabet chars and spaces","time":{"start":1733030100137,"stop":1733030100137,"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_FirstDupTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ebdfd3783858102","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1}},{"uid":"6b82f1725d1453b9","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0}},{"uid":"bbb128976da4f18a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"8dfb78838f25ea50","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["ALGORITHMS"]},"source":"f5898a8468d0cd4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f2a7bab28da55269.json b/allure-report/data/test-cases/f5f644a4f4820d20.json similarity index 76% rename from allure-report/data/test-cases/f2a7bab28da55269.json rename to allure-report/data/test-cases/f5f644a4f4820d20.json index 8e28c9945af..cc4350be5bb 100644 --- a/allure-report/data/test-cases/f2a7bab28da55269.json +++ b/allure-report/data/test-cases/f5f644a4f4820d20.json @@ -1 +1 @@ -{"uid":"f2a7bab28da55269","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"653d98a4ef66ecba","name":"stdout","source":"653d98a4ef66ecba.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2a7bab28da55269.json","parameterValues":[]} \ No newline at end of file +{"uid":"f5f644a4f4820d20","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f2d499684f15ad9","name":"stdout","source":"1f2d499684f15ad9.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724733473108,"stop":1724733473108,"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":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Character frequency"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f5f644a4f4820d20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb6e602a844f0715.json b/allure-report/data/test-cases/f60f63436b65a2b8.json similarity index 83% rename from allure-report/data/test-cases/bb6e602a844f0715.json rename to allure-report/data/test-cases/f60f63436b65a2b8.json index 82ead165c25..ea6193c3872 100644 --- a/allure-report/data/test-cases/bb6e602a844f0715.json +++ b/allure-report/data/test-cases/f60f63436b65a2b8.json @@ -1 +1 @@ -{"uid":"bb6e602a844f0715","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase::0","time":{"start":1732428194490,"stop":1732428194490,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Simple Pig Latin"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"bb6e602a844f0715.json","parameterValues":[]} \ No newline at end of file +{"uid":"f60f63436b65a2b8","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PigItTestCase","time":{"start":1732428194488,"stop":1732428194488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194488,"stop":1732428194488,"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_PigItTestCase::0","time":{"start":1732428194490,"stop":1732428194490,"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":"Simple Pig Latin"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"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.simple_pig_latin.test_pig_it"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/520b9d2ad5c005041100000f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f60f63436b65a2b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4acb1c573ef8b7bb.json b/allure-report/data/test-cases/f645f4897564ea6f.json similarity index 86% rename from allure-report/data/test-cases/4acb1c573ef8b7bb.json rename to allure-report/data/test-cases/f645f4897564ea6f.json index 594dd9a5c98..4da7e49e569 100644 --- a/allure-report/data/test-cases/4acb1c573ef8b7bb.json +++ b/allure-report/data/test-cases/f645f4897564ea6f.json @@ -1 +1 @@ -{"uid":"4acb1c573ef8b7bb","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"4acb1c573ef8b7bb.json","parameterValues":[]} \ No newline at end of file +{"uid":"f645f4897564ea6f","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with one char only\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass one char string and verify the output","time":{"start":1732428196369,"stop":1732428196369,"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_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"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":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f645f4897564ea6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/555a795f08de5e6c.json b/allure-report/data/test-cases/f6a5ab1c4ff51693.json similarity index 81% rename from allure-report/data/test-cases/555a795f08de5e6c.json rename to allure-report/data/test-cases/f6a5ab1c4ff51693.json index f81cc08775a..6f775ead6cb 100644 --- a/allure-report/data/test-cases/555a795f08de5e6c.json +++ b/allure-report/data/test-cases/f6a5ab1c4ff51693.json @@ -1 +1 @@ -{"uid":"555a795f08de5e6c","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":1732428195740,"stop":1732428195740,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"555a795f08de5e6c.json","parameterValues":[]} \ No newline at end of file +{"uid":"f6a5ab1c4ff51693","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":1732428195740,"stop":1732428195740,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195740,"stop":1732428195740,"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_SumOfNumbersTestCase::0","time":{"start":1732428195751,"stop":1732428195751,"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 Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"tag","value":"FUNDAMENTALS"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f6a5ab1c4ff51693.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f70eefcf6fb13da.json b/allure-report/data/test-cases/f70eefcf6fb13da.json new file mode 100644 index 00000000000..6333fdddb21 --- /dev/null +++ b/allure-report/data/test-cases/f70eefcf6fb13da.json @@ -0,0 +1 @@ +{"uid":"f70eefcf6fb13da","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":1732428195466,"stop":1732428195466,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindTheOddIntTestCase","time":{"start":1732428195465,"stop":1732428195465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1732428195466,"stop":1732428195466,"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_FindTheOddIntTestCase::0","time":{"start":1732428195467,"stop":1732428195467,"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":"Find the odd int"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_odd_int.test_find_the_odd_int"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54da5a58ea159efa38000836","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f70eefcf6fb13da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f74116cee1d73fd7.json b/allure-report/data/test-cases/f74116cee1d73fd7.json new file mode 100644 index 00000000000..9cdf9c1b9f2 --- /dev/null +++ b/allure-report/data/test-cases/f74116cee1d73fd7.json @@ -0,0 +1 @@ +{"uid":"f74116cee1d73fd7","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":1733030100403,"stop":1733030100403,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert the result","time":{"start":1733030100403,"stop":1733030100403,"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_SumOfNumbersTestCase::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":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Numbers"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Addition"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55f2b110f61eb01779000053","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ed2f3c923fde4413","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1}},{"uid":"51801b1697e4932d","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0}},{"uid":"3bdd18878d95b69a","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"701c3cee2d2ca0d","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f74116cee1d73fd7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f74a1a4c19be5344.json b/allure-report/data/test-cases/f74a1a4c19be5344.json new file mode 100644 index 00000000000..5404ecaf1a7 --- /dev/null +++ b/allure-report/data/test-cases/f74a1a4c19be5344.json @@ -0,0 +1 @@ +{"uid":"f74a1a4c19be5344","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":1733030100215,"stop":1733030100215,"duration":0},"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PermutePalindromeTestCase","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter empty string and verify the result","time":{"start":1733030100215,"stop":1733030100215,"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_PermutePalindromeTestCase::0","time":{"start":1733030100215,"stop":1733030100215,"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":"Permute a Palindrome"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"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.permute_a_palindrome.test_permute_a_palindrome"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58ae6ae22c3aaafc58000079","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5ba553d4084ace90","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0}},{"uid":"d21849f45071cee3","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0}},{"uid":"1c311c9e8beb5e15","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"18128d81fd90263f","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f74a1a4c19be5344.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76b07a3b0b784bd3.json b/allure-report/data/test-cases/f798d0ae3c0161ae.json similarity index 81% rename from allure-report/data/test-cases/76b07a3b0b784bd3.json rename to allure-report/data/test-cases/f798d0ae3c0161ae.json index 09b8b55c1b6..2ef56139e6d 100644 --- a/allure-report/data/test-cases/76b07a3b0b784bd3.json +++ b/allure-report/data/test-cases/f798d0ae3c0161ae.json @@ -1 +1 @@ -{"uid":"76b07a3b0b784bd3","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732428196069,"stop":1732428196069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"76b07a3b0b784bd3.json","parameterValues":[]} \ No newline at end of file +{"uid":"f798d0ae3c0161ae","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test square number: 4","time":{"start":1732428196069,"stop":1732428196069,"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_YouAreSquareTestCase::0","time":{"start":1732428196085,"stop":1732428196085,"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":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"You're a square"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"feature","value":"Square Calculation"},{"name":"tag","value":"MATH"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54c27a33fb7da0db0100040e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"f798d0ae3c0161ae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7ab664600a360e4.json b/allure-report/data/test-cases/f7ab664600a360e4.json new file mode 100644 index 00000000000..4d8a51c5e13 --- /dev/null +++ b/allure-report/data/test-cases/f7ab664600a360e4.json @@ -0,0 +1 @@ +{"uid":"f7ab664600a360e4","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1abf48c153a1a17","name":"stdout","source":"1abf48c153a1a17.txt","type":"text/plain","size":154}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1724735128000,"stop":1724735128000,"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":"Character frequency"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f7ab664600a360e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6566372edd2dc54c.json b/allure-report/data/test-cases/f7d62cc3e2943023.json similarity index 94% rename from allure-report/data/test-cases/6566372edd2dc54c.json rename to allure-report/data/test-cases/f7d62cc3e2943023.json index d7e317b55b6..cbbc10171ef 100644 --- a/allure-report/data/test-cases/6566372edd2dc54c.json +++ b/allure-report/data/test-cases/f7d62cc3e2943023.json @@ -1 +1 @@ -{"uid":"6566372edd2dc54c","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":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":"6566372edd2dc54c.json","parameterValues":[]} \ No newline at end of file +{"uid":"f7d62cc3e2943023","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":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/5c0c21f2226a901c.json b/allure-report/data/test-cases/f7d85b85e5647233.json similarity index 87% rename from allure-report/data/test-cases/5c0c21f2226a901c.json rename to allure-report/data/test-cases/f7d85b85e5647233.json index dd74a094b79..78c181624e0 100644 --- a/allure-report/data/test-cases/5c0c21f2226a901c.json +++ b/allure-report/data/test-cases/f7d85b85e5647233.json @@ -1 +1 @@ -{"uid":"5c0c21f2226a901c","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase::0","time":{"start":1732428195701,"stop":1732428195701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Vasya - Clerk"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"5c0c21f2226a901c.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TicketsTestCase","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test input (list) and verify the output","time":{"start":1732428195699,"stop":1732428195699,"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_TicketsTestCase::0","time":{"start":1732428195701,"stop":1732428195701,"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":"Vasya - Clerk"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"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_6.vasya_clerk.test_tickets"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},"source":"f7d85b85e5647233.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f807c10786110eac.json b/allure-report/data/test-cases/f807c10786110eac.json new file mode 100644 index 00000000000..d0363dfda36 --- /dev/null +++ b/allure-report/data/test-cases/f807c10786110eac.json @@ -0,0 +1 @@ +{"uid":"f807c10786110eac","name":"Large lists","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_large_list","historyId":"3b3f116ec3ac1abf551a51811b4a8900","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstNonConsecutiveTestCase","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Large lists\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a large list with no non consecutive numbers","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with no non consecutive numbers","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass a large list with non consecutive number","time":{"start":1733030100867,"stop":1733030100867,"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_FirstNonConsecutiveTestCase::0","time":{"start":1733030100882,"stop":1733030100882,"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":"story","value":"Find the first non-consecutive number"},{"name":"tag","value":"FUNDAMENTALS"},{"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.find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58f8a3a27a5c28d92e000144","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b876874728bc13e3","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0}},{"uid":"a24b90978f06ce4b","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0}},{"uid":"7616dbf2a034685c","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"d8a647ffef20d33c","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"f807c10786110eac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bf735ebb9d90923.json b/allure-report/data/test-cases/f8378587d25efdca.json similarity index 59% rename from allure-report/data/test-cases/5bf735ebb9d90923.json rename to allure-report/data/test-cases/f8378587d25efdca.json index 2f18338abde..f19b856b8df 100644 --- a/allure-report/data/test-cases/5bf735ebb9d90923.json +++ b/allure-report/data/test-cases/f8378587d25efdca.json @@ -1 +1 @@ -{"uid":"5bf735ebb9d90923","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase::0","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Share prices"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"name":"tag","value":"FORMATTING"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"879748b1d447d0a9","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1}},{"uid":"1212df96f6b2dc34","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"a4637a157e542cb8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"5bf735ebb9d90923.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharePriceTestCase","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter invested, changes and verify the output","time":{"start":1732764220651,"stop":1732764220651,"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_SharePriceTestCase::0","time":{"start":1732764220651,"stop":1732764220651,"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":"Share prices"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"name":"tag","value":"FORMATTING"},{"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_7.share_prices.test_share_price"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5603a4dd3d96ef798f000068","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},"source":"f8378587d25efdca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f83b86d7cbc0ffa1.json b/allure-report/data/test-cases/f83b86d7cbc0ffa1.json new file mode 100644 index 00000000000..96acfefede2 --- /dev/null +++ b/allure-report/data/test-cases/f83b86d7cbc0ffa1.json @@ -0,0 +1 @@ +{"uid":"f83b86d7cbc0ffa1","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":1733030100153,"stop":1733030100153,"duration":0},"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstDupTestCase","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Repeating char is a space.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Input consist of alphabet chars and spaces","time":{"start":1733030100153,"stop":1733030100153,"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_FirstDupTestCase::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":"story","value":"First character that repeats"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"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.first_character_that_repeats.test_first_character_that_repeats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54f9f4d7c41722304e000bbb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6da9e4a8a463c592","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1}},{"uid":"44684f939061cdde","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0}},{"uid":"48e1ee32ef518911","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"f1a12ce167e16758","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":"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}}]},"tags":["ALGORITHMS"]},"source":"f83b86d7cbc0ffa1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12c07b407ce072f5.json b/allure-report/data/test-cases/f83dd9e8b48c6bab.json similarity index 80% rename from allure-report/data/test-cases/12c07b407ce072f5.json rename to allure-report/data/test-cases/f83dd9e8b48c6bab.json index 70ed72b666e..bacb890098d 100644 --- a/allure-report/data/test-cases/12c07b407ce072f5.json +++ b/allure-report/data/test-cases/f83dd9e8b48c6bab.json @@ -1 +1 @@ -{"uid":"12c07b407ce072f5","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7a82343faf93d23b","name":"stdout","source":"7a82343faf93d23b.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"12c07b407ce072f5.json","parameterValues":[]} \ No newline at end of file +{"uid":"f83dd9e8b48c6bab","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":1724733474710,"stop":1724733474710,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d5ed21afa8637a26","name":"stdout","source":"d5ed21afa8637a26.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1724733474710,"stop":1724733474710,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"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.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"f83dd9e8b48c6bab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5b469ea69ba375b.json b/allure-report/data/test-cases/f85747ab66ba1ea5.json similarity index 59% rename from allure-report/data/test-cases/a5b469ea69ba375b.json rename to allure-report/data/test-cases/f85747ab66ba1ea5.json index 40374f0387e..5e9f3f90ce8 100644 --- a/allure-report/data/test-cases/a5b469ea69ba375b.json +++ b/allure-report/data/test-cases/f85747ab66ba1ea5.json @@ -1 +1 @@ -{"uid":"a5b469ea69ba375b","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"26a447cb7c15cb4e","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0}},{"uid":"de09867d078b6af4","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"11ff02c2df19530d","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"a5b469ea69ba375b.json","parameterValues":[]} \ No newline at end of file +{"uid":"f85747ab66ba1ea5","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732764221204,"stop":1732764221204,"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_ReversedStringsTestCase::0","time":{"start":1732764221219,"stop":1732764221219,"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":"story","value":"Reversed Strings"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 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_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f85747ab66ba1ea5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8789af2e0cead9e.json b/allure-report/data/test-cases/f8789af2e0cead9e.json new file mode 100644 index 00000000000..1017310a2a3 --- /dev/null +++ b/allure-report/data/test-cases/f8789af2e0cead9e.json @@ -0,0 +1 @@ +{"uid":"f8789af2e0cead9e","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":1733030101148,"stop":1733030101148,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_WarnTheSheepTestCase::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":"normal"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Lists"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Control Flow"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"A wolf in sheep's clothing"},{"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.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5c8bfa44b9d1192e1ebd3d15","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"44221036fb99a571","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0}},{"uid":"15fb7a87bc12b45a","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0}},{"uid":"7e8e53d16d69077","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"6959c64cdad7a79a","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},"source":"f8789af2e0cead9e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f87e2580dd045df5.json b/allure-report/data/test-cases/f87e2580dd045df5.json new file mode 100644 index 00000000000..a26ecc24aa7 --- /dev/null +++ b/allure-report/data/test-cases/f87e2580dd045df5.json @@ -0,0 +1 @@ +{"uid":"f87e2580dd045df5","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1733030098739,"stop":1733030098739,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/f8b721dfa4278fea.json b/allure-report/data/test-cases/f8b721dfa4278fea.json new file mode 100644 index 00000000000..31e6d9aa2ac --- /dev/null +++ b/allure-report/data/test-cases/f8b721dfa4278fea.json @@ -0,0 +1 @@ +{"uid":"f8b721dfa4278fea","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":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Assert the result","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f1e6261fe55f12","name":"stdout","source":"7f1e6261fe55f12.txt","type":"text/plain","size":33}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfNumbersTestCase::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":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sum of Numbers"},{"name":"feature","value":"Addition"},{"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_7.beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"f8b721dfa4278fea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0cf41ee7ec62257.json b/allure-report/data/test-cases/f8f168b037580997.json similarity index 83% rename from allure-report/data/test-cases/f0cf41ee7ec62257.json rename to allure-report/data/test-cases/f8f168b037580997.json index 4ffd043b762..3418c7552c5 100644 --- a/allure-report/data/test-cases/f0cf41ee7ec62257.json +++ b/allure-report/data/test-cases/f8f168b037580997.json @@ -1 +1 @@ -{"uid":"f0cf41ee7ec62257","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":1732428195692,"stop":1732428195692,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1732428195693,"stop":1732428195693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Unique In Order"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"f0cf41ee7ec62257.json","parameterValues":[]} \ No newline at end of file +{"uid":"f8f168b037580997","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":1732428195692,"stop":1732428195692,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1732428195692,"stop":1732428195692,"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_UniqueInOrderTestCase::0","time":{"start":1732428195693,"stop":1732428195693,"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 LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Unique In Order"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54e6533c92449cc251001667","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},"source":"f8f168b037580997.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26a447cb7c15cb4e.json b/allure-report/data/test-cases/f8f5ce581d6aa123.json similarity index 79% rename from allure-report/data/test-cases/26a447cb7c15cb4e.json rename to allure-report/data/test-cases/f8f5ce581d6aa123.json index ca43067985d..28a709e884c 100644 --- a/allure-report/data/test-cases/26a447cb7c15cb4e.json +++ b/allure-report/data/test-cases/f8f5ce581d6aa123.json @@ -1 +1 @@ -{"uid":"26a447cb7c15cb4e","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"26a447cb7c15cb4e.json","parameterValues":[]} \ No newline at end of file +{"uid":"f8f5ce581d6aa123","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1732428196359,"stop":1732428196359,"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_ReversedStringsTestCase::0","time":{"start":1732428196370,"stop":1732428196370,"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":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Reversed Strings"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"f8f5ce581d6aa123.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f909236d8dbf12db.json b/allure-report/data/test-cases/f909236d8dbf12db.json new file mode 100644 index 00000000000..765833e01f3 --- /dev/null +++ b/allure-report/data/test-cases/f909236d8dbf12db.json @@ -0,0 +1 @@ +{"uid":"f909236d8dbf12db","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":1732428195926,"stop":1732428195926,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_RemoveSmallestTestCase","time":{"start":1732428195920,"stop":1732428195920,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with empty list\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Remove smallest value from the empty list","time":{"start":1732428195926,"stop":1732428195926,"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_RemoveSmallestTestCase::0","time":{"start":1732428195940,"stop":1732428195940,"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":"The museum of incredible dull things"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","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_7.remove_the_minimum.test_remove_the_minimum"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/563cf89eb4747c5fb100001b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},"source":"f909236d8dbf12db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9bbc705106eff98.json b/allure-report/data/test-cases/f997fb8bda584215.json similarity index 79% rename from allure-report/data/test-cases/d9bbc705106eff98.json rename to allure-report/data/test-cases/f997fb8bda584215.json index 8c92e076268..f408d5e1a00 100644 --- a/allure-report/data/test-cases/d9bbc705106eff98.json +++ b/allure-report/data/test-cases/f997fb8bda584215.json @@ -1 +1 @@ -{"uid":"d9bbc705106eff98","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4eb3eb579b763a8f","name":"stdout","source":"4eb3eb579b763a8f.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d9bbc705106eff98.json","parameterValues":[]} \ No newline at end of file +{"uid":"f997fb8bda584215","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter n and verify the result","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7c4d33961ba9ecde","name":"stdout","source":"7c4d33961ba9ecde.txt","type":"text/plain","size":53}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_HoopCountTestCase::0","time":{"start":1724733474804,"stop":1724733474804,"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":"Conditions"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Keep up the hoop"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.keep_up_the_hoop.test_hoop_count"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cb632c1a5d7b3ad0000145/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f997fb8bda584215.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef2ebe964f1d2f5f.json b/allure-report/data/test-cases/f9dcb27f6a2f5731.json similarity index 94% rename from allure-report/data/test-cases/ef2ebe964f1d2f5f.json rename to allure-report/data/test-cases/f9dcb27f6a2f5731.json index 36444553339..6ee5a0f6cd2 100644 --- a/allure-report/data/test-cases/ef2ebe964f1d2f5f.json +++ b/allure-report/data/test-cases/f9dcb27f6a2f5731.json @@ -1 +1 @@ -{"uid":"ef2ebe964f1d2f5f","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":"ef2ebe964f1d2f5f.json","parameterValues":[]} \ No newline at end of file +{"uid":"f9dcb27f6a2f5731","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":"f9dcb27f6a2f5731.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c657b72ebb12427.json b/allure-report/data/test-cases/f9e3772c62ee9c71.json similarity index 81% rename from allure-report/data/test-cases/5c657b72ebb12427.json rename to allure-report/data/test-cases/f9e3772c62ee9c71.json index 0549e5a3885..99773bb00d2 100644 --- a/allure-report/data/test-cases/5c657b72ebb12427.json +++ b/allure-report/data/test-cases/f9e3772c62ee9c71.json @@ -1 +1 @@ -{"uid":"5c657b72ebb12427","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8bb1795fd7e9c165","name":"stdout","source":"8bb1795fd7e9c165.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"5c657b72ebb12427.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/99bd3e79aeea5636.json b/allure-report/data/test-cases/fa6ca2a58e326e7c.json similarity index 67% rename from allure-report/data/test-cases/99bd3e79aeea5636.json rename to allure-report/data/test-cases/fa6ca2a58e326e7c.json index e7c1a4e72fc..b879637b329 100644 --- a/allure-report/data/test-cases/99bd3e79aeea5636.json +++ b/allure-report/data/test-cases/fa6ca2a58e326e7c.json @@ -1 +1 @@ -{"uid":"99bd3e79aeea5636","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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95e685797940e119","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1}},{"uid":"99e31d655e3161a","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"83b34d0610fd83c6","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"99bd3e79aeea5636.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/139cceadff83cc0d.json b/allure-report/data/test-cases/fa7a68ec7ece512f.json similarity index 82% rename from allure-report/data/test-cases/139cceadff83cc0d.json rename to allure-report/data/test-cases/fa7a68ec7ece512f.json index 8c012a93518..3848e1878ec 100644 --- a/allure-report/data/test-cases/139cceadff83cc0d.json +++ b/allure-report/data/test-cases/fa7a68ec7ece512f.json @@ -1 +1 @@ -{"uid":"139cceadff83cc0d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9fbeafabb75260d1","name":"stdout","source":"9fbeafabb75260d1.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"139cceadff83cc0d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Given an list of integers => separate the even numbers from the odds","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"71fc07a67416a0d6","name":"stdout","source":"71fc07a67416a0d6.txt","type":"text/plain","size":1178}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MenFromBoysTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"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":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Sort Out The Men From Boys"},{"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.sort_out_the_men_from_boys.test_men_from_boys"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa7a68ec7ece512f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/296f86e34803d6c1.json b/allure-report/data/test-cases/fa8c3ecdf2af6d24.json similarity index 78% rename from allure-report/data/test-cases/296f86e34803d6c1.json rename to allure-report/data/test-cases/fa8c3ecdf2af6d24.json index e23f25a958a..1f4e15830c2 100644 --- a/allure-report/data/test-cases/296f86e34803d6c1.json +++ b/allure-report/data/test-cases/fa8c3ecdf2af6d24.json @@ -1 +1 @@ -{"uid":"296f86e34803d6c1","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"efdc700a12236023","name":"stdout","source":"efdc700a12236023.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"296f86e34803d6c1.json","parameterValues":[]} \ No newline at end of file +{"uid":"fa8c3ecdf2af6d24","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/fb3c794e959e544.json b/allure-report/data/test-cases/fb3c794e959e544.json new file mode 100644 index 00000000000..2285ea54c2b --- /dev/null +++ b/allure-report/data/test-cases/fb3c794e959e544.json @@ -0,0 +1 @@ +{"uid":"fb3c794e959e544","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1732764219186,"stop":1732764219186,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/3714d7b27c33cf44.json b/allure-report/data/test-cases/fb5c1665d86892a0.json similarity index 83% rename from allure-report/data/test-cases/3714d7b27c33cf44.json rename to allure-report/data/test-cases/fb5c1665d86892a0.json index 860d2271131..a41d474a672 100644 --- a/allure-report/data/test-cases/3714d7b27c33cf44.json +++ b/allure-report/data/test-cases/fb5c1665d86892a0.json @@ -1 +1 @@ -{"uid":"3714d7b27c33cf44","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase::0","time":{"start":1732428196217,"stop":1732428196217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"CONDITIONAL STATEMENTS"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"3714d7b27c33cf44.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreetTestCase","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test name equals owner","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Test name not equals owner","time":{"start":1732428196215,"stop":1732428196215,"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_GreetTestCase::0","time":{"start":1732428196217,"stop":1732428196217,"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":"CONDITIONAL STATEMENTS"},{"name":"feature","value":"Conditions"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Personalized greeting"},{"name":"suite","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5772da22b89313a4d50012f7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},"source":"fb5c1665d86892a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb64f9c33c11676a.json b/allure-report/data/test-cases/fb64f9c33c11676a.json deleted file mode 100644 index e31e412618e..00000000000 --- a/allure-report/data/test-cases/fb64f9c33c11676a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fb64f9c33c11676a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e932ac087f99689b","name":"stdout","source":"e932ac087f99689b.txt","type":"text/plain","size":81}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_InviteMoreWomenTestCase::0","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Simple Fun #152: Invite More Women?"},{"name":"feature","value":"Lists"},{"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_7.simple_fun_152.test_invite_more_women"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fb64f9c33c11676a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb676676627eae5f.json b/allure-report/data/test-cases/fb676676627eae5f.json new file mode 100644 index 00000000000..7863780a3a6 --- /dev/null +++ b/allure-report/data/test-cases/fb676676627eae5f.json @@ -0,0 +1 @@ +{"uid":"fb676676627eae5f","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1733030098646,"stop":1733030098646,"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":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/7c6af0e0a129f035.json b/allure-report/data/test-cases/fbd2d46d837906e7.json similarity index 67% rename from allure-report/data/test-cases/7c6af0e0a129f035.json rename to allure-report/data/test-cases/fbd2d46d837906e7.json index 7c79ab551ab..bf4bf769d3e 100644 --- a/allure-report/data/test-cases/7c6af0e0a129f035.json +++ b/allure-report/data/test-cases/fbd2d46d837906e7.json @@ -1 +1 @@ -{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ece4d55c6bd3b35","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2}},{"uid":"bdcd06f2ac6e82c9","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"3b2be2c8b8f3d0bb","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"7c6af0e0a129f035.json","parameterValues":[]} \ No newline at end of file +{"uid":"fbd2d46d837906e7","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/d7ea74c17659aeca.json b/allure-report/data/test-cases/fbe0584170aaf70b.json similarity index 81% rename from allure-report/data/test-cases/d7ea74c17659aeca.json rename to allure-report/data/test-cases/fbe0584170aaf70b.json index 86c9864f077..a0975c1b96c 100644 --- a/allure-report/data/test-cases/d7ea74c17659aeca.json +++ b/allure-report/data/test-cases/fbe0584170aaf70b.json @@ -1 +1 @@ -{"uid":"d7ea74c17659aeca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1ce4c0edbbe04f9e","name":"stdout","source":"1ce4c0edbbe04f9e.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d7ea74c17659aeca.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass test data and verify the output","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b71080d98c3c005a","name":"stdout","source":"b71080d98c3c005a.txt","type":"text/plain","size":202}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_UniqueInOrderTestCase::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":"Unique In Order"},{"name":"suite","value":"Advanced Language Features"},{"name":"epic","value":"6 kyu"},{"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.unique_in_order.test_unique_in_order"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fbe0584170aaf70b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/168ffd09c766442f.json b/allure-report/data/test-cases/fc29d3ec888c78ca.json similarity index 80% rename from allure-report/data/test-cases/168ffd09c766442f.json rename to allure-report/data/test-cases/fc29d3ec888c78ca.json index 147e4b67809..219cc2e46dd 100644 --- a/allure-report/data/test-cases/168ffd09c766442f.json +++ b/allure-report/data/test-cases/fc29d3ec888c78ca.json @@ -1 +1 @@ -{"uid":"168ffd09c766442f","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8e812b8e3303683b","name":"stdout","source":"8e812b8e3303683b.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"168ffd09c766442f.json","parameterValues":[]} \ No newline at end of file +{"uid":"fc29d3ec888c78ca","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/b0cc123728fa2f2d.json b/allure-report/data/test-cases/fc354bf003c2f263.json similarity index 63% rename from allure-report/data/test-cases/b0cc123728fa2f2d.json rename to allure-report/data/test-cases/fc354bf003c2f263.json index db4b0e330bf..904761ed394 100644 --- a/allure-report/data/test-cases/b0cc123728fa2f2d.json +++ b/allure-report/data/test-cases/fc354bf003c2f263.json @@ -1 +1 @@ -{"uid":"b0cc123728fa2f2d","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"22d82bbeb537c71a","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0}},{"uid":"2c38900f28571c1","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"34931ad2bd045d0c","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"b0cc123728fa2f2d.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LetterFrequencyTestCase","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a test string and verify the result","time":{"start":1732764219279,"stop":1732764219279,"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_LetterFrequencyTestCase::0","time":{"start":1732764219291,"stop":1732764219291,"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":"Character frequency"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"UTILITIES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"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.character_frequency.test_character_frequency"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53e895e28f9e66a56900011a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},"source":"fc354bf003c2f263.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1056dd0bc1f2f4e.json b/allure-report/data/test-cases/fc440329cf5fac04.json similarity index 63% rename from allure-report/data/test-cases/b1056dd0bc1f2f4e.json rename to allure-report/data/test-cases/fc440329cf5fac04.json index 325f82265dd..8f90facaad2 100644 --- a/allure-report/data/test-cases/b1056dd0bc1f2f4e.json +++ b/allure-report/data/test-cases/fc440329cf5fac04.json @@ -1 +1 @@ -{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cad7274be200bf39","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0}},{"uid":"b7107b1da849121a","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"681eea057133a7e0","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"b1056dd0bc1f2f4e.json","parameterValues":[]} \ No newline at end of file +{"uid":"fc440329cf5fac04","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/bdd8b1b0bd82d5b1.json b/allure-report/data/test-cases/fc74ffe2a6fa764b.json similarity index 50% rename from allure-report/data/test-cases/bdd8b1b0bd82d5b1.json rename to allure-report/data/test-cases/fc74ffe2a6fa764b.json index 813a9de2c11..544e40c4b3a 100644 --- a/allure-report/data/test-cases/bdd8b1b0bd82d5b1.json +++ b/allure-report/data/test-cases/fc74ffe2a6fa764b.json @@ -1 +1 @@ -{"uid":"bdd8b1b0bd82d5b1","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":3,"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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ee7ac80cd7bb8f8d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194185,"stop":1732428194185,"duration":0}},{"uid":"5aa7474450de295f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"28083507c1397923","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"items":[{"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":"bdd8b1b0bd82d5b1.json","parameterValues":[]} \ No newline at end of file +{"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/ea018bd2743d350e.json b/allure-report/data/test-cases/fca8b44cee8413d5.json similarity index 79% rename from allure-report/data/test-cases/ea018bd2743d350e.json rename to allure-report/data/test-cases/fca8b44cee8413d5.json index 0554a530389..62296139fe6 100644 --- a/allure-report/data/test-cases/ea018bd2743d350e.json +++ b/allure-report/data/test-cases/fca8b44cee8413d5.json @@ -1 +1 @@ -{"uid":"ea018bd2743d350e","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"74dc839f94675f1c","name":"stdout","source":"74dc839f94675f1c.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ea018bd2743d350e.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Return false if it is not a factor","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8276c421e6a39adf","name":"stdout","source":"8276c421e6a39adf.txt","type":"text/plain","size":189}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckForFactorTestCase::0","time":{"start":1724735129492,"stop":1724735129492,"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":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Calculation"},{"name":"story","value":"Grasshopper - Check for factor"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Math"},{"name":"parentSuite","value":"Beginner"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.grasshopper_check_for_factor.test_check_for_factor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55cbc3586671f6aa070000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fca8b44cee8413d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14829aa4ce177c0a.json b/allure-report/data/test-cases/fcdf7618a6de4bb6.json similarity index 65% rename from allure-report/data/test-cases/14829aa4ce177c0a.json rename to allure-report/data/test-cases/fcdf7618a6de4bb6.json index 587f86ecab1..52f74fc22c0 100644 --- a/allure-report/data/test-cases/14829aa4ce177c0a.json +++ b/allure-report/data/test-cases/fcdf7618a6de4bb6.json @@ -1 +1 @@ -{"uid":"14829aa4ce177c0a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732764219144,"stop":1732764219144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase::0","time":{"start":1732764219146,"stop":1732764219146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BUGS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e78a552d574aad16","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0}},{"uid":"4df9c941adb35f26","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"d8b4a2733a1f48dc","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"14829aa4ce177c0a.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphanumericTestCase","time":{"start":1732764219144,"stop":1732764219144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764219145,"stop":1732764219145,"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_AlphanumericTestCase::0","time":{"start":1732764219146,"stop":1732764219146,"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":"BUGS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"story","value":"Not very secure"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.not_very_secure.test_alphanumeric"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526dbd6c8c0eb53254000110","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"fcdf7618a6de4bb6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48fa5f91e3478c29.json b/allure-report/data/test-cases/fd479ce41ec7634c.json similarity index 64% rename from allure-report/data/test-cases/48fa5f91e3478c29.json rename to allure-report/data/test-cases/fd479ce41ec7634c.json index 74dbf170727..7b78ec0bb57 100644 --- a/allure-report/data/test-cases/48fa5f91e3478c29.json +++ b/allure-report/data/test-cases/fd479ce41ec7634c.json @@ -1 +1 @@ -{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase::0","time":{"start":1732764220151,"stop":1732764220151,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"SECURITY"},{"name":"story","value":"Encrypt this!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4ab01f4fc722fa2f","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0}},{"uid":"1751fe3c0a6687c3","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"229dd074fbcb6ca1","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"48fa5f91e3478c29.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd479ce41ec7634c","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncryptThisTestCase","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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.

","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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":1732764220149,"stop":1732764220149,"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_EncryptThisTestCase::0","time":{"start":1732764220151,"stop":1732764220151,"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":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"SECURITY"},{"name":"story","value":"Encrypt this!"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"CIPHERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.encrypt_this.test_encrypt_this"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5848565e273af816fb000449","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},"source":"fd479ce41ec7634c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6d26dfb90ab4062.json b/allure-report/data/test-cases/fd6070318b36fb6f.json similarity index 69% rename from allure-report/data/test-cases/a6d26dfb90ab4062.json rename to allure-report/data/test-cases/fd6070318b36fb6f.json index 2e07582c45d..01625875193 100644 --- a/allure-report/data/test-cases/a6d26dfb90ab4062.json +++ b/allure-report/data/test-cases/fd6070318b36fb6f.json @@ -1 +1 @@ -{"uid":"a6d26dfb90ab4062","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732764218536,"stop":1732764218536,"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":"

Codewars badge:

Test Description:

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":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732764218535,"stop":1732764218535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a39b53ea962a31f1","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0}},{"uid":"500f182a6eedd000","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"bae98e899f1ebab4","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":"a6d26dfb90ab4062.json","parameterValues":[]} \ No newline at end of file +{"uid":"fd6070318b36fb6f","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1732764218536,"stop":1732764218536,"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/1a204aa873a93d86.json b/allure-report/data/test-cases/fe6da9468168286a.json similarity index 79% rename from allure-report/data/test-cases/1a204aa873a93d86.json rename to allure-report/data/test-cases/fe6da9468168286a.json index 3a089df8de2..9642771e1c3 100644 --- a/allure-report/data/test-cases/1a204aa873a93d86.json +++ b/allure-report/data/test-cases/fe6da9468168286a.json @@ -1 +1 @@ -{"uid":"1a204aa873a93d86","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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 - 3 - 4), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":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":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase::0","time":{"start":1732428193910,"stop":1732428193910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"1a204aa873a93d86.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculatorTestCase","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression

","status":"passed","steps":[{"name":"Enter a test string (127), calculate the result (127.0) and compare vs expected (127)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3), calculate the result (5.0) and compare vs expected (5)","time":{"start":1732428193909,"stop":1732428193909,"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), calculate the result (-5.0) and compare vs expected (-5)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 / 2 + 3 * 4 - 6), calculate the result (7.0) and compare vs expected (7)","time":{"start":1732428193909,"stop":1732428193909,"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":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 + 2.2 + 3.3), calculate the result (6.6) and compare vs expected (6.6)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1.1 * 2.2 * 3.3), calculate the result (7.986000000000001) and compare vs expected (7.986000000000001)","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10 * 5 / 2), calculate the result (25.0) and compare vs expected (25)","time":{"start":1732428193909,"stop":1732428193909,"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_CalculatorTestCase::0","time":{"start":1732428193910,"stop":1732428193910,"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":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Calculator"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"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_3.calculator.test_calculator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5235c913397cbf2508000048","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"fe6da9468168286a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/842b955d145895ca.json b/allure-report/data/test-cases/feb720678835be31.json similarity index 81% rename from allure-report/data/test-cases/842b955d145895ca.json rename to allure-report/data/test-cases/feb720678835be31.json index 1225cff922b..a927727023b 100644 --- a/allure-report/data/test-cases/842b955d145895ca.json +++ b/allure-report/data/test-cases/feb720678835be31.json @@ -1 +1 @@ -{"uid":"842b955d145895ca","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4e1d630f27c230cc","name":"stdout","source":"4e1d630f27c230cc.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"842b955d145895ca.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass a number and verify the output","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"178114092f1d89bc","name":"stdout","source":"178114092f1d89bc.txt","type":"text/plain","size":135}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TwoDecimalPlacesTestCase::0","time":{"start":1724733474679,"stop":1724733474679,"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":"Formatting decimal places #0"},{"name":"feature","value":"Formatting"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"tag","value":"NUMBERS"},{"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.formatting_decimal_places_0.test_two_decimal_places"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5641a03210e973055a00000d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"feb720678835be31.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb9f6d4c2aaf90e3.json b/allure-report/data/test-cases/fee32280a5b8d3da.json similarity index 66% rename from allure-report/data/test-cases/cb9f6d4c2aaf90e3.json rename to allure-report/data/test-cases/fee32280a5b8d3da.json index fd5d2c49123..25d66a3115f 100644 --- a/allure-report/data/test-cases/cb9f6d4c2aaf90e3.json +++ b/allure-report/data/test-cases/fee32280a5b8d3da.json @@ -1 +1 @@ -{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732764220509,"stop":1732764220509,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732764220508,"stop":1732764220508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase::0","time":{"start":1732764220510,"stop":1732764220510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c1447fd680942c58","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1}},{"uid":"37af89538f752875","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"71dc0d8169aaad6f","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"cb9f6d4c2aaf90e3.json","parameterValues":[]} \ No newline at end of file +{"uid":"fee32280a5b8d3da","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1732764220509,"stop":1732764220509,"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GapTestCase","time":{"start":1732764220508,"stop":1732764220508,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter integer and assert the result","time":{"start":1732764220509,"stop":1732764220509,"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_GapTestCase::0","time":{"start":1732764220510,"stop":1732764220510,"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":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Find the longest gap!"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"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.find_the_longest_gap.test_gap"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55b86beb1417eab500000051","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},"source":"fee32280a5b8d3da.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fef6b9be2b6df65c.json b/allure-report/data/test-cases/fef6b9be2b6df65c.json new file mode 100644 index 00000000000..a3824e30c04 --- /dev/null +++ b/allure-report/data/test-cases/fef6b9be2b6df65c.json @@ -0,0 +1 @@ +{"uid":"fef6b9be2b6df65c","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ReversedStringsTestCase","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Pass regular string and verify the output","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass regular string and verify the output","time":{"start":1733030101054,"stop":1733030101054,"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_ReversedStringsTestCase::0","time":{"start":1733030101070,"stop":1733030101070,"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":"Reversed Strings"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"String"},{"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.reversed_strings.test_reversed_strings"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5168bb5dfe9a00b126000018","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f85747ab66ba1ea5","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0}},{"uid":"f8f5ce581d6aa123","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0}},{"uid":"76e193dcfd9d956a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"9212c6b19c8a287e","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"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}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"fef6b9be2b6df65c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acf18a2788645a5a.json b/allure-report/data/test-cases/ff4e61f1c87a50e9.json similarity index 79% rename from allure-report/data/test-cases/acf18a2788645a5a.json rename to allure-report/data/test-cases/ff4e61f1c87a50e9.json index 367bc3003ec..173cd982a1f 100644 --- a/allure-report/data/test-cases/acf18a2788645a5a.json +++ b/allure-report/data/test-cases/ff4e61f1c87a50e9.json @@ -1 +1 @@ -{"uid":"acf18a2788645a5a","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"acf18a2788645a5a.json","parameterValues":[]} \ No newline at end of file +{"uid":"ff4e61f1c87a50e9","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_YouAreSquareTestCase","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Test non square number: 26","time":{"start":1724733474522,"stop":1724733474522,"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_YouAreSquareTestCase::0","time":{"start":1724733474554,"stop":1724733474554,"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":"You're a square"},{"name":"tag","value":"MATH"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Square Calculation"},{"name":"suite","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.you_are_square.test_you_are_square"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","MATH"]},"source":"ff4e61f1c87a50e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a98592d8e6c7fba2.json b/allure-report/data/test-cases/ffafa17ec9b60c3d.json similarity index 60% rename from allure-report/data/test-cases/a98592d8e6c7fba2.json rename to allure-report/data/test-cases/ffafa17ec9b60c3d.json index 6c8ce495852..1ae60d492dd 100644 --- a/allure-report/data/test-cases/a98592d8e6c7fba2.json +++ b/allure-report/data/test-cases/ffafa17ec9b60c3d.json @@ -1 +1 @@ -{"uid":"a98592d8e6c7fba2","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":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"

Codewars badge:

Test Description:

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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":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,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2731ba669f341d4","name":"stdout","source":"2731ba669f341d4.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"attachmentStep":false,"hasContent":true,"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,"attachmentStep":false,"hasContent":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":"a98592d8e6c7fba2.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/210d6cbbe1051e7b.json b/allure-report/data/test-cases/ffb404aff6d39348.json similarity index 80% rename from allure-report/data/test-cases/210d6cbbe1051e7b.json rename to allure-report/data/test-cases/ffb404aff6d39348.json index 7689243602d..5c052160693 100644 --- a/allure-report/data/test-cases/210d6cbbe1051e7b.json +++ b/allure-report/data/test-cases/ffb404aff6d39348.json @@ -1 +1 @@ -{"uid":"210d6cbbe1051e7b","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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"27997c5236222053","name":"stdout","source":"27997c5236222053.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"attachmentStep":false,"hasContent":true,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"attachmentStep":false,"hasContent":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"210d6cbbe1051e7b.json","parameterValues":[]} \ No newline at end of file +{"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":"

Codewars badge:

Test Description:

","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"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":"

Codewars badge:

Test Description:

","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dd95f43103333bf7","name":"stdout","source":"dd95f43103333bf7.txt","type":"text/plain","size":142}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EnoughTestCase::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":"story","value":"Will there be enough space?"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Calculation"},{"name":"suite","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_8.will_there_be_enough_space.test_enough"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5875b200d520904a04000003/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","NUMBERS"]},"source":"ffb404aff6d39348.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffb8e8f4eed50d14.json b/allure-report/data/test-cases/ffb8e8f4eed50d14.json new file mode 100644 index 00000000000..bd3c1594c0d --- /dev/null +++ b/allure-report/data/test-cases/ffb8e8f4eed50d14.json @@ -0,0 +1 @@ +{"uid":"ffb8e8f4eed50d14","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"

Codewars badge:

Test Description:

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":"

Codewars badge:

Test Description:

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/timeline.json b/allure-report/data/timeline.json index ccb0c3ea27c..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":"11036-MainThread","children":[{"name":"'multiply' function verification","uid":"edb8f84ee9c3dd36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing litres function with various test inputs","uid":"388d9dc9fa1f1c3a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"a6d26dfb90ab4062","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing sum_of_intervals function","uid":"61e07c6ddcc506b1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"324d19209fbeb70d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Test with one char only","uid":"66020f911b054e74","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"52402d5056a00e1d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Two smallest numbers in the start of the list","uid":"c52dc9ba56a64495","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing hoop_count function (negative test case)","uid":"b02a54a0a8bd8284","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing men_from_boys function","uid":"edfd5d811972f420","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"4d8c29fe45d13f2d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"a and b are equal","uid":"9c39905963998c1b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"b22afbc33030e55f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"get_size function tests","uid":"c8a70d9350601da5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"String with no duplicate chars","uid":"8605c2bc186d7f9a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"9164bf2c06bf8752","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"XOR logical operator","uid":"689b611d3c9a3124","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Positive test cases for is_prime function testing","uid":"d731ec2306766d91","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing sum_for_list function","uid":"7331de8e7202ad57","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Find the int that appears an odd number of times","uid":"59e860fc2782867c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing century function","uid":"3ead41117d0ad5b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing remove_char function","uid":"c2a15dd126224894","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing length function","uid":"c87eac92a1b3b456","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"test_sequence","uid":"2890c501d19b5f47","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing calc_combinations_per_row function","uid":"b1056dd0bc1f2f4e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"41668c3c4e1a677a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"89d5ee585c13bf38","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing period_is_late function (positive)","uid":"ffc8d600f4ca1daf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing create_city_map function","uid":"37c27a38809b08b4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'mix' function","uid":"3b9e344534b3c5db","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'vaporcode' function","uid":"a6592dc6717fe514","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing compute_ranks","uid":"9e017ac7fdaf6bf5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing the 'group_cities' function","uid":"ee07ce647fa212f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"fa6c346b04c031d5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ff3f93ff1ffe8b3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"String with no duplicate chars","uid":"1c3655d4a978bd79","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"302e450946481df3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing alphanumeric function","uid":"14829aa4ce177c0a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"5f97df940bb3f46a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"a30a3ac9558d7a9c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing monkey_count function","uid":"d9e0d2d6c00c88e9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"f26dca06c76121c7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"28a9bedc22c54787","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"OR logical operator","uid":"b8a2da685a579f99","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"String alphabet chars and spaces","uid":"89c0be4978ed22ba","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"6035f0fe38b5a062","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing flatten function","uid":"fef2d68159e448ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Test with regular string","uid":"a5b469ea69ba375b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing pig_it function","uid":"60f7c96f923539a5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Non consecutive number should be returned","uid":"fcb92722bb71757b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c5bce40c2868c787","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing largestPower function","uid":"addec93357f6e501","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing checkchoose function","uid":"64abc8899e8e691d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing number_of_sigfigs function","uid":"8ed1a17310170d88","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"dd86378e3a37dfe4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing epidemic function","uid":"200b5f0b4ec790a3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'parts_sums' function","uid":"168d1058a213deae","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Zero","uid":"c19e4739f2d4d64c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"All chars are in upper case","uid":"b0cc123728fa2f2d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2991adec6435da10","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"720b65d3a7d8ec34","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"17c9a97f8a5ea815","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing zero_fuel function","uid":"7c6af0e0a129f035","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"5e2354482de170d3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_solution_big","uid":"31802a90aeba5e97","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Potion class","uid":"f5c9e062133dbbbb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"b684b0c7250ecf6d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing gap function","uid":"cb9f6d4c2aaf90e3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing solve function","uid":"4d4729a99109106e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"c3e9cf6e477b7f80","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'greek_comparator' function","uid":"d0246537274067fb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"1251fa1056fea3d4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"'multiply' function verification with empty list","uid":"e751c9c9dc3d04e6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing growing_plant function","uid":"56d019840f444cec","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"bb0cb59f0e1a4eca","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b26a6745cd367097","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"631ed8ca3aead56c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"1a13c6a89153460b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Square numbers (positive)","uid":"1bd3919646678e3f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'letter_count' function","uid":"d6ad7a05187743ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing easy_diagonal function","uid":"53eb34bc4e02fa07","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: append","uid":"a78b9243c26a61bf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"AND logical operator","uid":"591cfdbc90cf4c5e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"c700736d12b44c86","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing solution function","uid":"d5aba2cd944d7efd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing invite_more_women function (negative)","uid":"7e066328cfed2428","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Wolf at the beginning of the queue","uid":"63ea9545d8dcd43f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing the 'sort_array' function","uid":"e53952640c2c9e47","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"cc4dd11ea285cd92","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing string_to_array function","uid":"8672ab2817945b36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing invite_more_women function (positive)","uid":"b3f6328bce0de37c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"63a8ebd07b8fa1c4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing binary_to_string function","uid":"67a0bf67db9047ee","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"bd65eae3991d6c2c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_solution_empty","uid":"80f314b70b306bd4","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"a and b are equal","uid":"405b625cf95f9fbd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing two_decimal_places function","uid":"a61ba5af03a1f296","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"46eea1e10beb3240","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"ebad1371009d2223","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'valid_braces' function","uid":"5908d364b75f844e","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":"Testing permute_a_palindrome (positive)","uid":"c0b1085f1fbfd7ed","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Square numbers (positive)","uid":"13f340b5f893b4e2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing duplicate_encode function","uid":"d1bc6da1a117f865","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing validSolution","uid":"9d2b852ea94aa88a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"String with mixed type of chars","uid":"60d4140245a65d5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Should return 'Publish!'","uid":"aa37770dd2142a16","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing alphabet_war function","uid":"e91954f86960f5cf","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Negative numbers","uid":"bca9ba5488466979","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing dir_reduc function","uid":"4eb91d777aea105a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"48e03b38164b77c2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"49ad6a9c0404421b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'feast' function","uid":"3cb7f65d354963ea","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: pop","uid":"4438dce845a8b680","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Verify that greet function returns the proper message","uid":"190ed93e28b901b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Should return 'I smell a series!'","uid":"4c5cc35d3de0d6f4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing swap_values function","uid":"ee50880cc545f1d3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing max_multiple function","uid":"1abde016dd7f5ee7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"8bc712dc2d3a7199","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"b36ca0513e4048a8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},{"name":"Testing make_upper_case function","uid":"b2f619fce2ea028d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'thirt' function","uid":"62a6bbd8d87be20e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing anagrams function","uid":"300c045916564a1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"63b822db5bae14d4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing is_prime function","uid":"142f5165c8452d36","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"goals function verification","uid":"965bac5a2c55f031","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'pyramid' function","uid":"ff9c64bdd3b3fc0c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing length function where head = None","uid":"8e87cfc15c8260a3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing first_non_repeated function with various inputs","uid":"a3cba1eb012d0834","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing to_alternating_case function","uid":"f30b225377e5683d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing odd_row function","uid":"416bb0c0ac58f7b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing Calculator class","uid":"5194ad39db439d08","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing share_price function","uid":"5bf735ebb9d90923","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Decoding functionality","uid":"98ca489a74667507","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Walker class - position property from negative grids","uid":"3e564e38813f1539","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'is_isogram' function","uid":"30977e1fdeed6f0a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Wolf at the end of the queue","uid":"6dfafb882d7cc41f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing increment_string function","uid":"dc076040e5481dc9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Non square numbers (negative)","uid":"162a4f2fa010c721","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"fix_the_meerkat function function verification","uid":"1f1df83d6cc10b66","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"All chars are in lower case","uid":"e1af2c095108694d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing calculate_damage function","uid":"d0931e78c129f8d8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing tickets function","uid":"9a9def5039f12f67","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"test_josephus_survivor","uid":"6ef44675aea47099","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"bdd8b1b0bd82d5b1","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing check_root function","uid":"ba71f124345447fc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_line_negative","uid":"577d9e765fb39849","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing toJadenCase function (negative)","uid":"1bf4128bcf35143f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'snail' function","uid":"e7035dc3ef8d99c0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing easy_line function exception message","uid":"80a5eacfa2431348","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"b7dd8f8438e567a9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"9e71e34228180c1c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'summation' function","uid":"1b57aafe4439b9a8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Testing Battle method","uid":"c00621abb22a9be3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"a or b is negative","uid":"be50565df8dfb0ab","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing domain_name function","uid":"6a3f85e29591c654","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing password function","uid":"3ff87d981594c6f7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing check_exam function","uid":"f6c63ae7fdc54916","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"ef53249dd3798b49","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"f48dcf9628fe90ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"99bd3e79aeea5636","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification with random list","uid":"8388a8495a8b75af","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'solution' function","uid":"e604a93a8ee1253f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"980af150a499b4e9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing set_alarm function","uid":"3846518071a02e50","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing done_or_not function","uid":"ef2b00c02db84592","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing make_readable function","uid":"5654bb5658921dcd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"test_ips_between","uid":"93b00a3d2e7b92c1","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Negative test cases for is_prime function testing","uid":"4710cc2182eb85cb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing Encoding functionality","uid":"5e4416fd32f6992f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing likes function","uid":"6bab07231bfb8a25","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"54fbe05c675f404a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Large lists","uid":"98e0aca6e090522b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing shark function (negative)","uid":"8dfef1ba8856d412","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Non is expected","uid":"c005f5247ce8619b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_class function","uid":"ab3687d99fed99d0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"19cfe4000991e820","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"43a8b37a1715c915","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing zeros function","uid":"3c7a781e3674db5e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: extend","uid":"c244be500ebdf146","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'DefaultList' class: remove","uid":"c0a4502fedd41667","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'save' function: negative","uid":"86bf8b663d5828a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing decipher_this function","uid":"37bcd45d30c593a7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing to_table function","uid":"e687a692c2c18f1b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"ff18bec5c293c228","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"450fbb27e2067be4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing format_duration","uid":"4249127f6bff6f10","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"9b0ec4eb2cd2dde7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"move function tests","uid":"6a636a909012a6f0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: insert","uid":"ea77ab4395e92566","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"test_triangle","uid":"732b9dd805d734b8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing hoop_count function (positive test case)","uid":"6641c9ab33f4ea66","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Should return 'Fail!'s","uid":"112ca50049d27c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing encrypt_this function","uid":"48fa5f91e3478c29","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing count_letters_and_digits function","uid":"183ba5aa4a18280","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing is_palindrome function","uid":"e532878179cb6f87","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"354cda6601a7cded","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing Walker class - position property from positive grids","uid":"4b2984e4fa36f94","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing calculate function","uid":"1857a7ece8075aa5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"9246dbe4ecdc42ce","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"82f0a19d19bd8125","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"5ad5cb812fbd5d4a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"4736c243443acbf6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'generate_hashtag' function","uid":"3de1512f067d459d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Positive test cases for gen_primes function testing","uid":"65e9477143af3f55","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing valid_parentheses function","uid":"8e4b6f6bd251566","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"fea5f749a1c464e4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"641b1ee7248b1557","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"b78b9d24e53cd100","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"STesting enough function","uid":"c31558e9c7981ac7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"test_permutations","uid":"c25f8210fdb51a41","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing take function","uid":"3d40466198fa34e6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Sudoku class","uid":"a908975bd67b2eca","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"test_solution_medium","uid":"8e9b4227c17ce17f","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing period_is_late function (negative)","uid":"2be24f9b66669d76","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (positive)","uid":"3de5bbe9e7cab5b6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"3d05de3d43cf437d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"'multiply' function verification with one element list","uid":"a13c451f0f676900","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"test_line_positive","uid":"32a39f3c0fa23567","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing move_zeros function","uid":"1c9684bf403c80de","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing 'order' function","uid":"8a89827c471bc909","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing stock_list function","uid":"64ddebaa5d6679fc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"77ce7ba6af0b177a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"783d8a205b731823","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"47f66d4df6594479df63e370348f1468"},{"name":"9168-MainThread","children":[{"name":"Wolf at the beginning of the queue","uid":"3b252f71e94d60c3","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 Encoding functionality","uid":"c91f2e2d1c4e5a72","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":"Negative test cases for gen_primes function testing","uid":"65f6b4f1195a0e9d","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 check_for_factor function: positive flow","uid":"af99dc37dcb7799b","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_combinations_per_row function","uid":"b7107b1da849121a","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":"Testing 'has_subpattern' (part 3) function","uid":"c739525d6df646b0","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"]},{"name":"Testing first_non_repeating_letter function","uid":"378b8959bf0b41a9","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 to_alternating_case function","uid":"c1ac88d1c8e8cadf","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 is_prime function","uid":"8edcba07a1a3ea56","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":"Zero","uid":"764219a087e938f","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 sum_of_intervals function","uid":"99a774ce5ee6bba3","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 men_from_boys function","uid":"139cceadff83cc0d","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 list_squared function","uid":"61de742601660eab","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 'has_subpattern' (part 2) function","uid":"b5cedd1e00782e11","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":"test_solution_empty","uid":"706d67120123862f","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 hoop_count function (positive test case)","uid":"f507fecee61d3d94","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":"Should return 'I smell a series!'","uid":"68e1fa91eff84fb2","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":"test_triangle","uid":"e5a7c04cf0e6c2f9","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 Sudoku class","uid":"d4d3736adb97380b","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":"Testing permute_a_palindrome (positive)","uid":"7612354cc3c699d","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":"'multiply' function verification","uid":"dfa8d9395e9495b6","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":"Testing the 'pyramid' function","uid":"329cbbd27ed228a7","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":"Testing Warrior class >>> bruce_lee","uid":"70c180d1e9f40ddc","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":"Testing domain_name function","uid":"e0d2f09c0da8121","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":"test_sequence","uid":"bda7ad5e74660b56","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 'mix' function","uid":"9ee094a1f359821e","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":"Wolf at the end of the queue","uid":"2180a5f5e79006a1","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":"test_smallest","uid":"767acc864b347295","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 pig_it function","uid":"caf985b2a75ee6b7","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 Decoding functionality","uid":"58a164b572fc5a50","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 'DefaultList' class: append","uid":"f25197354d7a779d","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 easy_diagonal function","uid":"8d85f39401914c16","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":"String alphabet chars and spaces","uid":"817c95f8ac92a91e","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":"test_ips_between","uid":"f9778b72019f6060","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 'solution' function","uid":"3d4ef3b1faaf3c9d","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 make_readable function","uid":"75040d42480a95e8","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 odd_row function","uid":"1be5b98a41807de8","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":"Testing 'thirt' function","uid":"1a8f12ae9a258bd1","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":"Should return 'Fail!'s","uid":"a355bc32a0d73da0","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 easy_line function exception message","uid":"44516baeffa03c9d","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 'sum_triangular_numbers' with positive numbers","uid":"71a05925458c8736","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 length function","uid":"55a0094c41d10012","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 permute_a_palindrome (negative)","uid":"11195fbf11e8bfc3","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":"test_solution_medium","uid":"634b88b34b81a74c","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 toJadenCase function (positive)","uid":"faf400d308fb1d4e","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 alphanumeric function","uid":"4df9c941adb35f26","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":"Test with one char only","uid":"fe13696efb68455a","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 count_letters_and_digits function","uid":"e695b3f4b0bdd51b","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":"Negative non consecutive number should be returned","uid":"9aaaa009f2bba8b1","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 zero_fuel function","uid":"bdcd06f2ac6e82c9","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":"Testing easy_line function","uid":"45bc1447720343e5","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 mixed type of chars","uid":"5471ece0090e3d4","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":"move function tests","uid":"f20c6ac583494462","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 duplicate_encode function","uid":"6f9dcb0c09ae9f13","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":"test_starting_position_from_negatives","uid":"d34aca89a8362e7c","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 'count_sheeps' function: bad input","uid":"23e7f7a9e25073fa","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 'vaporcode' function","uid":"7d3b7c7449825e20","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 'has_subpattern' (part 1) function","uid":"142b0c4f3754d996","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 password function","uid":"2f46a2e41d4cb55","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 array_diff function","uid":"359cda8d66959d20","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":"Two smallest numbers in the start of the list","uid":"f2826391ba216705","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 share_price function","uid":"1212df96f6b2dc34","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":"'fix_the_meerkat function function verification","uid":"5c657b72ebb12427","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 is_palindrome function","uid":"c8de14a6ed49ac6d","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 calc function","uid":"500f182a6eedd000","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 'is_isogram' function","uid":"f6dea82ce819c148","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":"Testing next_smaller function","uid":"ee182a5a1f4b39dc","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 make_upper_case function","uid":"ac65ef6ef01656e6","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 decipher_this function","uid":"67e470215248af57","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 'greek_comparator' function","uid":"3e88e2d0381e105a","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":"Testing toJadenCase function (negative)","uid":"c10fb0178a326f0a","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 'summation' function","uid":"6b42b881fa048473","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":"Testing max_multiple function","uid":"a1980ae57d2c7b3","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":"a or b is negative","uid":"f1c13dcc2ec25637","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 done_or_not function","uid":"86173a2048ae1d24","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":"All chars are in upper case","uid":"2c38900f28571c1","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":"Testing 'snail' function","uid":"b7874e896ca052d2","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 'count_sheeps' function: mixed list","uid":"545394bf3fbbd64b","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 validSolution","uid":"2ac4d21875a44bdb","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":"AND logical operator","uid":"c78900977fa836","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 remove_char function","uid":"3604ad2531e10e0a","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":"Testing length function where head = None","uid":"21dca02637c8027f","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 Warrior class >>> tom","uid":"3bb063d5045f38b5","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":"All chars are in mixed case","uid":"9b5105f2c1baa9ed","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 to_table function","uid":"c0b9bbb0a9f351b0","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":"Test with regular string","uid":"de09867d078b6af4","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 'order' function","uid":"610300a29faa4ee4","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 'letter_count' function","uid":"893f14f04872e4c5","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 advice function","uid":"994a4ad6b5f0c1e0","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":"String with no duplicate chars","uid":"ae5dc2ec4f03f9e5","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 row_sum_odd_numbers function","uid":"583a0190aa99ad42","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 binary_to_string function","uid":"cedf72c8fbbfdfc5","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":"'multiply' function verification with random list","uid":"6e91e404eb8e624","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 likes function","uid":"4617147ad7612076","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":"Testing monkey_count function","uid":"1d437c172b71c55f","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 'numericals' function","uid":"522a0d282fded9dd","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":"Large lists","uid":"fa27e6e3693a7b83","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":"Testing sum_for_list function","uid":"ce75fbdf4ccd46b8","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":"Find the int that appears an odd number of times","uid":"82d71f1a1b9a4c08","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 'DefaultList' class: pop","uid":"adbbb2c26291ccd5","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 invite_more_women function (positive)","uid":"938f6f7ebecca4c3","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 the 'sort_array' function","uid":"afe0c9a0972467a3","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 Battle method","uid":"552b72a0721ea486","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":"Non is expected","uid":"d0ce09c4ba5ff697","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 Calculator class","uid":"197e00510d3eb166","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 'sum_triangular_numbers' with zero","uid":"3b453b26a6476828","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 the 'unique_in_order' function","uid":"8bbe3b647eb4bfeb","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 check_exam function","uid":"7f4f6ae800da8214","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":"Non consecutive number should be returned","uid":"ae4ebdaea3850cc0","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 make_class function","uid":"aa1a2a69b8a9bf68","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 'solution' function","uid":"afc07e402ebe38d8","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":"Verify that greet function returns the proper message","uid":"6902a5b0a224435c","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 'solution' function","uid":"395a8f7cfcd6a2c9","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":"String with no duplicate chars","uid":"895071e6126c1fbc","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 epidemic function","uid":"4c31a5ec99c6ca69","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":"Should return 'Publish!'","uid":"3c275e4650ef1fcb","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_basic","uid":"5aa7474450de295f","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":"Testing litres function with various test inputs","uid":"df9a9f68276bbb84","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 zeros function","uid":"6463a9e3be0b4026","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":"Testing 'DefaultList' class: extend","uid":"256439519ef758bc","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 swap_values function","uid":"875881a97b3fc375","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":"Testing digital_root function","uid":"f1908dde48e8dbb5","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":"Testing stock_list function","uid":"a98592d8e6c7fba2","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":"Testing create_city_map function","uid":"f17cc6d65b0932fd","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 number_of_sigfigs function","uid":"c793ab5339736af5","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":"You are given two angles -> find the 3rd.","uid":"756610bb1a8856d4","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":"a and b are equal","uid":"9dc0ca62f1db510f","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":"Testing 'sum_triangular_numbers' with big number as an input","uid":"9a17297856f21a74","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 shark function (negative)","uid":"30e62f45ee93d21d","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 compute_ranks","uid":"197e80b267cccc2b","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":"3a617c2d20fe6a0a","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":"OR logical operator","uid":"2064c7d6b1732474","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 period_is_late function (negative)","uid":"93cbb9687a6c19d2","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 done_or_not function","uid":"2da97da2ac2c9bbd","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":"Testing agents_cleanup function","uid":"d64758690dcdce52","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":"goals function verification","uid":"91aab0544068789","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":"'multiply' function verification: lists with multiple digits","uid":"1b95adcea61e4ef5","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":"Negative numbers","uid":"d35364e5c638d89f","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_repeated function with various inputs","uid":"b4bcf3d5a4367d8","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 'count_sheeps' function: positive flow","uid":"68235061ff0b1d1d","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":"Testing alphabet_war function","uid":"a456e8af4c590649","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":"Square numbers (positive)","uid":"a5bb3631db18a9d9","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_line_negative","uid":"f10852a0a46489bf","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 check_root function","uid":"eb1b904b9e574ded","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":"String with no alphabet chars","uid":"7f05453c14dc1c4a","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":"Positive test cases for is_prime function testing","uid":"42452319aaa200ae","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":"String with alphabet chars only","uid":"ff24b513a2221397","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 check_for_factor function: positive flow","uid":"ea018bd2743d350e","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":"test_line_positive","uid":"2488d38c1be516d6","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":"'multiply' function verification with empty list","uid":"4f999b555dd62215","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 largestPower function","uid":"28847243d9b7f290","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":"Wolf in the middle of the queue","uid":"a586415c7c751146","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 'save' function: positive","uid":"df5176bbed48ed91","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_triangular_numbers' with negative numbers","uid":"23199ebc2c7c1fa2","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 growing_plant function","uid":"f71bd4516df37f52","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":"test_solution_big","uid":"4d0958f9149b5791","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":"Testing two_decimal_places function","uid":"4eaed4684cfaee8f","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 solve function","uid":"c61d34eb10bf204","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 anagrams function","uid":"4d57a8ddade5816","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":"test_permutations","uid":"740e72b931a3ed2d","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":"Negative test cases for is_prime function testing","uid":"406377324fdf0256","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 'DefaultList' class: insert","uid":"88ed1c9da2d9b53b","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 spiralize function","uid":"47cf0745ec1b0964","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":"Testing shark function (positive)","uid":"b8bd7a062c96fe90","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 increment_string function","uid":"a6f428498c7694b0","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":"Test with empty string","uid":"cefd3a9afeec351e","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 period_is_late function (positive)","uid":"935b6bf420709ca7","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 two_decimal_places function","uid":"c20970878e009fc6","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 string_transformer function","uid":"152d6167de0fb37e","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":"Testing permute_a_palindrome (empty string)","uid":"d1233b1a931bee1a","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 flatten function","uid":"200c9d07d930b3b1","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 encrypt_this function","uid":"1751fe3c0a6687c3","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 next_bigger function","uid":"8dcdfa9166c48fb8","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":"Testing century function","uid":"3fe8a02ede1e6532","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":"All chars are in lower case","uid":"ebb627dfa50cb94d","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 the 'group_cities' function","uid":"14c8b0cd48caa4d6","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 validate_battlefield function","uid":"1c217987ee1a1d39","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":"Testing 'DefaultList' class: __getitem__","uid":"632eacb89b6e193e","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 'DefaultList' class: remove","uid":"ae08758c48a63481","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 take function","uid":"7fb0d954404a7411","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":"Testing format_duration","uid":"42bd5b348187136c","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 set_alarm function","uid":"68ad711bfb950e6e","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":"Testing 'longest_repetition' function","uid":"9a72e64592e0ae1b","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 invite_more_women function (negative)","uid":"fb64f9c33c11676a","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":"'multiply' function verification with one element list","uid":"a7d954f4aff6f601","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":"test_starting_position_from_positives","uid":"a35155a27bb8937d","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 done_or_not function","uid":"1065b8b44c0afc6f","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":"Test that no_space function removes the spaces","uid":"49044c1c42d54a81","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":"Positive test cases for gen_primes function testing","uid":"22f939e586318511","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":"Testing checkchoose function","uid":"73622414b649e45a","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 calculate_damage function","uid":"962ca80dcc908350","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 the 'find_missing_number' function","uid":"ccb7c5007831ab45","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":"XOR logical operator","uid":"2dcba5fbac259354","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":"a an b are positive numbers","uid":"c5bfa9ec903b7b32","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":"Testing gap function","uid":"37af89538f752875","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 'generate_hashtag' function","uid":"a9ecee1b4fc0ab11","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 'save' function: negative","uid":"c38b32e4e940b443","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 top_3_words function","uid":"65c772a236576a2d","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":"get_size function tests","uid":"e29868febcecd61d","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 shark function (positive)","uid":"99e31d655e3161a","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 all_fibonacci_numbers function","uid":"8bf0e4ddc17f51c8","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":"a and b are equal","uid":"de0a077377bec456","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 move_zeros function","uid":"482801cdd802c850","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":"powers function should return an array of unique numbers","uid":"7f0995b9351caed2","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":"Non square numbers (negative)","uid":"35f4051adfa3517","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 hoop_count function (negative test case)","uid":"6c457590f118b700","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 solution function","uid":"6558b0da7e100d83","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":"Testing 'count_sheeps' function: empty list","uid":"ab62ce2428f0e01f","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 Potion class","uid":"79e5a850abe86297","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 tickets function","uid":"8f6f88ab23c0d630","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":"Non square numbers (negative)","uid":"3846d19bb4975491","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":"Square numbers (positive)","uid":"ed242b4479970e98","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 valid_parentheses function","uid":"b28ff46b20790be2","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 dirReduc function","uid":"a07fccce3e37ee4a","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":"STesting enough function","uid":"f5725ff55458d02a","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":"Testing 'factorial' function","uid":"bd413f89b47699c","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":"test_josephus_survivor","uid":"6566372edd2dc54c","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 calculate function","uid":"dc9bdff2273b81f8","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":"Testing 'feast' function","uid":"579e5f45553c02f2","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 string_to_array function","uid":"2d49ce73ea45d7a1","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"]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"17192-MainThread","children":[{"name":"Testing advice function","uid":"4f20da98ae3e1985","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":"Testing max_multiple function","uid":"da222867360b442e","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 'solution' function","uid":"ebea1136229ab9bf","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":"Negative test cases for is_prime function testing","uid":"335c39c3e0f7aa15","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":"Square numbers (positive)","uid":"6d2f9028315647c1","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 the 'pyramid' function","uid":"1d4c3341dfe8e289","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":"a an b are positive numbers","uid":"2ba00773a1bfae2e","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_sequence","uid":"d6fd6e0593022837","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 monkey_count function","uid":"ed783d7ab62f1ba4","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 'count_sheeps' function: bad input","uid":"e76c8429b652e3f0","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 'DefaultList' class: pop","uid":"582aa68275dac68e","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":"Square numbers (positive)","uid":"1531ff5e4d5380e4","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 valid_parentheses function","uid":"ea636867f014d21","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":"test_line_negative","uid":"96ce14353b4f3e49","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 decipher_this function","uid":"4719969d944ed48a","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":"Test that no_space function removes the spaces","uid":"1b6eab50f2f722f5","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 encrypt_this function","uid":"229dd074fbcb6ca1","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 Encoding functionality","uid":"2483ff464fe4ea07","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":"Wolf in the middle of the queue","uid":"bf68fdf036dd98c9","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":"a or b is negative","uid":"9f8d638b621270bd","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":"String with no duplicate chars","uid":"383972b39eec664a","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 array_diff function","uid":"6a8f943df9cf325c","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":"Non is expected","uid":"821065d4dc841edb","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 validate_battlefield function","uid":"616388e3d3f3ad4c","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 zeros function","uid":"4ab2fd070154adeb","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 next_bigger function","uid":"ab7f75990cdffa76","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":"All chars are in upper case","uid":"34931ad2bd045d0c","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 Warrior class >>> tom","uid":"ba3e30be8784f086","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":"Testing 'DefaultList' class: append","uid":"86447fe348b226fe","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 century function","uid":"65bb39f46c25941f","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":"Should return 'Fail!'s","uid":"65b2cf00b86ce444","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":"Negative numbers","uid":"814ad2f745782ad7","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 permute_a_palindrome (positive)","uid":"5956e80e98375be","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 'DefaultList' class: __getitem__","uid":"4430fa612ad99844","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 shark function (positive)","uid":"bcdd15975118f527","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":"String alphabet chars and spaces","uid":"95924b9d92f1ced5","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":"OR logical operator","uid":"e9f92529af3ab5ff","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":"Find the int that appears an odd number of times","uid":"3c99f2489842209e","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 'snail' function","uid":"3f3bfc03f90689c3","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 'greek_comparator' function","uid":"a12dc2585f9de41f","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":"test_basic","uid":"ed9cfa6ba87dba0e","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":"Positive test cases for gen_primes function testing","uid":"40a0fe54277654cc","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 alphabet_war function","uid":"47f8dbee3cb403d3","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 zero_fuel function","uid":"3b2be2c8b8f3d0bb","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 number_of_sigfigs function","uid":"ac35e86bb753fb8c","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 string_transformer function","uid":"6226ef3ddb316aa7","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":"move function tests","uid":"625a87864855843c","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 sum_of_intervals function","uid":"8c4c3ac3b9ddced3","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 'save' function: negative","uid":"bfb03abe3203ecf1","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 all_fibonacci_numbers function","uid":"f253bf40e74f545d","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 is_prime function","uid":"6e4923e8771eebeb","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":"Testing 'sum_triangular_numbers' with zero","uid":"d237c739f4b0c138","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 set_alarm function","uid":"ea733e6b4760e89e","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 make_readable function","uid":"e63c100babc1267d","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":"You are given two angles -> find the 3rd.","uid":"20569c47774cf3c7","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 count_letters_and_digits function","uid":"a8ee14a37e5c3cb6","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":"Should return 'I smell a series!'","uid":"b8f5ce56991bbe59","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 increment_string function","uid":"117e19024dff1cfd","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":"test_random","uid":"664f2a2d41bf2bd8","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":"test_josephus_survivor","uid":"c264906d7bf954d5","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":"Test with one char only","uid":"2399abc94e3173da","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 remove_char function","uid":"1ae269d449ac7d5e","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":"String with mixed type of chars","uid":"eb60d649770273d6","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 the 'solution' function","uid":"741a61f0f9cb4c37","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":"747c525d425e0efa","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 'has_subpattern' (part 3) function","uid":"95e7a9865f127b46","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":"a and b are equal","uid":"f40d2270a86983a1","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":"Testing first_non_repeated function with various inputs","uid":"2c7af88777002151","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 Warrior class >>> bruce_lee","uid":"4941703c69aa6dd8","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":"Testing epidemic function","uid":"437936b48694b75d","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":"String with alphabet chars only","uid":"1938d829429abf54","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":"All chars are in lower case","uid":"f2a7bab28da55269","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 tickets function","uid":"765c2af6ca77e4e9","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 growing_plant function","uid":"91d86d4a26e41755","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":"Testing top_3_words function","uid":"4b28b33a131eefd9","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 agents_cleanup function","uid":"641fd537e33a59ae","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":"Wolf at the beginning of the queue","uid":"b9bf67d4df9c3970","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 shark function (negative)","uid":"b3ade822e686b250","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 check_for_factor function: positive flow","uid":"e6ed73d965a64ee5","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 'numericals' function","uid":"88851466a8ab5f44","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":"STesting enough function","uid":"210d6cbbe1051e7b","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_root function","uid":"e7b4bfe5c117b0b5","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":"Should return 'Publish!'","uid":"46de5298b06a2e8f","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":"a and b are equal","uid":"c730b39a7cf9843","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":"get_size function tests","uid":"68489cf8ea35171c","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 'generate_hashtag' function","uid":"c12e168b06d36fc7","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 stock_list function","uid":"296f86e34803d6c1","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 'count_sheeps' function: mixed list","uid":"1bcebf4fb624aad6","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":"Wolf at the end of the queue","uid":"56e6898f814c9a2c","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 easy_diagonal function","uid":"abf4f2031d384e78","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 calculate_damage function","uid":"98366b42396826ce","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 create_city_map function","uid":"472edec34fd4cc19","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":"Non consecutive number should be returned","uid":"8817b6c726fc2884","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 done_or_not function","uid":"b9086c98d6d71504","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":"test_starting_position_from_positives","uid":"e9cabde1f2c64760","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 'unique_in_order' function","uid":"d7ea74c17659aeca","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":"'multiply' function verification: lists with multiple digits","uid":"707862d33841a8ff","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":"test_solution_big","uid":"a83b85c2e341a76c","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 check_for_factor function: positive flow","uid":"861fc17326f7d16a","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":"'multiply' function verification with one element list","uid":"4dfeb434e28153fe","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 invite_more_women function (negative)","uid":"c3faad8d02b815fd","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 hoop_count function (negative test case)","uid":"d9bbc705106eff98","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 period_is_late function (positive)","uid":"8bd454f111efcd3e","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 Battle method","uid":"921715088233c4e7","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 Potion class","uid":"111dbc365b1f3e78","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 'factorial' function","uid":"4f2bbc07480f42a4","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 Calculator class","uid":"abed1b9a0913387d","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":"Negative test cases for gen_primes function testing","uid":"e2a8e239adf783da","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 'mix' function","uid":"584f8bdd5c7f3c16","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":"Testing easy_line function","uid":"d9e7bf55554cd705","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 shark function (positive)","uid":"83b34d0610fd83c6","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":"'multiply' function verification with empty list","uid":"c4d9587a3ff2d229","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 done_or_not function","uid":"2c53cc9448de91f2","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 string_to_array function","uid":"a20726936132e0f6","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 length function where head = None","uid":"1dd416b71393e4f8","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 two_decimal_places function","uid":"8782c11be4532248","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 digital_root function","uid":"fd85877ffe0d5722","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 format_duration","uid":"9f41894781b470ee","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":"'fix_the_meerkat function function verification","uid":"a0013817978e9f1b","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 toJadenCase function (positive)","uid":"ba2c8f43220f0c44","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":"Negative non consecutive number should be returned","uid":"6444bc59e77319f9","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":"Zero","uid":"4fc00e9c47abe8d0","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 'DefaultList' class: insert","uid":"e8a3e54ef5fe796f","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 'order' function","uid":"7312d30334dcfc0d","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 gap function","uid":"71dc0d8169aaad6f","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 first_non_repeating_letter function","uid":"31a691fa5a56c905","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":"Test with empty string","uid":"c7b8f329dd40406f","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 validSolution","uid":"7677af29e8a1671e","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 'thirt' function","uid":"24b32ad032525022","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 duplicate_encode function","uid":"fa69c95248558058","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 easy_line function exception message","uid":"7e36f3895c7e5ba3","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_smallest","uid":"5364b62b05552f1e","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 odd_row function","uid":"b7108f3053cbc60d","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 largestPower function","uid":"78450b76b8629fe6","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":"test_solution_medium","uid":"ac390c8ac17d8363","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 negative numbers","uid":"330a0128cd73780c","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 the 'group_cities' function","uid":"f293d4274aefdd43","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 sum_for_list function","uid":"30ac3ffad3316fea","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":"test_starting_position_from_negatives","uid":"ee3233c4ab89c7ec","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":"test_ips_between","uid":"624b364c1e1f6bc7","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 to_alternating_case function","uid":"24df9329b634133a","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 the 'find_missing_number' function","uid":"3460c7a02debe899","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 binary_to_string function","uid":"a22d4b8f003df599","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 invite_more_women function (positive)","uid":"24b136640bd96c68","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 Sudoku class","uid":"6de398181d9095ee","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 solve function","uid":"7ec3425d5267a222","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 'DefaultList' class: remove","uid":"7de68906bfa0f18","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 'solution' function","uid":"8fd9fc1a4b426539","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 likes function","uid":"168ffd09c766442f","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 'has_subpattern' (part 2) function","uid":"941c0037b0b98fcf","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 'longest_repetition' function","uid":"a25791815212e793","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 check_exam function","uid":"7369f3dde824b045","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":"goals function verification","uid":"80ba443311cb72ff","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 positive numbers","uid":"122ba025ebcea5dd","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":"Verify that greet function returns the proper message","uid":"12c07b407ce072f5","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 'has_subpattern' (part 1) function","uid":"76614b580d9bd7f8","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 length function","uid":"ed5a184ed941933a","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 permute_a_palindrome (negative)","uid":"7b584cbfaa9e2f14","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 alphanumeric function","uid":"d8b4a2733a1f48dc","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":"Positive test cases for is_prime function testing","uid":"497e27a7f74365e8","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":"Non square numbers (negative)","uid":"6aeb83ca0df8b3d8","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 'DefaultList' class: extend","uid":"9d50fe36fd5059ab","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 swap_values function","uid":"e6abe3c64e54cb9f","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":"Testing move_zeros function","uid":"1b9a7ef859e6370c","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 calculate function","uid":"7ed5e03fb846420f","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 checkchoose function","uid":"5392fbee850dfcf4","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 Decoding functionality","uid":"25b0f3d782a2ed03","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 hoop_count function (positive test case)","uid":"f801b2352cd357fc","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":"'multiply' function verification","uid":"97bb72caed16dfa0","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 litres function with various test inputs","uid":"53fa8d477eb42fd3","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_line_positive","uid":"9eac58d1342209e0","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 done_or_not function","uid":"1c33446eccccc45a","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 share_price function","uid":"a4637a157e542cb8","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":"'multiply' function verification with random list","uid":"dee6c3b3d0dc73e4","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":"28083507c1397923","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 password function","uid":"cf349408f505ed67","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":"Testing is_palindrome function","uid":"30ebc2ebd440c488","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":"Two smallest numbers in the start of the list","uid":"59a630e9120dbf2c","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 make_class function","uid":"44e584571b03be2","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 'sum_triangular_numbers' with big number as an input","uid":"72c86ca38c98258","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 make_upper_case function","uid":"a5467cc7a05b3546","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 'letter_count' function","uid":"9ef5212b94420bba","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 calc function","uid":"bae98e899f1ebab4","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 'vaporcode' function","uid":"d50213dc9ab240ff","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 take function","uid":"efdfaccb93c4c6b4","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 men_from_boys function","uid":"5815fdb3e38780e6","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":"String with no alphabet chars","uid":"a2f70229e4c52322","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 period_is_late function (negative)","uid":"c03eb686eb3e5a89","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":"test_permutations","uid":"ef2ebe964f1d2f5f","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":"AND logical operator","uid":"a618a1e47f6e349d","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 'count_sheeps' function: empty list","uid":"cb1927945c40fc3","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":"Non square numbers (negative)","uid":"acf18a2788645a5a","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":"powers function should return an array of unique numbers","uid":"58bbccd3c8af3c06","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 anagrams function","uid":"e480fe95093fd8e7","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 calc_combinations_per_row function","uid":"681eea057133a7e0","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 'feast' function","uid":"43c9c9efb1c04251","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 'summation' function","uid":"e65c2aee0db2b724","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 compute_ranks","uid":"9fea94ac2fbcf5b2","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":"XOR logical operator","uid":"94e103957a6e541c","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 'is_isogram' function","uid":"801881710b06074","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":"Testing spiralize function","uid":"f207a08521ff3dd3","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":"Test with regular string","uid":"11ff02c2df19530d","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":"842b955d145895ca","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 pig_it function","uid":"e0e01cfda157cf01","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 next_smaller function","uid":"a53e477b227bdf44","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 row_sum_odd_numbers function","uid":"cb7d8edff0d47cc5","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 toJadenCase function (negative)","uid":"36552864c04c1cf9","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":"Large lists","uid":"f6681b778f42e33c","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 the 'sort_array' function","uid":"fe040c66880e0b15","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 dirReduc function","uid":"f7f7ddd6c717f082","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 flatten function","uid":"9e3c99258a0c64df","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 permute_a_palindrome (empty string)","uid":"b9f8e7d93793c0ea","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 to_table function","uid":"fa5cd4b7c764fede","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 'save' function: positive","uid":"eb4d3d652c38eb3f","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 'solution' function","uid":"3400d1d080e82f75","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":"All chars are in mixed case","uid":"8bc93f78736d3a0e","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 'count_sheeps' function: positive flow","uid":"5a4c9eb3dcb32bf5","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 list_squared function","uid":"319c2fc51c0b8912","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":"13c4343c88a790e8","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":"test_solution_empty","uid":"61f84f81177cf38b","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":"String with no duplicate chars","uid":"a7599be0f5459a3d","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"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"},{"name":"12720-MainThread","children":[{"name":"Testing invite_more_women function (negative)","uid":"1d7a8665bbc3ca3a","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: pop","uid":"67c96b92db3f1ee1","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":"Test with empty string","uid":"2fb895d93acc0bab","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":"Testing calculate function","uid":"1b6850c9f0a02820","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 Walker class - position property from positive grids","uid":"c8da32e94b736fef","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 domain_name function","uid":"950acbfbefb81796","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":"test_solution_big","uid":"68a2b9760a533e02","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":"String with alphabet chars only","uid":"85613c3b6c6421c4","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 'sum_triangular_numbers' with zero","uid":"867b171e961cc6e3","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 'sum_triangular_numbers' with positive numbers","uid":"f6b3bc73a428b4db","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 set_alarm function","uid":"f631ad3e8bb02244","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":"Testing sum_for_list function","uid":"4b22647a9cdd2bef","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 tickets function","uid":"5c0c21f2226a901c","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":"Testing array_diff function","uid":"41a6baf598873d9b","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 check_for_factor function: positive flow","uid":"bd28741372a5f921","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":"Testing encrypt_this function","uid":"4ab01f4fc722fa2f","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 permute_a_palindrome (empty string)","uid":"c4f63c652fed664c","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":"Testing hoop_count function (positive test case)","uid":"a0332cc6a682faac","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":"get_size function tests","uid":"7eedfccbd9267527","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":"test_permutations","uid":"682ca0c47ecc45d4","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 shark function (negative)","uid":"42358797bb03e774","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":"test_line_negative","uid":"63ceea7fe946ff07","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 dir_reduc function","uid":"aa8525de66192fb3","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 stock_list function","uid":"64001087ec7aaf2b","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 Potion class","uid":"77a9a3d99a741f47","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 make_upper_case function","uid":"54122a7c8f1149b2","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 first_non_repeated function with various inputs","uid":"edb0e461adb94f5b","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 zero_fuel function","uid":"9ece4d55c6bd3b35","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":"Testing easy_diagonal function","uid":"711b3df283530a5b","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 'has_subpattern' (part 2) function","uid":"6f37cee94115c50c","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":"Wolf at the beginning of the queue","uid":"20301c2d6922300e","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":"Testing check_for_factor function: positive flow","uid":"dd53e52e1ab13306","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":"Testing the 'find_missing_number' function","uid":"1b7657273f039658","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 big number as an input","uid":"170ac645fcf8229c","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 length function","uid":"563a12b2ae66d10b","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 make_readable function","uid":"4ca3cfa2d2c9d074","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":"Non consecutive number should be returned","uid":"c359ea3a207c31eb","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":"Testing litres function with various test inputs","uid":"5bf0909978db7e30","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":"test_sequence","uid":"25a19c539143ffc2","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 check_root function","uid":"280752ec061c1457","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 Sudoku class","uid":"b0df4a2c5fe59a12","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":"Testing toJadenCase function (positive)","uid":"bc6803e227b56151","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":"Testing zeros function","uid":"6aa550180790876d","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":"Testing easy_line function exception message","uid":"13c5e35ef3c791a0","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 'solution' function","uid":"ec528f5ba60e276b","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":"Square numbers (positive)","uid":"d86332e2eabe60c3","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":"Negative numbers","uid":"88503943247ae8d5","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 row_sum_odd_numbers function","uid":"e2ed60d0ac53c788","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":"Testing 'shortest_job_first(' function","uid":"cbe27b4f7111917c","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":"'multiply' function verification with one element list","uid":"be4d78eb60a06aeb","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 period_is_late function (positive)","uid":"80d57c86b12a37c4","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 'thirt' function","uid":"1216cba41972f97c","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 hoop_count function (negative test case)","uid":"1bfd57b8cda6c028","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 the 'pyramid' function","uid":"c5cf96cca0ab2f52","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":"Two smallest numbers in the start of the list","uid":"843678da53c540e6","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":"'multiply' function verification with random list","uid":"90c1df398d2f201a","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":"Testing 'DefaultList' class: append","uid":"875e90b046ec092c","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":"a or b is negative","uid":"3719e4e464aa700e","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":"Testing permute_a_palindrome (positive)","uid":"288e814175ef5830","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 calc_combinations_per_row function","uid":"cad7274be200bf39","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 compute_ranks","uid":"1d02b155522c6119","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":"Testing monkey_count function","uid":"d9e0974c92057e94","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 check_exam function","uid":"832c94aac84bf09","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 'longest_repetition' function","uid":"5a88d917682070e","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":"test_smallest","uid":"998a460e800cbb2b","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":"String with no duplicate chars","uid":"a29d5673ddcf7e8e","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 Encoding functionality","uid":"5b904804aa9a6e53","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":"Verify that greet function returns the proper message","uid":"3714d7b27c33cf44","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":"test_triangle","uid":"d5d01c4fe30779a0","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":"OR logical operator","uid":"d493d526198a7a0a","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 'letter_count' function","uid":"3d09efb523dadc81","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 'has_subpattern' (part 1) function","uid":"70008c90c6552144","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":"Testing 'mix' function","uid":"d36e2f5707d2a6d3","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 toJadenCase function (negative)","uid":"5e8bbbba63c3bb75","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 'parts_sums' function","uid":"9665a188a4944ac6","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":"fix_the_meerkat function function verification","uid":"f7d9041670997ad6","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":"Testing 'vaporcode' function","uid":"a672dac8835c46c1","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 solution function","uid":"494bc5055e76bf71","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":"Testing list_squared function","uid":"b540357a03b90416","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":"Testing digital_root function","uid":"1b24a6e8f9065ccb","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":"Non square numbers (negative)","uid":"b9d60ed71764b7f4","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 next_smaller function","uid":"a329da92784fccae","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 password function","uid":"9054a710a823b80a","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 'save' function: negative","uid":"b4e0153f9704bfbb","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 'numericals' function","uid":"cd536df0700f3bd3","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 next_bigger function","uid":"eac7f340d73193c2","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":"Testing anagrams function","uid":"479b452abb7b813c","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"]},{"name":"Non is expected","uid":"ceb0c3e5ec48d975","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 solve function","uid":"23151e1dbdaacb09","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":"move function tests","uid":"dfae17616fb702cf","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 'count_sheeps' function: mixed list","uid":"b0a6327af7d064cf","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":"'multiply' function verification","uid":"d39d2cfc8c05650c","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 advice function","uid":"b3fa4d42fb1064a9","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":"Positive test cases for is_prime function testing","uid":"113e69c4ee0f071","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 easy_line function","uid":"156fc08ab7167514","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":"Testing 'count_sheeps' function: positive flow","uid":"510e078ddda4bd3c","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 'factorial' function","uid":"303f99106d04e0c7","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 'DefaultList' class: insert","uid":"3f678007c09ea2b5","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":"'multiply' function verification: lists with multiple digits","uid":"6209b3d491320ab9","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":"Testing number_of_sigfigs function","uid":"b3d5b9d863751a3f","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":"Testing top_3_words function","uid":"1f21450476aa4c9a","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 two_decimal_places function","uid":"d56667f6ac1424a3","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 valid_parentheses function","uid":"99e68c3ce0169a01","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 the 'sort_array' function","uid":"f6df3cbfc02e5094","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 'DefaultList' class: remove","uid":"a6a59cc8a0131a02","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":"Testing 'snail' function","uid":"b054542ab329d2ac","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 increment_string function","uid":"965e1d563752b7d3","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 all_fibonacci_numbers function","uid":"c948f5411c74f4a1","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":"a and b are equal","uid":"555a795f08de5e6c","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":"'multiply' function verification with empty list","uid":"74f816020df3559","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 Walker class - position property from negative grids","uid":"46ad98eaed470ea7","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":"Test that no_space function removes the spaces","uid":"97a2a77f06d4866c","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":"Positive test cases for gen_primes function testing","uid":"f3b1ea272cafb8c8","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":"Testing permute_a_palindrome (negative)","uid":"14cdd8696beec9a","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":"Testing largestPower function","uid":"1d756394430052ee","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":"Large lists","uid":"27e5ed0c95dfc112","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 agents_cleanup function","uid":"71a87e59b6648413","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":"Testing to_alternating_case function","uid":"baf923b3ced2f0a","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":"Testing validSolution","uid":"6d9aec252d158762","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":"powers function should return an array of unique numbers","uid":"15315242cf60389c","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 'order' function","uid":"ed0b0c9c45304a0b","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 'solution' function","uid":"b98e581eac70f265","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":"test_ips_between","uid":"777ba0c823c5a82a","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":"All chars are in upper case","uid":"22d82bbeb537c71a","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":"a an b are positive numbers","uid":"5703befafee18856","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 Warrior class >>> bruce_lee","uid":"10f08e5166368fc8","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 flatten function","uid":"50b7ff1fe714521a","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 Battle method","uid":"afca78445b5fa23f","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":"String alphabet chars and spaces","uid":"fd4ef8d041ff123e","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":"Negative test cases for gen_primes function testing","uid":"f585eec372fcc899","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":"String with no duplicate chars","uid":"1230413e064883bb","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 done_or_not function","uid":"5bc730ff95f1c205","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":"Testing spiralize function","uid":"aea343086c8abd68","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":"Testing move_zeros function","uid":"4df5cc35809df545","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":"Testing two_decimal_places function","uid":"fc6ce7cf48700667","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":"Testing calculate_damage function","uid":"e55f716219844475","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":"test_solution_basic","uid":"ee7ac80cd7bb8f8d","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 Warrior class >>> tom","uid":"f520dc2a3cdded7a","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 the 'group_cities' function","uid":"4a6083b6c2f5cc4b","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 create_city_map function","uid":"574cb5d6827dca2a","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 shark function (positive)","uid":"fe07573cd07e1ed8","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 'sum_triangular_numbers' with negative numbers","uid":"6650fdbb71631571","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 swap_values function","uid":"3785819940a9985f","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 shark function (positive)","uid":"95e685797940e119","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 done_or_not function","uid":"dc89f010c8fc632","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 remove_char function","uid":"5cbf19148d05755c","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":"Find the int that appears an odd number of times","uid":"38d84fb9239b5f2e","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 to_table function","uid":"d4f29bba77fd180","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 'summation' function","uid":"393b88e5ac625a50","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 checkchoose function","uid":"bf7dba429c84fe69","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":"Should return 'Fail!'s","uid":"9689f8dcf21c7e63","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 length function where head = None","uid":"6bf2acd0a0db42e5","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":"All chars are in mixed case","uid":"ed44c13e0e5a3954","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 period_is_late function (negative)","uid":"75a0786e7098fd84","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 duplicate_encode function","uid":"f30d62828063f744","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":"Should return 'I smell a series!'","uid":"749bcfd3f56dec1a","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 string_transformer function","uid":"34ca51906297ee6f","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":"Negative test cases for is_prime function testing","uid":"71f8f5b376b254cf","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":"Should return 'Publish!'","uid":"6c94325f55b8b56c","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 done_or_not function","uid":"e248ed6a4ff28aaa","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 format_duration","uid":"1e6c7d1c4189d9dd","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":"test_solution_medium","uid":"8271119e6077f333","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 share_price function","uid":"879748b1d447d0a9","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":"Wolf at the end of the queue","uid":"cfac23a989211fca","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 sum_of_intervals function","uid":"84ea3c3b3250393e","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 the 'solution' function","uid":"ee16b6e353dfd7cd","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":"String with no alphabet chars","uid":"5c0380ec075dfe06","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 decipher_this function","uid":"d86eb3695c9130c6","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":"goals function verification","uid":"6e173d8e5ff615be","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 'DefaultList' class: extend","uid":"d4941a73e9c93a57","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 Decoding functionality","uid":"532d8f53f92733e9","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":"test_solution_empty","uid":"880859ea02196db7","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 alphanumeric function","uid":"e78a552d574aad16","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 make_class function","uid":"a3ca7d068d3e7d87","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":"Testing 'save' function: positive","uid":"2ee59d9a8c304f3b","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":"Zero","uid":"31ab703bf65847e5","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 the 'unique_in_order' function","uid":"f0cf41ee7ec62257","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":"Wolf in the middle of the queue","uid":"c7165b4538deb01d","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":"Testing invite_more_women function (positive)","uid":"bded3837031681ca","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 'count_sheeps' function: empty list","uid":"91cb28173d925ce2","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 likes function","uid":"2e0eb113649e95e6","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":"Test with regular string","uid":"26a447cb7c15cb4e","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 calc function","uid":"a39b53ea962a31f1","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 'generate_hashtag' function","uid":"e5d70f307aec9205","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":"Testing binary_to_string function","uid":"d5360156ef396b6e","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":"Testing max_multiple function","uid":"710a5d14f0382e2f","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 epidemic function","uid":"c7c4d343c90ce082","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 gap function","uid":"c1447fd680942c58","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":"XOR logical operator","uid":"e71092ad871851c8","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":"Testing 'solution' function","uid":"cce644bc4fb0b16f","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 'has_subpattern' (part 3) function","uid":"4d2d9b386eb6ebf2","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 'DefaultList' class: __getitem__","uid":"a8e7ed0b9e8a05d4","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 first_non_repeating_letter function","uid":"e41edf94f198f2c7","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":"Testing 'greek_comparator' function","uid":"7e0fbf3b4505484b","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 string_to_array function","uid":"1ddf203d8a3c498d","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":"Testing 'count_sheeps' function: bad input","uid":"1e4e59f90ff35603","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":"Testing is_prime function","uid":"d3ab7c4bfc7d171f","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":"Testing century function","uid":"864737f712b002ec","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":"Negative non consecutive number should be returned","uid":"cf8fa237e5fc3101","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 men_from_boys function","uid":"294aa341a28271bb","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":"Square numbers (positive)","uid":"76b07a3b0b784bd3","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 is_palindrome function","uid":"c3e164f822b7bae","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 pig_it function","uid":"bb6e602a844f0715","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":"Test with one char only","uid":"4acb1c573ef8b7bb","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 'feast' function","uid":"51021ef4547a41f8","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 validate_battlefield function","uid":"aec2fb642901e92","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 take function","uid":"696e651c40149097","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":"a and b are equal","uid":"a75aa53086c60820","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":"You are given two angles -> find the 3rd.","uid":"97e1e8aa5714e13a","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 alphabet_war function","uid":"e776a97a9aadedfc","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":"test_line_positive","uid":"d8bbfaabd5a5300d","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":"Testing growing_plant function","uid":"4ea092b3f85ebfcb","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":"Testing 'is_isogram' function","uid":"7567c87108e55931","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":"String with mixed type of chars","uid":"f7ae1e1fc4481de3","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":"All chars are in lower case","uid":"5abe74757b94997a","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 count_letters_and_digits function","uid":"126c2e67245419a9","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":"AND logical operator","uid":"946a2bd47c8adfbc","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":"Non square numbers (negative)","uid":"fefeabf3e26a53bd","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 odd_row function","uid":"bb7d4237e3a80dd7","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 Calculator class","uid":"1a204aa873a93d86","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":"test_josephus_survivor","uid":"6aba04a431b7fd70","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":"STesting enough function","uid":"f1c17d8d31f590b0","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"]}],"uid":"f0ded5a934f7c37b7599afabf4ca35fc"}],"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 75f627fae73..adbe75f08c2 100644 --- a/allure-report/export/influxDbData.txt +++ b/allure-report/export/influxDbData.txt @@ -1,13 +1,13 @@ -launch_status failed=0 1732764264000000000 -launch_status broken=0 1732764264000000000 -launch_status passed=216 1732764264000000000 -launch_status skipped=11 1732764264000000000 -launch_status unknown=0 1732764264000000000 -launch_time duration=8030747183 1732764264000000000 -launch_time min_duration=0 1732764264000000000 -launch_time max_duration=745 1732764264000000000 -launch_time sum_duration=1064 1732764264000000000 -launch_time start=1724733474194 1732764264000000000 -launch_time stop=1732764221377 1732764264000000000 -launch_retries retries=659 1732764264000000000 -launch_retries run=227 1732764264000000000 +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 87e04bf58f5..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 216 +launch_status_passed 221 launch_status_skipped 11 launch_status_unknown 0 -launch_time_duration 8030747183 +launch_time_duration 8296626985 launch_time_min_duration 0 -launch_time_max_duration 745 -launch_time_sum_duration 1064 +launch_time_max_duration 695 +launch_time_sum_duration 1114 launch_time_start 1724733474194 -launch_time_stop 1732764221377 -launch_retries_retries 659 -launch_retries_run 227 +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 33a9f28dc0c..1149e3d550b 100644 --- a/allure-report/history/duration-trend.json +++ b/allure-report/history/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}}] \ 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 bce06c8cd99..478bb43717a 100644 --- a/allure-report/history/history-trend.json +++ b/allure-report/history/history-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}}] \ 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 cafc27a1621..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":4,"unknown":0,"total":4},"items":[{"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"ed63cab09a5a21abc4139e6751f28e54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"b71e871d53b429aef63593ea1f41c8bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"ed6c1e5f0eb38874fc66b7fa53f68e12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"a5e357785cf7a1184adb35707a6c5d0c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"84d7f0a1c2a345b29fa2e222a5ed7ee5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"21739eee721a124a84e5414945df03e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"3181c0c2e1c9ba7b49a9f72369c7b0bb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b22abb76677627273b26e5c011545fb2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"94e7f25439d88c0d2dae964ef4a033cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"fb8836e996664af9461454bae0b6f79c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"f2e69721b9f301c2454fa419ac365031":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"8c287dae332df512fc4a9755020ffedc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"27ae718be00b2e9f316c37c338cb2894":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b223f14337b9b49b6e64d94d9479e857":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"92164414ad94bf1f5638230345fa606d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"ecc1f7419b2f77621f5c909f1d0df9a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"d2c9cdacf9fca346eec2858cd44275e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"334b612b45e8a87e83a3482704f4ba8a":{"statistic":{"failed":0,"broken":0,"skipped":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"aaef6593296fd19246b6caa71f38ecab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"dc079813fc553d210a3def6568230a25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"aa9027133335818366e5c0c91c936279":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"9f2093620517aae286b85ccc9f40b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"12f0f975ccfd38a2860e83db6017e19f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"6738a51245363d65952509f12ebc1af8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"a2426de0b4808429aff451df95bbdc21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"b49a06236d1af1a464e84083e52f6b22":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"d8680aad50eda2b69694580584e0455f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"e2edeca1f212268fe8082320adfcc98c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"c8ef830d4279bee02e53bf3a04349c35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"9af049da90f73c206ca7e8b1362e502f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"0e1169325045c4d7d4ed6982c76387ed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"135e62f837ca5fe30ddfd2ad875e089b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"c060fb3e36725c887b4b4edce83f7142":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"passed":0,"unknown":0,"total":4},"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}}]},"e4b3b27b629bbd5f25abab144f66de37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"2972663ca9fa4b4f0e6ea69060a464d5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":2,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"47e8749fb79b5ff765dc32c3b5efb2a3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"026739760bca73e921f8e5d35d9329cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":1,"unknown":0,"total":1},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"e1a83b5e7221ab7611b800cba5c64efa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"3d4d9d606fbf24bad8abb0f0f85e6130":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"4d7a6b080aa8dcf06d68a1f957a8e465":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"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}}]},"9cff2d5d4d73fbc92b1c7c29d738384f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"124f2add699f3e2269c311afae219c6e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"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}}]},"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":4,"unknown":0,"total":4},"items":[{"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}}]},"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":2,"unknown":0,"total":2},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"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}}]},"7c789f6ee990c99f027ff5b8c32573fd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4},"items":[{"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":4,"unknown":0,"total":4},"items":[{"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 +{"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 77412d967df..42e5e4b88a8 100644 --- a/allure-report/history/retry-trend.json +++ b/allure-report/history/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}}] \ 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 179c93853ca..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': 'd656bfaf-c85c-445e-a29f-7265fb22ae98', + '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 33a9f28dc0c..1149e3d550b 100644 --- a/allure-report/widgets/duration-trend.json +++ b/allure-report/widgets/duration-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"duration":59372266}}] \ 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 1b376458d81..32aa2b3e6f3 100644 --- a/allure-report/widgets/duration.json +++ b/allure-report/widgets/duration.json @@ -1 +1 @@ -[{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"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 bce06c8cd99..478bb43717a 100644 --- a/allure-report/widgets/history-trend.json +++ b/allure-report/widgets/history-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}}] \ 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 77412d967df..42e5e4b88a8 100644 --- a/allure-report/widgets/retry-trend.json +++ b/allure-report/widgets/retry-trend.json @@ -1 +1 @@ -[{"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}},{"data":{"run":209,"retry":4447}}] \ 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 ac031fc5f7c..2cff6aa4497 100644 --- a/allure-report/widgets/severity.json +++ b/allure-report/widgets/severity.json @@ -1 +1 @@ -[{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"status":"passed","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"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 1b376458d81..32aa2b3e6f3 100644 --- a/allure-report/widgets/status-chart.json +++ b/allure-report/widgets/status-chart.json @@ -1 +1 @@ -[{"uid":"b0cc123728fa2f2d","name":"All chars are in upper case","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"status":"passed","severity":"normal"},{"uid":"a908975bd67b2eca","name":"Testing Sudoku class","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","severity":"normal"},{"uid":"82f0a19d19bd8125","name":"Testing 'factorial' function","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"status":"passed","severity":"normal"},{"uid":"1f1df83d6cc10b66","name":"fix_the_meerkat function function verification","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d40466198fa34e6","name":"Testing take function","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","severity":"normal"},{"uid":"49ad6a9c0404421b","name":"All chars are in mixed case","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"status":"passed","severity":"normal"},{"uid":"732b9dd805d734b8","name":"test_triangle","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","severity":"normal"},{"uid":"1c3655d4a978bd79","name":"String with no duplicate chars","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"status":"passed","severity":"normal"},{"uid":"b7dd8f8438e567a9","name":"Testing list_squared function","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"status":"passed","severity":"normal"},{"uid":"66020f911b054e74","name":"Test with one char only","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"status":"passed","severity":"normal"},{"uid":"bca9ba5488466979","name":"Negative numbers","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"status":"passed","severity":"normal"},{"uid":"8388a8495a8b75af","name":"'multiply' function verification with random list","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"status":"passed","severity":"normal"},{"uid":"f5c9e062133dbbbb","name":"Testing Potion class","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"status":"passed","severity":"normal"},{"uid":"1bd3919646678e3f","name":"Square numbers (positive)","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"status":"passed","severity":"normal"},{"uid":"183ba5aa4a18280","name":"Testing count_letters_and_digits function","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","severity":"normal"},{"uid":"5194ad39db439d08","name":"Testing Calculator class","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"status":"passed","severity":"normal"},{"uid":"6dfafb882d7cc41f","name":"Wolf at the end of the queue","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"status":"passed","severity":"normal"},{"uid":"b22afbc33030e55f","name":"Testing the 'find_missing_number' function","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","severity":"normal"},{"uid":"300c045916564a1","name":"Testing anagrams function","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"status":"passed","severity":"normal"},{"uid":"ba71f124345447fc","name":"Testing check_root function","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"status":"passed","severity":"normal"},{"uid":"b78b9d24e53cd100","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"status":"passed","severity":"normal"},{"uid":"4b2984e4fa36f94","name":"Testing Walker class - position property from positive grids","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"status":"passed","severity":"critical"},{"uid":"37c27a38809b08b4","name":"Testing create_city_map function","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","severity":"normal"},{"uid":"63a8ebd07b8fa1c4","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"status":"passed","severity":"normal"},{"uid":"98ca489a74667507","name":"Testing Decoding functionality","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e2354482de170d3","name":"Testing next_bigger function","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","severity":"normal"},{"uid":"388d9dc9fa1f1c3a","name":"Testing litres function with various test inputs","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"status":"passed","severity":"normal"},{"uid":"c19e4739f2d4d64c","name":"Zero","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"status":"passed","severity":"normal"},{"uid":"67a0bf67db9047ee","name":"Testing binary_to_string function","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff87d981594c6f7","name":"Testing password function","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"status":"passed","severity":"normal"},{"uid":"7331de8e7202ad57","name":"Testing sum_for_list function","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"status":"passed","severity":"normal"},{"uid":"6641c9ab33f4ea66","name":"Testing hoop_count function (positive test case)","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"status":"passed","severity":"normal"},{"uid":"61e07c6ddcc506b1","name":"Testing sum_of_intervals function","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"status":"passed","severity":"normal"},{"uid":"b26a6745cd367097","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"status":"passed","severity":"normal"},{"uid":"31802a90aeba5e97","name":"test_solution_big","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1c9684bf403c80de","name":"Testing move_zeros function","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f6328bce0de37c","name":"Testing invite_more_women function (positive)","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"status":"passed","severity":"normal"},{"uid":"93b00a3d2e7b92c1","name":"test_ips_between","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a5b469ea69ba375b","name":"Test with regular string","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"status":"passed","severity":"normal"},{"uid":"a61ba5af03a1f296","name":"Testing two_decimal_places function","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"status":"passed","severity":"normal"},{"uid":"e687a692c2c18f1b","name":"Testing to_table function","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"status":"passed","severity":"normal"},{"uid":"168d1058a213deae","name":"Testing 'parts_sums' function","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"status":"passed","severity":"normal"},{"uid":"a78b9243c26a61bf","name":"Testing 'DefaultList' class: append","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","severity":"normal"},{"uid":"1251fa1056fea3d4","name":"Testing done_or_not function","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","severity":"normal"},{"uid":"664f2a2d41bf2bd8","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"80a5eacfa2431348","name":"Testing easy_line function exception message","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","severity":"normal"},{"uid":"8dfef1ba8856d412","name":"Testing shark function (negative)","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","severity":"normal"},{"uid":"e7035dc3ef8d99c0","name":"Testing 'snail' function","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","severity":"normal"},{"uid":"450fbb27e2067be4","name":"Testing top_3_words function","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","severity":"normal"},{"uid":"86bf8b663d5828a","name":"Testing 'save' function: negative","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"status":"passed","severity":"normal"},{"uid":"405b625cf95f9fbd","name":"a and b are equal","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"status":"passed","severity":"normal"},{"uid":"9164bf2c06bf8752","name":"test_smallest","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"status":"skipped","severity":"normal"},{"uid":"980af150a499b4e9","name":"Testing row_sum_odd_numbers function","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f7c96f923539a5","name":"Testing pig_it function","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"status":"passed","severity":"normal"},{"uid":"591cfdbc90cf4c5e","name":"AND logical operator","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"status":"passed","severity":"normal"},{"uid":"3846518071a02e50","name":"Testing set_alarm function","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"status":"passed","severity":"normal"},{"uid":"f30b225377e5683d","name":"Testing to_alternating_case function","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"status":"passed","severity":"normal"},{"uid":"3e564e38813f1539","name":"Testing Walker class - position property from negative grids","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","severity":"critical"},{"uid":"631ed8ca3aead56c","name":"powers function should return an array of unique numbers","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"status":"passed","severity":"normal"},{"uid":"bdd8b1b0bd82d5b1","name":"test_solution_basic","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"status":"skipped","severity":"normal"},{"uid":"56d019840f444cec","name":"Testing growing_plant function","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"status":"passed","severity":"normal"},{"uid":"60d4140245a65d5","name":"String with mixed type of chars","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"status":"passed","severity":"normal"},{"uid":"f48dcf9628fe90ff","name":"Testing 'solution' function","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"status":"passed","severity":"normal"},{"uid":"4249127f6bff6f10","name":"Testing format_duration","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"status":"passed","severity":"normal"},{"uid":"ff9c64bdd3b3fc0c","name":"Testing the 'pyramid' function","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"status":"passed","severity":"normal"},{"uid":"689b611d3c9a3124","name":"XOR logical operator","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"status":"passed","severity":"normal"},{"uid":"99bd3e79aeea5636","name":"Testing shark function (positive)","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e4416fd32f6992f","name":"Testing Encoding functionality","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","severity":"normal"},{"uid":"2890c501d19b5f47","name":"test_sequence","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"status":"skipped","severity":"normal"},{"uid":"cb9f6d4c2aaf90e3","name":"Testing gap function","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"status":"passed","severity":"normal"},{"uid":"32a39f3c0fa23567","name":"test_line_positive","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c87eac92a1b3b456","name":"Testing length function","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"status":"passed","severity":"normal"},{"uid":"b36ca0513e4048a8","name":"Testing 'numericals' function","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e4b6f6bd251566","name":"Testing valid_parentheses function","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"status":"passed","severity":"normal"},{"uid":"e604a93a8ee1253f","name":"Testing 'solution' function","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"status":"passed","severity":"normal"},{"uid":"2be24f9b66669d76","name":"Testing period_is_late function (negative)","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1af2c095108694d","name":"All chars are in lower case","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"status":"passed","severity":"normal"},{"uid":"4710cc2182eb85cb","name":"Negative test cases for is_prime function testing","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"status":"passed","severity":"critical"},{"uid":"8672ab2817945b36","name":"Testing string_to_array function","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d2b852ea94aa88a","name":"Testing validSolution","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","severity":"normal"},{"uid":"dd86378e3a37dfe4","name":"Testing 'shortest_job_first(' function","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","severity":"normal"},{"uid":"6035f0fe38b5a062","name":"Testing Warrior class >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","severity":"normal"},{"uid":"c00621abb22a9be3","name":"Testing Battle method","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","severity":"normal"},{"uid":"c244be500ebdf146","name":"Testing 'DefaultList' class: extend","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"status":"passed","severity":"normal"},{"uid":"3ead41117d0ad5b6","name":"Testing century function","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","severity":"normal"},{"uid":"5908d364b75f844e","name":"Testing the 'valid_braces' function","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"status":"passed","severity":"normal"},{"uid":"48e03b38164b77c2","name":"Testing done_or_not function","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"status":"passed","severity":"normal"},{"uid":"d6ad7a05187743ff","name":"Testing 'letter_count' function","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"status":"passed","severity":"normal"},{"uid":"65e9477143af3f55","name":"Positive test cases for gen_primes function testing","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"status":"passed","severity":"critical"},{"uid":"c3e9cf6e477b7f80","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"status":"passed","severity":"normal"},{"uid":"197e80b267cccc2b","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab3687d99fed99d0","name":"Testing make_class function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","severity":"normal"},{"uid":"cc4dd11ea285cd92","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"status":"passed","severity":"normal"},{"uid":"46eea1e10beb3240","name":"a an b are positive numbers","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"status":"passed","severity":"normal"},{"uid":"c25f8210fdb51a41","name":"test_permutations","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"status":"skipped","severity":"normal"},{"uid":"783d8a205b731823","name":"String with no alphabet chars","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"status":"passed","severity":"normal"},{"uid":"fa6c346b04c031d5","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"status":"passed","severity":"normal"},{"uid":"b684b0c7250ecf6d","name":"Testing advice function","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","severity":"normal"},{"uid":"7e066328cfed2428","name":"Testing invite_more_women function (negative)","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"status":"passed","severity":"normal"},{"uid":"1857a7ece8075aa5","name":"Testing calculate function","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","severity":"normal"},{"uid":"d5aba2cd944d7efd","name":"Testing solution function","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","severity":"normal"},{"uid":"3c7a781e3674db5e","name":"Testing zeros function","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"status":"passed","severity":"normal"},{"uid":"ebad1371009d2223","name":"Testing permute_a_palindrome (empty string)","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6d26dfb90ab4062","name":"Testing calc function","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","severity":"normal"},{"uid":"577d9e765fb39849","name":"test_line_negative","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bd65eae3991d6c2c","name":"Testing 'count_sheeps' function: empty list","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"status":"passed","severity":"normal"},{"uid":"d0246537274067fb","name":"Testing 'greek_comparator' function","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"status":"passed","severity":"normal"},{"uid":"63ea9545d8dcd43f","name":"Wolf at the beginning of the queue","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"status":"passed","severity":"normal"},{"uid":"b2f619fce2ea028d","name":"Testing make_upper_case function","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a3f85e29591c654","name":"Testing domain_name function","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"status":"passed","severity":"normal"},{"uid":"3de1512f067d459d","name":"Testing 'generate_hashtag' function","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"status":"passed","severity":"normal"},{"uid":"c31558e9c7981ac7","name":"STesting enough function","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"status":"passed","severity":"normal"},{"uid":"200b5f0b4ec790a3","name":"Testing epidemic function","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"status":"passed","severity":"normal"},{"uid":"f26dca06c76121c7","name":"Testing toJadenCase function (positive)","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"status":"passed","severity":"normal"},{"uid":"fcb92722bb71757b","name":"Non consecutive number should be returned","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"status":"passed","severity":"normal"},{"uid":"be50565df8dfb0ab","name":"a or b is negative","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"status":"passed","severity":"normal"},{"uid":"fef2d68159e448ff","name":"Testing flatten function","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"status":"passed","severity":"normal"},{"uid":"416bb0c0ac58f7b6","name":"Testing odd_row function","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ad5cb812fbd5d4a","name":"Testing first_non_repeating_letter function","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee07ce647fa212f","name":"Testing the 'group_cities' function","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"status":"passed","severity":"normal"},{"uid":"c2a15dd126224894","name":"Testing remove_char function","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"status":"passed","severity":"normal"},{"uid":"9a9def5039f12f67","name":"Testing tickets function","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e017ac7fdaf6bf5","name":"Testing compute_ranks","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"status":"passed","severity":"normal"},{"uid":"17c9a97f8a5ea815","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"status":"passed","severity":"normal"},{"uid":"ff18bec5c293c228","name":"Testing check_for_factor function: positive flow","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"status":"passed","severity":"normal"},{"uid":"e751c9c9dc3d04e6","name":"'multiply' function verification with empty list","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"status":"passed","severity":"normal"},{"uid":"9246dbe4ecdc42ce","name":"Testing two_decimal_places function","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"status":"passed","severity":"normal"},{"uid":"c700736d12b44c86","name":"'multiply' function verification: lists with multiple digits","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ef44675aea47099","name":"test_josephus_survivor","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"status":"skipped","severity":"normal"},{"uid":"720b65d3a7d8ec34","name":"Testing all_fibonacci_numbers function","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"status":"passed","severity":"normal"},{"uid":"1abde016dd7f5ee7","name":"Testing max_multiple function","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"status":"passed","severity":"normal"},{"uid":"f6c63ae7fdc54916","name":"Testing check_exam function","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"status":"passed","severity":"normal"},{"uid":"30977e1fdeed6f0a","name":"Testing 'is_isogram' function","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","severity":"normal"},{"uid":"19cfe4000991e820","name":"Testing the 'unique_in_order' function","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"status":"passed","severity":"normal"},{"uid":"64ddebaa5d6679fc","name":"Testing stock_list function","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","severity":"normal"},{"uid":"59e860fc2782867c","name":"Find the int that appears an odd number of times","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"status":"passed","severity":"normal"},{"uid":"8e9b4227c17ce17f","name":"test_solution_medium","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"status":"skipped","severity":"normal"},{"uid":"43a8b37a1715c915","name":"Testing spiralize function","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"status":"passed","severity":"critical"},{"uid":"41668c3c4e1a677a","name":"Testing the 'solution' function","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"status":"passed","severity":"normal"},{"uid":"354cda6601a7cded","name":"Testing array_diff function","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","severity":"normal"},{"uid":"14829aa4ce177c0a","name":"Testing alphanumeric function","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"status":"passed","severity":"normal"},{"uid":"64abc8899e8e691d","name":"Testing checkchoose function","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","severity":"normal"},{"uid":"54fbe05c675f404a","name":"String with alphabet chars only","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"status":"passed","severity":"normal"},{"uid":"77ce7ba6af0b177a","name":"You are given two angles -> find the 3rd.","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"status":"passed","severity":"normal"},{"uid":"c52dc9ba56a64495","name":"Two smallest numbers in the start of the list","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"status":"passed","severity":"normal"},{"uid":"8a89827c471bc909","name":"Testing 'order' function","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"status":"passed","severity":"normal"},{"uid":"a3cba1eb012d0834","name":"Testing first_non_repeated function with various inputs","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee50880cc545f1d3","name":"Testing swap_values function","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"status":"passed","severity":"normal"},{"uid":"1bf4128bcf35143f","name":"Testing toJadenCase function (negative)","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"status":"passed","severity":"normal"},{"uid":"3b9e344534b3c5db","name":"Testing 'mix' function","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","severity":"normal"},{"uid":"b8a2da685a579f99","name":"OR logical operator","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc8d600f4ca1daf","name":"Testing period_is_late function (positive)","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"status":"passed","severity":"normal"},{"uid":"89d5ee585c13bf38","name":"Testing 'save' function: positive","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"status":"passed","severity":"normal"},{"uid":"5654bb5658921dcd","name":"Testing make_readable function","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"status":"passed","severity":"normal"},{"uid":"e53952640c2c9e47","name":"Testing the 'sort_array' function","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c5cc35d3de0d6f4","name":"Should return 'I smell a series!'","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"status":"passed","severity":"normal"},{"uid":"162a4f2fa010c721","name":"Non square numbers (negative)","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"status":"passed","severity":"normal"},{"uid":"c005f5247ce8619b","name":"Non is expected","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"status":"passed","severity":"normal"},{"uid":"c5bce40c2868c787","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"status":"passed","severity":"normal"},{"uid":"302e450946481df3","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"status":"passed","severity":"normal"},{"uid":"13f340b5f893b4e2","name":"Square numbers (positive)","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"status":"passed","severity":"normal"},{"uid":"ef2b00c02db84592","name":"Testing done_or_not function","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","severity":"normal"},{"uid":"190ed93e28b901b","name":"Verify that greet function returns the proper message","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a70d9350601da5","name":"get_size function tests","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"status":"passed","severity":"normal"},{"uid":"641b1ee7248b1557","name":"Testing next_smaller function","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","severity":"normal"},{"uid":"28a9bedc22c54787","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"status":"passed","severity":"normal"},{"uid":"1b57aafe4439b9a8","name":"Testing 'summation' function","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"status":"passed","severity":"normal"},{"uid":"965bac5a2c55f031","name":"goals function verification","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"status":"passed","severity":"normal"},{"uid":"3de5bbe9e7cab5b6","name":"Testing shark function (positive)","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","severity":"normal"},{"uid":"48fa5f91e3478c29","name":"Testing encrypt_this function","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa37770dd2142a16","name":"Should return 'Publish!'","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"status":"passed","severity":"normal"},{"uid":"8ed1a17310170d88","name":"Testing number_of_sigfigs function","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b0ec4eb2cd2dde7","name":"Negative test cases for gen_primes function testing","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","severity":"critical"},{"uid":"ef53249dd3798b49","name":"Wolf in the middle of the queue","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"status":"passed","severity":"normal"},{"uid":"d731ec2306766d91","name":"Positive test cases for is_prime function testing","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"status":"passed","severity":"critical"},{"uid":"dc076040e5481dc9","name":"Testing increment_string function","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"status":"passed","severity":"normal"},{"uid":"4d8c29fe45d13f2d","name":"Testing string_transformer function","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"status":"passed","severity":"normal"},{"uid":"4eb91d777aea105a","name":"Testing dir_reduc function","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","severity":"normal"},{"uid":"63b822db5bae14d4","name":"Test that no_space function removes the spaces","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"status":"passed","severity":"normal"},{"uid":"98e0aca6e090522b","name":"Large lists","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"status":"passed","severity":"normal"},{"uid":"8bc712dc2d3a7199","name":"Testing permute_a_palindrome (negative)","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"status":"passed","severity":"normal"},{"uid":"a13c451f0f676900","name":"'multiply' function verification with one element list","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"status":"passed","severity":"normal"},{"uid":"8e87cfc15c8260a3","name":"Testing length function where head = None","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"status":"passed","severity":"normal"},{"uid":"b1056dd0bc1f2f4e","name":"Testing calc_combinations_per_row function","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"status":"passed","severity":"normal"},{"uid":"fea5f749a1c464e4","name":"Testing digital_root function","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"status":"passed","severity":"normal"},{"uid":"9c39905963998c1b","name":"a and b are equal","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d4729a99109106e","name":"Testing solve function","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9e0d2d6c00c88e9","name":"Testing monkey_count function","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"status":"passed","severity":"normal"},{"uid":"a30a3ac9558d7a9c","name":"Testing 'longest_repetition' function","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0b1085f1fbfd7ed","name":"Testing permute_a_palindrome (positive)","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"status":"passed","severity":"normal"},{"uid":"37bcd45d30c593a7","name":"Testing decipher_this function","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"status":"passed","severity":"normal"},{"uid":"edb8f84ee9c3dd36","name":"'multiply' function verification","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"status":"passed","severity":"normal"},{"uid":"4438dce845a8b680","name":"Testing 'DefaultList' class: pop","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"status":"passed","severity":"normal"},{"uid":"7c6af0e0a129f035","name":"Testing zero_fuel function","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff3f93ff1ffe8b3","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"status":"passed","severity":"normal"},{"uid":"addec93357f6e501","name":"Testing largestPower function","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"status":"passed","severity":"normal"},{"uid":"89c0be4978ed22ba","name":"String alphabet chars and spaces","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"status":"passed","severity":"normal"},{"uid":"c0a4502fedd41667","name":"Testing 'DefaultList' class: remove","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"status":"passed","severity":"normal"},{"uid":"5bf735ebb9d90923","name":"Testing share_price function","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"status":"passed","severity":"normal"},{"uid":"ed9cfa6ba87dba0e","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"e695b3f4b0bdd51b","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0931e78c129f8d8","name":"Testing calculate_damage function","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","severity":"normal"},{"uid":"62a6bbd8d87be20e","name":"Testing 'thirt' function","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","severity":"normal"},{"uid":"142f5165c8452d36","name":"Testing is_prime function","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"status":"passed","severity":"normal"},{"uid":"e91954f86960f5cf","name":"Testing alphabet_war function","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","severity":"normal"},{"uid":"8605c2bc186d7f9a","name":"String with no duplicate chars","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"status":"passed","severity":"normal"},{"uid":"a6592dc6717fe514","name":"Testing 'vaporcode' function","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d05de3d43cf437d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"status":"passed","severity":"normal"},{"uid":"112ca50049d27c","name":"Should return 'Fail!'s","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"status":"passed","severity":"normal"},{"uid":"5f97df940bb3f46a","name":"Testing 'solution' function","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb0cb59f0e1a4eca","name":"Testing agents_cleanup function","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","severity":"normal"},{"uid":"1a13c6a89153460b","name":"Testing validate_battlefield function","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","severity":"normal"},{"uid":"2991adec6435da10","name":"Testing 'count_sheeps' function: bad input","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"status":"passed","severity":"normal"},{"uid":"4736c243443acbf6","name":"Negative non consecutive number should be returned","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1bc6da1a117f865","name":"Testing duplicate_encode function","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cb7f65d354963ea","name":"Testing 'feast' function","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a636a909012a6f0","name":"move function tests","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"status":"passed","severity":"normal"},{"uid":"edfd5d811972f420","name":"Testing men_from_boys function","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"status":"passed","severity":"normal"},{"uid":"e532878179cb6f87","name":"Testing is_palindrome function","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"status":"passed","severity":"normal"},{"uid":"ea77ab4395e92566","name":"Testing 'DefaultList' class: insert","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"status":"passed","severity":"normal"},{"uid":"52402d5056a00e1d","name":"Test with empty string","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"status":"passed","severity":"normal"},{"uid":"b02a54a0a8bd8284","name":"Testing hoop_count function (negative test case)","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e71e34228180c1c","name":"Non square numbers (negative)","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"status":"passed","severity":"normal"},{"uid":"80f314b70b306bd4","name":"test_solution_empty","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"status":"skipped","severity":"normal"},{"uid":"324d19209fbeb70d","name":"Testing easy_line function","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","severity":"normal"},{"uid":"53eb34bc4e02fa07","name":"Testing easy_diagonal function","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"status":"passed","severity":"normal"},{"uid":"6bab07231bfb8a25","name":"Testing likes function","time":{"start":1732764220402,"stop":1732764220402,"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 ab62e1c781f..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":110,"unknown":0,"total":110}},{"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 +{"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 74bc6ca48ef..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":11,"passed":216,"unknown":0,"total":227},"time":{"start":1724733474194,"stop":1732764221377,"duration":8030747183,"minDuration":0,"maxDuration":745,"sumDuration":1064}} \ 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 From 817d43ab08e0a591b0ebb522c66c449d2be1491d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 20:59:38 -0800 Subject: [PATCH 293/873] Create pydocstyle_kyu2.yml --- .github/workflows/pydocstyle_kyu2.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu2.yml diff --git a/.github/workflows/pydocstyle_kyu2.yml b/.github/workflows/pydocstyle_kyu2.yml new file mode 100644 index 00000000000..0ebdf58314e --- /dev/null +++ b/.github/workflows/pydocstyle_kyu2.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle for kyu2 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu2' + +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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --versio + - name: Python Data Type Checking with MyPy + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_2 From a295ca29dba28f6abaa5b48c2282f4e523ec5c28 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:12:50 -0800 Subject: [PATCH 294/873] Create .pydocstyle --- .pydocstyle | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .pydocstyle diff --git a/.pydocstyle b/.pydocstyle new file mode 100644 index 00000000000..91b66bb3549 --- /dev/null +++ b/.pydocstyle @@ -0,0 +1,3 @@ +[pydocstyle] +inherit = false +match='(?!__ini__).*\.py' \ No newline at end of file From 1f9ca1347433e1a4a9761acdd7280a38ab269c2b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:15:55 -0800 Subject: [PATCH 295/873] Update pydocstyle_kyu2.yml --- .github/workflows/pydocstyle_kyu2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pydocstyle_kyu2.yml b/.github/workflows/pydocstyle_kyu2.yml index 0ebdf58314e..022538f9c8a 100644 --- a/.github/workflows/pydocstyle_kyu2.yml +++ b/.github/workflows/pydocstyle_kyu2.yml @@ -39,7 +39,7 @@ jobs: - name: Check pydocstyle version run: | pydocstyle --versio - - name: Python Data Type Checking with MyPy + - name: Doc style Checking with pydocstyle # Pydocstyle testing (Guide) # https://www.pydocstyle.org/en/stable/usage.html#cli-usage run: | From 7fc97eaea7902ad46e8558f3a3ee34a5b88f5dfa Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:15:59 -0800 Subject: [PATCH 296/873] Update .pydocstyle --- .pydocstyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pydocstyle b/.pydocstyle index 91b66bb3549..f1ca9b912e0 100644 --- a/.pydocstyle +++ b/.pydocstyle @@ -1,3 +1,3 @@ [pydocstyle] inherit = false -match='(?!__ini__).*\.py' \ No newline at end of file +match='(?!__ini__).' \ No newline at end of file From e6b5ba368cb4a953ff70778701bd60eb11aa5a23 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:17:37 -0800 Subject: [PATCH 297/873] Update .pydocstyle --- .pydocstyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pydocstyle b/.pydocstyle index f1ca9b912e0..7182aa80170 100644 --- a/.pydocstyle +++ b/.pydocstyle @@ -1,3 +1,3 @@ [pydocstyle] inherit = false -match='(?!__ini__).' \ No newline at end of file +match = .*\.py \ No newline at end of file From eea57b6ebb56aefe12346765b00344d2a294eab9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:21:24 -0800 Subject: [PATCH 298/873] Update .pydocstyle --- .pydocstyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pydocstyle b/.pydocstyle index 7182aa80170..045d8a1c320 100644 --- a/.pydocstyle +++ b/.pydocstyle @@ -1,3 +1,3 @@ [pydocstyle] inherit = false -match = .*\.py \ No newline at end of file +match = ^(?!(__init__)\.py$) \ No newline at end of file From b2f2cff031a5ec862e6f6772fd5ca21934ce898e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:23:16 -0800 Subject: [PATCH 299/873] Update pydocstyle_kyu2.yml --- .github/workflows/pydocstyle_kyu2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pydocstyle_kyu2.yml b/.github/workflows/pydocstyle_kyu2.yml index 022538f9c8a..f27a6ba054f 100644 --- a/.github/workflows/pydocstyle_kyu2.yml +++ b/.github/workflows/pydocstyle_kyu2.yml @@ -38,8 +38,8 @@ jobs: echo $PYTHONPATH - name: Check pydocstyle version run: | - pydocstyle --versio - - name: Doc style Checking with pydocstyle + pydocstyle --version + - name: Doc style checking with pydocstyle # Pydocstyle testing (Guide) # https://www.pydocstyle.org/en/stable/usage.html#cli-usage run: | From c65560efe6ba1a9cb81f26126943b47a57af9317 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:23:19 -0800 Subject: [PATCH 300/873] Update .pydocstyle --- .pydocstyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pydocstyle b/.pydocstyle index 045d8a1c320..7182aa80170 100644 --- a/.pydocstyle +++ b/.pydocstyle @@ -1,3 +1,3 @@ [pydocstyle] inherit = false -match = ^(?!(__init__)\.py$) \ No newline at end of file +match = .*\.py \ No newline at end of file From b434092c77b8442dcf08b3be437686be86edc747 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:30:49 -0800 Subject: [PATCH 301/873] Update __init__.py --- kyu_2/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_2/__init__.py b/kyu_2/__init__.py index e69de29bb2d..aca44cda225 100644 --- a/kyu_2/__init__.py +++ b/kyu_2/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_2 package""" \ No newline at end of file From 41681a1c4821120df786aa6140050653b5741e09 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:33:37 -0800 Subject: [PATCH 302/873] Docstring for __init_ files --- kyu_2/__init__.py | 2 +- kyu_2/evaluate_mathematical_expression/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_2/__init__.py b/kyu_2/__init__.py index aca44cda225..bd812863680 100644 --- a/kyu_2/__init__.py +++ b/kyu_2/__init__.py @@ -1 +1 @@ -"""Codewars kyu_2 package""" \ No newline at end of file +"""Codewars kyu_2 package.""" diff --git a/kyu_2/evaluate_mathematical_expression/__init__.py b/kyu_2/evaluate_mathematical_expression/__init__.py index e69de29bb2d..92e7bfd6530 100644 --- a/kyu_2/evaluate_mathematical_expression/__init__.py +++ b/kyu_2/evaluate_mathematical_expression/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_2 package: Evaluate mathematical expression.""" From 2594062d8494fa893db61180130d926fc582f921 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:37:09 -0800 Subject: [PATCH 303/873] Update test_evaluate.py --- .../evaluate_mathematical_expression/test_evaluate.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/test_evaluate.py b/kyu_2/evaluate_mathematical_expression/test_evaluate.py index 8e0ca54451b..2adbbc6f463 100644 --- a/kyu_2/evaluate_mathematical_expression/test_evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/test_evaluate.py @@ -1,5 +1,6 @@ """ -Test for -> calc method +Test for -> calc method. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -34,13 +35,12 @@ name='Source/Kata') # pylint: enable=R0801 class CalcTestCase(unittest.TestCase): - """ - Testing calc method - """ + """Testing calc method.""" def test_calc(self): """ - Testing calc class + Testing calc class. + Given a mathematical expression as a string you must return the result as a number. """ From d1b41c86b5e3e9dba70193ad94faf48452e074c1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:38:54 -0800 Subject: [PATCH 304/873] Update evaluate.py kyu_2/evaluate_mathematical_expression/evaluate.py:15 in public function `calculate`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_2/evaluate_mathematical_expression/evaluate.py:15 in public function `calculate`: D400: First line should end with a period (not 'n') The [first line of a] docstring is a phrase ending in a period. --- kyu_2/evaluate_mathematical_expression/evaluate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 838725fb105..6769efad73b 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -13,7 +13,8 @@ def calculate(i: int, char: str, strings: list) -> None: """ - Calculate math expression + Calculate math expression. + :param i: int :param char: str :param strings: list From fabc1c3d52af87c63e2da910598f524e97eee79b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:40:01 -0800 Subject: [PATCH 305/873] Update evaluate.py --- .../evaluate.py | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 6769efad73b..97c580a3208 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -14,7 +14,7 @@ def calculate(i: int, char: str, strings: list) -> None: """ Calculate math expression. - + :param i: int :param char: str :param strings: list @@ -36,7 +36,8 @@ def calculate(i: int, char: str, strings: list) -> None: def process_math_expression(string: str, operators: list) -> str: """ - Process math expression + Process math expression. + :param string: str :param operators: list :return: str @@ -54,7 +55,8 @@ def process_math_expression(string: str, operators: list) -> str: def bracket_start(strings: list) -> int: """ - Return index of first (open) bracket + Return index of first (open) bracket. + :param strings: list :return: int """ @@ -64,7 +66,8 @@ def bracket_start(strings: list) -> int: def bracket_end(strings: list, start: int) -> int: """ - Return index of last (close) bracket + Return index of last (close) bracket. + :param strings: :param start: :return: @@ -75,7 +78,8 @@ def bracket_end(strings: list, start: int) -> int: def process_brackets(strings: list) -> str: """ Process brackets in order to convert - input string into math expression + input string into math expression. + :param strings: list :return: str """ @@ -104,7 +108,8 @@ def process_brackets(strings: list) -> str: def process_duplicate_minus(string: str) -> str: """ - Eliminate duplicate minus + Eliminate duplicate minus. + :param string: str :return: str """ @@ -140,7 +145,8 @@ def process_duplicate_minus(string: str) -> str: def calc(string: str) -> float: """ - Calculate math expression from input string + Calculate math expression from input string. + :param string: str :return: float """ @@ -165,7 +171,8 @@ def calc(string: str) -> float: def check_conditions(strings: list, string: str, temp: str) -> tuple[str, str]: """ - Normalizing string input by checking conditions + Normalizing string input by checking conditions. + :param strings: list :param string: str :param temp: str From 90ef1ba73ca2b47dd50061268f08cb0ac65699c3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:41:34 -0800 Subject: [PATCH 306/873] Update evaluate.py ./kyu_2/evaluate_mathematical_expression/evaluate.py:175:1: W293 blank line contains whitespace """ Normalizing string input by checking conditions. :param strings: list :param string: str :param temp: str :return: tuple(str, str) """ --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 97c580a3208..0a1fb58a574 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -172,7 +172,7 @@ def calc(string: str) -> float: def check_conditions(strings: list, string: str, temp: str) -> tuple[str, str]: """ Normalizing string input by checking conditions. - + :param strings: list :param string: str :param temp: str From 0c05c7dd997d5f7470887923a404b8e92a5c4671 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:44:59 -0800 Subject: [PATCH 307/873] Update evaluate.py kyu_2/evaluate_mathematical_expression/evaluate.py:79 in public function `process_brackets`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_2/evaluate_mathematical_expression/evaluate.py:79 in public function `process_brackets`: D400: First line should end with a period (not 't') The [first line of a] docstring is a phrase ending in a period. --- kyu_2/evaluate_mathematical_expression/evaluate.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 0a1fb58a574..2c05a45a115 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -77,9 +77,10 @@ def bracket_end(strings: list, start: int) -> int: def process_brackets(strings: list) -> str: """ - Process brackets in order to convert - input string into math expression. + Test bracket processing. + Process brackets in order to convert input + string into math expression. :param strings: list :return: str """ From 92981fe31299eaf6c7f6bc751f6b972571c3b04a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:46:24 -0800 Subject: [PATCH 308/873] Update evaluate.py kyu_2/evaluate_mathematical_expression/evaluate.py:173 in public function `check_conditions`: D401: First line should be in imperative mood (perhaps 'Normalize', not 'Normalizing') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_2/evaluate_mathematical_expression/evaluate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 2c05a45a115..5df8845753f 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -172,8 +172,9 @@ def calc(string: str) -> float: def check_conditions(strings: list, string: str, temp: str) -> tuple[str, str]: """ - Normalizing string input by checking conditions. + Test string normalization. + Normalize string input by checking conditions. :param strings: list :param string: str :param temp: str From b40b29c9a2711d7b2a9e48e97ceff5d75c86d72d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 1 Dec 2024 22:05:33 -0800 Subject: [PATCH 309/873] Create pydocstyle_kyu3.yml --- .github/workflows/pydocstyle_kyu3.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu3.yml diff --git a/.github/workflows/pydocstyle_kyu3.yml b/.github/workflows/pydocstyle_kyu3.yml new file mode 100644 index 00000000000..35bb4bed7f6 --- /dev/null +++ b/.github/workflows/pydocstyle_kyu3.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle 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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --version + - name: Doc style checking with pydocstyle + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_3 From a9d5d1f4597a94ea5a64f8069a8ae568a2d01b70 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:01:37 -0800 Subject: [PATCH 310/873] doc string for __init__ --- kyu_3/__init__.py | 1 + kyu_3/battleship_field_validator/__init__.py | 1 + kyu_3/calculator/__init__.py | 1 + kyu_3/line_safari_is_that_a_line/__init__.py | 1 + kyu_3/make_spiral/__init__.py | 1 + kyu_3/rail_fence_cipher_encoding_and_decoding/__init__.py | 1 + 6 files changed, 6 insertions(+) diff --git a/kyu_3/__init__.py b/kyu_3/__init__.py index e69de29bb2d..61dab5b6ced 100644 --- a/kyu_3/__init__.py +++ b/kyu_3/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package.""" diff --git a/kyu_3/battleship_field_validator/__init__.py b/kyu_3/battleship_field_validator/__init__.py index e69de29bb2d..2e68e895ff9 100644 --- a/kyu_3/battleship_field_validator/__init__.py +++ b/kyu_3/battleship_field_validator/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package: Battleship field validator.""" diff --git a/kyu_3/calculator/__init__.py b/kyu_3/calculator/__init__.py index e69de29bb2d..2f4734999a9 100644 --- a/kyu_3/calculator/__init__.py +++ b/kyu_3/calculator/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package: Calculator.""" diff --git a/kyu_3/line_safari_is_that_a_line/__init__.py b/kyu_3/line_safari_is_that_a_line/__init__.py index e69de29bb2d..aeea519f5fe 100644 --- a/kyu_3/line_safari_is_that_a_line/__init__.py +++ b/kyu_3/line_safari_is_that_a_line/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package: Line Safari - Is that a line.""" diff --git a/kyu_3/make_spiral/__init__.py b/kyu_3/make_spiral/__init__.py index e69de29bb2d..c1cdd6a0e45 100644 --- a/kyu_3/make_spiral/__init__.py +++ b/kyu_3/make_spiral/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package: Make a spiral.""" diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/__init__.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/__init__.py index e69de29bb2d..68e6580af6f 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/__init__.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_3 package: Rail Fence Cipher - Encoding and Decoding.""" From 94b4d1e8ac6835e6e5ceee238625c0a9d7d6dc47 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:06:02 -0800 Subject: [PATCH 311/873] Update solution.py yu_3/make_spiral/solution.py:2 at module level: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:2 at module level: D400: First line should end with a period (not 'l') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:18 in public function `right`: D400: First line should end with a period (not 't') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:75 in public function `down`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:75 in public function `down`: D400: First line should end with a period (not 'n') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:110 in public function `left`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:110 in public function `left`: D400: First line should end with a period (not 't') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:152 in public function `up`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:152 in public function `up`: D400: First line should end with a period (not 'p') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:176 in public function `set_initial_params`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:176 in public function `set_initial_params`: D400: First line should end with a period (not 'e') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:197 in public function `spiralize`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_3/make_spiral/solution.py:197 in public function `spiralize`: D400: First line should end with a period (not 'e') The [first line of a] docstring is a phrase ending in a period. kyu_3/make_spiral/solution.py:197 in public function `spiralize`: D401: First line should be in imperative mood (perhaps 'Create', not 'Creates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_3/make_spiral/solution.py | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/kyu_3/make_spiral/solution.py b/kyu_3/make_spiral/solution.py index 2b1b1fc3b49..7b8e0c63312 100644 --- a/kyu_3/make_spiral/solution.py +++ b/kyu_3/make_spiral/solution.py @@ -1,6 +1,7 @@ """ -Solution for -> Make a spiral +Solution for -> Make a spiral. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -16,7 +17,7 @@ def right(spiral: list, coordinates: dict) -> bool: """ - Move spiral right + Move spiral right. :param coordinates: starting point :param spiral: NxN spiral 2D array @@ -73,7 +74,8 @@ def right(spiral: list, coordinates: dict) -> bool: def down(spiral: list, coordinates: dict) -> bool: """ - Move spiral down + Move spiral down. + :param coordinates: starting point :param spiral: NxN spiral 2D array :return: boolean 'done' @@ -108,7 +110,8 @@ def down(spiral: list, coordinates: dict) -> bool: def left(spiral: list, coordinates: dict) -> bool: """ - Move spiral left + Move spiral left. + :param coordinates: starting point :param spiral: NxN spiral 2D array :return: bool @@ -150,7 +153,8 @@ def left(spiral: list, coordinates: dict) -> bool: def up(spiral: list, coordinates: dict) -> bool: """ - Move spiral up + Move spiral up. + :param coordinates: starting point :param spiral: NxN spiral 2D array :return: boole @@ -174,7 +178,9 @@ def up(spiral: list, coordinates: dict) -> bool: def set_initial_params(size: int) -> tuple: """ - Set initial parameters: line, spiral, direction, coordinate, done + Setting initial params. + + Initial parameters: line, spiral, direction, coordinate, done. :param size: :return: tuple """ @@ -195,7 +201,8 @@ def set_initial_params(size: int) -> tuple: def spiralize(size: int) -> list: """ - Creates a NxN spiral 2D list with a given size + Creates a NxN spiral 2D list with a given size. + :param size: size of the 2D array :return: list, NxN spiral 2D array """ From 20b0f72cef5a98ef9a9c18791c177c0db88bed08 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:08:07 -0800 Subject: [PATCH 312/873] Update solution.py kyu_3/make_spiral/solution.py:180 in public function `set_initial_params`: D401: First line should be in imperative mood (perhaps 'Set', not 'Setting') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". kyu_3/make_spiral/solution.py:203 in public function `spiralize`: D401: First line should be in imperative mood (perhaps 'Create', not 'Creates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_3/make_spiral/solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_3/make_spiral/solution.py b/kyu_3/make_spiral/solution.py index 7b8e0c63312..3d66a23b5d7 100644 --- a/kyu_3/make_spiral/solution.py +++ b/kyu_3/make_spiral/solution.py @@ -178,7 +178,7 @@ def up(spiral: list, coordinates: dict) -> bool: def set_initial_params(size: int) -> tuple: """ - Setting initial params. + Set initial params. Initial parameters: line, spiral, direction, coordinate, done. :param size: @@ -201,7 +201,7 @@ def set_initial_params(size: int) -> tuple: def spiralize(size: int) -> list: """ - Creates a NxN spiral 2D list with a given size. + Create a NxN spiral 2D list with a given size. :param size: size of the 2D array :return: list, NxN spiral 2D array From 140c1d884c23c3f67ef505b9b1635d9fdc768602 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:08:57 -0800 Subject: [PATCH 313/873] Update test_spiralize.py --- kyu_3/make_spiral/test_spiralize.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_3/make_spiral/test_spiralize.py b/kyu_3/make_spiral/test_spiralize.py index 13e0515ff04..583d0864bd3 100644 --- a/kyu_3/make_spiral/test_spiralize.py +++ b/kyu_3/make_spiral/test_spiralize.py @@ -1,7 +1,7 @@ """ -Testing spiralizer function -Created by Egor Kostan. +Testing spiralizer function. +Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,12 +31,12 @@ # pylint: enable-msg=R0801 class SpiralizeTestCase(unittest.TestCase): """ - Testing spiralize function + Testing spiralize function. """ def test_spiralize(self): """ - Testing spiralize function + Testing spiralize function. """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing spiralize function") From eee8fd640455f6a3c1e4e98dcd022c9a5b8b24dc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:11:42 -0800 Subject: [PATCH 314/873] Update calculator.py --- kyu_3/calculator/calculator.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index 583c4443212..54400ed6fa7 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -1,5 +1,6 @@ """ -Solution for -> Calculator +Solution for -> Calculator. + Create a simple calculator that given a string of operators '()', '+', '-', '*', '/' and numbers separated by spaces returns the value of that expression. @@ -10,6 +11,8 @@ class Calculator: """ + Calculator class. + Given string of operators '()', '+', '-', '*', '/' and numbers separated by spaces. Returns the value of that expression. @@ -22,6 +25,8 @@ def __init__(self): @property def result(self) -> float: """ + Get result. + 1. Set result value by converting string value to a float 2. Return result value @@ -34,6 +39,8 @@ def result(self) -> float: @staticmethod def __calculate(i: int, char: str, strings: list): """ + Calculate method. + 1. Perform math operation 2. Reorganize math expression @@ -63,7 +70,10 @@ def __calculate(i: int, char: str, strings: list): def __process_math_expression(self, string: str, operators: list) -> str: """ - Perform all operation with multiplications, divisions, additions and subtractions + Process math calculation. + + Perform all operation with multiplications, divisions, + additions and subtractions. :param string: str, input string :param operators: list, contains math operators :return: str, output string with no ‘*’, ‘/’, ‘+’, ‘-‘ @@ -80,7 +90,9 @@ def __process_math_expression(self, string: str, operators: list) -> str: def evaluate(self, string: str) -> float: """ - Returns value of the given expression + Evaluate method. + + Returns value of the given expression. :param string: str, input string to evaluate :return: (float) result """ From 76b1bfb46403b619801bed31dec402c37ede4196 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:12:18 -0800 Subject: [PATCH 315/873] Update test_calculator.py --- kyu_3/calculator/test_calculator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kyu_3/calculator/test_calculator.py b/kyu_3/calculator/test_calculator.py index cc2c6a2ad5a..005916c2ec4 100644 --- a/kyu_3/calculator/test_calculator.py +++ b/kyu_3/calculator/test_calculator.py @@ -1,5 +1,6 @@ """ -Testing for -> Calculator class +Testing for -> Calculator class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -36,7 +37,8 @@ class CalculatorTestCase(unittest.TestCase): def test_calculator(self): """ - Testing Calculator class + 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 From 48c7913431c96eea0281332556892bdf1f97c7ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:14:07 -0800 Subject: [PATCH 316/873] Update test_spiralize.py --- kyu_3/make_spiral/test_spiralize.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kyu_3/make_spiral/test_spiralize.py b/kyu_3/make_spiral/test_spiralize.py index 583d0864bd3..9aa16847519 100644 --- a/kyu_3/make_spiral/test_spiralize.py +++ b/kyu_3/make_spiral/test_spiralize.py @@ -30,9 +30,7 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SpiralizeTestCase(unittest.TestCase): - """ - Testing spiralize function. - """ + """Testing spiralize function.""" def test_spiralize(self): """ From 7208df66ccd7e5bbdb5469a9f3ac6cd124cb746f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:14:21 -0800 Subject: [PATCH 317/873] Update test_calculator.py --- kyu_3/calculator/test_calculator.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kyu_3/calculator/test_calculator.py b/kyu_3/calculator/test_calculator.py index 005916c2ec4..8ca8f97d7e2 100644 --- a/kyu_3/calculator/test_calculator.py +++ b/kyu_3/calculator/test_calculator.py @@ -31,9 +31,7 @@ name='Source/Kata') # pylint: enable-msg=R0801 class CalculatorTestCase(unittest.TestCase): - """ - Testing Calculator class - """ + """Testing Calculator class.""" def test_calculator(self): """ From 72ed9043c1ef7c86ced2ab36ed8065b305dca1bb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:16:49 -0800 Subject: [PATCH 318/873] Update test_spiralize.py --- kyu_3/make_spiral/test_spiralize.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kyu_3/make_spiral/test_spiralize.py b/kyu_3/make_spiral/test_spiralize.py index 9aa16847519..a2be6d06e59 100644 --- a/kyu_3/make_spiral/test_spiralize.py +++ b/kyu_3/make_spiral/test_spiralize.py @@ -33,9 +33,7 @@ class SpiralizeTestCase(unittest.TestCase): """Testing spiralize function.""" def test_spiralize(self): - """ - Testing spiralize function. - """ + """Testing spiralize function.""" # pylint: disable-msg=R0801 allure.dynamic.title("Testing spiralize function") allure.dynamic.severity(allure.severity_level.CRITICAL) From 1fbe0960635ed995af98c47eff489f74a7987a28 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:19:14 -0800 Subject: [PATCH 319/873] Update calculator.py --- kyu_3/calculator/calculator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index 54400ed6fa7..767b143b463 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -19,6 +19,7 @@ class Calculator: """ def __init__(self): + """Init method.""" self.__string: str = '' self.__result: float = 0.0 @@ -37,13 +38,12 @@ def result(self) -> float: return self.__result @staticmethod - def __calculate(i: int, char: str, strings: list): + def __calculate(i: int, char: str, strings: list) -> None: """ Calculate method. 1. Perform math operation 2. Reorganize math expression - :param i: (int) math operation index :param char: (str) math operation :param strings: (list) math expression From 0541792492a398e2130f5a3c7b066819a47aea77 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:21:45 -0800 Subject: [PATCH 320/873] Update test_decoding.py --- .../test_decoding.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/test_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/test_decoding.py index e059def75e9..7cc7c6eedf1 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/test_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/test_decoding.py @@ -1,5 +1,5 @@ """ -Testing Decoding functionality +Testing Decoding functionality. Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -31,14 +31,10 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DecodingTestCase(unittest.TestCase): - """ - Testing Decoding functionality - """ + """Testing Decoding functionality.""" def test_decoding(self): - """ - Testing Decoding functionality - """ + """Testing Decoding functionality.""" # pylint: disable-msg=R0801 allure.dynamic.title("Testing Decoding functionality") allure.dynamic.severity(allure.severity_level.NORMAL) From 109b7517165b3fe3d2dd2cf24cddf7448b24b6e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:22:46 -0800 Subject: [PATCH 321/873] Update test_encoding.py --- .../test_encoding.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/test_encoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/test_encoding.py index 34f16044557..71f3bf29e07 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/test_encoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/test_encoding.py @@ -1,7 +1,7 @@ """ -Testing Encoding functionality -Created by Egor Kostan. +Testing Encoding functionality. +Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,14 +31,10 @@ name='Source/Kata') # pylint: enable-msg=R0801 class EncodingTestCase(unittest.TestCase): - """ - Testing Encoding functionality - """ + """Testing Encoding functionality.""" def test_encoding(self): - """ - Testing Encoding functionality - """ + """Testing Encoding functionality.""" # pylint: disable-msg=R0801 allure.dynamic.title("Testing Encoding functionality") allure.dynamic.severity(allure.severity_level.NORMAL) From cca805f15eb02037c43ceb591f52bbc2bfe1f9a6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:24:14 -0800 Subject: [PATCH 322/873] Update encoding_and_decoding.py --- .../encoding_and_decoding.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py index 90554c1329b..afb743d91fd 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py @@ -1,5 +1,6 @@ """ -Solution for -> Rail Fence Cipher: Encoding and Decoding +Solution for -> Rail Fence Cipher: Encoding and Decoding. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ def get_rails(string: str, n: int) -> list: """ Create rails matrix. + :param string: str :param n: int, the number of rails :return: list, rails matrix @@ -43,6 +45,8 @@ def get_rails(string: str, n: int) -> list: def encode_rail_fence_cipher(string: str, n: int) -> str: """ + Encode rail fence cipher. + This cipher is used to encode a string by placing each character successively in a diagonal along a set of "rails". First start off moving diagonally and down. When you reach the bottom, reverse @@ -59,6 +63,8 @@ def encode_rail_fence_cipher(string: str, n: int) -> str: def decode_rail_fence_cipher(string: str, n: int) -> str: """ + Decode rail fence cipher. + Function/method that takes 2 arguments, an encoded string and the number of rails, and returns the DECODED string. :param string: str, an encoded string From bc411020c27db945114be75faee3c07e8d9b93d1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:28:12 -0800 Subject: [PATCH 323/873] Update validator.py --- kyu_3/battleship_field_validator/validator.py | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/kyu_3/battleship_field_validator/validator.py b/kyu_3/battleship_field_validator/validator.py index 61fe131ab1b..98b9bb4faac 100644 --- a/kyu_3/battleship_field_validator/validator.py +++ b/kyu_3/battleship_field_validator/validator.py @@ -1,5 +1,6 @@ """ -Solution for -> Battleship field validator +Solution for -> Battleship field validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def validate_battlefield(field: list) -> bool: """ + Validate battlefield. + 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. @@ -35,7 +38,8 @@ def validate_battlefield(field: list) -> bool: def ship_counter_by_row(field: list, ships: dict): """ - Ship counter by row + Ship counter by row. + :param field: list :param ships: dict :return: @@ -80,7 +84,8 @@ def ship_counter_by_row(field: list, ships: dict): def ship_counter_by_col(field: list, ships: dict): """ - Ship counter by col + Ship counter by col. + :param field: list :param ships: dict :return: @@ -123,7 +128,8 @@ def ship_counter_by_col(field: list, ships: dict): def all_cells_valid(**kwargs): """ - Validate all cells + Validate all cells. + :param kwargs: :return: """ @@ -136,7 +142,8 @@ def all_cells_valid(**kwargs): def check_vertical(row, col, field) -> bool: """ - Verify vertical direction + Verify vertical direction. + :param row: :param col: :param field: list, board game "Battleship" (list) @@ -152,7 +159,8 @@ def check_vertical(row, col, field) -> bool: def check_horizontal(row, col, field) -> bool: """ - Verify horizontal direction + Verify horizontal direction. + :param row: :param col: :param field: list, board game "Battleship" (list) @@ -168,10 +176,10 @@ def check_horizontal(row, col, field) -> bool: def check_submarine(**kwargs) -> bool: """ + Check submarine. + Check if submarine already in list (avoid duplicates) Validates if submarine cell has contacts with other ships/cells - row: - col: ships: dict, collection of valid ships (dict) field: list, board game "Battleship" (list) cell: list, candidate for single ship/submarine @@ -195,6 +203,8 @@ def check_submarine(**kwargs) -> bool: def is_valid_cell(**kwargs) -> bool: """ + Check if cell is valid. + Validates if single cell result is valid (valid submarine or single ship cell) :return: bool From 52ba2f098a25198ed69f48c9b49b0c8c5e4b1fcc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:23:03 -0800 Subject: [PATCH 324/873] Update calculator.py /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/549/kyu_3/calculator/calculator.py:docstring of kyu_3.calculator.calculator.Calculator.__calculate:4: WARNING: Enumerated list ends without a blank line; unexpected unindent. [docutils] --- kyu_3/calculator/calculator.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index 767b143b463..da8fd3e621f 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -42,8 +42,9 @@ def __calculate(i: int, char: str, strings: list) -> None: """ Calculate method. - 1. Perform math operation - 2. Reorganize math expression + 1. Perform math operation. + 2. Reorganize math expression. + :param i: (int) math operation index :param char: (str) math operation :param strings: (list) math expression From 34e342756232ace9a07753353c8fb03172f6c938 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:26:51 -0800 Subject: [PATCH 325/873] Update calculator.py --- kyu_3/calculator/calculator.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index da8fd3e621f..840b4df02c1 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -56,14 +56,11 @@ def __calculate(i: int, char: str, strings: list) -> None: if char == '*': strings[i] = str(a * b) - - if char == '/': + elif char == '/': strings[i] = str(a / b) - - if char == '+': + elif char == '+': strings[i] = str(a + b) - - if char == '-': + elif char == '-': strings[i] = str(a - b) del strings[i + 1] From 1be92f9e7e3f3b2511aa43ef3742df5803b53d7d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:28:33 -0800 Subject: [PATCH 326/873] Update encoding_and_decoding.py kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py:10 in public function `get_rails`: D202: No blank lines allowed after function docstring (found 1) There's no blank line either before or after the docstring unless directly followed by an inner function or class. --- .../encoding_and_decoding.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py index afb743d91fd..f99483a3703 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py @@ -9,7 +9,6 @@ def get_rails(string: str, n: int) -> list: """ Create rails matrix. - :param string: str :param n: int, the number of rails :return: list, rails matrix @@ -23,7 +22,7 @@ def get_rails(string: str, n: int) -> list: down = True for char in string: - for char_index in range(0, n): + for char_index in range(n): if char_index != row: rails[char_index].append("") else: From d38d5a2b8eb723a4d0787974782ba2b0f2d1749a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:30:56 -0800 Subject: [PATCH 327/873] Update calculator.py kyu_3/calculator/calculator.py:42 in private method `__calculate`: D202: No blank lines allowed after function docstring (found 1) There's no blank line either before or after the docstring unless directly followed by an inner function or class. --- kyu_3/calculator/calculator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index 840b4df02c1..f79a6cbdbba 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -41,7 +41,6 @@ def result(self) -> float: def __calculate(i: int, char: str, strings: list) -> None: """ Calculate method. - 1. Perform math operation. 2. Reorganize math expression. From ae358e0d39717f5db783d0950aef10bdddd57c47 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:33:57 -0800 Subject: [PATCH 328/873] Update validator.py --- kyu_3/battleship_field_validator/validator.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kyu_3/battleship_field_validator/validator.py b/kyu_3/battleship_field_validator/validator.py index 98b9bb4faac..74ccae04a16 100644 --- a/kyu_3/battleship_field_validator/validator.py +++ b/kyu_3/battleship_field_validator/validator.py @@ -90,7 +90,7 @@ def ship_counter_by_col(field: list, ships: dict): :param ships: dict :return: """ - for index_col in range(0, len(field[0])): + for index_col in range(len(field[0])): ship: list = [] for index_row, row in enumerate(field): if row[index_col] == 1: @@ -218,16 +218,15 @@ def is_valid_cell(**kwargs) -> bool: field=kwargs['field'], cell=kwargs['cell']): return False - - if kwargs['direction'] == 'horizontal': + elif kwargs['direction'] == 'horizontal': if not check_horizontal(row=row, col=col, field=kwargs['field']): return False - - if kwargs['direction'] == 'vertical': + elif kwargs['direction'] == 'vertical': if not check_vertical(row=row, col=col, field=kwargs['field']): return False + return True From c8287af49d54b89b9012d7656ec2a251b07cc494 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:34:01 -0800 Subject: [PATCH 329/873] Update calculator.py --- kyu_3/calculator/calculator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index f79a6cbdbba..a9112afba33 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -17,7 +17,6 @@ class Calculator: and numbers separated by spaces. Returns the value of that expression. """ - def __init__(self): """Init method.""" self.__string: str = '' @@ -41,6 +40,7 @@ def result(self) -> float: def __calculate(i: int, char: str, strings: list) -> None: """ Calculate method. + 1. Perform math operation. 2. Reorganize math expression. @@ -49,7 +49,6 @@ def __calculate(i: int, char: str, strings: list) -> None: :param strings: (list) math expression :return: None """ - a: float = float(strings[i - 1]) b: float = float(strings[i + 1]) From a21a0007fa3251180cea4aa31d1be8c5b8ecb6fd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:34:04 -0800 Subject: [PATCH 330/873] Update encoding_and_decoding.py --- .../encoding_and_decoding.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py index f99483a3703..cbf9bfd4e77 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py @@ -13,7 +13,6 @@ def get_rails(string: str, n: int) -> list: :param n: int, the number of rails :return: list, rails matrix """ - rails: list = [] while len(rails) != n: rails.append([]) From c643f2a8058c27e57fa644ad3828d2e570abcf31 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:43:18 -0800 Subject: [PATCH 331/873] Update line_safari.py --- kyu_3/line_safari_is_that_a_line/line_safari.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/kyu_3/line_safari_is_that_a_line/line_safari.py b/kyu_3/line_safari_is_that_a_line/line_safari.py index 9c8263d9f95..daa76552d79 100644 --- a/kyu_3/line_safari_is_that_a_line/line_safari.py +++ b/kyu_3/line_safari_is_that_a_line/line_safari.py @@ -33,7 +33,7 @@ def line(grid: list) -> bool: def assert_x_has_rout(grid: list) -> bool: """ - Make sure x has a valid route + Make sure x has a valid route. :param grid: :return: """ @@ -47,13 +47,13 @@ def assert_x_has_rout(grid: list) -> bool: if char == 'X': temp = [] # up - if row_i - 1 >= 0 and grid[row_i - 1][col_i] in 'X|+': + if row_i >= 1 and grid[row_i - 1][col_i] in 'X|+': temp.append(True) # down if row_i + 1 < len(grid) and grid[row_i + 1][col_i] in 'X|+': temp.append(True) # left - if col_i - 1 >= 0 and row[col_i - 1] in 'X+-': + if col_i >= 1 and row[col_i - 1] in 'X+-': temp.append(True) # right if col_i + 1 < len(row) and row[col_i + 1] in 'X+-': @@ -67,11 +67,9 @@ def assert_x_has_rout(grid: list) -> bool: def x_counter(grid: list) -> int: """ - Counter number of X + Counter number of X. :param grid: list :return: int """ - counter: int = 0 - for row in grid: - counter += row.count('X') + counter: int = sum(row.count('X') for row in grid) return counter From 836d26c53aaf1fbc765def103dbf7c5d9ab402b6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:55:23 -0800 Subject: [PATCH 332/873] Update test_line_positive.py --- kyu_3/line_safari_is_that_a_line/test_line_positive.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 28bd48853db..c9affa3a34b 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 @@ -28,14 +28,11 @@ @pytest.mark.skip(reason="The solution is not ready") class LinePositiveTestCase(unittest.TestCase): """ - Testing Line Safari functionality - Positive test cases + Testing Line Safari functionality. """ - def test_line_positive(self): """ - Testing Line Safari functionality - Positive test cases + Positive test cases. """ allure.dynamic.title("Testing Line Safari functionality - POSITIVE") # pylint: disable-msg=R0801 From 02f6d4c071d7c04d807cf55bb846401f30ba1fa0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:55:27 -0800 Subject: [PATCH 333/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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 42f053f7db1..7bb4bdce7ee 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 @@ -27,13 +27,12 @@ # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): """ - Testing Walker class + Testing Walker class. """ - def test_starting_position_from_positives(self): """ - Testing Walker class - Testing starting position property based on positive grids + Testing Walker class. + Testing starting position property based on positive grids. """ # pylint: disable-msg=R0801 allure.dynamic.title( @@ -88,8 +87,8 @@ def test_starting_position_from_positives(self): def test_starting_position_from_negatives(self): """ - Testing Walker class - Testing starting position property based on negative grids + Testing Walker class. + Testing starting position property based on negative grids. """ # pylint: disable-msg=R0801 allure.dynamic.title( From 17c85859df603a9ba4cd4ac66442a844f81971d6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 3 Dec 2024 09:55:30 -0800 Subject: [PATCH 334/873] Update walker_class.py --- .../walker_class.py | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) 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 dec29cfe092..6c2eba0abb0 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,7 +9,6 @@ class Walker: """ Walker class: make moves, check directions, etc... """ - def __init__(self, grid: list): self.__grid: list = grid self.__is_start: bool = True @@ -28,7 +27,7 @@ def __set_initial_direction(self) -> dict: col: int = self.__position['col'] # up - if row - 1 >= 0 and self.__grid[row - 1][col] in 'X|+': + if row >= 1 and self.__grid[row - 1][col] in 'X|+': direction['up'] = True # down @@ -36,7 +35,7 @@ def __set_initial_direction(self) -> dict: direction['down'] = True # left - if col - 1 >= 0 and self.__grid[row][col - 1] in 'X+-': + if col >= 1 and self.__grid[row][col - 1] in 'X+-': direction['left'] = True # right @@ -57,7 +56,7 @@ def position(self) -> str: def move(self) -> None: """ - Make one step if possible + Make one step if possible. :return: None """ if not self.is_done: @@ -87,8 +86,7 @@ def move(self) -> None: @property def is_done(self) -> bool: """ - Check if get to the 'X' point - or can make one move only + Check if get to the 'X' point or can make one move only. :return: true/false """ if self.__is_start: @@ -105,7 +103,7 @@ def is_done(self) -> bool: def __get_start_point(self) -> dict: """ - Locate starting point + Locate starting point. :return: dict, starting point X """ result: dict = {} @@ -131,7 +129,7 @@ def __reset_direction(self) -> None: def position_plus(self, previous_position) -> None: """ - Process cells if current position is + + Process cells if current position is +. :param previous_position: :return: """ @@ -155,7 +153,7 @@ def position_plus(self, previous_position) -> None: def position_minus(self, previous_position) -> None: """ - Process cells if current position is - + Process cells if current position is -. :param previous_position: :return: """ @@ -167,7 +165,7 @@ def position_minus(self, previous_position) -> None: def position_pipe(self, previous_position) -> None: """ - Process cells if current position is | + Process cells if current position is |. :param previous_position: :return: """ @@ -179,8 +177,7 @@ def position_pipe(self, previous_position) -> None: def __set_direction(self) -> None: """ - Update directions based on current - position and previous direction + Update directions based on current position and previous direction. :return: None """ prev_row = self.__position['prev_row'] @@ -194,6 +191,10 @@ def __set_direction(self) -> None: self.position_pipe(previous_position) def __test_up(self) -> bool: + """ + Test u + :return: + """ row: int = self.__position['row'] col: int = self.__position['col'] if row - 1 >= 0 and self.__grid[row - 1][col] in 'X|+': From 21455b064b8949345e0dfc0c683e47f840ed9c1e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:37:27 -0800 Subject: [PATCH 335/873] Update calculator.py kyu_3/calculator/calculator.py:13 in public class `Calculator`: D204: 1 blank line required after class docstring (found 0) Insert a blank line before and after all docstrings (one-line or multi-line) that document a class -- generally speaking, the class's methods are separated from each other by a single blank line, and the docstring needs to be offset from the first method by a blank line; for symmetry, put a blank line between the class header and the docstring. --- kyu_3/calculator/calculator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index a9112afba33..564e703cfb9 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -17,6 +17,7 @@ class Calculator: and numbers separated by spaces. Returns the value of that expression. """ + def __init__(self): """Init method.""" self.__string: str = '' From 31ddfc574d03be1250d0393a091684247eed24fa Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:39:39 -0800 Subject: [PATCH 336/873] Update calculator.py --- kyu_3/calculator/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_3/calculator/calculator.py b/kyu_3/calculator/calculator.py index 564e703cfb9..4e652aa1d1a 100644 --- a/kyu_3/calculator/calculator.py +++ b/kyu_3/calculator/calculator.py @@ -17,7 +17,7 @@ class Calculator: and numbers separated by spaces. Returns the value of that expression. """ - + def __init__(self): """Init method.""" self.__string: str = '' From 81df556feb03a932b1c712057b2293c4a3f49e59 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:43:21 -0800 Subject: [PATCH 337/873] Update encoding_and_decoding.py kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py:10 in public function `get_rails`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. --- .../encoding_and_decoding.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py index cbf9bfd4e77..410e96fa921 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py @@ -9,6 +9,7 @@ def get_rails(string: str, n: int) -> list: """ Create rails matrix. + :param string: str :param n: int, the number of rails :return: list, rails matrix From 97cc176941ec1cfe7882bd4b3233dcad366d6a4e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:44:16 -0800 Subject: [PATCH 338/873] Update test_battleship_validator.py --- .../battleship_field_validator/test_battleship_validator.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/kyu_3/battleship_field_validator/test_battleship_validator.py b/kyu_3/battleship_field_validator/test_battleship_validator.py index b2870b3ce0e..9b8a1a171d8 100644 --- a/kyu_3/battleship_field_validator/test_battleship_validator.py +++ b/kyu_3/battleship_field_validator/test_battleship_validator.py @@ -27,13 +27,11 @@ url='https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7', name='Source/Kata') class BattleshipFieldValidatorTestCase(unittest.TestCase): - """ - Testing Battleship field validator - """ + """Testing Battleship field validator.""" def test_validate_battlefield(self): """ - Testing Battleship field validator + Testing Battleship field validator. 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, From cc4923a169b1f933bcf10e2fcd9b6ae88998e1fb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:44:19 -0800 Subject: [PATCH 339/873] Update encoding_and_decoding.py --- .../encoding_and_decoding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py index 410e96fa921..682d979917b 100644 --- a/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py +++ b/kyu_3/rail_fence_cipher_encoding_and_decoding/encoding_and_decoding.py @@ -9,7 +9,7 @@ def get_rails(string: str, n: int) -> list: """ Create rails matrix. - + :param string: str :param n: int, the number of rails :return: list, rails matrix From e268853d513c12e2a7c29ad678cf217110982d61 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:46:31 -0800 Subject: [PATCH 340/873] Update test_battleship_validator.py kyu_3/battleship_field_validator/test_battleship_validator.py:1 at module level: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. --- kyu_3/battleship_field_validator/test_battleship_validator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_3/battleship_field_validator/test_battleship_validator.py b/kyu_3/battleship_field_validator/test_battleship_validator.py index 9b8a1a171d8..b2e900da01a 100644 --- a/kyu_3/battleship_field_validator/test_battleship_validator.py +++ b/kyu_3/battleship_field_validator/test_battleship_validator.py @@ -1,5 +1,6 @@ """ -Testing Battleship field validator +Testing Battleship field validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ From 77fa6d49992af1cce1e993f1997a6925cf6573dc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:47:32 -0800 Subject: [PATCH 341/873] Update line_safari.py --- kyu_3/line_safari_is_that_a_line/line_safari.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kyu_3/line_safari_is_that_a_line/line_safari.py b/kyu_3/line_safari_is_that_a_line/line_safari.py index daa76552d79..ecc630c117e 100644 --- a/kyu_3/line_safari_is_that_a_line/line_safari.py +++ b/kyu_3/line_safari_is_that_a_line/line_safari.py @@ -1,5 +1,6 @@ """ Solution for -> Line Safari - Is that a line? + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -10,6 +11,7 @@ def line(grid: list) -> bool: """ You are given a grid. + You simply need to return true/false if you can detect a one and only one "valid" line joining those points. :param grid: which always includes exactly two end-points indicated by X @@ -34,6 +36,7 @@ def line(grid: list) -> bool: def assert_x_has_rout(grid: list) -> bool: """ Make sure x has a valid route. + :param grid: :return: """ @@ -68,6 +71,7 @@ def assert_x_has_rout(grid: list) -> bool: def x_counter(grid: list) -> int: """ Counter number of X. + :param grid: list :return: int """ From bef7d8c9110084eef490c26d237bad9c30368db4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:49:58 -0800 Subject: [PATCH 342/873] Update line_safari.py --- kyu_3/line_safari_is_that_a_line/line_safari.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_3/line_safari_is_that_a_line/line_safari.py b/kyu_3/line_safari_is_that_a_line/line_safari.py index ecc630c117e..321372d4954 100644 --- a/kyu_3/line_safari_is_that_a_line/line_safari.py +++ b/kyu_3/line_safari_is_that_a_line/line_safari.py @@ -71,7 +71,7 @@ def assert_x_has_rout(grid: list) -> bool: def x_counter(grid: list) -> int: """ Counter number of X. - + :param grid: list :return: int """ From c499d0f5414be92727b19d17f99e6ac1728e7971 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:50:01 -0800 Subject: [PATCH 343/873] Update walker_class.py --- .../walker_class.py | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) 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 6c2eba0abb0..b9cbaa20ff7 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 @@ -1,14 +1,14 @@ """ Walker class: make moves, check directions, etc... + Created by Egor Kostan. GitHub: https://github.com/ikostan """ class Walker: - """ - Walker class: make moves, check directions, etc... - """ + """Walker class: make moves, check directions, etc...""" + def __init__(self, grid: list): self.__grid: list = grid self.__is_start: bool = True @@ -16,6 +16,11 @@ def __init__(self, grid: list): self.__direction = self.__set_initial_direction() def __set_initial_direction(self) -> dict: + """ + Set initial direction. + + :return: dict + """ direction: dict = { 'left': False, 'right': False, @@ -47,7 +52,8 @@ def __set_initial_direction(self) -> dict: @property def position(self) -> str: """ - Return char from grid based on current position + Return char from grid based on current position. + :return: str, current char """ row: int = self.__position['row'] @@ -57,6 +63,7 @@ def position(self) -> str: def move(self) -> None: """ Make one step if possible. + :return: None """ if not self.is_done: @@ -87,6 +94,7 @@ def move(self) -> None: def is_done(self) -> bool: """ Check if get to the 'X' point or can make one move only. + :return: true/false """ if self.__is_start: @@ -104,6 +112,7 @@ def is_done(self) -> bool: def __get_start_point(self) -> dict: """ Locate starting point. + :return: dict, starting point X """ result: dict = {} @@ -130,6 +139,7 @@ def __reset_direction(self) -> None: def position_plus(self, previous_position) -> None: """ Process cells if current position is +. + :param previous_position: :return: """ @@ -154,6 +164,7 @@ def position_plus(self, previous_position) -> None: def position_minus(self, previous_position) -> None: """ Process cells if current position is -. + :param previous_position: :return: """ @@ -166,6 +177,7 @@ def position_minus(self, previous_position) -> None: def position_pipe(self, previous_position) -> None: """ Process cells if current position is |. + :param previous_position: :return: """ @@ -178,6 +190,7 @@ def position_pipe(self, previous_position) -> None: def __set_direction(self) -> None: """ Update directions based on current position and previous direction. + :return: None """ prev_row = self.__position['prev_row'] @@ -192,7 +205,8 @@ def __set_direction(self) -> None: def __test_up(self) -> bool: """ - Test u + Test up. + :return: """ row: int = self.__position['row'] From c90e7180e4365752c7846f4d52a5b7d1da01ef92 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:52:22 -0800 Subject: [PATCH 344/873] Update test_line_positive.py --- .../test_line_positive.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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 c9affa3a34b..6f5371a2038 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 @@ -1,6 +1,7 @@ """ -Testing Line Safari functionality -Positive test cases +Testing Line Safari functionality. + +Positive test cases. Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,11 @@ name='Source/Kata') @pytest.mark.skip(reason="The solution is not ready") class LinePositiveTestCase(unittest.TestCase): - """ - Testing Line Safari functionality. - """ + """Testing Line Safari functionality.""" + def test_line_positive(self): - """ - Positive test cases. - """ + """Positive test cases.""" + allure.dynamic.title("Testing Line Safari functionality - POSITIVE") # pylint: disable-msg=R0801 allure.dynamic.severity(allure.severity_level.NORMAL) From 2fd0d7d0e90bd1a39f28155f5a1a768015d1db77 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:52:49 -0800 Subject: [PATCH 345/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 7bb4bdce7ee..ee3872aaee0 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 @@ -1,5 +1,6 @@ """ -Testing Walker Class +Testing Walker Class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -32,6 +33,7 @@ class WalkerClassTestCase(unittest.TestCase): def test_starting_position_from_positives(self): """ Testing Walker class. + Testing starting position property based on positive grids. """ # pylint: disable-msg=R0801 @@ -88,6 +90,7 @@ def test_starting_position_from_positives(self): def test_starting_position_from_negatives(self): """ Testing Walker class. + Testing starting position property based on negative grids. """ # pylint: disable-msg=R0801 From 7cf6ba02a8d1bbb82cfd8a67359aa2e81fd43005 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:55:23 -0800 Subject: [PATCH 346/873] Update test_walker.py --- kyu_3/line_safari_is_that_a_line/test_walker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ee3872aaee0..de8512b248e 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 @@ -90,7 +90,7 @@ def test_starting_position_from_positives(self): def test_starting_position_from_negatives(self): """ Testing Walker class. - + Testing starting position property based on negative grids. """ # pylint: disable-msg=R0801 From a79904e4a839e294ac39732c5d12b7a3b0b35bc6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 19:58:54 -0800 Subject: [PATCH 347/873] Update test_line_positive.py kyu_3/line_safari_is_that_a_line/test_line_positive.py:34 in public method `test_line_positive`: D202: No blank lines allowed after function docstring (found 1) There's no blank line either before or after the docstring unless directly followed by an inner function or class. --- kyu_3/line_safari_is_that_a_line/test_line_positive.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 6f5371a2038..2fa1c3b9503 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 @@ -31,8 +31,11 @@ class LinePositiveTestCase(unittest.TestCase): """Testing Line Safari functionality.""" def test_line_positive(self): - """Positive test cases.""" - + """ + Positive test cases. + + :return: + """ allure.dynamic.title("Testing Line Safari functionality - POSITIVE") # pylint: disable-msg=R0801 allure.dynamic.severity(allure.severity_level.NORMAL) From 93281c16fb85a27b85f8327bc9a777075f000423 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:00:33 -0800 Subject: [PATCH 348/873] Update test_line_negative.py --- .../line_safari_is_that_a_line/test_line_negative.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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 4cb70b0325a..7dce7c6f22d 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 @@ -1,5 +1,6 @@ """ -Testing Line Safari functionality +Testing Line Safari functionality. + Negative test cases Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -30,14 +31,17 @@ # pylint: enable-msg=R0801 class LineNegativeTestCase(unittest.TestCase): """ - Testing Line Safari functionality + Testing Line Safari functionality. + Negative test cases """ def test_line_negative(self): """ - Testing Line Safari functionality - Negative test cases + Testing Line Safari functionality. + + Negative test cases. + :return: """ allure.dynamic.title("Testing Line Safari functionality - NEGATIVE") # pylint: disable-msg=R0801 From 5b549e93c469ba58609ae77f4f21d73ae31cd6a5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:00:36 -0800 Subject: [PATCH 349/873] Update test_line_positive.py --- kyu_3/line_safari_is_that_a_line/test_line_positive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2fa1c3b9503..92e21068988 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 @@ -33,7 +33,7 @@ class LinePositiveTestCase(unittest.TestCase): def test_line_positive(self): """ Positive test cases. - + :return: """ allure.dynamic.title("Testing Line Safari functionality - POSITIVE") From 556af41232083d18789b25bf6c706523b32122f4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:04:13 -0800 Subject: [PATCH 350/873] Update test_line_negative.py ./kyu_3/line_safari_is_that_a_line/test_line_negative.py:42:1: W293 blank line contains whitespace """ Testing Line Safari functionality. Negative test cases. :return: """ ^ --- kyu_3/line_safari_is_that_a_line/test_line_negative.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 7dce7c6f22d..588b012465b 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 @@ -39,7 +39,7 @@ class LineNegativeTestCase(unittest.TestCase): def test_line_negative(self): """ Testing Line Safari functionality. - + Negative test cases. :return: """ From 8ae466046ce13ac9af98c5755a12476228ef6bf2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:05:58 -0800 Subject: [PATCH 351/873] Update line_safari.py kyu_3/line_safari_is_that_a_line/line_safari.py:1 at module level: D400: First line should end with a period (not '?') The [first line of a] docstring is a phrase ending in a period. --- kyu_3/line_safari_is_that_a_line/line_safari.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_3/line_safari_is_that_a_line/line_safari.py b/kyu_3/line_safari_is_that_a_line/line_safari.py index 321372d4954..bbdce90d630 100644 --- a/kyu_3/line_safari_is_that_a_line/line_safari.py +++ b/kyu_3/line_safari_is_that_a_line/line_safari.py @@ -1,5 +1,5 @@ """ -Solution for -> Line Safari - Is that a line? +Solution for -> Line Safari - Is that a line?... Created by Egor Kostan. GitHub: https://github.com/ikostan From 375de48e0966677efa091bdfbb59c8bebfef3def Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:08:02 -0800 Subject: [PATCH 352/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 b9cbaa20ff7..2d1eff288a5 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 @@ -10,6 +10,11 @@ class Walker: """Walker class: make moves, check directions, etc...""" def __init__(self, grid: list): + """ + Create a new Walker instance. + + :param grid: + """ self.__grid: list = grid self.__is_start: bool = True self.__position: dict = self.__get_start_point() @@ -211,7 +216,7 @@ def __test_up(self) -> bool: """ row: int = self.__position['row'] col: int = self.__position['col'] - if row - 1 >= 0 and self.__grid[row - 1][col] in 'X|+': + if row >= 1 and self.__grid[row - 1][col] in 'X|+': return True return False @@ -225,7 +230,7 @@ def __test_down(self) -> bool: def __test_left(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] - if col - 1 >= 0 and self.__grid[row][col - 1] in 'X+-': + if col >= 1 and self.__grid[row][col - 1] in 'X+-': return True return False From dfabe9279bbe1bb207a06be5c9ed66e73d5ff256 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:10:21 -0800 Subject: [PATCH 353/873] Update test_walker.py kyu_3/line_safari_is_that_a_line/test_walker.py:30 in public class `WalkerClassTestCase`: D200: One-line docstring should fit on one line with quotes (found 3) The closing quotes are on the same line as the opening quotes. This looks better for one-liners. --- kyu_3/line_safari_is_that_a_line/test_walker.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 de8512b248e..3605cd740b5 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 @@ -27,9 +27,7 @@ name='Source/Kata') # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): - """ - Testing Walker class. - """ + """Testing Walker class.""" def test_starting_position_from_positives(self): """ Testing Walker class. From f4f2691aeb9d50f9421e46bee0026998aa52bab2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:11:03 -0800 Subject: [PATCH 354/873] Update test_walker.py kyu_3/line_safari_is_that_a_line/test_walker.py:30 in public class `WalkerClassTestCase`: D204: 1 blank line required after class docstring (found 0) Insert a blank line before and after all docstrings (one-line or multi-line) that document a class -- generally speaking, the class's methods are separated from each other by a single blank line, and the docstring needs to be offset from the first method by a blank line; for symmetry, put a blank line between the class header and the docstring. --- kyu_3/line_safari_is_that_a_line/test_walker.py | 1 + 1 file changed, 1 insertion(+) 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 3605cd740b5..0804fc5ed3e 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 @@ -28,6 +28,7 @@ # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): """Testing Walker class.""" + def test_starting_position_from_positives(self): """ Testing Walker class. From 5a0fbee57e99ea0b33271774f7521178fcd21968 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:12:08 -0800 Subject: [PATCH 355/873] Update test_walker.py ./kyu_3/line_safari_is_that_a_line/test_walker.py:31:1: W293 blank line contains whitespace --- kyu_3/line_safari_is_that_a_line/test_walker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0804fc5ed3e..e4fc264aaf6 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 @@ -28,7 +28,7 @@ # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): """Testing Walker class.""" - + def test_starting_position_from_positives(self): """ Testing Walker class. From 7a74c99eb4d810793cbe64130578c61525b3eb3e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:20:14 -0800 Subject: [PATCH 356/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 2d1eff288a5..45812615d0a 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 @@ -1,5 +1,5 @@ """ -Walker class: make moves, check directions, etc... +Walker class: make moves, check directions, etc. Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -7,7 +7,7 @@ class Walker: - """Walker class: make moves, check directions, etc...""" + """Walker class: make moves, check directions, etc.""" def __init__(self, grid: list): """ From 5fd68d56c5770a6d3d9cbb2ebac724056d842551 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:28:04 -0800 Subject: [PATCH 357/873] Update walker_class.py --- .../line_safari_is_that_a_line/walker_class.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 45812615d0a..e89f1d2d66f 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 @@ -100,7 +100,7 @@ def is_done(self) -> bool: """ Check if get to the 'X' point or can make one move only. - :return: true/false + :return: bool """ if self.__is_start: if len([val for val in self.__direction.values() if val]) != 1: @@ -145,8 +145,8 @@ def position_plus(self, previous_position) -> None: """ Process cells if current position is +. - :param previous_position: - :return: + :param previous_position: dict + :return: None """ if self.position == '+' and previous_position in '-X': self.__direction['up'] = self.__test_up() @@ -170,8 +170,8 @@ def position_minus(self, previous_position) -> None: """ Process cells if current position is -. - :param previous_position: - :return: + :param previous_position: dict + :return: None """ if self.position == '-' and previous_position in '-X+': if self.__position['col'] < self.__position['prev_col']: @@ -179,12 +179,12 @@ def position_minus(self, previous_position) -> None: elif self.__position['col'] > self.__position['prev_col']: self.__direction['right'] = self.__test_right() - def position_pipe(self, previous_position) -> None: + def position_pipe(self, previous_position: dict) -> None: """ - Process cells if current position is |. + Process cells if current position is '|'. - :param previous_position: - :return: + :param previous_position: dict + :return: None """ if self.position == '|' and previous_position in '|X+': if self.__position['row'] < self.__position['prev_row']: From 3c209d7b101978d5aa5028cab866aab223615e18 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:29:48 -0800 Subject: [PATCH 358/873] Update walker_class.py --- kyu_3/line_safari_is_that_a_line/walker_class.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 e89f1d2d66f..8c22a150c01 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 @@ -179,11 +179,11 @@ def position_minus(self, previous_position) -> None: elif self.__position['col'] > self.__position['prev_col']: self.__direction['right'] = self.__test_right() - def position_pipe(self, previous_position: dict) -> None: + def position_pipe(self, previous_position: str) -> None: """ Process cells if current position is '|'. - :param previous_position: dict + :param previous_position: str :return: None """ if self.position == '|' and previous_position in '|X+': From 1ba5f73b86e3469d196f6cf21873a36200229c6c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:32:42 -0800 Subject: [PATCH 359/873] Update walker_class.py --- .../walker_class.py | 27 ++++++++----------- 1 file changed, 11 insertions(+), 16 deletions(-) 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 8c22a150c01..ec438278052 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 @@ -141,11 +141,11 @@ def __reset_direction(self) -> None: for key in self.__direction: self.__direction[key] = False - def position_plus(self, previous_position) -> None: + def position_plus(self, previous_position: str) -> None: """ Process cells if current position is +. - :param previous_position: dict + :param previous_position: str :return: None """ if self.position == '+' and previous_position in '-X': @@ -166,11 +166,11 @@ def position_plus(self, previous_position) -> None: self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() - def position_minus(self, previous_position) -> None: + def position_minus(self, previous_position: str) -> None: """ Process cells if current position is -. - :param previous_position: dict + :param previous_position: str :return: None """ if self.position == '-' and previous_position in '-X+': @@ -216,27 +216,22 @@ def __test_up(self) -> bool: """ row: int = self.__position['row'] col: int = self.__position['col'] - if row >= 1 and self.__grid[row - 1][col] in 'X|+': - return True - return False + return row >= 1 and self.__grid[row - 1][col] in 'X|+' + def __test_down(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] - if row + 1 < len(self.__grid) and self.__grid[row + 1][col] in 'X|+': - return True - return False + return row + 1 < len(self.__grid) and self.__grid[row + 1][col] in 'X|+' + def __test_left(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] - if col >= 1 and self.__grid[row][col - 1] in 'X+-': - return True - return False + return col >= 1 and self.__grid[row][col - 1] in 'X+-' + def __test_right(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] - if col + 1 < len(self.__grid[row]) and self.__grid[row][col + 1] in 'X+-': - return True - return False + return col + 1 < len(self.__grid[row]) and self.__grid[row][col + 1] in 'X+-' From 46dc1f35237384954ffcf2c891b7a39e01c8fbb5 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:34:14 -0800 Subject: [PATCH 360/873] Update walker_class.py ./kyu_3/line_safari_is_that_a_line/walker_class.py:222:5: E303 too many blank lines (2) def __test_down(self) -> bool: ^ ./kyu_3/line_safari_is_that_a_line/walker_class.py:228:5: E303 too many blank lines (2) def __test_left(self) -> bool: ^ ./kyu_3/line_safari_is_that_a_line/walker_class.py:234:5: E303 too many blank lines (2) def __test_right(self) -> bool: ^ --- kyu_3/line_safari_is_that_a_line/walker_class.py | 3 --- 1 file changed, 3 deletions(-) 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 ec438278052..623db37a41a 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 @@ -218,19 +218,16 @@ def __test_up(self) -> bool: col: int = self.__position['col'] return row >= 1 and self.__grid[row - 1][col] in 'X|+' - def __test_down(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] return row + 1 < len(self.__grid) and self.__grid[row + 1][col] in 'X|+' - def __test_left(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] return col >= 1 and self.__grid[row][col - 1] in 'X+-' - def __test_right(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] From 062df10a597fa427a5c0361ae7ca612efb91861c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:36:53 -0800 Subject: [PATCH 361/873] Update walker_class.py --- .../line_safari_is_that_a_line/walker_class.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 623db37a41a..c1c1e4a4d9a 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 @@ -212,23 +212,38 @@ def __test_up(self) -> bool: """ Test up. - :return: + :return: bool """ row: int = self.__position['row'] col: int = self.__position['col'] return row >= 1 and self.__grid[row - 1][col] in 'X|+' def __test_down(self) -> bool: + """ + Test down. + + :return: bool + """ row: int = self.__position['row'] col: int = self.__position['col'] return row + 1 < len(self.__grid) and self.__grid[row + 1][col] in 'X|+' def __test_left(self) -> bool: + """ + Test left. + + :return: bool + """ row: int = self.__position['row'] col: int = self.__position['col'] return col >= 1 and self.__grid[row][col - 1] in 'X+-' def __test_right(self) -> bool: + """ + Test right. + + :return: bool + """ row: int = self.__position['row'] col: int = self.__position['col'] return col + 1 < len(self.__grid[row]) and self.__grid[row][col + 1] in 'X+-' From d9ec5de847f6715f02c98c6047833b548b576381 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Wed, 4 Dec 2024 20:55:52 -0800 Subject: [PATCH 362/873] Create pydocstyle_kyu4.yml --- .github/workflows/pydocstyle_kyu4.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu4.yml diff --git a/.github/workflows/pydocstyle_kyu4.yml b/.github/workflows/pydocstyle_kyu4.yml new file mode 100644 index 00000000000..fb5fab4f43d --- /dev/null +++ b/.github/workflows/pydocstyle_kyu4.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle 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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --version + - name: Doc style checking with pydocstyle + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_4 From 1f77d577f62d1d64c742a791becdfd8283710947 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 18:35:04 +0000 Subject: [PATCH 363/873] Bump codecov/codecov-action from 5.0.7 to 5.1.0 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.0.7 to 5.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.0.7...v5.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 504a61e4e3d..89d8abcc772 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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 + uses: codecov/codecov-action@v5.1.0 with: token: ${{ secrets.codecov_token }} files: coverage.xml From aa72e900c2e861221cfd7e0da443f84adae198f7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:17:39 -0800 Subject: [PATCH 364/873] __init__ docstring --- kyu_4/__init__.py | 1 + kyu_4/human_readable_duration_format/__init__.py | 1 + kyu_4/most_frequently_used_words/__init__.py | 1 + kyu_4/next_bigger_number_with_the_same_digits/__init__.py | 1 + kyu_4/next_smaller_number_with_the_same_digits/__init__.py | 1 + kyu_4/permutations/__init__.py | 1 + kyu_4/range_extraction/__init__.py | 1 + kyu_4/snail/__init__.py | 1 + kyu_4/strings_mix/README.md | 4 ++-- kyu_4/strings_mix/__init__.py | 1 + kyu_4/strip_comments/__init__.py | 1 + kyu_4/sudoku_solution_validator/__init__.py | 1 + kyu_4/sum_by_factors/__init__.py | 1 + kyu_4/sum_of_intervals/__init__.py | 1 + kyu_4/the_greatest_warrior/__init__.py | 1 + kyu_4/validate_sudoku_with_size/__init__.py | 1 + 16 files changed, 17 insertions(+), 2 deletions(-) diff --git a/kyu_4/__init__.py b/kyu_4/__init__.py index e69de29bb2d..f4a82f04020 100644 --- a/kyu_4/__init__.py +++ b/kyu_4/__init__.py @@ -0,0 +1 @@ +"""Codewars kyu_4 package.""" diff --git a/kyu_4/human_readable_duration_format/__init__.py b/kyu_4/human_readable_duration_format/__init__.py index e69de29bb2d..056c0879651 100644 --- a/kyu_4/human_readable_duration_format/__init__.py +++ b/kyu_4/human_readable_duration_format/__init__.py @@ -0,0 +1 @@ +"""Human readable duration format package.""" diff --git a/kyu_4/most_frequently_used_words/__init__.py b/kyu_4/most_frequently_used_words/__init__.py index e69de29bb2d..c288a6188db 100644 --- a/kyu_4/most_frequently_used_words/__init__.py +++ b/kyu_4/most_frequently_used_words/__init__.py @@ -0,0 +1 @@ +"""Most frequently used words in a text package.""" diff --git a/kyu_4/next_bigger_number_with_the_same_digits/__init__.py b/kyu_4/next_bigger_number_with_the_same_digits/__init__.py index e69de29bb2d..30dc3d22713 100644 --- a/kyu_4/next_bigger_number_with_the_same_digits/__init__.py +++ b/kyu_4/next_bigger_number_with_the_same_digits/__init__.py @@ -0,0 +1 @@ +"""Next bigger number with the same digits package.""" diff --git a/kyu_4/next_smaller_number_with_the_same_digits/__init__.py b/kyu_4/next_smaller_number_with_the_same_digits/__init__.py index e69de29bb2d..da3bbbb87c5 100644 --- a/kyu_4/next_smaller_number_with_the_same_digits/__init__.py +++ b/kyu_4/next_smaller_number_with_the_same_digits/__init__.py @@ -0,0 +1 @@ +"""Next smaller number with the same digits package.""" diff --git a/kyu_4/permutations/__init__.py b/kyu_4/permutations/__init__.py index e69de29bb2d..942250b3c8e 100644 --- a/kyu_4/permutations/__init__.py +++ b/kyu_4/permutations/__init__.py @@ -0,0 +1 @@ +"""Permutations package.""" diff --git a/kyu_4/range_extraction/__init__.py b/kyu_4/range_extraction/__init__.py index e69de29bb2d..732db55fa77 100644 --- a/kyu_4/range_extraction/__init__.py +++ b/kyu_4/range_extraction/__init__.py @@ -0,0 +1 @@ +"""Range Extraction package.""" diff --git a/kyu_4/snail/__init__.py b/kyu_4/snail/__init__.py index e69de29bb2d..6ececdca848 100644 --- a/kyu_4/snail/__init__.py +++ b/kyu_4/snail/__init__.py @@ -0,0 +1 @@ +"""Snail Sort package.""" diff --git a/kyu_4/strings_mix/README.md b/kyu_4/strings_mix/README.md index c09c168468d..0904770cf61 100644 --- a/kyu_4/strings_mix/README.md +++ b/kyu_4/strings_mix/README.md @@ -1,8 +1,8 @@ # Strings Mix -Given two strings `s1` and `s2`, we want to visualize how different the +****Given two strings `s1` and `s2`, we want to 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 +(a to z). Fir****st let us count the frequency of each lowercase letters in `s1` and `s2`. ```text diff --git a/kyu_4/strings_mix/__init__.py b/kyu_4/strings_mix/__init__.py index e69de29bb2d..19cbec43a11 100644 --- a/kyu_4/strings_mix/__init__.py +++ b/kyu_4/strings_mix/__init__.py @@ -0,0 +1 @@ +"""Strings Mix package.""" diff --git a/kyu_4/strip_comments/__init__.py b/kyu_4/strip_comments/__init__.py index e69de29bb2d..62779246461 100644 --- a/kyu_4/strip_comments/__init__.py +++ b/kyu_4/strip_comments/__init__.py @@ -0,0 +1 @@ +"""Strip Comments package.""" diff --git a/kyu_4/sudoku_solution_validator/__init__.py b/kyu_4/sudoku_solution_validator/__init__.py index e69de29bb2d..c5bdd87d16e 100644 --- a/kyu_4/sudoku_solution_validator/__init__.py +++ b/kyu_4/sudoku_solution_validator/__init__.py @@ -0,0 +1 @@ +"""Sudoku Solution Validator package.""" diff --git a/kyu_4/sum_by_factors/__init__.py b/kyu_4/sum_by_factors/__init__.py index e69de29bb2d..e426b1ef6d1 100644 --- a/kyu_4/sum_by_factors/__init__.py +++ b/kyu_4/sum_by_factors/__init__.py @@ -0,0 +1 @@ +"""Sum by Factors package.""" diff --git a/kyu_4/sum_of_intervals/__init__.py b/kyu_4/sum_of_intervals/__init__.py index e69de29bb2d..bf777c72502 100644 --- a/kyu_4/sum_of_intervals/__init__.py +++ b/kyu_4/sum_of_intervals/__init__.py @@ -0,0 +1 @@ +"""Sum of Intervals package.""" diff --git a/kyu_4/the_greatest_warrior/__init__.py b/kyu_4/the_greatest_warrior/__init__.py index e69de29bb2d..68f8ffb6c20 100644 --- a/kyu_4/the_greatest_warrior/__init__.py +++ b/kyu_4/the_greatest_warrior/__init__.py @@ -0,0 +1 @@ +"""The Greatest Warrior package.""" diff --git a/kyu_4/validate_sudoku_with_size/__init__.py b/kyu_4/validate_sudoku_with_size/__init__.py index e69de29bb2d..e73604e7e84 100644 --- a/kyu_4/validate_sudoku_with_size/__init__.py +++ b/kyu_4/validate_sudoku_with_size/__init__.py @@ -0,0 +1 @@ +"""Validate Sudoku with size `NxN` package.""" From 0ec0eeebfa922b1c510165b2eb8100b55489b262 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:22:51 -0800 Subject: [PATCH 365/873] Update next_smaller.py --- .../next_smaller.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/kyu_4/next_smaller_number_with_the_same_digits/next_smaller.py b/kyu_4/next_smaller_number_with_the_same_digits/next_smaller.py index a0dfe8eb090..493628defdc 100644 --- a/kyu_4/next_smaller_number_with_the_same_digits/next_smaller.py +++ b/kyu_4/next_smaller_number_with_the_same_digits/next_smaller.py @@ -1,5 +1,6 @@ """ -Solution for -> Next smaller number with the same digits +Solution for -> Next smaller number with the same digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,10 +8,13 @@ def next_smaller(n: int) -> int: """ + next_smaller function. + A function that takes a positive integer and returns the next smaller positive integer containing the same digits. - If no smaller number can be composed using those digits, return -1 + :param n: int + :return: int """ # 1 # Starting from the right, find the index of the first digit that @@ -41,7 +45,8 @@ def next_smaller(n: int) -> int: def find_x(n: int) -> int: """ - Find x + Find x. + :param n: int :return: int """ @@ -54,7 +59,8 @@ def find_x(n: int) -> int: def find_y(n: int, x_i: int) -> int: """ - Find y + Find y. + :param n: int :param x_i: int :return: int @@ -75,4 +81,4 @@ def find_y(n: int, x_i: int) -> int: if comparable_x['y'] < y: comparable_x['y'] = y comparable_x['index'] = index + x_i + 1 - return comparable_x['index'] if comparable_x['index'] else -1 + return comparable_x['index'] or -1 From 61946fece7cb8b77f69d17cdbd4014892c074f15 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:23:43 -0800 Subject: [PATCH 366/873] Update test_next_smaller.py --- .../test_next_smaller.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/next_smaller_number_with_the_same_digits/test_next_smaller.py b/kyu_4/next_smaller_number_with_the_same_digits/test_next_smaller.py index 0e1ad4b4264..2bb5262c59e 100644 --- a/kyu_4/next_smaller_number_with_the_same_digits/test_next_smaller.py +++ b/kyu_4/next_smaller_number_with_the_same_digits/test_next_smaller.py @@ -1,5 +1,6 @@ """ -Test for -> Next smaller number with the same digits +Test for -> Next smaller number with the same digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,13 +30,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class NextSmallerTestCase(unittest.TestCase): - """ - Testing next_smaller function - """ + """Testing next_smaller function.""" def test_next_smaller(self): """ - Testing next_smaller function + Testing next_smaller function. You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits: @@ -45,6 +44,7 @@ def test_next_smaller(self): 2071 ==> 2017 If no smaller number can be composed using those digits, return -1 + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing next_smaller function") From 9c1d1330e171c0de14c42dbb170f195a20cd39cd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:36:23 -0800 Subject: [PATCH 367/873] Update format_duration.py --- .../format_duration.py | 143 +++++++++--------- 1 file changed, 72 insertions(+), 71 deletions(-) diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 3bf8955a6a3..4706fb41930 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -1,4 +1,6 @@ """ +Format duration. + A function which formats a duration, given as a number of seconds, in a human-friendly way. Created by Egor Kostan. @@ -8,6 +10,8 @@ def format_duration(seconds: int) -> str: """ + format_duration function. + A function which formats a duration, given as a number of seconds, in a human-friendly way. @@ -67,34 +71,36 @@ def format_duration(seconds: int) -> str: return result -def format_days(days: int, day: str, result: str) -> str: +def format_days(days: int, + day: str, + result: str) -> str: """ - Format days for the final string - :param days: - :param day: - :param result: - :return: + Format days for the final string. + + :param days: int + :param day: str + :param result: str + :return: str """ - if days > 0 and result != '': - result += f', {day}' - elif days > 0: - result += f'{day}' + if days > 0: + result += f', {day}' if result else f'{day}' return result -def format_hours(hours: int, hour: str, result: str) -> str: +def format_hours(hours: int, + hour: str, + result: str) -> str: """ - Format hours for the final string - :param hours: - :param hour: - :param result: - :return: + Format hours for the final string. + + :param hours: int + :param hour: str + :param result: str + :return: str """ - if hours > 0 and result != '': - result += f', {hour}' - elif hours > 0: - result += f'{hour}' + if hours > 0: + result += f', {hour}' if result else f'{hour}' return result @@ -104,12 +110,13 @@ def format_minutes(minutes: int, minute: str, result: str) -> str: """ - Format minutes for the final string - :param minutes: - :param seconds: - :param minute: - :param result: - :return: + Format minutes for the final string. + + :param minutes: int + :param seconds: int + :param minute: str + :param result: str + :return: str """ if minutes > 0 and result != '' and seconds == 0: result += f' and {minute}' @@ -123,26 +130,27 @@ def format_minutes(minutes: int, def format_seconds(seconds: int, second: str, result: str) -> str: """ - Format seconds for the final string - :param seconds: - :param second: - :param result: - :return: + Format seconds for the final string. + + :param seconds: int + :param second: str + :param result: str + :return: str """ - if seconds > 0 and result != '': - result += f' and {second}' - elif seconds > 0: - result += f'{second}' + if seconds > 0: + result += f' and {second}' if result else f'{second}' return result -def get_string(number: int, string: str) -> str: +def get_string(number: int, + string: str) -> str: """ - Concatenate string result - :param number: - :param string: - :return: + Concatenate string result. + + :param number: int + :param string: str + :return: str """ result: str = '' if number == 1: @@ -155,59 +163,52 @@ def get_string(number: int, string: str) -> str: def calc_seconds(seconds: int) -> int: """ - Calculate seconds - :param seconds: - :return: - """ - if seconds < 60: - return seconds + Calculate seconds. - return seconds % 60 + :param seconds: int + :return: int + """ + return seconds if seconds < 60 else seconds % 60 def calc_minutes(seconds: int) -> int: """ - calculate minutes - :param seconds: - :return: + Calculate minutes. + + :param seconds: int + :return: int """ minutes = seconds // 60 - if minutes < 60: - return minutes - - return minutes % 60 + return minutes if minutes < 60 else minutes % 60 def calc_hours(seconds: int) -> int: """ - Calculate hours - :param seconds: - :return: + Calculate hours. + + :param seconds: int + :return: int """ hours = seconds // (60 * 60) - if hours < 24: - return hours - - return hours % 24 + return hours if hours < 24 else hours % 24 def calc_days(seconds: int) -> int: """ - Calculate days - :param seconds: - :return: + Calculate days. + + :param seconds: int + :return: int """ days = seconds // (60 * 60 * 24) - if days < 365: - return days - - return days % 365 + return days if days < 365 else days % 365 def calc_years(seconds: int) -> int: """ - Calculate years - :param seconds: - :return: + Calculate years. + + :param seconds: int + :return: int """ return seconds // (60 * 60 * 24 * 365) From 5f867a0675ca81b075e03ee2eddbff27018d8c8d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:36:26 -0800 Subject: [PATCH 368/873] Update test_format_duration.py --- .../test_format_duration.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/kyu_4/human_readable_duration_format/test_format_duration.py b/kyu_4/human_readable_duration_format/test_format_duration.py index 0f498dc6ba2..6580a672242 100644 --- a/kyu_4/human_readable_duration_format/test_format_duration.py +++ b/kyu_4/human_readable_duration_format/test_format_duration.py @@ -1,5 +1,6 @@ """ -Test for 'Human readable duration format' +Test for 'Human readable duration format'. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,12 +30,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FormatDurationTestCase(unittest.TestCase): - """ - Testing format_duration - """ + """Testing format_duration.""" def test_format_duration(self): """ + Test format_duration function. + Test a function which formats a duration, given as a number of seconds, in a human-friendly way. From 8065547268798a7e491415b25ecab6d689400b6f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:38:05 -0800 Subject: [PATCH 369/873] Update solution.py --- kyu_4/most_frequently_used_words/solution.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kyu_4/most_frequently_used_words/solution.py b/kyu_4/most_frequently_used_words/solution.py index 89813390c35..3557d1b8bd8 100644 --- a/kyu_4/most_frequently_used_words/solution.py +++ b/kyu_4/most_frequently_used_words/solution.py @@ -1,5 +1,6 @@ """ -Most frequently used words in a text +Most frequently used words in a text. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def top_3_words(text: str) -> list: """ + Top 3 words function. + Given a string of text (possibly with punctuation and line-breaks), returns an array of the top-3 most occurring words, in descending order of the number of occurrences. From 04e42e7ac0d375d1580ecb8f5b12c3a5c2d87f54 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:38:09 -0800 Subject: [PATCH 370/873] Update test_top_3_words.py --- kyu_4/most_frequently_used_words/test_top_3_words.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_4/most_frequently_used_words/test_top_3_words.py b/kyu_4/most_frequently_used_words/test_top_3_words.py index 3e4c70af713..54e0dd1133a 100644 --- a/kyu_4/most_frequently_used_words/test_top_3_words.py +++ b/kyu_4/most_frequently_used_words/test_top_3_words.py @@ -1,5 +1,6 @@ """ -Test for 'Most frequently used words in a text' +Test for 'Most frequently used words in a text'. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,13 +29,13 @@ url='https://www.codewars.com/kata/51e056fe544cf36c410000fb', name='Source/Kata') class Top3WordsTestCase(unittest.TestCase): - """ - Testing top_3_words - """ + """Testing top_3_words.""" def test_top_3_words(self): """ - Test top_3_words function + Test top_3_words function with various test data. + + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing top_3_words function") From 2e6dde6e01f8c8ae333c50ddb0263b83bc169349 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 5 Dec 2024 20:40:44 -0800 Subject: [PATCH 371/873] Update next_bigger.py --- .../next_bigger.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py index 889ff900f9b..bd50df22896 100644 --- a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py +++ b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py @@ -1,5 +1,6 @@ """ -Solution for -> Next bigger number with the same digits +Solution for -> Next bigger number with the same digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -62,11 +63,8 @@ def next_greater_digit_index(digits: list, i: int) -> int: return i for index, digit in enumerate(digits[i:]): - if digits[i - 1] < digit: - if current == '': - current = digit - j = i + index - elif current > digit: - current = digit - j = i + index + if digits[i - 1] < digit and (current == '' or current > digit): + current = digit + j = i + index + return j From df80c28c6417e8b718a525482432d45107ab2ba4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:13:39 -0800 Subject: [PATCH 372/873] Update sudoku.py --- kyu_4/validate_sudoku_with_size/sudoku.py | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/kyu_4/validate_sudoku_with_size/sudoku.py b/kyu_4/validate_sudoku_with_size/sudoku.py index 690964f1d95..f7ddc1d14d5 100644 --- a/kyu_4/validate_sudoku_with_size/sudoku.py +++ b/kyu_4/validate_sudoku_with_size/sudoku.py @@ -1,5 +1,6 @@ """ -Solution for -> Validate Sudoku with size `NxN` +Solution for -> Validate Sudoku with size `NxN`. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -15,6 +16,8 @@ class Sudoku: """ + Sudoku class. + Given a Sudoku data structure with size `NxN, N > 0 and √N == integer`, write a method to validate if it has been filled out correctly. @@ -25,6 +28,8 @@ def __init__(self, data: list): def is_valid(self) -> bool: """ + Sudoku validator. + A method to validate if given a Sudoku has been filled out correctly. Sudoku -> data structure with size NxN, N > 0 and √N == integer. :return: bool @@ -34,22 +39,22 @@ def is_valid(self) -> bool: or not assert_sudoku_by_column(self.__data): return False - if len(self.__data) > 1: - if not assert_sudoku_by_region(self.__data): - return False + if len(self.__data) > 1 and not assert_sudoku_by_region(self.__data): + return False return True def is_data_valid(self) -> bool: """ - Verify data validity + Verify data validity. + :return: bool """ if not self.__data: return False - if len(self.__data) == 1: - if self.__data[0][0] != 1 or isinstance(self.__data[0][0], bool): - return False + if (len(self.__data) == 1 and + (self.__data[0][0] != 1 or isinstance(self.__data[0][0], bool))): + return False return isinstance(self.__data, list) From bbda02556fca8f62e8c241cbeda010895fa5fda7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:14:21 -0800 Subject: [PATCH 373/873] Update test_sudoku.py --- kyu_4/validate_sudoku_with_size/test_sudoku.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_4/validate_sudoku_with_size/test_sudoku.py b/kyu_4/validate_sudoku_with_size/test_sudoku.py index 7f4ad1a461d..e1967c1b7dc 100644 --- a/kyu_4/validate_sudoku_with_size/test_sudoku.py +++ b/kyu_4/validate_sudoku_with_size/test_sudoku.py @@ -1,5 +1,6 @@ """ -Test for -> Validate Sudoku with size `NxN` +Test for -> Validate Sudoku with size `NxN`. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,11 @@ url='https://www.codewars.com/kata/540afbe2dc9f615d5e000425', name='Source/Kata') class SudokuTestCase(unittest.TestCase): - """ - Testing Sudoku class - """ + """Testing Sudoku class.""" def test_sudoku_class(self): """ - Testing Sudoku class + 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. @@ -160,7 +159,8 @@ def test_sudoku_class(self): [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 7, 2, 3, 1, 5, 6, 4], [9, 7, 8, 3, 1, 2, 6, 4, 5]], - False, 'Sudoku with invalid boxes (little squares), but valid rows and columns')) + False, 'Sudoku with invalid boxes (little squares),' + 'but valid rows and columns')) for data, expected, message in test_data: with allure.step("Enter a Sudoku solution and verify if it a valid one."): From 59302cd74f1021a67e00837e68f4e2f0c8712293 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:17:34 -0800 Subject: [PATCH 374/873] Update test_battle.py --- kyu_4/the_greatest_warrior/test_battle.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_4/the_greatest_warrior/test_battle.py b/kyu_4/the_greatest_warrior/test_battle.py index 811d30edc09..046c46c27fb 100644 --- a/kyu_4/the_greatest_warrior/test_battle.py +++ b/kyu_4/the_greatest_warrior/test_battle.py @@ -1,5 +1,6 @@ """ -Test for -> The Greatest Warrior -> test battle +Test for -> The Greatest Warrior -> test battle. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -30,13 +31,13 @@ name='Source/Kata') # pylint: enable-msg=R0801 class BattleTestCase(unittest.TestCase): - """ - Testing Battle method - """ + """Testing Battle method.""" def test_battle(self): """ - Testing Battle method + Testing Battle method with various test data. + + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing Battle method") From e6033c01dfe718ebe2a4c46ca5b56375773485e4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:23:34 -0800 Subject: [PATCH 375/873] Update sum_of_intervals.py --- kyu_4/sum_of_intervals/sum_of_intervals.py | 36 +++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/kyu_4/sum_of_intervals/sum_of_intervals.py b/kyu_4/sum_of_intervals/sum_of_intervals.py index 0130532696e..444bc889d34 100644 --- a/kyu_4/sum_of_intervals/sum_of_intervals.py +++ b/kyu_4/sum_of_intervals/sum_of_intervals.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of Intervals +Solution for -> Sum of Intervals. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,30 +12,26 @@ def sum_of_intervals(intervals: list) -> int: the sum of all the interval lengths. Overlapping intervals should only be counted once. - :param intervals: - :return: + :param intervals: list + :return: int """ intervals = remove_overlaps(intervals) - results: list = [] - - for i in intervals: - results.append(i[1] - i[0]) - + results: list = [(i[1] - i[0]) for i in intervals] return sum(results) def remove_overlaps(intervals: list) -> list: """ - Remove overlaps and duplicates - :param intervals: - :return: + Remove overlaps and duplicates. + + :param intervals: list + :return: int """ is_clean: bool = False while not is_clean: is_clean = True - for index_i, i in enumerate(intervals): for index_b, b in enumerate(intervals): if index_b != index_i: @@ -45,13 +42,16 @@ def remove_overlaps(intervals: list) -> list: return intervals -def clean_interval(intervals, i, b) -> bool: +def clean_interval(intervals: list, + i: tuple, + b: tuple) -> bool: """ - Remove intervals - :param intervals: - :param i: - :param b: - :return: + Remove intervals. + + :param intervals: list + :param i: tuple + :param b: tuple + :return: bool """ result: bool = True From 148da83eeb4e06e3383ce3e1b2826218e3df7cc8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:24:06 -0800 Subject: [PATCH 376/873] Update test_sum_of_intervals.py --- kyu_4/sum_of_intervals/test_sum_of_intervals.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kyu_4/sum_of_intervals/test_sum_of_intervals.py b/kyu_4/sum_of_intervals/test_sum_of_intervals.py index 29d7c9e6923..fe9253cf5c1 100644 --- a/kyu_4/sum_of_intervals/test_sum_of_intervals.py +++ b/kyu_4/sum_of_intervals/test_sum_of_intervals.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Intervals +Test for -> Sum of Intervals. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,11 @@ @allure.link(url='https://www.codewars.com/kata/52b7ed099cdc285c300001cd', name='Source/Kata') class SumOfIntervalsTestCase(unittest.TestCase): - """ - Testing sum_of_intervals function - """ + """Testing sum_of_intervals function.""" def test_sum_of_intervals(self): """ - Testing sum_of_intervals function + Testing sum_of_intervals function. The function should accept an array of intervals, and return the sum of all the interval lengths. From 0f932e0d480673a46e8073d50af788a52e084210 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:27:27 -0800 Subject: [PATCH 377/873] Update sum_for_list.py --- kyu_4/sum_by_factors/sum_for_list.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/kyu_4/sum_by_factors/sum_for_list.py b/kyu_4/sum_by_factors/sum_for_list.py index c5669a25289..523d0b93569 100644 --- a/kyu_4/sum_by_factors/sum_for_list.py +++ b/kyu_4/sum_by_factors/sum_for_list.py @@ -1,5 +1,6 @@ """ -Solution for -> sum_for_list function +Solution for -> sum_for_list function. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,7 +10,9 @@ def sum_for_list(lst: list) -> list: """ - Given an array of positive or negative integers I= [i1,..,in] + Sorting an array by increasing order. + + Given an array of positive or negative integers I= [i1,...,in] the function have to produce 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] ...] @@ -39,12 +42,12 @@ def sum_for_list(lst: list) -> list: m = -1 if digit % (prime * m) == 0: - if len(temp) == 0: + if not temp: temp.append(prime) sum_digits += digit # add result in case prime in temp list - if len(temp) > 0: + if temp: temp.append(sum_digits) results.append(temp) From a4bc2c38508d1d0f25a7da036ab70b9614f988e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Fri, 6 Dec 2024 08:29:50 -0800 Subject: [PATCH 378/873] Update test_battle.py ./kyu_4/the_greatest_warrior/test_battle.py:39:1: W293 blank line contains whitespace """ Testing Battle method with various test data. :return: """ ^ ./kyu_4/the_greatest_warrior/test_battle.py:40:17: W291 trailing whitespace """ Testing Battle method with various test data. :return: """ --- kyu_4/the_greatest_warrior/test_battle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_4/the_greatest_warrior/test_battle.py b/kyu_4/the_greatest_warrior/test_battle.py index 046c46c27fb..79ed0ac0e66 100644 --- a/kyu_4/the_greatest_warrior/test_battle.py +++ b/kyu_4/the_greatest_warrior/test_battle.py @@ -36,8 +36,8 @@ class BattleTestCase(unittest.TestCase): def test_battle(self): """ Testing Battle method with various test data. - - :return: + + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing Battle method") From a7736912aa8dff0d13a14f2c05669075d9137acb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 18:39:28 +0000 Subject: [PATCH 379/873] Bump codecov/codecov-action from 5.1.0 to 5.1.1 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.1.0 to 5.1.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.1.0...v5.1.1) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 89d8abcc772..72dc8b80a8d 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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.1.0 + uses: codecov/codecov-action@v5.1.1 with: token: ${{ secrets.codecov_token }} files: coverage.xml From 90d3293fa9182b0dd64c4ccf88a24075e9dabc85 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:14:58 -0800 Subject: [PATCH 380/873] Update test_valid_solution.py --- .../sudoku_solution_validator/test_valid_solution.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_4/sudoku_solution_validator/test_valid_solution.py b/kyu_4/sudoku_solution_validator/test_valid_solution.py index a0c08843d60..65e27d6b58b 100644 --- a/kyu_4/sudoku_solution_validator/test_valid_solution.py +++ b/kyu_4/sudoku_solution_validator/test_valid_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Sudoku Solution Validator +Test for -> Sudoku Solution Validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -24,12 +25,12 @@ @allure.link(url='https://www.codewars.com/kata/529bf0e9bdf7657179000008', name='Source/Kata') class ValidSolutionTestCase(unittest.TestCase): - """ - Testing validSolution function - """ + """Testing validSolution function.""" def test_valid_solution(self): """ + Test valid_solution function. + 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 @@ -42,7 +43,7 @@ def test_valid_solution(self): :return: """ # pylint: disable-msg=R0801 - allure.dynamic.title("Testing validSolution") + allure.dynamic.title("Testing valid_solution") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

Codewars badge:

' From feb9d585943ed871e19bb3f7062a494c9b6825ba Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:18:17 -0800 Subject: [PATCH 381/873] Update valid_solution.py --- .../valid_solution.py | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/kyu_4/sudoku_solution_validator/valid_solution.py b/kyu_4/sudoku_solution_validator/valid_solution.py index 64530a3a2cc..84e02f9ff21 100644 --- a/kyu_4/sudoku_solution_validator/valid_solution.py +++ b/kyu_4/sudoku_solution_validator/valid_solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Sudoku Solution Validator +Solution for -> Sudoku Solution Validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -20,9 +21,10 @@ def valid_solution(board: list) -> bool: def check_horizontally(board: list) -> bool: """ - test horizontally - :param board: - :return: + Test horizontally. + + :param board: list + :return: bool """ for row in board: if sorted(row) != [1, 2, 3, 4, 5, 6, 7, 8, 9]: @@ -32,14 +34,15 @@ def check_horizontally(board: list) -> bool: def check_vertically(board: list) -> bool: """ - test vertically + Test vertically. + :param board: :return: """ i: int = 0 while i < 9: - col = [] + col: list = [] for row in board: col.append(row[i]) if sorted(col) != [1, 2, 3, 4, 5, 6, 7, 8, 9]: @@ -50,21 +53,22 @@ def check_vertically(board: list) -> bool: def check_sub_grids(board: list) -> bool: """ - test each of the nine 3x3 sub-grids + Test each of the nine 3x3 sub-grids. + (also known as blocks) :param board: :return: """ sub_grids: list = [ - board[0][0:3] + board[1][0:3] + board[2][0:3], + board[0][:3] + board[1][:3] + board[2][:3], board[0][3:6] + board[1][3:6] + board[2][3:6], board[0][6:] + board[1][6:] + board[2][6:], - board[3][0:3] + board[4][0:3] + board[5][0:3], + board[3][:3] + board[4][:3] + board[5][:3], board[3][3:6] + board[4][3:6] + board[5][3:6], board[3][6:] + board[4][6:] + board[5][6:], - board[6][0:3] + board[7][0:3] + board[8][0:3], + board[6][:3] + board[7][:3] + board[8][:3], board[6][3:6] + board[7][3:6] + board[8][3:6], board[6][6:] + board[7][6:] + board[8][6:], ] From 01775eec5f3f29f0bcdb7c90e3dcc527842cfaa6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:20:19 -0800 Subject: [PATCH 382/873] Update solution.py --- kyu_4/strip_comments/solution.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kyu_4/strip_comments/solution.py b/kyu_4/strip_comments/solution.py index 6a3b065b3f5..7d7fac4512a 100644 --- a/kyu_4/strip_comments/solution.py +++ b/kyu_4/strip_comments/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Strip Comments +Solution for -> Strip Comments. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def solution(string: str, markers: list) -> str: """ + Strip comments solution. + The solution strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line will be stripped out as well. From 76d6d86f5cb8b2ee44d93935a4f61bc0acfdb5ab Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:20:23 -0800 Subject: [PATCH 383/873] Update test_solution.py --- kyu_4/strip_comments/test_solution.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/strip_comments/test_solution.py b/kyu_4/strip_comments/test_solution.py index 68e78a365c7..20f5ab69343 100644 --- a/kyu_4/strip_comments/test_solution.py +++ b/kyu_4/strip_comments/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Strip Comments +Test for -> Strip Comments. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -23,17 +24,16 @@ @allure.link(url='https://www.codewars.com/kata/51c8e37cee245da6b40000bd', name='Source/Kata') class SolutionTestCase(unittest.TestCase): - """ - Testing solution for Strip Comments problem - """ + """Testing solution for Strip Comments problem.""" def test_solution(self): """ - Testing 'solution' function + 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. + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing 'solution' function") From 92ef00e6cbff067d627f094e5939cce86cf0c5c8 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:22:36 -0800 Subject: [PATCH 384/873] Update solution.py --- kyu_4/strings_mix/solution.py | 39 +++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/kyu_4/strings_mix/solution.py b/kyu_4/strings_mix/solution.py index a73966a0bfa..66b621badd6 100644 --- a/kyu_4/strings_mix/solution.py +++ b/kyu_4/strings_mix/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Strings Mix +Solution for -> Strings Mix. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,6 +12,8 @@ def mix(s1: str, s2: str) -> str: """ + Mix function. + Given two strings s1 and s2, we want to visualize how different the two strings are. We will only take into account the lowercase letters (a to z). @@ -30,28 +33,33 @@ def mix(s1: str, s2: str) -> str: results: list = [] for key in keys: - if key in s2_results and key in s1_results: - if s1_results[key] == s2_results[key]: - results.append(f'=:{key * s1_results[key]}') - elif s1_results[key] > s2_results[key]: - results.append(f'1:{key * s1_results[key]}') - else: - results.append(f'2:{key * s2_results[key]}') + if ( + key in s2_results + and key in s1_results + and s1_results[key] == s2_results[key] + ): + results.append(f'=:{key * s1_results[key]}') + elif ( + key in s2_results + and key in s1_results + and s1_results[key] > s2_results[key] + or (key not in s2_results or key not in s1_results) + and key in s1_results + ): + results.append(f'1:{key * s1_results[key]}') else: - if key in s1_results: - results.append(f'1:{key * s1_results[key]}') - else: - results.append(f'2:{key * s2_results[key]}') - + results.append(f'2:{key * s2_results[key]}') return '/'.join(sort_results(results)) def sort_results(results: list) -> list: """ + Sorting results. + The results will be in decreasing order of their length and when they have the same length sorted in ascending lexicographic order (letters and digits - more precisely - sorted by code-point) + sorted by code-point). :param results: :return: """ @@ -76,7 +84,8 @@ def sort_results(results: list) -> list: def get_counters(s: str) -> dict: """ - Get counters + Get counters. + :param s: str :return: dict """ From ba92654a0c0c5db088dcba3e10bb40319f789f4a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:24:27 -0800 Subject: [PATCH 385/873] Update snail_sort.py --- kyu_4/snail/snail_sort.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kyu_4/snail/snail_sort.py b/kyu_4/snail/snail_sort.py index 34f614c1144..9c8c0f73125 100644 --- a/kyu_4/snail/snail_sort.py +++ b/kyu_4/snail/snail_sort.py @@ -1,5 +1,5 @@ """ -Solution for -> Snail +Solution for -> Snail. Returns the array elements arranged from outermost elements to the middle element, traveling clockwise. @@ -11,6 +11,8 @@ def snail(snail_map: list) -> list: """ + Snail function. + Returns the array elements arranged from outermost elements to the middle element, traveling clockwise. From 6f66d5326530c8193bac773feb2c2b8941fe0235 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:24:31 -0800 Subject: [PATCH 386/873] Update test_snail.py --- kyu_4/snail/test_snail.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kyu_4/snail/test_snail.py b/kyu_4/snail/test_snail.py index 4e92c26f8b3..ef6002302f3 100644 --- a/kyu_4/snail/test_snail.py +++ b/kyu_4/snail/test_snail.py @@ -1,5 +1,5 @@ """ -Test for -> Snail +Test for -> Snail. Returns the array elements arranged from outermost elements to the middle element, traveling clockwise. @@ -28,17 +28,16 @@ @allure.link(url='https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1', name='Source/Kata') class SnailTestCase(unittest.TestCase): - """ - Testing snail function - """ + """Testing snail function.""" def test_snail(self): """ - Testing 'snail' function + 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. + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing 'snail' function") From 6c815e1aba68411392b0d5a9eb2f131d963b0773 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:24:34 -0800 Subject: [PATCH 387/873] Update solution.py --- kyu_4/strings_mix/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/strings_mix/solution.py b/kyu_4/strings_mix/solution.py index 66b621badd6..bf1a7be3197 100644 --- a/kyu_4/strings_mix/solution.py +++ b/kyu_4/strings_mix/solution.py @@ -85,7 +85,7 @@ def sort_results(results: list) -> list: def get_counters(s: str) -> dict: """ Get counters. - + :param s: str :return: dict """ From cd76383a1126d58a85cfd8175c4b709f0d39c1dc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:27:26 -0800 Subject: [PATCH 388/873] Update solution.py --- kyu_4/range_extraction/solution.py | 39 ++++++++++++++++++------------ 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index 6fc40883d8e..ddae106f55f 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Range Extraction +Solution for -> Range Extraction. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,10 +8,12 @@ def solution(args: list) -> str: """ + Solution for Range Extraction problem. + Tt takes a list of integers in increasing order and returns a correctly formatted string in the range format. - :param args: - :return: + :param args: list + :return: str """ current: list = [args[0], args[0], False] result: str = '' @@ -35,30 +38,34 @@ def solution(args: list) -> str: return result -def case_3(a: int, current: list, result: str) -> str: +def case_3(a: int, + current: list, + result: str) -> str: """ - Case #3 - :param a: - :param current: - :param result: - :return: + Case #3. + + :param a: int + :param current: list + :param result: str + :return: str """ if current[1] + 1 == a: current[1] = a result += str(current[0]) if abs(current[1] - current[0]) >= 2: - result += '-' + str(current[1]) + result += f'-{str(current[1])}' elif current[0] != current[1]: - result += ',' + str(current[1]) + result += f',{str(current[1])}' return result def case_2(**kwargs) -> str: """ - Case #2 - :return: + Case #2. + + :return: str """ a: int = kwargs['a'] i: int = kwargs['i'] @@ -72,11 +79,11 @@ def case_2(**kwargs) -> str: current[2] = True if abs(current[1] - current[0]) >= 2 and i != 1: - result += str(current[0]) + '-' + str(current[1]) + ',' + result += f'{str(current[0])}-{str(current[1])},' else: - result += str(current[0]) + ',' + result += f'{str(current[0])},' if current[0] != current[1]: - result += str(current[1]) + ',' + result += f'{str(current[1])},' current[0] = a current[1] = a From 0679925de25a0488753bf3f58954e1c764b3e6dc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:28:59 -0800 Subject: [PATCH 389/873] Update permutations.py --- kyu_4/permutations/permutations.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/kyu_4/permutations/permutations.py b/kyu_4/permutations/permutations.py index 68cbdcf0c72..aab6185389c 100644 --- a/kyu_4/permutations/permutations.py +++ b/kyu_4/permutations/permutations.py @@ -1,5 +1,6 @@ """ -Solution for -. Permutations +Solution for -. Permutations. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,10 +8,14 @@ def permutations(string: str) -> list: """ + Permutation 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. + :param string: str + :return: list """ for strg in string: print(strg) From c8e5477ac7db872216a1e4ce416f5401a49be110 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:29:02 -0800 Subject: [PATCH 390/873] Update test_permutations.py --- kyu_4/permutations/test_permutations.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/permutations/test_permutations.py b/kyu_4/permutations/test_permutations.py index 04a4ffaecd6..b1ca433f5d4 100644 --- a/kyu_4/permutations/test_permutations.py +++ b/kyu_4/permutations/test_permutations.py @@ -1,5 +1,6 @@ """ -Solution for -. Permutations +Solution for -. Permutations. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,19 +29,18 @@ @pytest.mark.skip(reason="The solution is not ready") # pylint: enable-msg=R0801 class PermutationsTestCase(unittest.TestCase): - """ - Testing permutations function - """ + """Testing permutations function.""" def test_permutations(self): """ - Testing permutations function + 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. + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing permutations function") From 2737838bcb3cf319baec52683bc61188222de8a6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:31:18 -0800 Subject: [PATCH 391/873] Update solution.py ./kyu_4/strings_mix/solution.py:16:1: W293 blank line contains whitespace """ Mix function. Given two strings s1 and s2, we want to 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. :param s1: string a :param s2: string b :return: the difference between two strings """ --- kyu_4/strings_mix/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/strings_mix/solution.py b/kyu_4/strings_mix/solution.py index bf1a7be3197..e468f325812 100644 --- a/kyu_4/strings_mix/solution.py +++ b/kyu_4/strings_mix/solution.py @@ -13,7 +13,7 @@ def mix(s1: str, s2: str) -> str: """ Mix function. - + Given two strings s1 and s2, we want to visualize how different the two strings are. We will only take into account the lowercase letters (a to z). From f90c9b21e3e0fb64c3879db1dede732cb570233c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:33:25 -0800 Subject: [PATCH 392/873] Update solution.py ./kyu_4/range_extraction/solution.py:12:1: W293 blank line contains whitespace """ Solution for Range Extraction problem. Tt takes a list of integers in increasing order and returns a correctly formatted string in the range format. :param args: list :return: str """ ^ ./kyu_4/range_extraction/solution.py:41:19: W291 trailing whitespace def case_3(a: int, ^ ./kyu_4/range_extraction/solution.py:42:26: W291 trailing whitespace current: list, ^ ./kyu_4/range_extraction/solution.py:46:1: W293 blank line contains whitespace """ Case #3. :param a: int :param current: list :param result: str :return: str """ ^ ./kyu_4/range_extraction/solution.py:67:1: W293 blank line contains whitespace """ Case #2. :return: str """ --- kyu_4/range_extraction/solution.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index ddae106f55f..b39d66d20b0 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -9,7 +9,7 @@ def solution(args: list) -> str: """ Solution for Range Extraction problem. - + Tt takes a list of integers in increasing order and returns a correctly formatted string in the range format. :param args: list @@ -38,12 +38,12 @@ def solution(args: list) -> str: return result -def case_3(a: int, - current: list, +def case_3(a: int, + current: list, result: str) -> str: """ Case #3. - + :param a: int :param current: list :param result: str @@ -64,7 +64,7 @@ def case_3(a: int, def case_2(**kwargs) -> str: """ Case #2. - + :return: str """ a: int = kwargs['a'] From b367e2c516fca3543df69a2aa12c8cfd1dbd2863 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:37:07 -0800 Subject: [PATCH 393/873] Update solution.py --- kyu_4/strings_mix/solution.py | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/kyu_4/strings_mix/solution.py b/kyu_4/strings_mix/solution.py index e468f325812..589f0eb6432 100644 --- a/kyu_4/strings_mix/solution.py +++ b/kyu_4/strings_mix/solution.py @@ -33,33 +33,30 @@ def mix(s1: str, s2: str) -> str: results: list = [] for key in keys: - if ( - key in s2_results - and key in s1_results - and s1_results[key] == s2_results[key] - ): - results.append(f'=:{key * s1_results[key]}') - elif ( - key in s2_results - and key in s1_results - and s1_results[key] > s2_results[key] - or (key not in s2_results or key not in s1_results) - and key in s1_results - ): - results.append(f'1:{key * s1_results[key]}') + if key in s2_results and key in s1_results: + if s1_results[key] == s2_results[key]: + results.append(f'=:{key * s1_results[key]}') + elif s1_results[key] > s2_results[key]: + results.append(f'1:{key * s1_results[key]}') + else: + results.append(f'2:{key * s2_results[key]}') else: - results.append(f'2:{key * s2_results[key]}') + if key in s1_results: + results.append(f'1:{key * s1_results[key]}') + else: + results.append(f'2:{key * s2_results[key]}') + return '/'.join(sort_results(results)) def sort_results(results: list) -> list: """ - Sorting results. + Sorting results function. The results will be in decreasing order of their length and when they have the same length sorted in ascending lexicographic order (letters and digits - more precisely - sorted by code-point). + sorted by code-point) :param results: :return: """ From dd4c341747f76c03cb3d2fa65f12a2e826abc37f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:40:00 -0800 Subject: [PATCH 394/873] Update sudoku.py --- kyu_4/validate_sudoku_with_size/sudoku.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kyu_4/validate_sudoku_with_size/sudoku.py b/kyu_4/validate_sudoku_with_size/sudoku.py index f7ddc1d14d5..a311508e5a6 100644 --- a/kyu_4/validate_sudoku_with_size/sudoku.py +++ b/kyu_4/validate_sudoku_with_size/sudoku.py @@ -24,6 +24,11 @@ class Sudoku: """ def __init__(self, data: list): + """ + Create a new Sudoku instance. + + :param data: + """ self.__data: list = data def is_valid(self) -> bool: From 519769a93c15d34b9048d546364af3f53abc0126 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:41:03 -0800 Subject: [PATCH 395/873] Update test_mix.py --- kyu_4/strings_mix/test_mix.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/strings_mix/test_mix.py b/kyu_4/strings_mix/test_mix.py index dec95adf8cd..5a441503863 100644 --- a/kyu_4/strings_mix/test_mix.py +++ b/kyu_4/strings_mix/test_mix.py @@ -1,5 +1,6 @@ """ -Test for -> Strings Mix +Test for -> Strings Mix. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -24,12 +25,11 @@ url='https://www.codewars.com/kata/5629db57620258aa9d000014', name='Source/Kata') class MixTestCase(unittest.TestCase): - """ - Testing solution for Strings Mix problem - """ + """Testing solution for Strings Mix problem.""" + def test_smix(self): """ - Testing 'mix' function + Testing 'mix' function. Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. From d39ff04996c4028f149addcc0c909ba16e87a90f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:41:06 -0800 Subject: [PATCH 396/873] Update sudoku.py --- kyu_4/validate_sudoku_with_size/sudoku.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/validate_sudoku_with_size/sudoku.py b/kyu_4/validate_sudoku_with_size/sudoku.py index a311508e5a6..c93abcb06f9 100644 --- a/kyu_4/validate_sudoku_with_size/sudoku.py +++ b/kyu_4/validate_sudoku_with_size/sudoku.py @@ -26,7 +26,7 @@ class Sudoku: def __init__(self, data: list): """ Create a new Sudoku instance. - + :param data: """ self.__data: list = data From 224ba1142ca6377833b3ac0b51978ed5eb0cab94 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:42:55 -0800 Subject: [PATCH 397/873] Update test_solution.py --- kyu_4/range_extraction/test_solution.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_4/range_extraction/test_solution.py b/kyu_4/range_extraction/test_solution.py index e7ee7fc8465..504099ff5c7 100644 --- a/kyu_4/range_extraction/test_solution.py +++ b/kyu_4/range_extraction/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Range Extraction +Test for -> Range Extraction. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,13 @@ @allure.link(url='https://www.codewars.com/kata/51ba717bb08c1cd60f00002f', name='Source/Kata') class SolutionTestCase(unittest.TestCase): - """ - Testing solution for Range Extraction problem - """ + """Testing solution for Range Extraction problem.""" def test_solution(self): """ - Testing solution function + Testing solution function. + + :return: """ allure.dynamic.title("Testing solution function") allure.dynamic.severity(allure.severity_level.NORMAL) From 5df87a08dc8cd44ac7bef51db4868fbe8df7a05c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:44:22 -0800 Subject: [PATCH 398/873] Update test_solution.py --- kyu_4/range_extraction/test_solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/range_extraction/test_solution.py b/kyu_4/range_extraction/test_solution.py index 504099ff5c7..1827b11888c 100644 --- a/kyu_4/range_extraction/test_solution.py +++ b/kyu_4/range_extraction/test_solution.py @@ -33,7 +33,7 @@ class SolutionTestCase(unittest.TestCase): def test_solution(self): """ Testing solution function. - + :return: """ allure.dynamic.title("Testing solution function") From 12a2a4621ed4919636778cb715c4035a3e61eb36 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:48:51 -0800 Subject: [PATCH 399/873] Update test_next_bigger.py --- .../test_next_bigger.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/kyu_4/next_bigger_number_with_the_same_digits/test_next_bigger.py b/kyu_4/next_bigger_number_with_the_same_digits/test_next_bigger.py index 924c6be31c5..8f5e497334c 100644 --- a/kyu_4/next_bigger_number_with_the_same_digits/test_next_bigger.py +++ b/kyu_4/next_bigger_number_with_the_same_digits/test_next_bigger.py @@ -1,5 +1,6 @@ """ -Test for -> Next bigger number with the same digits +Test for -> Next bigger number with the same digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,12 +30,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class NextBiggerTestCase(unittest.TestCase): - """ - Testing next_bigger function - """ + """Testing next_bigger function.""" + def test_next_bigger(self): """ - Testing next_bigger function + 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: @@ -43,7 +43,8 @@ def test_next_bigger(self): 513 ==> 531 2017 ==> 2071 - If no bigger number can be composed using those digits, return -1 + If no bigger number can be composed using those digits, return -1. + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing next_bigger function") From b6f7688cb96c77ca2a505da43342cea4cf011ca7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sat, 7 Dec 2024 05:48:55 -0800 Subject: [PATCH 400/873] Update next_bigger.py --- .../next_bigger.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py index bd50df22896..ecf954949fe 100644 --- a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py +++ b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py @@ -8,10 +8,14 @@ def next_bigger(n: int) -> int: """ + Next bigger function. + A function that takes a positive integer number and returns the next bigger number formed by the same digits. - If no bigger number can be composed using those digits, return -1 + If no bigger number can be composed using those digits, return -1. + :param n: + :return: """ # 1. Starting from last digit of given number, find the first digit # which breaks the sorted ordering. Let the index of this found @@ -33,6 +37,8 @@ def next_bigger(n: int) -> int: def digit_that_breaks_ordering_index(digits: list) -> int: """ + Finds a digit that breaks ordering index. + Starting from last digit of given number, find the first digit which breaks the sorted ordering. Let the index of this found digit be 'i' and the digit be number[i]. @@ -49,6 +55,8 @@ def digit_that_breaks_ordering_index(digits: list) -> int: def next_greater_digit_index(digits: list, i: int) -> int: """ + Find next greater digit index. + Find the next greater digit in the right portion of number[i] - that is from digit at index i+1 to last digit. Let that digit be number[j] at index 'j'. From 458008075b9606ab82276f094b845359ec8d7c7a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 04:43:26 -0800 Subject: [PATCH 401/873] Update next_bigger.py kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py:39 in public function `digit_that_breaks_ordering_index`: D401: First line should be in imperative mood (perhaps 'Find', not 'Finds') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py index ecf954949fe..1dda31b556f 100644 --- a/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py +++ b/kyu_4/next_bigger_number_with_the_same_digits/next_bigger.py @@ -37,7 +37,7 @@ def next_bigger(n: int) -> int: def digit_that_breaks_ordering_index(digits: list) -> int: """ - Finds a digit that breaks ordering index. + Find a digit that breaks ordering index. Starting from last digit of given number, find the first digit which breaks the sorted ordering. Let the index of From 56f775502700d4a09eaa718cd01449707d572e6f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 04:47:26 -0800 Subject: [PATCH 402/873] Update test_warrior.py --- kyu_4/the_greatest_warrior/test_warrior.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/kyu_4/the_greatest_warrior/test_warrior.py b/kyu_4/the_greatest_warrior/test_warrior.py index c4256f1c0b0..73d0eb446ca 100644 --- a/kyu_4/the_greatest_warrior/test_warrior.py +++ b/kyu_4/the_greatest_warrior/test_warrior.py @@ -1,5 +1,6 @@ """ -Test for -> The Greatest Warrior -> test warrior +Test for -> The Greatest Warrior -> test warrior. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,13 +32,13 @@ name='Source/Kata') # pylint: enable-msg=R0801 class WarriorTestCase(unittest.TestCase): - """ - Testing Warrior class - """ + """Testing Warrior class.""" def test_warrior_tom(self): """ - Testing Warrior class >>> tom + Testing Warrior class >>> tom. + + :return: """ # pylint: disable=R0801 allure.dynamic.title("Testing Warrior class >>> tom") @@ -66,7 +67,9 @@ def test_warrior_tom(self): def test_warrior_bruce_lee(self): """ - Testing Warrior class >>> bruce_lee + Testing Warrior class >>> bruce_lee. + + :return: """ # pylint: disable=R0801 allure.dynamic.title("Testing Warrior class >>> bruce_lee") From 25323b56ed778bec2b22b4dc036f5547a8877079 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 04:47:29 -0800 Subject: [PATCH 403/873] Update warrior.py --- kyu_4/the_greatest_warrior/warrior.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/kyu_4/the_greatest_warrior/warrior.py b/kyu_4/the_greatest_warrior/warrior.py index f225b1c8666..50f9af9e7b2 100644 --- a/kyu_4/the_greatest_warrior/warrior.py +++ b/kyu_4/the_greatest_warrior/warrior.py @@ -1,5 +1,6 @@ """ -Solution for -> The Greatest Warrior +Solution for -> The Greatest Warrior. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -89,7 +90,8 @@ def __update_experience(self, experience: int): @property def level(self) -> int: """ - A warrior's level + A warrior's level. + :return: A warrior's level """ return self.__level @@ -98,7 +100,8 @@ def level(self) -> int: def rank(self) -> str: """ A warrior starts at rank "Pushover" and - can progress all the way to "Greatest" + can progress all the way to "Greatest". + :return: warrior's rank """ return self.__rank @@ -106,7 +109,8 @@ def rank(self) -> str: @property def experience(self) -> int: """ - Return experience value + Return experience value. + :return: """ return self.__experience @@ -121,7 +125,8 @@ def achievements(self) -> list: def battle(self, enemy_level: int) -> str: """ - Return message based on the result of the battle + Return message based on the result of the battle. + :param enemy_level: :return: """ From f38677dca63adab82b3a6462dfc7fc6605ea10a3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 04:49:07 -0800 Subject: [PATCH 404/873] Update warrior.py --- kyu_4/the_greatest_warrior/warrior.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/kyu_4/the_greatest_warrior/warrior.py b/kyu_4/the_greatest_warrior/warrior.py index 50f9af9e7b2..cc2ffca4546 100644 --- a/kyu_4/the_greatest_warrior/warrior.py +++ b/kyu_4/the_greatest_warrior/warrior.py @@ -48,12 +48,16 @@ def __init__(self): def __set_rank(self) -> str: """ + Set rank. + :return: warrior's experience """ return RANKS[(self.level // 10)] def __set_level(self) -> int: """ + Set level. + A warrior starts at level 1 and can progress all the way to 100. @@ -70,13 +74,14 @@ def __set_level(self) -> int: def __update_experience(self, experience: int): """ + Update expirience. + A warrior's experience is cumulative, and does not reset with each rise of level. The only exception is when the warrior reaches level 100, with which the experience stops at 10000. :return: """ - if self.level == 100: self.__experience = MAX_EXPERIENCE elif self.experience + experience > MAX_EXPERIENCE: @@ -99,6 +104,8 @@ def level(self) -> int: @property def rank(self) -> str: """ + Rank. + A warrior starts at rank "Pushover" and can progress all the way to "Greatest". @@ -118,7 +125,8 @@ def experience(self) -> int: @property def achievements(self) -> list: """ - Return achievements as a list + Return achievements as a list. + :return: """ return self.__achievements @@ -126,7 +134,7 @@ def achievements(self) -> list: def battle(self, enemy_level: int) -> str: """ Return message based on the result of the battle. - + :param enemy_level: :return: """ From 477071481c15866708f692d4a481c9f071a09c17 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 04:58:37 -0800 Subject: [PATCH 405/873] Update warrior.py --- kyu_4/the_greatest_warrior/warrior.py | 32 ++++++++++++++------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/kyu_4/the_greatest_warrior/warrior.py b/kyu_4/the_greatest_warrior/warrior.py index cc2ffca4546..113b2294067 100644 --- a/kyu_4/the_greatest_warrior/warrior.py +++ b/kyu_4/the_greatest_warrior/warrior.py @@ -37,6 +37,7 @@ class Warrior: """ def __init__(self): + """Create a new warrior instance.""" # A warrior's experience starts from 100 self.__experience = BASIC_EXPERIENCE # A warrior starts at level 1 @@ -67,14 +68,14 @@ def __set_level(self) -> int: by another 100, the warrior's level rises to the next level. - :return: + :return: int """ new_level = self.experience // BASIC_EXPERIENCE return new_level if new_level <= 100 else 100 - def __update_experience(self, experience: int): + def __update_experience(self, experience: int) -> None: """ - Update expirience. + Update experience. A warrior's experience is cumulative, and does not reset with each rise of level. The only exception @@ -82,9 +83,8 @@ def __update_experience(self, experience: int): the experience stops at 10000. :return: """ - if self.level == 100: - self.__experience = MAX_EXPERIENCE - elif self.experience + experience > MAX_EXPERIENCE: + if (self.level == 100 + or self.experience + experience > MAX_EXPERIENCE): self.__experience = MAX_EXPERIENCE else: self.__experience += experience @@ -118,7 +118,7 @@ def experience(self) -> int: """ Return experience value. - :return: + :return: int """ return self.__experience @@ -127,7 +127,7 @@ def achievements(self) -> list: """ Return achievements as a list. - :return: + :return: list """ return self.__achievements @@ -135,8 +135,8 @@ def battle(self, enemy_level: int) -> str: """ Return message based on the result of the battle. - :param enemy_level: - :return: + :param enemy_level: int + :return: str """ msg: str = '' # If an enemy level does not fall in the range of 1 to 100, @@ -174,13 +174,15 @@ def battle(self, enemy_level: int) -> str: def training(self, params: list) -> str: """ + Training method. + Training will accept an array of three elements: - the description, - the experience points your warrior earns, - and the minimum level requirement. + 1. the description. + 2. the experience points your warrior earns. + 3. the minimum level requirement. - :param params: - :return: + :param params: list + :return: str """ # If the warrior's level meets the minimum level requirement, # the warrior will receive the experience points from it and From 373599888c69c1c00ba02896ae220ac29be8fb8e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:00:08 -0800 Subject: [PATCH 406/873] Update warrior.py --- kyu_4/the_greatest_warrior/warrior.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_4/the_greatest_warrior/warrior.py b/kyu_4/the_greatest_warrior/warrior.py index 113b2294067..8189a410d56 100644 --- a/kyu_4/the_greatest_warrior/warrior.py +++ b/kyu_4/the_greatest_warrior/warrior.py @@ -32,6 +32,8 @@ class Warrior: """ + Warrior class. + A class called Warrior which calculates and keeps track of level and skills, and ranks. """ From 97c69d8bd45140d32bc1c4d0ebf0032f09db53d0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:01:35 -0800 Subject: [PATCH 407/873] Update test_sum_for_list.py --- kyu_4/sum_by_factors/test_sum_for_list.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_4/sum_by_factors/test_sum_for_list.py b/kyu_4/sum_by_factors/test_sum_for_list.py index ca05d5c0615..7083f723ee3 100644 --- a/kyu_4/sum_by_factors/test_sum_for_list.py +++ b/kyu_4/sum_by_factors/test_sum_for_list.py @@ -1,5 +1,6 @@ """ -Testing sum_for_list function +Testing sum_for_list function. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,13 +26,12 @@ url='https://www.codewars.com/kata/54d496788776e49e6b00052f', name='Source/Kata') class SumForListTestCase(unittest.TestCase): - """ - Testing sum_for_list function - """ + """Testing sum_for_list function.""" def test_sum_for_list(self): """ - Testing sum_for_list function + Testing sum_for_list function. + :return: """ # pylint: disable-msg=R0801 From 9a5a83602b5b698c5e733453bb83284a2502b7fb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:01:53 -0800 Subject: [PATCH 408/873] Update test_sum_for_list.py --- kyu_4/sum_by_factors/test_sum_for_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_4/sum_by_factors/test_sum_for_list.py b/kyu_4/sum_by_factors/test_sum_for_list.py index 7083f723ee3..bd31fdc46dd 100644 --- a/kyu_4/sum_by_factors/test_sum_for_list.py +++ b/kyu_4/sum_by_factors/test_sum_for_list.py @@ -31,7 +31,7 @@ class SumForListTestCase(unittest.TestCase): def test_sum_for_list(self): """ Testing sum_for_list function. - + :return: """ # pylint: disable-msg=R0801 From 0d2b08c522230c782758781370195bc3272500a2 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:06:29 -0800 Subject: [PATCH 409/873] Update format_duration.py --- .../format_duration.py | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 4706fb41930..c1c41e583de 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -14,35 +14,9 @@ def format_duration(seconds: int) -> str: A function which formats a duration, given as a number of seconds, in a human-friendly way. - - The resulting expression is made of components like 4 seconds, - 1 year, etc. In general, a positive integer and one of the - valid units of time, separated by a space. The unit of time - is used in plural if the integer is greater than 1. - - The components are separated by a comma and a space (", "). - Except the last component, which is separated by " and ", just - like it would be written in English. - - A more significant units of time will occur before than a least - significant one. Therefore, 1 second and 1 year is not correct, - but 1 year and 1 second is. - - Different components have different unit of times. So there is - not repeated units like in 5 seconds and 1 second. - - A component will not appear at all if its value happens to be zero. - Hence, 1 minute and 0 seconds is not valid, but it should be just 1 minute. - - A unit of time must be used "as much as possible". It means that the - function should not return 61 seconds, but 1 minute and 1 second instead. - Formally, the duration specified by of a component must not be greater than - any valid more significant unit of time. - :param seconds: int :return: str """ - if seconds == 0: return 'now' From 25af3b2ae85e63c539606d65c6fe6eed911aa9b3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:09:30 -0800 Subject: [PATCH 410/873] Update valid_solution.py --- kyu_4/sudoku_solution_validator/valid_solution.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/kyu_4/sudoku_solution_validator/valid_solution.py b/kyu_4/sudoku_solution_validator/valid_solution.py index 84e02f9ff21..3245ade835d 100644 --- a/kyu_4/sudoku_solution_validator/valid_solution.py +++ b/kyu_4/sudoku_solution_validator/valid_solution.py @@ -8,11 +8,13 @@ def valid_solution(board: list) -> bool: """ + Sudoku solution validator. + 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 - :param board: - :return: + and returns true if it is a valid solution, or false otherwise. + :param board: list + :return: bool """ return all([check_horizontally(board), check_vertically(board), @@ -40,7 +42,6 @@ def check_vertically(board: list) -> bool: :return: """ i: int = 0 - while i < 9: col: list = [] for row in board: @@ -56,8 +57,8 @@ def check_sub_grids(board: list) -> bool: Test each of the nine 3x3 sub-grids. (also known as blocks) - :param board: - :return: + :param board: list + :return: bool """ sub_grids: list = [ board[0][:3] + board[1][:3] + board[2][:3], From e53e400622a5788e796805d454f351d0b6844a33 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:10:34 -0800 Subject: [PATCH 411/873] Update valid_solution.py --- kyu_4/sudoku_solution_validator/valid_solution.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_4/sudoku_solution_validator/valid_solution.py b/kyu_4/sudoku_solution_validator/valid_solution.py index 3245ade835d..e4c27c50b56 100644 --- a/kyu_4/sudoku_solution_validator/valid_solution.py +++ b/kyu_4/sudoku_solution_validator/valid_solution.py @@ -10,8 +10,7 @@ def valid_solution(board: list) -> bool: """ Sudoku solution validator. - A function validSolution/ValidateSolution/valid_solution() - that accepts a 2D array representing a Sudoku board, + A function that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. :param board: list :return: bool From 5f996168716443a040ea83f369ea13166005c92f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:11:55 -0800 Subject: [PATCH 412/873] Update sum_of_intervals.py --- kyu_4/sum_of_intervals/sum_of_intervals.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kyu_4/sum_of_intervals/sum_of_intervals.py b/kyu_4/sum_of_intervals/sum_of_intervals.py index 444bc889d34..23b425ca703 100644 --- a/kyu_4/sum_of_intervals/sum_of_intervals.py +++ b/kyu_4/sum_of_intervals/sum_of_intervals.py @@ -8,9 +8,10 @@ def sum_of_intervals(intervals: list) -> int: """ - Accepts an array of intervals, and returns - the sum of all the interval lengths. + Sum of intervals. + Accept an array of intervals, and returns + the sum of all the interval lengths. Overlapping intervals should only be counted once. :param intervals: list :return: int From fc29afe78004911f8e98c1f84631dbf8aee32f2a Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:13:28 -0800 Subject: [PATCH 413/873] Update sum_of_intervals.py --- kyu_4/sum_of_intervals/sum_of_intervals.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_4/sum_of_intervals/sum_of_intervals.py b/kyu_4/sum_of_intervals/sum_of_intervals.py index 23b425ca703..25693462476 100644 --- a/kyu_4/sum_of_intervals/sum_of_intervals.py +++ b/kyu_4/sum_of_intervals/sum_of_intervals.py @@ -16,7 +16,6 @@ def sum_of_intervals(intervals: list) -> int: :param intervals: list :return: int """ - intervals = remove_overlaps(intervals) results: list = [(i[1] - i[0]) for i in intervals] return sum(results) From bb1a102ecb5e4f234c3dd61e6539295cf7191922 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:48:35 -0800 Subject: [PATCH 414/873] Create pydocstyle_kyu5.yml --- .github/workflows/pydocstyle_kyu5.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu5.yml diff --git a/.github/workflows/pydocstyle_kyu5.yml b/.github/workflows/pydocstyle_kyu5.yml new file mode 100644 index 00000000000..6b00fdedc81 --- /dev/null +++ b/.github/workflows/pydocstyle_kyu5.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle 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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --version + - name: Doc style checking with pydocstyle + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_5 From 6f05de26448898816436aa97311f9f140d7f09dc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 05:54:01 -0800 Subject: [PATCH 415/873] Alphabet wars - nuclear strike --- .../alphabet_wars_nuclear_strike/__init__.py | 1 + .../alphabet_war.py | 21 +++++++++++-------- .../test_alphabet_war.py | 9 ++++---- 3 files changed, 17 insertions(+), 14 deletions(-) diff --git a/kyu_5/alphabet_wars_nuclear_strike/__init__.py b/kyu_5/alphabet_wars_nuclear_strike/__init__.py index e69de29bb2d..4c7eae58550 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/__init__.py +++ b/kyu_5/alphabet_wars_nuclear_strike/__init__.py @@ -0,0 +1 @@ +"""Alphabet wars - nuclear strike package.""" diff --git a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py index 884fb301213..5f1fe2d8f19 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py @@ -1,5 +1,6 @@ """ -Solution for -> Alphabet wars - nuclear strike +Solution for -> Alphabet wars - nuclear strike. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def alphabet_war(battlefield: str) -> str: """ + Alphabet war func. + A function that accepts battlefield string and returns letters that survived the nuclear strike. :param battlefield: @@ -17,13 +20,13 @@ def alphabet_war(battlefield: str) -> str: return ''.join(char for char in battlefield if char.isalpha()) result: str = clean_unsheltered(battlefield) - result = clean_battlefield(result) - return result + return clean_battlefield(result) def clean_unsheltered(battlefield: str) -> str: """ - Clean letters outside the shelter + Clean letters outside the shelter. + :param battlefield: str :return: str """ @@ -39,15 +42,16 @@ def clean_unsheltered(battlefield: str) -> str: result += char else: sharp = char.count('#') - char = char[0:char.index(']') + 1] - result += '[' + char + ('#' * sharp) + char = char[:char.index(']') + 1] + result += f'[{char}' + '#' * sharp return result def clean_battlefield(battlefield: str) -> str: """ - Clean the battlefield and return only survived letters + Clean the battlefield and return only survived letters. + :param battlefield: str :return: str """ @@ -80,5 +84,4 @@ def clean_battlefield(battlefield: str) -> str: del result[i] break - answer: str = ''.join(char for char in reversed(temp)) - return answer + return ''.join(char for char in reversed(temp)) diff --git a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py index 8ae7af8c3b5..effd0553072 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py @@ -1,5 +1,6 @@ """ -Test for -> Alphabet wars - nuclear strike +Test for -> Alphabet wars - nuclear strike. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -35,13 +36,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class AlphabetWarTestCase(unittest.TestCase): - """ - Testing alphabet_war function - """ + """Testing alphabet_war function.""" def test_alphabet_war(self): """ - Testing alphabet_war function + Testing alphabet_war function. Introduction There is a war and nobody knows - the alphabet war! From 8179e73deee0bd42bbcccbc4d42a63e24050d5d7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:41:25 -0800 Subject: [PATCH 416/873] Count IP Addresses --- kyu_5/count_ip_addresses/__init__.py | 1 + kyu_5/count_ip_addresses/ips_between.py | 16 ++++++++-------- kyu_5/count_ip_addresses/test_ips_between.py | 9 ++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/kyu_5/count_ip_addresses/__init__.py b/kyu_5/count_ip_addresses/__init__.py index e69de29bb2d..55f686ca14d 100644 --- a/kyu_5/count_ip_addresses/__init__.py +++ b/kyu_5/count_ip_addresses/__init__.py @@ -0,0 +1 @@ +"""Count IP Addresses.""" diff --git a/kyu_5/count_ip_addresses/ips_between.py b/kyu_5/count_ip_addresses/ips_between.py index 50217783820..23b1f3f395d 100644 --- a/kyu_5/count_ip_addresses/ips_between.py +++ b/kyu_5/count_ip_addresses/ips_between.py @@ -1,5 +1,6 @@ """ -Solution for -> Count IP Addresses +Solution for -> Count IP Addresses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,19 +8,16 @@ def ips_between(start: str, end: str) -> int: """ + Find IPs between 2 addresses. + A function that receives two IPv4 addresses, and returns the number of addresses between them (including the first one, excluding the last one). - - All inputs will be valid IPv4 addresses in - the form of strings. The last address will - always be greater than the first one. :param start: str :param end: str :return: int """ - ip_start: list = [int(a) for a in start.split('.')] ip_end: list = [int(b) for b in end.split('.')] ips = zip(ip_start, ip_end) @@ -33,7 +31,8 @@ def ips_between(start: str, end: str) -> int: def calc_ip_range(ip, ip_id, ips_range) -> None: """ - Calculate range + Calculate IPs range. + :param ip: :param ip_id: :param ips_range: @@ -51,7 +50,8 @@ def calc_ip_range(ip, ip_id, ips_range) -> None: def calc_result(ips_range) -> int: """ - Calculate result + Calculate result. + :param ips_range: :return: int """ diff --git a/kyu_5/count_ip_addresses/test_ips_between.py b/kyu_5/count_ip_addresses/test_ips_between.py index 8460b7e1773..b53bec5d459 100644 --- a/kyu_5/count_ip_addresses/test_ips_between.py +++ b/kyu_5/count_ip_addresses/test_ips_between.py @@ -1,5 +1,6 @@ """ -Test for -> Count IP Addresses +Test for -> Count IP Addresses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,13 +30,11 @@ @pytest.mark.skip(reason="The solution is not ready") # pylint: enable-msg=R0801 class IpsBetweenTestCase(unittest.TestCase): - """ - Testing ips_between function - """ + """Testing ips_between function.""" def test_ips_between(self): """ - Testing ips_between function + Testing ips_between function. Testing a function that receives two IPv4 addresses, and returns the number of addresses between them From 25f4409f6bba59bf73e8cb6770ca33ee9617333c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:49:14 -0800 Subject: [PATCH 417/873] Did I Finish my Sudoku? Did I Finish my Sudoku? --- kyu_5/did_i_finish_my_sudoku/__init__.py | 1 + kyu_5/did_i_finish_my_sudoku/is_sudoku_done.py | 5 ++++- kyu_5/did_i_finish_my_sudoku/sudoku_by_column.py | 12 ++++++------ kyu_5/did_i_finish_my_sudoku/sudoku_by_regions.py | 10 ++++++---- kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py | 6 ++++-- .../test_did_i_finish_sudoku.py | 9 ++++----- 6 files changed, 25 insertions(+), 18 deletions(-) diff --git a/kyu_5/did_i_finish_my_sudoku/__init__.py b/kyu_5/did_i_finish_my_sudoku/__init__.py index e69de29bb2d..2f0663f4a91 100644 --- a/kyu_5/did_i_finish_my_sudoku/__init__.py +++ b/kyu_5/did_i_finish_my_sudoku/__init__.py @@ -0,0 +1 @@ +"""Did I Finish my Sudoku.""" diff --git a/kyu_5/did_i_finish_my_sudoku/is_sudoku_done.py b/kyu_5/did_i_finish_my_sudoku/is_sudoku_done.py index b69153bef7a..9f34a675f3b 100644 --- a/kyu_5/did_i_finish_my_sudoku/is_sudoku_done.py +++ b/kyu_5/did_i_finish_my_sudoku/is_sudoku_done.py @@ -1,5 +1,6 @@ """ -Solution for -> Did I Finish my Sudoku? +Solution for -> Did I Finish my Sudoku?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -14,6 +15,8 @@ def done_or_not(board: list) -> str: """ + Done or Not. + return 'Finished!' or return 'Try again!' diff --git a/kyu_5/did_i_finish_my_sudoku/sudoku_by_column.py b/kyu_5/did_i_finish_my_sudoku/sudoku_by_column.py index 1a2e0f52962..9dd3618c959 100644 --- a/kyu_5/did_i_finish_my_sudoku/sudoku_by_column.py +++ b/kyu_5/did_i_finish_my_sudoku/sudoku_by_column.py @@ -1,5 +1,6 @@ """ -Assert Sudoku by column +Assert Sudoku by column. + Helper method for Did I Finish my Sudoku? Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -8,16 +9,15 @@ def assert_sudoku_by_column(board: list) -> bool: """ - Assert Sudoku by column + Assert Sudoku by column. + :param board: list :return: bool """ row_length: int = len(board[0]) - for i in range(0, row_length): - col = set() - for row in board: - col.add(row[i]) + for i in range(row_length): + col: set = {row[i] for row in board} if len(col) != row_length: return False diff --git a/kyu_5/did_i_finish_my_sudoku/sudoku_by_regions.py b/kyu_5/did_i_finish_my_sudoku/sudoku_by_regions.py index 9e4f6b28260..9ff6741e854 100644 --- a/kyu_5/did_i_finish_my_sudoku/sudoku_by_regions.py +++ b/kyu_5/did_i_finish_my_sudoku/sudoku_by_regions.py @@ -1,5 +1,6 @@ """ -Assert Sudoku by region +Assert Sudoku by region. + Helper method for Did I Finish my Sudoku? Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -10,9 +11,10 @@ def assert_sudoku_by_region(board: list) -> bool: """ - Assert Sudoku by region - :param board: Sudoku list - :return: boolean value (is Sudoku done or not) + Assert Sudoku by region. + + :param board: list + :return: boolean """ row_length: int = len(board[0]) step: int = 0 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 fe1a30f09ac..e7254e590ff 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 @@ -1,5 +1,6 @@ """ -Assert Sudoku by row +Assert Sudoku by row. + Helper method for Did I Finish my Sudoku? Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -8,7 +9,8 @@ def assert_sudoku_by_row(board: list) -> bool: """ - Assert Sudoku by row + Assert Sudoku by row. + :param board: list :return: bool """ diff --git a/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py b/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py index 41a277c72a4..7abd62c6d7e 100644 --- a/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py +++ b/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py @@ -1,5 +1,6 @@ """ -Test for -> Did I Finish my Sudoku? +Test for -> Did I Finish my Sudoku?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -35,13 +36,11 @@ name='Source/Kata') # pylint: enable=R0801 class DidIFinishedSudokuTestCase(unittest.TestCase): - """ - Testing done_or_not function - """ + """Testing done_or_not function.""" def test_done_or_not(self): """ - Testing done_or_not function + 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 From 734f1d2b5810e8734c20f5feeb93b648f9db0b35 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:52:20 -0800 Subject: [PATCH 418/873] Diophantine Equation --- kyu_5/diophantine_equation/__init__.py | 1 + kyu_5/diophantine_equation/solution.py | 7 ++++++- kyu_5/diophantine_equation/test_solution.py | 19 +++++++++++-------- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/kyu_5/diophantine_equation/__init__.py b/kyu_5/diophantine_equation/__init__.py index e69de29bb2d..c37009fd411 100644 --- a/kyu_5/diophantine_equation/__init__.py +++ b/kyu_5/diophantine_equation/__init__.py @@ -0,0 +1 @@ +"""Diophantine Equation.""" diff --git a/kyu_5/diophantine_equation/solution.py b/kyu_5/diophantine_equation/solution.py index 28da02f352d..b3d0ff728be 100644 --- a/kyu_5/diophantine_equation/solution.py +++ b/kyu_5/diophantine_equation/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Diophantine Equation +Solution for -> Diophantine Equation. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,12 @@ def sol_equa(n: int) -> list: """ + Diophantine Equation solution. + Finds all integers x, y (x >= 0, y >= 0) solutions of a diophantine equation of the form x2 - 4 * y2 = n + :param n: int + :return: list """ result: list = [] diff --git a/kyu_5/diophantine_equation/test_solution.py b/kyu_5/diophantine_equation/test_solution.py index 28814cfc4f4..c3d4577021e 100644 --- a/kyu_5/diophantine_equation/test_solution.py +++ b/kyu_5/diophantine_equation/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Diophantine Equation +Test for -> Diophantine Equation. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,12 @@ name='Source/Kata') @pytest.mark.skip(reason="The solution is not ready") class SolutionTestCase(unittest.TestCase): - """ - Testing sol_equa function - """ + """Testing sol_equa function.""" def test_solution_basic(self): """ - Testing using basic test data + Testing using basic test data. + :return: """ self.assertEqual(sol_equa(5), [[3, 1]]) @@ -45,7 +45,8 @@ def test_solution_basic(self): def test_solution_medium(self): """ - Testing using medium test data + Testing using medium test data. + :return: """ self.assertEqual(sol_equa(9001), [[4501, 2250]]) @@ -69,7 +70,8 @@ def test_solution_medium(self): def test_solution_big(self): """ - Testing using big test data + Testing using big test data. + :return: """ self.assertEqual(sol_equa(900000), [[112502, 56249], @@ -107,7 +109,8 @@ def test_solution_big(self): def test_solution_empty(self): """ - Testing using empty test data + Testing using empty test data. + :return: """ self.assertEqual(sol_equa(90002), []) From 18859f6a3fbee83dad9288c02134c43489e93347 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:54:56 -0800 Subject: [PATCH 419/873] Directions Reduction --- kyu_5/directions_reduction/__init__.py | 1 + kyu_5/directions_reduction/directions_reduction.py | 9 +++++++-- .../directions_reduction/test_directions_reduction.py | 11 ++++++----- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/kyu_5/directions_reduction/__init__.py b/kyu_5/directions_reduction/__init__.py index e69de29bb2d..add545f9319 100644 --- a/kyu_5/directions_reduction/__init__.py +++ b/kyu_5/directions_reduction/__init__.py @@ -0,0 +1 @@ +"""Directions Reduction.""" diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index eac39edb5eb..7cac5a29778 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -1,5 +1,6 @@ """ -Solution for -> Directions Reduction +Solution for -> Directions Reduction. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -13,6 +14,8 @@ def dir_reduc(arr: list) -> list: """ + Directions Reduction. + 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). @@ -34,6 +37,7 @@ def dir_reduc(arr: list) -> list: def check_pairs(arr: list) -> bool: """ Check conditions for pairs. + Return False if any pairs were removed. Return True if there was nothing to remove. :param arr: list @@ -48,7 +52,8 @@ def check_pairs(arr: list) -> bool: def del_directions(i: int, arr: list) -> None: """ - Remove directions from the list + Remove directions from the list. + :param i: int :param arr:list :return: None diff --git a/kyu_5/directions_reduction/test_directions_reduction.py b/kyu_5/directions_reduction/test_directions_reduction.py index c3b0a953129..b55d0d1837a 100644 --- a/kyu_5/directions_reduction/test_directions_reduction.py +++ b/kyu_5/directions_reduction/test_directions_reduction.py @@ -1,5 +1,6 @@ """ -Test for -> Directions Reduction +Test for -> Directions Reduction. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,12 +27,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DirectionsReductionTestCase(unittest.TestCase): - """ - Testing dir_reduc function - """ + """Testing dir_reduc function.""" def test_directions_reduction(self): """ + dir_reduc function test suite. + 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). @@ -54,7 +55,7 @@ def test_directions_reduction(self): '' '

Test Description:

' - "

Test a function dirReduc which will take an array of " + "

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).

") # pylint: enable-msg=R0801 From fc0c10d131f582cdf230f177ad0f21a33d5cc57b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:57:19 -0800 Subject: [PATCH 420/873] Extract the domain name from a URL --- kyu_5/extract_the_domain_name_from_url/__init__.py | 1 + .../extract_domain_from_url.py | 6 ++++-- .../extract_the_domain_name_from_url/test_domain_name.py | 9 +++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/kyu_5/extract_the_domain_name_from_url/__init__.py b/kyu_5/extract_the_domain_name_from_url/__init__.py index e69de29bb2d..07abd0fe9f6 100644 --- a/kyu_5/extract_the_domain_name_from_url/__init__.py +++ b/kyu_5/extract_the_domain_name_from_url/__init__.py @@ -0,0 +1 @@ +"""Extract the domain name from a URL.""" diff --git a/kyu_5/extract_the_domain_name_from_url/extract_domain_from_url.py b/kyu_5/extract_the_domain_name_from_url/extract_domain_from_url.py index 3a55382fc74..bb3ddadee43 100644 --- a/kyu_5/extract_the_domain_name_from_url/extract_domain_from_url.py +++ b/kyu_5/extract_the_domain_name_from_url/extract_domain_from_url.py @@ -1,5 +1,6 @@ """ -Extract the domain name from a URL +Extract the domain name from a URL. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,9 +8,10 @@ def domain_name(url: str) -> str: """ + Domain name from URL. + Parses out just the domain name and returns it as a string. - :param url: URL as a string :return: domain name as a string """ diff --git a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py index 8b5058b0bff..67fe5a145ce 100644 --- a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py +++ b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py @@ -1,5 +1,6 @@ """ -Assert that 'domain_name' function +Assert that 'domain_name' function. + returns domain name from given URL string. Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -34,12 +35,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DomainNameTestCase(unittest.TestCase): - """ - Testing domain_name function - """ + """Testing domain_name function.""" def test_domain_name(self): """ + domain_name function testing. + Assert that 'domain_name' function returns domain name from given URL string. :return: From 9c5cdebf61f485e6572fcdc60fac7cfa6220f500 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 20:58:08 -0800 Subject: [PATCH 421/873] Factorial decomposition --- kyu_5/factorial_decomposition/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_5/factorial_decomposition/__init__.py b/kyu_5/factorial_decomposition/__init__.py index e69de29bb2d..efd8001fa41 100644 --- a/kyu_5/factorial_decomposition/__init__.py +++ b/kyu_5/factorial_decomposition/__init__.py @@ -0,0 +1 @@ +"""Factorial decomposition.""" From f6f7cc9a29adaa5d776ee8ba1442cb5bc1753474 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Sun, 8 Dec 2024 21:00:24 -0800 Subject: [PATCH 422/873] Fibonacci Streaming --- kyu_5/fibonacci_streaming/__init__.py | 1 + kyu_5/fibonacci_streaming/all_fibonacci_numbers.py | 5 ++++- kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py | 9 ++++----- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/kyu_5/fibonacci_streaming/__init__.py b/kyu_5/fibonacci_streaming/__init__.py index e69de29bb2d..62033425332 100644 --- a/kyu_5/fibonacci_streaming/__init__.py +++ b/kyu_5/fibonacci_streaming/__init__.py @@ -0,0 +1 @@ +"""Fibonacci Streaming.""" diff --git a/kyu_5/fibonacci_streaming/all_fibonacci_numbers.py b/kyu_5/fibonacci_streaming/all_fibonacci_numbers.py index 6c0eae593d4..c3edc971c1a 100644 --- a/kyu_5/fibonacci_streaming/all_fibonacci_numbers.py +++ b/kyu_5/fibonacci_streaming/all_fibonacci_numbers.py @@ -1,5 +1,6 @@ """ -Solution for -> Fibonacci Streaming +Solution for -> Fibonacci Streaming. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def all_fibonacci_numbers(): """ + All Fibonacci numbers. + A utility method that generates an infinite sized, sequential IntStream (in Python generator) which contains all the numbers in a fibonacci sequence. diff --git a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py index 7e238d4faa1..cfeec516747 100644 --- a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py +++ b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py @@ -1,5 +1,6 @@ """ -Test for -> Fibonacci Streaming +Test for -> Fibonacci Streaming. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class AllFibonacciNumbersTestCase(unittest.TestCase): - """ - Testing all_fibonacci_numbers function - """ + """Testing all_fibonacci_numbers function.""" def test_all_fibonacci_numbers(self): """ - Testing all_fibonacci_numbers function + Testing all_fibonacci_numbers function. You're going to provide a needy programmer a utility method that generates an infinite sized, From a21ceaa1cd7eea5fcd5f1b840bf5efc62054a67e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 18:55:56 -0800 Subject: [PATCH 423/873] Update directions_reduction.py --- kyu_5/directions_reduction/directions_reduction.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index 7cac5a29778..6052299b272 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -22,7 +22,6 @@ def dir_reduc(arr: list) -> list: The Haskell version takes a list of directions with data Direction = North | East | West | South. - :param arr: list :return: list """ From fdc161eeceff9c3665ab4c84cedd88ce92d15eeb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:13:45 -0800 Subject: [PATCH 424/873] Update directions_reduction.py --- kyu_5/directions_reduction/directions_reduction.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index 6052299b272..d1a103f4e39 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -52,7 +52,6 @@ def check_pairs(arr: list) -> bool: def del_directions(i: int, arr: list) -> None: """ Remove directions from the list. - :param i: int :param arr:list :return: None From 0fba6c47c043107c916fb6a4eca0d1f11b69279d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:15:21 -0800 Subject: [PATCH 425/873] Update directions_reduction.py --- kyu_5/directions_reduction/directions_reduction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index d1a103f4e39..6052299b272 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -52,6 +52,7 @@ def check_pairs(arr: list) -> bool: def del_directions(i: int, arr: list) -> None: """ Remove directions from the list. + :param i: int :param arr:list :return: None From 615c0d070043e333a828fc107eec2d9433dca085 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:17:39 -0800 Subject: [PATCH 426/873] Update directions_reduction.py --- kyu_5/directions_reduction/directions_reduction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index 6052299b272..43268d79773 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -51,7 +51,7 @@ def check_pairs(arr: list) -> bool: def del_directions(i: int, arr: list) -> None: """ - Remove directions from the list. + Remove directions from the list of direction. :param i: int :param arr:list From d06617dcb397ac95024229c0ad381b8012b58ee1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:20:14 -0800 Subject: [PATCH 427/873] Update directions_reduction.py --- kyu_5/directions_reduction/directions_reduction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/directions_reduction/directions_reduction.py b/kyu_5/directions_reduction/directions_reduction.py index 43268d79773..8506ce1b34a 100644 --- a/kyu_5/directions_reduction/directions_reduction.py +++ b/kyu_5/directions_reduction/directions_reduction.py @@ -54,7 +54,7 @@ def del_directions(i: int, arr: list) -> None: Remove directions from the list of direction. :param i: int - :param arr:list + :param arr: list :return: None """ del arr[i + 1] From 124c8f4dbbc5058bcb5ce409a6e287c5dcea1c76 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:25:34 -0800 Subject: [PATCH 428/873] Find the safest places in town --- .../__init__.py | 1 + .../find_the_safest_places_in_town/advice.py | 17 +++++++---- .../print_agents.py | 7 +++-- .../test_advice.py | 29 +++++++++---------- 4 files changed, 32 insertions(+), 22 deletions(-) diff --git a/kyu_5/find_the_safest_places_in_town/__init__.py b/kyu_5/find_the_safest_places_in_town/__init__.py index e69de29bb2d..52a681bc3f9 100644 --- a/kyu_5/find_the_safest_places_in_town/__init__.py +++ b/kyu_5/find_the_safest_places_in_town/__init__.py @@ -0,0 +1 @@ +"""Find the safest places in town.""" diff --git a/kyu_5/find_the_safest_places_in_town/advice.py b/kyu_5/find_the_safest_places_in_town/advice.py index f0a973a4201..57e0475987b 100644 --- a/kyu_5/find_the_safest_places_in_town/advice.py +++ b/kyu_5/find_the_safest_places_in_town/advice.py @@ -1,5 +1,6 @@ """ -Solution for -> Find the safest places in town +Solution for -> Find the safest places in town. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,26 +8,30 @@ def create_city_map(n: int) -> set: """ - Generate city map with coordinates + Generate city map with coordinates. + :param:n defines the size of the city that Bassi needs to hide in :return:set """ - return set((row, col) for row in range(0, n) for col in range(0, n)) + return {(row, col) for row in range(n) for col in range(n)} def agents_cleanup(agents, n) -> set: """ Remove all agents that are outside of the city boundaries. + If agent coordinates are outside of the map, they are simply not considered. :param agents: array of agent coordinates :param n: defines the size of the city that Bassi needs to hide in :return: """ - return set(agent for agent in agents if agent[0] < n and agent[1] < n) + return {agent for agent in agents if agent[0] < n and agent[1] < n} def city_map_processing(city: set, agents: set) -> None: """ + Processing city map. + :param city: the full city map (set) :param agents: is an set of agent coordinates. :return: @@ -47,6 +52,8 @@ def city_map_processing(city: set, agents: set) -> None: def advice(agents: set, n: int) -> list: """ + advice function. + The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents. Edge cases @@ -69,7 +76,7 @@ def advice(agents: set, n: int) -> list: # If there is an agent on every grid cell, there is no safe space, # so return an empty list - if len(agents) == n * n: + if len(agents) == n ** 2: return [] # If there are no agents, then every cell is a safe spaces, diff --git a/kyu_5/find_the_safest_places_in_town/print_agents.py b/kyu_5/find_the_safest_places_in_town/print_agents.py index 261598d0315..4706414d012 100644 --- a/kyu_5/find_the_safest_places_in_town/print_agents.py +++ b/kyu_5/find_the_safest_places_in_town/print_agents.py @@ -1,5 +1,6 @@ """ Prints city map with agents. + Use for debug purposes only. Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -8,6 +9,8 @@ def print_map(agents: list, digit: int, expected: list) -> None: """ + Print map. + Use for debug purposes only. Prints city map with agents (*) and expected results (longest distance as +) on it. @@ -21,9 +24,9 @@ def print_map(agents: list, digit: int, expected: list) -> None: agent: str = '-|' longest: str = '+|' - for col in range(0, digit): + for col in range(digit): temp = "|" - for row in range(0, digit): + for row in range(digit): if (row, col) in agents: temp += agent elif (row, col) in expected: 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 2df79d7ea8e..29f74a3c193 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 @@ -1,5 +1,6 @@ """ -Testing advice and all related help functions +Testing advice and all related help functions. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,16 +27,14 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FirstAdviceTestCase(unittest.TestCase): - """ - Testing advice and all related help functions - """ + """Testing advice and all related help functions.""" def test_create_city_map(self): """ - 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. + Testing a function named create_city_map. + 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: """ @@ -68,11 +67,11 @@ def test_create_city_map(self): def test_agents_cleanup(self): """ - 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. + Testing a function named agents_cleanup. + 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: """ @@ -111,11 +110,11 @@ def test_agents_cleanup(self): def test_first_non_repeating_letter(self): """ - 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. + Testing a function named advice(agents, n). + 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. :return: From 4baacec9c2291c46a2f190911e1c858a301f7ac7 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:29:13 -0800 Subject: [PATCH 429/873] Find the smallest --- kyu_5/find_the_smallest/__init__.py | 1 + kyu_5/find_the_smallest/solution.py | 17 ++++++++++------- kyu_5/find_the_smallest/test_smallest.py | 13 +++++++------ 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/kyu_5/find_the_smallest/__init__.py b/kyu_5/find_the_smallest/__init__.py index e69de29bb2d..cc9b55ae4b4 100644 --- a/kyu_5/find_the_smallest/__init__.py +++ b/kyu_5/find_the_smallest/__init__.py @@ -0,0 +1 @@ +"""Find the smallest.""" diff --git a/kyu_5/find_the_smallest/solution.py b/kyu_5/find_the_smallest/solution.py index c2559e93817..b1bafd7bcae 100644 --- a/kyu_5/find_the_smallest/solution.py +++ b/kyu_5/find_the_smallest/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Find the smallest +Solution for -> Find the smallest. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,17 +8,18 @@ def get_min_digit(digits: list) -> int: """ - Find a min + Find min digit. + :param digits: list :return: int """ - min_digit = min(digits) - return min_digit + return min(digits) def concat_new_n(digits: list, min_digit: int, min_index: int) -> list: """ - Find new n + Find new n. + :param digits: list :param min_digit: int :param min_index: int @@ -33,7 +35,7 @@ def concat_new_n(digits: list, min_digit: int, min_index: int) -> list: del digits[min_index] else: while digits[min_index] == 0: - if min_index - 1 >= 0: + if min_index >= 1: min_index -= 1 else: break @@ -58,6 +60,8 @@ def concat_new_n(digits: list, min_digit: int, min_index: int) -> list: def smallest(n: int) -> list: """ + smallest function. + Return an array or a tuple or a string depending on the language (see "Sample Tests") with: @@ -72,7 +76,6 @@ def smallest(n: int) -> list: :return: an array with: smallest number, index, digit """ digits: list = [int(char) for char in str(n)] - min_digit = get_min_digit(digits) min_index = ''.join([str(d) for d in digits]).rindex(str(min_digit)) diff --git a/kyu_5/find_the_smallest/test_smallest.py b/kyu_5/find_the_smallest/test_smallest.py index 8aeb9a42501..7f93e597a14 100644 --- a/kyu_5/find_the_smallest/test_smallest.py +++ b/kyu_5/find_the_smallest/test_smallest.py @@ -1,5 +1,6 @@ """ -Test for -> Find the smallest +Test for -> Find the smallest. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,14 +28,14 @@ @pytest.mark.skip(reason="The solution is not ready") # pylint: enable-msg=R0801 class FindSmallestTestCase(unittest.TestCase): - """ - Testing smallest function - """ + """Testing smallest function.""" def test_smallest(self): """ - Test a function `smallest` which will return an array or a tuple or a string - depending on the language (see "Sample Tests"). + Testing smallest function with various test data. + + Test a function `smallest` which will return an array or a + tuple or a string depending on the language (see "Sample Tests"). :return: """ # pylint: disable-msg=R0801 From 37d48ff599393d7728e0a85591607742e8c97cfe Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:32:37 -0800 Subject: [PATCH 430/873] First non-repeating character --- kyu_5/first_non_repeating_character/__init__.py | 1 + .../first_non_repeating_letter.py | 8 +++++--- .../test_first_non_repeating_letter.py | 12 ++++++------ 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/kyu_5/first_non_repeating_character/__init__.py b/kyu_5/first_non_repeating_character/__init__.py index e69de29bb2d..e6c548510eb 100644 --- a/kyu_5/first_non_repeating_character/__init__.py +++ b/kyu_5/first_non_repeating_character/__init__.py @@ -0,0 +1 @@ +"""First non-repeating character.""" diff --git a/kyu_5/first_non_repeating_character/first_non_repeating_letter.py b/kyu_5/first_non_repeating_character/first_non_repeating_letter.py index ed031c912af..b9f7e4c1522 100644 --- a/kyu_5/first_non_repeating_character/first_non_repeating_letter.py +++ b/kyu_5/first_non_repeating_character/first_non_repeating_letter.py @@ -1,5 +1,6 @@ """ -Solution for -> First non-repeating character +Solution for -> First non-repeating character. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,9 @@ def first_non_repeating_letter(string: str) -> str: """ - A function named first_non_repeating_letter that - takes a string input, and returns the first + A function named first_non_repeating_letter. + + The function takes a string input, and returns the first character that is not repeated anywhere in the string. :param string: str :return: str diff --git a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py index ffafcf755cd..6f1e19e6748 100644 --- a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py +++ b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py @@ -1,5 +1,6 @@ """ -Solution for -> First non-repeating character +Solution for -> First non-repeating character. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,14 +30,13 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FirstNonRepeatingLetterTestCase(unittest.TestCase): - """ - Testing first_non_repeating_letter function - """ + """Testing first_non_repeating_letter function.""" def test_first_non_repeating_letter(self): """ - Testing a function named first_non_repeating_letter - that takes a string input, and returns the first character + Testing a function named first_non_repeating_letter. + + The function 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 From a1ba91c1e07756c6ab193e09baec33915bdb73eb Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:38:36 -0800 Subject: [PATCH 431/873] Flatten --- kyu_5/flatten/__init__.py | 1 + kyu_5/flatten/flatten.py | 16 +++++++++++----- kyu_5/flatten/test_flatten.py | 9 +++++---- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/kyu_5/flatten/__init__.py b/kyu_5/flatten/__init__.py index e69de29bb2d..4563a1eb870 100644 --- a/kyu_5/flatten/__init__.py +++ b/kyu_5/flatten/__init__.py @@ -0,0 +1 @@ +"""Flatten.""" diff --git a/kyu_5/flatten/flatten.py b/kyu_5/flatten/flatten.py index d97e29e9db7..8dc41a571b4 100644 --- a/kyu_5/flatten/flatten.py +++ b/kyu_5/flatten/flatten.py @@ -1,5 +1,6 @@ """ -Solution for -> flatten() +Solution for -> flatten(). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def flatten(*args) -> list: """ + Flatten function. + 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 @@ -26,13 +29,16 @@ def flatten(*args) -> list: def unpack(data, collection: list): """ - Helper method. Unpack data until its not list or a tuple. + Unpack helper method. + + Unpack data until its not list or a tuple. :param data: :param collection: :return: """ - if not isinstance(data, list) and not isinstance(data, tuple): - collection.append(data) - else: + if isinstance(data, (list, tuple)): for d in data: unpack(d, collection) + else: + collection.append(data) + diff --git a/kyu_5/flatten/test_flatten.py b/kyu_5/flatten/test_flatten.py index 3334bcc9dff..72c1f712b7d 100644 --- a/kyu_5/flatten/test_flatten.py +++ b/kyu_5/flatten/test_flatten.py @@ -1,5 +1,6 @@ """ -Solution for -> flatten() +Solution for -> flatten(). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,12 +27,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FlattenTestCase(unittest.TestCase): - """ - Testing flatten function - """ + """Testing flatten function.""" def test_flatten(self): """ + Testing flatten function with various test data. + 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 From e7fee878279e2213967b82438b76910e05bb90b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:42:40 -0800 Subject: [PATCH 432/873] Human Readable Time --- kyu_5/human_readable_time/__init__.py | 1 + kyu_5/human_readable_time/make_readable.py | 14 +++++++++----- kyu_5/human_readable_time/test_make_readable.py | 9 ++++----- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/kyu_5/human_readable_time/__init__.py b/kyu_5/human_readable_time/__init__.py index e69de29bb2d..6020c2ff2e8 100644 --- a/kyu_5/human_readable_time/__init__.py +++ b/kyu_5/human_readable_time/__init__.py @@ -0,0 +1 @@ +"""Human Readable Time.""" diff --git a/kyu_5/human_readable_time/make_readable.py b/kyu_5/human_readable_time/make_readable.py index 1812c999cb4..6d45dbe0687 100644 --- a/kyu_5/human_readable_time/make_readable.py +++ b/kyu_5/human_readable_time/make_readable.py @@ -1,5 +1,6 @@ """ -Solution for -> Human Readable Time +Solution for -> Human Readable Time. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,9 @@ def make_readable(seconds: int) -> str: """ - Write a function, which takes a non-negative integer + make_readable function. + + The function takes a non-negative integer (seconds) as input and returns the time in a human-readable format (HH:MM:SS) @@ -19,7 +22,6 @@ def make_readable(seconds: int) -> str: :param seconds: :return: """ - hours = seconds // (60 * 60) minutes = (seconds - (hours * 60 * 60)) // 60 seconds = seconds - (hours * 60 * 60) - (minutes * 60) @@ -34,7 +36,9 @@ def make_readable(seconds: int) -> str: def time_converter(time: int) -> str: """ - Format time (hours, minutes, seconds) into string + Time converter function. + + Format time (hours, minutes, seconds) into string. :param time: int :return: str """ @@ -43,6 +47,6 @@ def time_converter(time: int) -> str: elif len(str(time)) > 1: time_str = str(time) else: - time_str = '0' + str(time) + time_str = f'0{time}' return time_str diff --git a/kyu_5/human_readable_time/test_make_readable.py b/kyu_5/human_readable_time/test_make_readable.py index 7f3d442dc89..6ee62c69b6b 100644 --- a/kyu_5/human_readable_time/test_make_readable.py +++ b/kyu_5/human_readable_time/test_make_readable.py @@ -1,5 +1,6 @@ """ -Test for -> Human Readable Time +Test for -> Human Readable Time. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,13 +30,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class MakeReadableTestCase(unittest.TestCase): - """ - Testing make_readable function - """ + """Testing make_readable function.""" def test_make_readable(self): """ - Testing make_readable function + Testing make_readable function. Write a function, which takes a non-negative integer (seconds) as input and returns the time in a human-readable From 6816aa3dff9415515a150f2459493d4d9965045c Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:43:33 -0800 Subject: [PATCH 433/873] Update flatten.py --- kyu_5/flatten/flatten.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/flatten/flatten.py b/kyu_5/flatten/flatten.py index 8dc41a571b4..972d80f1b52 100644 --- a/kyu_5/flatten/flatten.py +++ b/kyu_5/flatten/flatten.py @@ -41,4 +41,3 @@ def unpack(data, collection: list): unpack(d, collection) else: collection.append(data) - From 8a37fc03ae255d6840a397dc427333b4d5422618 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:48:39 -0800 Subject: [PATCH 434/873] Integers: Recreation One --- kyu_5/integers_recreation_one/__init__.py | 1 + kyu_5/integers_recreation_one/solution.py | 16 ++++++++++------ .../integers_recreation_one/test_list_squared.py | 7 ++++--- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/kyu_5/integers_recreation_one/__init__.py b/kyu_5/integers_recreation_one/__init__.py index e69de29bb2d..85aa53bfa8d 100644 --- a/kyu_5/integers_recreation_one/__init__.py +++ b/kyu_5/integers_recreation_one/__init__.py @@ -0,0 +1 @@ +"""Integers: Recreation One.""" diff --git a/kyu_5/integers_recreation_one/solution.py b/kyu_5/integers_recreation_one/solution.py index 10ade26a10b..6cbb030c008 100644 --- a/kyu_5/integers_recreation_one/solution.py +++ b/kyu_5/integers_recreation_one/solution.py @@ -1,5 +1,6 @@ """ -Test for -> Integers: Recreation One +Test for -> Integers: Recreation One. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def divisor_generator(digit: int): """ + divisor_generator function. + The best way to get all the divisors of a number. :param digit: integers :return: all dividers of n @@ -29,8 +32,7 @@ def divisor_generator(digit: int): def is_perfect_square(n_str: str) -> bool: """ Check if a number is a perfect square. - (number made by squaring a whole number: - 4 * $ = 16). + :param n_str: str :return: bool """ @@ -48,6 +50,8 @@ def is_perfect_square(n_str: str) -> bool: # Returns digital root of num def digital_root(num: str) -> int: """ + digital_root function. + The digital root or digital sum of a non-negative integer is the single-digit value obtained by an iterative process of summing digits, on each iteration using the result from @@ -60,14 +64,14 @@ def digital_root(num: str) -> int: if len(num) == 1: return int(num) - n_sum = 0 - for i in num: - n_sum += int(i) + n_sum: int = sum(int(i) for i in num) return digital_root(str(n_sum)) def list_squared(m_int: int, n_int: int) -> list: """ + list_squared function. + Given two integers m_int, n_int (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square. diff --git a/kyu_5/integers_recreation_one/test_list_squared.py b/kyu_5/integers_recreation_one/test_list_squared.py index d8b25f20734..cf750c34044 100644 --- a/kyu_5/integers_recreation_one/test_list_squared.py +++ b/kyu_5/integers_recreation_one/test_list_squared.py @@ -1,5 +1,6 @@ """ -Test for -> Integers: Recreation One +Test for -> Integers: Recreation One. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,7 +28,7 @@ name='Source/Kata') class ListSquaredTestCase(unittest.TestCase): """ - Integers: Recreation One + Integers: Recreation One. Divisors of 42 are : 1, 2, 3, 6, 7, 14, 21, 42. These divisors squared are: 1, 4, 9, 36, 49, 196, 441, 1764. The sum of the @@ -45,7 +46,7 @@ class ListSquaredTestCase(unittest.TestCase): def test_flatten(self): """ - Testing list_squared function + Testing list_squared function. :return: """ From 81d3f7288335b39de4e96c903cebe111ab689056 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:50:38 -0800 Subject: [PATCH 435/873] Josephus Survivor --- kyu_5/josephus_survivor/__init__.py | 1 + kyu_5/josephus_survivor/josephus_survivor.py | 6 ++++-- kyu_5/josephus_survivor/test_josephus_survivor.py | 9 +++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/kyu_5/josephus_survivor/__init__.py b/kyu_5/josephus_survivor/__init__.py index e69de29bb2d..ff97360e475 100644 --- a/kyu_5/josephus_survivor/__init__.py +++ b/kyu_5/josephus_survivor/__init__.py @@ -0,0 +1 @@ +"""Josephus Survivor.""" diff --git a/kyu_5/josephus_survivor/josephus_survivor.py b/kyu_5/josephus_survivor/josephus_survivor.py index 17a6865683f..b44745ddca4 100644 --- a/kyu_5/josephus_survivor/josephus_survivor.py +++ b/kyu_5/josephus_survivor/josephus_survivor.py @@ -1,5 +1,6 @@ """ -Test for -> Josephus Survivor +Test for -> Josephus Survivor. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,8 @@ def josephus_survivor(total: int, eliminated: int) -> int: """ - Return who is the "survivor" + Return who is the "survivor". + :param total: int :param eliminated: int :return: diff --git a/kyu_5/josephus_survivor/test_josephus_survivor.py b/kyu_5/josephus_survivor/test_josephus_survivor.py index e388be09aa8..fec570d1988 100644 --- a/kyu_5/josephus_survivor/test_josephus_survivor.py +++ b/kyu_5/josephus_survivor/test_josephus_survivor.py @@ -1,5 +1,6 @@ """ -Test for -> Josephus Survivor +Test for -> Josephus Survivor. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,12 +32,12 @@ name='Source/Kata') @pytest.mark.skip(reason="The solution is not ready") class JosephusSurvivorTestCase(unittest.TestCase): - """ - Testing josephus_survivor function - """ + """Testing josephus_survivor function.""" def test_josephus_survivor(self): """ + Testing josephus_survivor function with various test data. + In this kata you have to correctly return who is the "survivor", ie: the last element of a Josephus permutation. From ae06d4d59814cd5d8490070fef1d3f6fad6bdd3d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:53:01 -0800 Subject: [PATCH 436/873] Master your primes: sieve with memoization --- .../__init__.py | 1 + .../primes.py | 5 ++++- .../test_primes.py | 11 ++++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/kyu_5/master_your_primes_sieve_with_memoization/__init__.py b/kyu_5/master_your_primes_sieve_with_memoization/__init__.py index e69de29bb2d..bea23682756 100644 --- a/kyu_5/master_your_primes_sieve_with_memoization/__init__.py +++ b/kyu_5/master_your_primes_sieve_with_memoization/__init__.py @@ -0,0 +1 @@ +"""Master your primes: sieve with memoization.""" diff --git a/kyu_5/master_your_primes_sieve_with_memoization/primes.py b/kyu_5/master_your_primes_sieve_with_memoization/primes.py index 889902b2720..c915bf07768 100644 --- a/kyu_5/master_your_primes_sieve_with_memoization/primes.py +++ b/kyu_5/master_your_primes_sieve_with_memoization/primes.py @@ -1,5 +1,6 @@ """ -Solution for -> Master your primes: sieve with memoization +Solution for -> Master your primes: sieve with memoization. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def is_prime(digit: int) -> bool: """ + is_prime function. + A function that checks if a given number 'digit' 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 diff --git a/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py b/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py index 7ca27daa299..54d0d17a54e 100644 --- a/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py +++ b/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py @@ -1,5 +1,6 @@ """ -Test for -> Master your primes: sieve with memoization +Test for -> Master your primes: sieve with memoization. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,12 +30,12 @@ url='https://www.codewars.com/kata/58603c898989d15e9e000475', name='Source/Kata') class PrimesTestCase(unittest.TestCase): - """ - Testing is_prime function - """ + """Testing is_prime function.""" - def test_primes(self): + def test_is_primes(self): """ + Testing is_prime function with various test data. + 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 From 4b4e0436f77e286bad09952957815b51dbe29877 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:55:17 -0800 Subject: [PATCH 437/873] Moving Zeros To The End --- kyu_5/moving_zeros_to_the_end/__init__.py | 1 + kyu_5/moving_zeros_to_the_end/move_zeros.py | 5 ++++- kyu_5/moving_zeros_to_the_end/test_move_zeros.py | 9 +++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/kyu_5/moving_zeros_to_the_end/__init__.py b/kyu_5/moving_zeros_to_the_end/__init__.py index e69de29bb2d..a030ec46206 100644 --- a/kyu_5/moving_zeros_to_the_end/__init__.py +++ b/kyu_5/moving_zeros_to_the_end/__init__.py @@ -0,0 +1 @@ +"""Moving Zeros To The End.""" diff --git a/kyu_5/moving_zeros_to_the_end/move_zeros.py b/kyu_5/moving_zeros_to_the_end/move_zeros.py index 9a096d86409..36551e9867d 100644 --- a/kyu_5/moving_zeros_to_the_end/move_zeros.py +++ b/kyu_5/moving_zeros_to_the_end/move_zeros.py @@ -1,5 +1,6 @@ """ -Solution for -> Moving Zeros To The End +Solution for -> Moving Zeros To The End. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def move_zeros(array: list) -> list: """ + move_zeros function. + An algorithm that takes an array and moves all of the zeros to the end, preserving the order of the other elements. :param array: list diff --git a/kyu_5/moving_zeros_to_the_end/test_move_zeros.py b/kyu_5/moving_zeros_to_the_end/test_move_zeros.py index 6952978478e..b6d595dc71c 100644 --- a/kyu_5/moving_zeros_to_the_end/test_move_zeros.py +++ b/kyu_5/moving_zeros_to_the_end/test_move_zeros.py @@ -1,5 +1,6 @@ """ -Test for -> Moving Zeros To The End +Test for -> Moving Zeros To The End. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,12 +29,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class MoveZerosTestCase(unittest.TestCase): - """ - Testing move_zeros function - """ + """Testing move_zeros function.""" def test_move_zeros(self): """ + Testing move_zeros function with various test data. + Test an algorithm that takes an array and moves all of the zeros to the end, preserving the order of the other elements. :return: From 62fab8fe75a903aeb08f6792b3055ad0e67fd315 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:55:46 -0800 Subject: [PATCH 438/873] Update __init__.py --- kyu_5/multidimensional_neighbourhood/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_5/multidimensional_neighbourhood/__init__.py b/kyu_5/multidimensional_neighbourhood/__init__.py index e69de29bb2d..7e178b92ba0 100644 --- a/kyu_5/multidimensional_neighbourhood/__init__.py +++ b/kyu_5/multidimensional_neighbourhood/__init__.py @@ -0,0 +1 @@ +"""Multidimensional Neighbourhood.""" From 8123d6b5ba89aa4bba1db60096bc504619eadc0f Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 19:58:08 -0800 Subject: [PATCH 439/873] Not very secure --- kyu_5/not_very_secure/__init__.py | 1 + kyu_5/not_very_secure/alphanumeric.py | 7 +++++-- kyu_5/not_very_secure/test_alphanumeric.py | 10 ++++------ 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/kyu_5/not_very_secure/__init__.py b/kyu_5/not_very_secure/__init__.py index e69de29bb2d..753b1bb3993 100644 --- a/kyu_5/not_very_secure/__init__.py +++ b/kyu_5/not_very_secure/__init__.py @@ -0,0 +1 @@ +"""Not very secure.""" diff --git a/kyu_5/not_very_secure/alphanumeric.py b/kyu_5/not_very_secure/alphanumeric.py index fd13e0642a1..6e09af404c2 100644 --- a/kyu_5/not_very_secure/alphanumeric.py +++ b/kyu_5/not_very_secure/alphanumeric.py @@ -1,5 +1,6 @@ """ -Solution for -> Not very secure +Solution for -> Not very secure. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def alphanumeric(password: str) -> bool: """ + alphanumeric function. + The string has the following conditions to be alphanumeric: 1. At least one character ("" is not valid) @@ -20,7 +23,7 @@ def alphanumeric(password: str) -> bool: :return: bool """ - if password == "": + if not password: return False for char in password: diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index c05cf5e81b5..4a38e741cba 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -1,5 +1,6 @@ """ -Test for -> Not very secure +Test for -> Not very secure. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,14 +32,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class AlphanumericTestCase(unittest.TestCase): - """ - Testing alphanumeric function - """ + """Testing alphanumeric function.""" def test_alphanumeric(self): """ - Testing alphanumeric function with - various test inputs + Testing alphanumeric function with various test inputs. The string has the following conditions to be alphanumeric only From 8d6ddd36df0554b58643f678631cc459ea02ee4e Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 9 Dec 2024 20:00:25 -0800 Subject: [PATCH 440/873] Number of trailing zeros of N --- kyu_5/number_of_trailing_zeros_of_n/__init__.py | 1 + kyu_5/number_of_trailing_zeros_of_n/test_zeros.py | 9 +++++---- kyu_5/number_of_trailing_zeros_of_n/zeros.py | 9 ++++++--- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/kyu_5/number_of_trailing_zeros_of_n/__init__.py b/kyu_5/number_of_trailing_zeros_of_n/__init__.py index e69de29bb2d..5166371459b 100644 --- a/kyu_5/number_of_trailing_zeros_of_n/__init__.py +++ b/kyu_5/number_of_trailing_zeros_of_n/__init__.py @@ -0,0 +1 @@ +"""Number of trailing zeros of N.""" diff --git a/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py b/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py index 8497849d22a..fc5f97bf087 100644 --- a/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py +++ b/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py @@ -1,5 +1,6 @@ """ -Test for -> Number of trailing zeros of N! +Test for -> Number of trailing zeros of N!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,12 +28,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class ZerosTestCase(unittest.TestCase): - """ - Testing zeros function - """ + """Testing zeros function.""" def test_zeros(self): """ + Testing zeros function with various test data. + Testing 'zeros' program that should calculate the number of trailing zeros in a factorial of a given number. :return: None diff --git a/kyu_5/number_of_trailing_zeros_of_n/zeros.py b/kyu_5/number_of_trailing_zeros_of_n/zeros.py index b80999fcce6..d8bab1d3ff5 100644 --- a/kyu_5/number_of_trailing_zeros_of_n/zeros.py +++ b/kyu_5/number_of_trailing_zeros_of_n/zeros.py @@ -1,5 +1,6 @@ """ -Solution for -> Number of trailing zeros of N! +Solution for -> Number of trailing zeros of N!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,10 @@ def zeros(n) -> int: """ - A program that will calculate the number of - trailing zeros in a factorial of a given number. + zeros function. + + A program that calculate the number of trailing + zeros in a factorial of a given number. N! = 1 * 2 * 3 * ... * N From 5e57a7f57dddafa8ed0fdb9ae84563632f99eaf1 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 10 Dec 2024 21:48:57 -0800 Subject: [PATCH 441/873] Simple Pig Latin --- kyu_5/simple_pig_latin/__init__.py | 1 + kyu_5/simple_pig_latin/pig_it.py | 9 +++++++-- kyu_5/simple_pig_latin/test_pig_it.py | 9 ++++----- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/kyu_5/simple_pig_latin/__init__.py b/kyu_5/simple_pig_latin/__init__.py index e69de29bb2d..0becc7a81cd 100644 --- a/kyu_5/simple_pig_latin/__init__.py +++ b/kyu_5/simple_pig_latin/__init__.py @@ -0,0 +1 @@ +"""Simple Pig Latin.""" diff --git a/kyu_5/simple_pig_latin/pig_it.py b/kyu_5/simple_pig_latin/pig_it.py index ff68a459e15..b3a006c0e7e 100644 --- a/kyu_5/simple_pig_latin/pig_it.py +++ b/kyu_5/simple_pig_latin/pig_it.py @@ -1,5 +1,6 @@ """ -Solution for -> Simple Pig Latin +Solution for -> Simple Pig Latin. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def pig_it(text: str) -> str: """ + pig_it function. + Move the first letter of each word to the end of it, then add "ay" to the end of the word. Leave punctuation marks untouched. @@ -24,7 +27,9 @@ def pig_it(text: str) -> str: def word_processor(word: str, result: list) -> None: """ - Processing a single word for the requested pattern + word_processor function. + + Processing a single word for the requested pattern. :param word: str :param result: list :return: None diff --git a/kyu_5/simple_pig_latin/test_pig_it.py b/kyu_5/simple_pig_latin/test_pig_it.py index deac617144c..e141e8b7880 100644 --- a/kyu_5/simple_pig_latin/test_pig_it.py +++ b/kyu_5/simple_pig_latin/test_pig_it.py @@ -1,5 +1,6 @@ """ -Test for -> Simple Pig Latin +Test for -> Simple Pig Latin. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,13 +26,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class PigItTestCase(unittest.TestCase): - """ - Testing pig_it function - """ + """Testing pig_it function.""" def test_pig_it(self): """ - Testing pig_it function + 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 From 663e61c60a93f1435e172a53837975c83a4530b6 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 10 Dec 2024 21:53:32 -0800 Subject: [PATCH 442/873] Sports League Table Ranking --- kyu_5/sports_league_table_ranking/__init__.py | 1 + .../compute_ranks.py | 19 +++++++++++-------- .../test_compute_ranks.py | 9 +++++---- 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/kyu_5/sports_league_table_ranking/__init__.py b/kyu_5/sports_league_table_ranking/__init__.py index e69de29bb2d..cad213478c9 100644 --- a/kyu_5/sports_league_table_ranking/__init__.py +++ b/kyu_5/sports_league_table_ranking/__init__.py @@ -0,0 +1 @@ +"""Sports League Table Ranking.""" diff --git a/kyu_5/sports_league_table_ranking/compute_ranks.py b/kyu_5/sports_league_table_ranking/compute_ranks.py index c33e9351f07..3bf3e6cc9e6 100644 --- a/kyu_5/sports_league_table_ranking/compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/compute_ranks.py @@ -1,5 +1,6 @@ """ -Solution for -> Sports League Table Ranking +Solution for -> Sports League Table Ranking. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,9 @@ def compute_ranks(number: int, games: list) -> list: """ - organize a sports league in a round-robin-system. Each team meets + compute_ranks function. + + Organize 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 @@ -45,7 +48,8 @@ def compute_ranks(number: int, games: list) -> list: def process_not_played_games(teams: dict, number: int) -> None: """ - Set default values for teams who did not play a single game + Set default values for teams who did not play a single game. + :param teams: :param number: :return: @@ -99,7 +103,7 @@ def check_if_team_registered(team, teams, number) -> None: def calc_team_points(team, teams, score_a, score_b) -> None: """ - Calculates team points + Calculates team points. :param team: :param teams: @@ -115,7 +119,7 @@ def calc_team_points(team, teams, score_a, score_b) -> None: def calc_for_against(teams, team, team_1, team_2) -> None: """ - Collect "For:Against" data + Collect "For:Against" data. :param teams: :param team: @@ -129,7 +133,7 @@ def calc_for_against(teams, team, team_1, team_2) -> None: def calc_gd(teams) -> None: """ - Calculates "GD" + Calculates "GD". :param teams: :return: @@ -141,13 +145,12 @@ def calc_gd(teams) -> None: def calc_rank(teams: dict) -> None: """ - Calculates Rank + Calculates Rank. First you sort the teams by their points. If two or more teams reached the same number of points, the second criteria comes into play and so on. Finally, if all criteria are the same, the teams share a place. - :param teams: :return: """ 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 00960236b7f..b624344674b 100644 --- a/kyu_5/sports_league_table_ranking/test_compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/test_compute_ranks.py @@ -1,5 +1,6 @@ """ -Test for -> Sports League Table Ranking +Test for -> Sports League Table Ranking. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,12 +26,12 @@ url='https://www.codewars.com/kata/5e0baea9d772160032022e8c', name='Source/Kata') class ComputeRanksTestCase(unittest.TestCase): - """ - Testing Sports League Table Ranking - """ + """Testing Sports League Table Ranking.""" def test_compute_ranks(self): """ + Testing compute_ranks function. + 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 From a7f3a3ae0f8ecf098a86937a08825f2fe693875b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:37:24 -0800 Subject: [PATCH 443/873] String incrementer --- kyu_5/string_incrementer/__init__.py | 1 + kyu_5/string_incrementer/string_incrementer.py | 8 +++++--- kyu_5/string_incrementer/test_increment_string.py | 10 +++++----- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/kyu_5/string_incrementer/__init__.py b/kyu_5/string_incrementer/__init__.py index e69de29bb2d..49645c4a869 100644 --- a/kyu_5/string_incrementer/__init__.py +++ b/kyu_5/string_incrementer/__init__.py @@ -0,0 +1 @@ +"""String incrementer.""" diff --git a/kyu_5/string_incrementer/string_incrementer.py b/kyu_5/string_incrementer/string_incrementer.py index 62e98df2961..40aa02f73eb 100644 --- a/kyu_5/string_incrementer/string_incrementer.py +++ b/kyu_5/string_incrementer/string_incrementer.py @@ -1,5 +1,6 @@ """ -Solution for -> String incrementer +Solution for -> String incrementer. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def increment_string(string: str) -> str: """ + increment_string function. + A function which increments a string, to create a new string: 1. If the string already ends with a number, @@ -14,7 +17,6 @@ def increment_string(string: str) -> str: 2. If the string does not end with a number. the number 1 should be appended to the new string. - :param string: input string :return: output string with incremented number """ @@ -42,7 +44,7 @@ def increment_string(string: str) -> str: def get_first_digit_index(string: str): """ - Find index of first non digit char from right to left + Find index of first non digit char from right to left. :param string: input string :return: index of first non digit char or None diff --git a/kyu_5/string_incrementer/test_increment_string.py b/kyu_5/string_incrementer/test_increment_string.py index 4df13b12675..e6f40241467 100644 --- a/kyu_5/string_incrementer/test_increment_string.py +++ b/kyu_5/string_incrementer/test_increment_string.py @@ -1,5 +1,6 @@ """ -Test for -> String incrementer +Test for -> String incrementer. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -32,13 +33,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class StringIncrementerTestCase(unittest.TestCase): - """ - Testing increment_string function - """ + """Testing increment_string function.""" def test_increment_string(self): """ - Testing a function named increment_string + Testing a function named increment_string. + :return: """ # pylint: disable-msg=R0801 From a25ccd9866272d95a73560c9a28cee99285c6312 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:09:35 -0800 Subject: [PATCH 444/873] Sum of Pairs --- kyu_5/sum_of_pairs/__init__.py | 1 + kyu_5/sum_of_pairs/sum_pairs.py | 10 ++++++---- kyu_5/sum_of_pairs/test_sum_pairs.py | 9 ++++----- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/kyu_5/sum_of_pairs/__init__.py b/kyu_5/sum_of_pairs/__init__.py index e69de29bb2d..088a8153e50 100644 --- a/kyu_5/sum_of_pairs/__init__.py +++ b/kyu_5/sum_of_pairs/__init__.py @@ -0,0 +1 @@ +"""Sum of Pairs.""" diff --git a/kyu_5/sum_of_pairs/sum_pairs.py b/kyu_5/sum_of_pairs/sum_pairs.py index 43e37f00864..8de12fd4bdb 100644 --- a/kyu_5/sum_of_pairs/sum_pairs.py +++ b/kyu_5/sum_of_pairs/sum_pairs.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of Pairs +Solution for -> Sum of Pairs. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,10 +8,11 @@ def sum_pairs(ints: list, s: int): """ + Sum of Pairs. + Given a list of integers and a single sum value, returns the first two values (parse from the left please) in order of appearance that add up to form the sum. - :param ints: a list of integers :param s: a single sum value :return: the first two values = s @@ -35,11 +37,11 @@ def sum_pairs(ints: list, s: int): def simplify(ints: list) -> list: """ + simplify function. + In order to speed up the process we should simplify the input list by reducing duplicate values, see sample below: - [1,4,5,1,1,1,1,1,4,7,8] >>> [1,4,5,1,4,7,8] - :param ints: a list of integers :return: simplified list of integers """ diff --git a/kyu_5/sum_of_pairs/test_sum_pairs.py b/kyu_5/sum_of_pairs/test_sum_pairs.py index a4342e55e26..7b9481d048d 100644 --- a/kyu_5/sum_of_pairs/test_sum_pairs.py +++ b/kyu_5/sum_of_pairs/test_sum_pairs.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Pairs +Test for -> Sum of Pairs. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,13 +30,11 @@ url='https://www.codewars.com/kata/54d81488b981293527000c8f', name='Source/Kata') class SumPairsTestCase(unittest.TestCase): - """ - Testing 'sum_pairs' function - """ + """Testing 'sum_pairs' function.""" def test_sum_pairs(self): """ - Testing 'sum_pairs' function + Testing 'sum_pairs' function. Given a list of integers and a single sum value, the function should return the first two values From 01234159d1a1c9c8ac5aca2a9977864c77a12414 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:18:59 -0800 Subject: [PATCH 445/873] The Hashtag Generator --- kyu_5/the_hashtag_generator/__init__.py | 1 + kyu_5/the_hashtag_generator/hashtag_generator.py | 6 +++--- kyu_5/the_hashtag_generator/test_generate_hashtag.py | 11 ++++++----- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/kyu_5/the_hashtag_generator/__init__.py b/kyu_5/the_hashtag_generator/__init__.py index e69de29bb2d..c83c21b8486 100644 --- a/kyu_5/the_hashtag_generator/__init__.py +++ b/kyu_5/the_hashtag_generator/__init__.py @@ -0,0 +1 @@ +"""The Hashtag Generator.""" diff --git a/kyu_5/the_hashtag_generator/hashtag_generator.py b/kyu_5/the_hashtag_generator/hashtag_generator.py index 7c6eb5b94eb..2faaee21325 100644 --- a/kyu_5/the_hashtag_generator/hashtag_generator.py +++ b/kyu_5/the_hashtag_generator/hashtag_generator.py @@ -1,5 +1,6 @@ """ -Solution for -> The Hashtag Generator +Solution for -> The Hashtag Generator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -12,8 +13,7 @@ def generate_hashtag(word: str) -> bool | str: 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 t he result is an empty string it must return false. - + 4. If the input or the result is an empty string it must return false. :param word: str :return: """ diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index d0810759423..64de2a900a3 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -1,5 +1,6 @@ """ -Test for -> 'generate_hashtag' function +Test for -> 'generate_hashtag' function. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,13 @@ name='Source/Kata') # pylint: enable-msg=R0801 class GenerateHashtagTestCase(unittest.TestCase): - """ - Testing generate_hashtag function - """ + """Testing generate_hashtag function.""" def test_generate_hashtag(self): """ - Testing 'generate_hashtag' function + Testing 'generate_hashtag' function with various test data. + + :return: """ allure.dynamic.title("Testing 'generate_hashtag' function") allure.dynamic.severity(allure.severity_level.NORMAL) From aa8ad7acb3b717af4a77340120a5593edc3e90b0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:23:23 -0800 Subject: [PATCH 446/873] Tic-Tac-Toe Checker --- kyu_5/tic_tac_toe_checker/__init__.py | 1 + kyu_5/tic_tac_toe_checker/checker.py | 15 ++++++++++----- kyu_5/tic_tac_toe_checker/test_checker.py | 10 +++++----- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/__init__.py b/kyu_5/tic_tac_toe_checker/__init__.py index e69de29bb2d..b896765b11e 100644 --- a/kyu_5/tic_tac_toe_checker/__init__.py +++ b/kyu_5/tic_tac_toe_checker/__init__.py @@ -0,0 +1 @@ +"""Tic-Tac-Toe Checker.""" diff --git a/kyu_5/tic_tac_toe_checker/checker.py b/kyu_5/tic_tac_toe_checker/checker.py index 2eb2b662203..81694108feb 100644 --- a/kyu_5/tic_tac_toe_checker/checker.py +++ b/kyu_5/tic_tac_toe_checker/checker.py @@ -1,5 +1,6 @@ """ -Solution for -> Tic-Tac-Toe Checker +Solution for -> Tic-Tac-Toe Checker. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,12 +8,13 @@ def is_solved(board) -> int: """ + is_solved function. + Checks whether the board's current state is solved: -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). - :param board: list :return: -1, 0, 1, or 2 """ @@ -37,7 +39,8 @@ def is_solved(board) -> int: def check_diagonals(board) -> int | None: """ - Check board by diagonal + Check board by diagonal. + :param board: list :return: 1, 2, or None """ @@ -64,7 +67,8 @@ def check_diagonals(board) -> int | None: def check_cols(board) -> int | None: """ - Check board by column + Check board by column. + :param board: list :return: 1, 2, or None """ @@ -81,7 +85,8 @@ def check_cols(board) -> int | None: def check_rows(board: list) -> int | None: """ - Check board by row + Check board by row. + :param board: list :return: 1, 2, or None """ diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index bbb7386ce88..4ef3155350b 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -1,5 +1,6 @@ """ -Testing is_solved function +Testing is_solved function. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -24,13 +25,11 @@ url='https://www.codewars.com/kata/525caa5c1bf619d28c000335', name='Source/Kata') class IsSolvedTestCase(unittest.TestCase): - """ - Testing is_solved function - """ + """Testing is_solved function.""" def test_is_solved(self): """ - Testing is_solved function + Testing is_solved function with various test data. The function should return whether the board's current state is solved. @@ -41,6 +40,7 @@ def test_is_solved(self): 1 if "X" won, 2 if "O" won, 0 if it's a cat's game (i.e. a draw). + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing done_or_not function") From 50533322c88a24f82a22966e2546924367942e54 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:27:59 -0800 Subject: [PATCH 447/873] valid_parentheses --- kyu_5/valid_parentheses/__init__.py | 1 + .../test_valid_parentheses.py | 18 +++++++++--------- kyu_5/valid_parentheses/valid_parentheses.py | 8 ++++++-- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/kyu_5/valid_parentheses/__init__.py b/kyu_5/valid_parentheses/__init__.py index e69de29bb2d..cd485cb5e94 100644 --- a/kyu_5/valid_parentheses/__init__.py +++ b/kyu_5/valid_parentheses/__init__.py @@ -0,0 +1 @@ +"""Valid Parentheses.""" diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index 335b041f4f9..b067b1737d5 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -1,5 +1,6 @@ """ -Test for -> Valid Parentheses +Test for -> Valid Parentheses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,19 +27,18 @@ url='https://www.codewars.com/kata/52774a314c2333f0a7000688', name='Source/Kata') class ValidParenthesesTestCase(unittest.TestCase): - """ - Testing valid_parentheses function - """ + """Testing valid_parentheses function.""" def test_valid_parentheses(self): """ - 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. + Testing valid_parentheses with various test data. - Examples + Test the valid_parentheses function 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: "()" => true ")(()))" => false "(" => false diff --git a/kyu_5/valid_parentheses/valid_parentheses.py b/kyu_5/valid_parentheses/valid_parentheses.py index 68b68b325ec..5e518265b6e 100644 --- a/kyu_5/valid_parentheses/valid_parentheses.py +++ b/kyu_5/valid_parentheses/valid_parentheses.py @@ -1,5 +1,6 @@ """ -Solution for -> Valid Parentheses +Solution for -> Valid Parentheses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def valid_parentheses(string: str) -> bool: """ + valid_parentheses function. + A 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, @@ -49,7 +52,8 @@ def valid_parentheses(string: str) -> bool: def clean_up_string(string: str) -> str: """ - Cleaning up string from invalid chars + Cleaning up string from invalid chars. + :param string: str :return: str """ From 51e25abe4beb40a019c2aa9bc1d8e38721033077 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:30:07 -0800 Subject: [PATCH 448/873] anagrams --- kyu_5/where_my_anagrams_at/__init__.py | 1 + kyu_5/where_my_anagrams_at/anagrams.py | 5 ++++- kyu_5/where_my_anagrams_at/test_anagrams.py | 9 +++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/kyu_5/where_my_anagrams_at/__init__.py b/kyu_5/where_my_anagrams_at/__init__.py index e69de29bb2d..f2e986065b5 100644 --- a/kyu_5/where_my_anagrams_at/__init__.py +++ b/kyu_5/where_my_anagrams_at/__init__.py @@ -0,0 +1 @@ +"""Where my anagrams at.""" diff --git a/kyu_5/where_my_anagrams_at/anagrams.py b/kyu_5/where_my_anagrams_at/anagrams.py index 40971098561..95d16300500 100644 --- a/kyu_5/where_my_anagrams_at/anagrams.py +++ b/kyu_5/where_my_anagrams_at/anagrams.py @@ -1,5 +1,6 @@ """ -Solution for -> Where my anagrams at? +Solution for -> Where my anagrams at?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def anagrams(word, words) -> list: """ + anagrams function. + 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 diff --git a/kyu_5/where_my_anagrams_at/test_anagrams.py b/kyu_5/where_my_anagrams_at/test_anagrams.py index 537b6139778..024ffb791b3 100644 --- a/kyu_5/where_my_anagrams_at/test_anagrams.py +++ b/kyu_5/where_my_anagrams_at/test_anagrams.py @@ -1,5 +1,6 @@ """ -Solution for -> Where my anagrams at? +Test suite for -> Where my anagrams at?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,12 +27,12 @@ name='Source/Kata') # pylint: enable=R0801 class AnagramsTestCase(unittest.TestCase): - """ - Testing anagrams function - """ + """Testing anagrams function.""" def test_anagrams(self): """ + Testing anagrams function with various test data. + 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. From d550c6e9a11fda639a28f0d8de6ed47cb1dbdf70 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:31:40 -0800 Subject: [PATCH 449/873] Update test_domain_name.py --- kyu_5/extract_the_domain_name_from_url/test_domain_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py index 67fe5a145ce..2e52af09081 100644 --- a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py +++ b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py @@ -1,5 +1,5 @@ """ -Assert that 'domain_name' function. +Test for -> 'domain_name' function. returns domain name from given URL string. Created by Egor Kostan. From 29c4925e68d9ff5370732bc8eda920d3cdf47c4d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:32:15 -0800 Subject: [PATCH 450/873] Update test_first_non_repeating_letter.py --- .../test_first_non_repeating_letter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py index 6f1e19e6748..287f1690097 100644 --- a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py +++ b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py @@ -1,5 +1,5 @@ """ -Solution for -> First non-repeating character. +Test for -> First non-repeating character. Created by Egor Kostan. GitHub: https://github.com/ikostan From 1ef045bdc96807874101ce0476b02e125d1f087a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:33:48 -0800 Subject: [PATCH 451/873] Update test_flatten.py --- kyu_5/flatten/test_flatten.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/flatten/test_flatten.py b/kyu_5/flatten/test_flatten.py index 72c1f712b7d..40977355bf6 100644 --- a/kyu_5/flatten/test_flatten.py +++ b/kyu_5/flatten/test_flatten.py @@ -1,5 +1,5 @@ """ -Solution for -> flatten(). +Test for -> flatten(). Created by Egor Kostan. GitHub: https://github.com/ikostan From 473859371b182ba0c5f10cabbf912e587431a1b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:33:54 -0800 Subject: [PATCH 452/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index 4ef3155350b..42ac53c8e4b 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -1,5 +1,5 @@ """ -Testing is_solved function. +Test for -> is_solved function. Created by Egor Kostan. GitHub: https://github.com/ikostan From 45eb2e6858175ed88c131a49458f836a0388e709 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:36:35 -0800 Subject: [PATCH 453/873] Update __init__.py kyu_5/__init__.py:1 at module level: D104: Missing docstring in public package All modules should normally have docstrings. [...] all functions and classes exported by a module should also have docstrings. Public methods (including the __init__ constructor) should also have docstrings. Note: Public (exported) definitions are either those with names listed in __all__ variable (if present), or those that do not start with a single underscore. --- kyu_5/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_5/__init__.py b/kyu_5/__init__.py index e69de29bb2d..974f1f9b0ea 100644 --- a/kyu_5/__init__.py +++ b/kyu_5/__init__.py @@ -0,0 +1 @@ +"""5 kyu - Novice package.""" From 08468c0c4066c652df324e5ec6e9ef819918529f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:38:28 -0800 Subject: [PATCH 454/873] Update alphanumeric.py kyu_5/not_very_secure/alphanumeric.py:10 in public function `alphanumeric`: D202: No blank lines allowed after function docstring (found 1) There's no blank line either before or after the docstring unless directly followed by an inner function or class. kyu_5/not_very_secure/alphanumeric.py:10 in public function `alphanumeric`: D403: First word of the first line should be properly capitalized ('Alphanumeric', not 'alphanumeric') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/not_very_secure/alphanumeric.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kyu_5/not_very_secure/alphanumeric.py b/kyu_5/not_very_secure/alphanumeric.py index 6e09af404c2..58d8cc7856a 100644 --- a/kyu_5/not_very_secure/alphanumeric.py +++ b/kyu_5/not_very_secure/alphanumeric.py @@ -11,18 +11,13 @@ def alphanumeric(password: str) -> bool: alphanumeric function. The string has the following conditions to be alphanumeric: - 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 - :param password: string :return: bool """ - if not password: return False From 0e033e49fe9e701c84d7fb97c0a70a7d55140635 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:40:31 -0800 Subject: [PATCH 455/873] Update alphanumeric.py kyu_5/not_very_secure/alphanumeric.py:10 in public function `alphanumeric`: D403: First word of the first line should be properly capitalized ('Alphanumeric', not 'alphanumeric') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/not_very_secure/alphanumeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/not_very_secure/alphanumeric.py b/kyu_5/not_very_secure/alphanumeric.py index 58d8cc7856a..b0f1c089bf8 100644 --- a/kyu_5/not_very_secure/alphanumeric.py +++ b/kyu_5/not_very_secure/alphanumeric.py @@ -8,7 +8,7 @@ def alphanumeric(password: str) -> bool: """ - alphanumeric function. + Alphanumeric function. The string has the following conditions to be alphanumeric: 1. At least one character ("" is not valid) From 912967a5f020176d6d64a88dbbe8975458e65531 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:41:48 -0800 Subject: [PATCH 456/873] Update first_non_repeating_letter.py kyu_5/not_very_secure/alphanumeric.py:10 in public function `alphanumeric`: D403: First word of the first line should be properly capitalized ('Alphanumeric', not 'alphanumeric') The [first line of a] docstring is a phrase ending in a period. --- .../first_non_repeating_character/first_non_repeating_letter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/first_non_repeating_character/first_non_repeating_letter.py b/kyu_5/first_non_repeating_character/first_non_repeating_letter.py index b9f7e4c1522..fb489d570ed 100644 --- a/kyu_5/first_non_repeating_character/first_non_repeating_letter.py +++ b/kyu_5/first_non_repeating_character/first_non_repeating_letter.py @@ -8,7 +8,7 @@ def first_non_repeating_letter(string: str) -> str: """ - A function named first_non_repeating_letter. + first_non_repeating_letter function. The function takes a string input, and returns the first character that is not repeated anywhere in the string. From f6a059565fdf4499bc4b1568f26b56a31ec76161 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:42:31 -0800 Subject: [PATCH 457/873] Update alphabet_war.py --- kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py index 5f1fe2d8f19..f4cc3ad4c9e 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py @@ -15,7 +15,6 @@ def alphabet_war(battlefield: str) -> str: :param battlefield: :return: str """ - if '#' not in battlefield: return ''.join(char for char in battlefield if char.isalpha()) @@ -30,7 +29,6 @@ def clean_unsheltered(battlefield: str) -> str: :param battlefield: str :return: str """ - result: str = '' temp = battlefield.split('[') From d8cab2357ed0141758419b8c4b2de19a43ec650c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:43:49 -0800 Subject: [PATCH 458/873] Update valid_parentheses.py --- kyu_5/valid_parentheses/valid_parentheses.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/valid_parentheses/valid_parentheses.py b/kyu_5/valid_parentheses/valid_parentheses.py index 5e518265b6e..86966618860 100644 --- a/kyu_5/valid_parentheses/valid_parentheses.py +++ b/kyu_5/valid_parentheses/valid_parentheses.py @@ -17,7 +17,6 @@ def valid_parentheses(string: str) -> bool: :param string: str :return: bool """ - string = clean_up_string(string) if string == "" or not string: From d001b88309cd2483cdeadcd997ac8d1c849a8f9e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:44:18 -0800 Subject: [PATCH 459/873] Update move_zeros.py --- kyu_5/moving_zeros_to_the_end/move_zeros.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/moving_zeros_to_the_end/move_zeros.py b/kyu_5/moving_zeros_to_the_end/move_zeros.py index 36551e9867d..d58838afd9f 100644 --- a/kyu_5/moving_zeros_to_the_end/move_zeros.py +++ b/kyu_5/moving_zeros_to_the_end/move_zeros.py @@ -15,7 +15,6 @@ def move_zeros(array: list) -> list: :param array: list :return: list """ - moving_zero: bool = True while moving_zero: From 22d9ca6b52d9bffa1097c72ef15ca91dc5f094bf Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:46:06 -0800 Subject: [PATCH 460/873] Update compute_ranks.py --- kyu_5/sports_league_table_ranking/compute_ranks.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/kyu_5/sports_league_table_ranking/compute_ranks.py b/kyu_5/sports_league_table_ranking/compute_ranks.py index 3bf3e6cc9e6..7a265826b5f 100644 --- a/kyu_5/sports_league_table_ranking/compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/compute_ranks.py @@ -61,12 +61,9 @@ def process_not_played_games(teams: dict, number: int) -> None: def calc_teams_score(team_a, team_b, teams, team, number) -> None: """ - Calculate following: - For : Against - Points - - Set default values for team as well + Calculate following For/Against Points. + Set default values for team as well. :param team_a: :param team_b: :param teams: @@ -86,8 +83,8 @@ def calc_teams_score(team_a, team_b, teams, team, number) -> None: def check_if_team_registered(team, teams, number) -> None: """ Check if team data was processed. - Set default values otherwise. + Set default values otherwise. :param team: :param teams: :param number: From 322ed6aec156012c6a0cc76bb1120edc5f6d482f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:47:26 -0800 Subject: [PATCH 461/873] Update solution.py --- kyu_5/find_the_smallest/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/find_the_smallest/solution.py b/kyu_5/find_the_smallest/solution.py index b1bafd7bcae..ddf885e8d78 100644 --- a/kyu_5/find_the_smallest/solution.py +++ b/kyu_5/find_the_smallest/solution.py @@ -60,7 +60,7 @@ def concat_new_n(digits: list, min_digit: int, min_index: int) -> list: def smallest(n: int) -> list: """ - smallest function. + Smallest function. Return an array or a tuple or a string depending on the language (see "Sample Tests") with: From 9914dca16c2a576c4203fb71a2f0e1860a6b42e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:14:44 -0800 Subject: [PATCH 462/873] Update hashtag_generator.py looking for now-outdated files... /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/555/kyu_5/the_hashtag_generator/hashtag_generator.py:docstring of kyu_5.the_hashtag_generator.hashtag_generator.generate_hashtag:6: WARNING: Enumerated list ends without a blank line; unexpected unindent. [docutils] --- kyu_5/the_hashtag_generator/hashtag_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/the_hashtag_generator/hashtag_generator.py b/kyu_5/the_hashtag_generator/hashtag_generator.py index 2faaee21325..94e0d14f2ac 100644 --- a/kyu_5/the_hashtag_generator/hashtag_generator.py +++ b/kyu_5/the_hashtag_generator/hashtag_generator.py @@ -14,6 +14,7 @@ def generate_hashtag(word: str) -> bool | str: 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. + :param word: str :return: """ @@ -23,5 +24,4 @@ def generate_hashtag(word: str) -> bool | str: result: str = ''.join(string.capitalize() for string in word.split(' ') if string.strip() != '') result = '#' + result - return False if len(result) > 140 else result From 4c095f0e099d64735964d97dd5a74125d0e084be Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:18:20 -0800 Subject: [PATCH 463/873] Update hashtag_generator.py --- kyu_5/the_hashtag_generator/hashtag_generator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_5/the_hashtag_generator/hashtag_generator.py b/kyu_5/the_hashtag_generator/hashtag_generator.py index 94e0d14f2ac..b8012aa1c99 100644 --- a/kyu_5/the_hashtag_generator/hashtag_generator.py +++ b/kyu_5/the_hashtag_generator/hashtag_generator.py @@ -12,9 +12,9 @@ def generate_hashtag(word: str) -> bool | str: 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. - + 3. If final result is longer than 140 chars it must return false. + 4. Input or result must return false when empty. + :param word: str :return: """ From a188e9f76880c94f839ee3d25d588e3710329852 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:21:16 -0800 Subject: [PATCH 464/873] Update test_checker.py /home/docs/checkouts/readthedocs.org/user_builds/codewars/checkouts/555/kyu_5/tic_tac_toe_checker/test_checker.py:docstring of kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase.test_is_solved:12: WARNING: Block quote ends without a blank line; unexpected unindent. [docutils] --- kyu_5/tic_tac_toe_checker/test_checker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index 42ac53c8e4b..b109b3a2de0 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -40,6 +40,7 @@ def test_is_solved(self): 1 if "X" won, 2 if "O" won, 0 if it's a cat's game (i.e. a draw). + :return: """ # pylint: disable-msg=R0801 From 8891ec7af3682b6dac2a0edee83fcbd7f370b2be Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:23:48 -0800 Subject: [PATCH 465/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index b109b3a2de0..f1c3ce28e12 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -40,7 +40,7 @@ def test_is_solved(self): 1 if "X" won, 2 if "O" won, 0 if it's a cat's game (i.e. a draw). - + :return: """ # pylint: disable-msg=R0801 From af4ebd7e152d8b40f298788c0b95b73e349b2924 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:26:01 -0800 Subject: [PATCH 466/873] Update valid_parentheses.py --- kyu_5/valid_parentheses/valid_parentheses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/valid_parentheses/valid_parentheses.py b/kyu_5/valid_parentheses/valid_parentheses.py index 86966618860..34607a0b29d 100644 --- a/kyu_5/valid_parentheses/valid_parentheses.py +++ b/kyu_5/valid_parentheses/valid_parentheses.py @@ -51,7 +51,7 @@ def valid_parentheses(string: str) -> bool: def clean_up_string(string: str) -> str: """ - Cleaning up string from invalid chars. + Clean up string from invalid chars. :param string: str :return: str From 2718226ba8a46d4c2f72454855534556bfa7b985 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:27:27 -0800 Subject: [PATCH 467/873] Update compute_ranks.py kyu_5/sports_league_table_ranking/compute_ranks.py:102 in public function `calc_team_points`: D401: First line should be in imperative mood (perhaps 'Calculate', not 'Calculates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_5/sports_league_table_ranking/compute_ranks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/sports_league_table_ranking/compute_ranks.py b/kyu_5/sports_league_table_ranking/compute_ranks.py index 7a265826b5f..0ee07c8f9df 100644 --- a/kyu_5/sports_league_table_ranking/compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/compute_ranks.py @@ -100,7 +100,7 @@ def check_if_team_registered(team, teams, number) -> None: def calc_team_points(team, teams, score_a, score_b) -> None: """ - Calculates team points. + Calculate team points. :param team: :param teams: From 2e3e4d4d77f5761c36881b2bd32fd1922c6dfc39 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 09:58:10 -0800 Subject: [PATCH 468/873] Update compute_ranks.py kyu_5/sports_league_table_ranking/compute_ranks.py:132 in public function `calc_gd`: D401: First line should be in imperative mood (perhaps 'Calculate', not 'Calculates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". kyu_5/sports_league_table_ranking/compute_ranks.py:144 in public function `calc_rank`: D401: First line should be in imperative mood (perhaps 'Calculate', not 'Calculates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_5/sports_league_table_ranking/compute_ranks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_5/sports_league_table_ranking/compute_ranks.py b/kyu_5/sports_league_table_ranking/compute_ranks.py index 0ee07c8f9df..7b0e698e7f4 100644 --- a/kyu_5/sports_league_table_ranking/compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/compute_ranks.py @@ -130,7 +130,7 @@ def calc_for_against(teams, team, team_1, team_2) -> None: def calc_gd(teams) -> None: """ - Calculates "GD". + Calculate "GD". :param teams: :return: @@ -142,7 +142,7 @@ def calc_gd(teams) -> None: def calc_rank(teams: dict) -> None: """ - Calculates Rank. + Calculate Rank. First you sort the teams by their points. If two or more teams reached the same number of points, the second criteria From 2cf46444ff981007bcd24c9e2a73d20b4e602fa2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 09:59:53 -0800 Subject: [PATCH 469/873] Update anagrams.py kyu_5/where_my_anagrams_at/anagrams.py:10 in public function `anagrams`: D403: First word of the first line should be properly capitalized ('Anagrams', not 'anagrams') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/where_my_anagrams_at/anagrams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/where_my_anagrams_at/anagrams.py b/kyu_5/where_my_anagrams_at/anagrams.py index 95d16300500..35b900557bc 100644 --- a/kyu_5/where_my_anagrams_at/anagrams.py +++ b/kyu_5/where_my_anagrams_at/anagrams.py @@ -8,7 +8,7 @@ def anagrams(word, words) -> list: """ - anagrams function. + Anagrams function. A function that will find all the anagrams of a word from a list. You will be given two inputs a word and From 333d33020e7a5d1990d5ee4e3817bea3001f5696 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:00:53 -0800 Subject: [PATCH 470/873] Update zeros.py kyu_5/number_of_trailing_zeros_of_n/zeros.py:10 in public function `zeros`: D403: First word of the first line should be properly capitalized ('Zeros', not 'zeros') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/number_of_trailing_zeros_of_n/zeros.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/number_of_trailing_zeros_of_n/zeros.py b/kyu_5/number_of_trailing_zeros_of_n/zeros.py index d8bab1d3ff5..4641070d687 100644 --- a/kyu_5/number_of_trailing_zeros_of_n/zeros.py +++ b/kyu_5/number_of_trailing_zeros_of_n/zeros.py @@ -8,7 +8,7 @@ def zeros(n) -> int: """ - zeros function. + Zeros function. A program that calculate the number of trailing zeros in a factorial of a given number. From d58fa43ed9505b87cfde33792d4cc14c90b7f514 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:01:48 -0800 Subject: [PATCH 471/873] Update sum_pairs.py kyu_5/sum_of_pairs/sum_pairs.py:39 in public function `simplify`: D403: First word of the first line should be properly capitalized ('Simplify', not 'simplify') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/sum_of_pairs/sum_pairs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/sum_of_pairs/sum_pairs.py b/kyu_5/sum_of_pairs/sum_pairs.py index 8de12fd4bdb..1dee9038872 100644 --- a/kyu_5/sum_of_pairs/sum_pairs.py +++ b/kyu_5/sum_of_pairs/sum_pairs.py @@ -37,7 +37,7 @@ def sum_pairs(ints: list, s: int): def simplify(ints: list) -> list: """ - simplify function. + Simplify function. In order to speed up the process we should simplify the input list by reducing duplicate values, see sample below: From 6b3b2032053ac06a8ac7f242b394ce6a355ca0f1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:03:04 -0800 Subject: [PATCH 472/873] Update hashtag_generator.py kyu_5/the_hashtag_generator/hashtag_generator.py:10 in public function `generate_hashtag`: D401: First line should be in imperative mood; try rephrasing (found 'The') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_5/the_hashtag_generator/hashtag_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/the_hashtag_generator/hashtag_generator.py b/kyu_5/the_hashtag_generator/hashtag_generator.py index b8012aa1c99..e3ac2890743 100644 --- a/kyu_5/the_hashtag_generator/hashtag_generator.py +++ b/kyu_5/the_hashtag_generator/hashtag_generator.py @@ -8,7 +8,7 @@ def generate_hashtag(word: str) -> bool | str: """ - The Hashtag Generator. + Hashtag Generator. 1. It must start with a hashtag (#). 2. All words must have their first letter capitalized. From 4fc96061be398542fa2a96139d1d46c9ef014142 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:04:28 -0800 Subject: [PATCH 473/873] Update advice.py kyu_5/find_the_safest_places_in_town/advice.py:32 in public function `city_map_processing`: D401: First line should be in imperative mood (perhaps 'Process', not 'Processing') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". kyu_5/find_the_safest_places_in_town/advice.py:54 in public function `advice`: D403: First word of the first line should be properly capitalized ('Advice', not 'advice') The [first line of a] docstring is a phrase ending in a period. --- kyu_5/find_the_safest_places_in_town/advice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_5/find_the_safest_places_in_town/advice.py b/kyu_5/find_the_safest_places_in_town/advice.py index 57e0475987b..e9f4754c069 100644 --- a/kyu_5/find_the_safest_places_in_town/advice.py +++ b/kyu_5/find_the_safest_places_in_town/advice.py @@ -30,7 +30,7 @@ def agents_cleanup(agents, n) -> set: def city_map_processing(city: set, agents: set) -> None: """ - Processing city map. + Process city map. :param city: the full city map (set) :param agents: is an set of agent coordinates. @@ -52,7 +52,7 @@ def city_map_processing(city: set, agents: set) -> None: def advice(agents: set, n: int) -> list: """ - advice function. + Advice function. The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents. From dee44d3cd3ec2d79d36897a1b994deb85a15c453 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:10:22 -0800 Subject: [PATCH 474/873] Update checker.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use named expression to simplify assignment and conditional [×3] (use-named-expression) --- kyu_5/tic_tac_toe_checker/checker.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/checker.py b/kyu_5/tic_tac_toe_checker/checker.py index 81694108feb..df7c94fceec 100644 --- a/kyu_5/tic_tac_toe_checker/checker.py +++ b/kyu_5/tic_tac_toe_checker/checker.py @@ -18,16 +18,13 @@ def is_solved(board) -> int: :param board: list :return: -1, 0, 1, or 2 """ - rows = check_rows(board) - if rows: + if rows := check_rows(board): return rows - cols = check_cols(board) - if cols: + if cols := check_cols(board): return cols - diagonals = check_diagonals(board) - if diagonals: + if diagonals := check_diagonals(board): return diagonals for row in board: From e132d9deded5aa745544bc2759e8e0b85dc2a81f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:17:44 -0800 Subject: [PATCH 475/873] Disable Check for codeclimate --- .codeclimate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 7a47b516500..4d915682b19 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -7,4 +7,6 @@ engines: checks: import-error: enabled: false + syntax-error: + enabled: false # ... CONFIG CONTENT ... From 079dcda61716f0f00d9b84cd2658fb1751c9a6da Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:15:13 -0800 Subject: [PATCH 476/873] Update checker.py Use the built-in function next instead of a for-loop (use-next) --- kyu_5/tic_tac_toe_checker/checker.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/checker.py b/kyu_5/tic_tac_toe_checker/checker.py index df7c94fceec..3cb71126682 100644 --- a/kyu_5/tic_tac_toe_checker/checker.py +++ b/kyu_5/tic_tac_toe_checker/checker.py @@ -87,7 +87,4 @@ def check_rows(board: list) -> int | None: :param board: list :return: 1, 2, or None """ - for row in board: - if len(set(row)) == 1: - return row[0] - return None + return next((row[0] for row in board if len(set(row)) == 1), None) From eb8e5b51aa148561a125597fac2d8833d0c32b26 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:23:27 -0800 Subject: [PATCH 477/873] Update .codeclimate.yml --- .codeclimate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 4d915682b19..af2dad37edc 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -9,4 +9,6 @@ engines: enabled: false syntax-error: enabled: false + no-name-in-module: + enabled: false # ... CONFIG CONTENT ... From 4d32b19290a40358ce805724987c0d75c640b705 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:28:45 -0800 Subject: [PATCH 478/873] Update checker.py --- kyu_5/tic_tac_toe_checker/checker.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/checker.py b/kyu_5/tic_tac_toe_checker/checker.py index 3cb71126682..9d425d4afba 100644 --- a/kyu_5/tic_tac_toe_checker/checker.py +++ b/kyu_5/tic_tac_toe_checker/checker.py @@ -27,11 +27,7 @@ def is_solved(board) -> int: if diagonals := check_diagonals(board): return diagonals - for row in board: - if 0 in row: - return -1 - - return 0 + return next((-1 for row in board if 0 in row), 0) def check_diagonals(board) -> int | None: From 9735d015b4aba352b2666c1f5bab48f8909a7b23 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:36:10 -0800 Subject: [PATCH 479/873] Update alphabet_war.py suggestion (code-quality): Simplify generator expression (simplify-generator) --- kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py index f4cc3ad4c9e..77ca3bfb201 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/alphabet_war.py @@ -82,4 +82,4 @@ def clean_battlefield(battlefield: str) -> str: del result[i] break - return ''.join(char for char in reversed(temp)) + return ''.join(reversed(temp)) From 6ab8cf3fe9db1ed193c5a20d1f6b3f7e6507e331 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:13:42 -0800 Subject: [PATCH 480/873] Update requirements.txt --- requirements.txt | Bin 2300 -> 2808 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1d8fc4dc17dcf496706fe9b89d8d5bf7ec3c75b0..f29b41e793f444adba31aee864001ba5cceb0d46 100644 GIT binary patch literal 2808 zcmbW3OK)0H41~|RQhy3nAkQwku2iW~r7XIPfDl5$D{x6de|+2dJlC9?sLdimH?-G2 zV|&K-;m_}3nU`T1>DiX1OvgB+pr!PiB4+{?4V5 zZF7i)g?x`%oSm#I#hK{2IOIbu{qTU7k*xEBtzXU#=SSjXCfjvb;S6k^wNT;5DC6L@ zk?)Njb9N*@vboT6+~zY@y+dVtEq`-++TuCiv~R=S6Nf8#FG8PL`4v$>Cx5W>)Jlj$ zakXz1cnr^>Se_g*cg>maN>zb940JHj0L-)CrK=$*ce$I%17R=0@JTmWAv^qkR+BvfRmY5IEL5C+fT2qv1|@Uh3aBZ5?=- zO*kNDW_J^vwAS}3GMnqYm9sWf@2K`>Yj{RsV5Ltg)erPq^Fqk%m*miUC9!PlDcZAe zCaMR{>n?HJjJ;Gf@NP8Nz-~3ys&TA(nE`l7Zs`s83?A-(bfP}1>shBx`rMhZKbUNI zAoGFV4`K?5dLI3=mUX8%(@u4@?zJk(9tMH_t}JE^yrFAr+Nj2NxiDdG5>#45NDDm}hiM z73euK@A}YbcdBwM#H&u6?30)N=tXW=y~!W)6?t2&oLxefLl3w4O+ zsoZv~-h0_Uy@<~YO?007*x4Al)=<%3pJzrM-+A^{RV@_rb>upUZ)JWbR^YGEc^LGm z)cviK4{_!_)uK9+hbrtXPgmBFeZm&A`t$}BV&Sd#vNxgo+Xz>}{rB$mTw85sn_r7` z1k-;UxY-HT`bquE99_{Yk^FVW`IG2R_a;@Z+dlD5 Hse1hdplGE= literal 2300 zcmaKuOK%fF5QOK9#7{Ab?YuaI0~aJDBqRir{a(pqO{`hL)dzjm*l-lwHvRf_bZXEP2yr(J}7;MBrAL8-I!otCT~>iz1v;4Y0Bp}giDBi4zfJdngx7mL1?TTrWLq>NQ?RHn+PmM#8vTqi z*L!@LP7`8)FbO8hsP|kw3riScA9rUzh4pLnsJkxfso zojdH?&q7$IJ4KrG8JH#2|DyL)=OCWn^!sg>hkG+mDV&+ZZS+W^?@cgU>3!J&=aId0 zus0jP^R|up(KnvtanymX%Kohww7rJ5yTT88k8PxA&%#+KA2cs}fqbZ|vDV54-Hmpv zTcaFj%9qNaOV+k*0p=Uk$&K1fggWWwg=s{!M%IJQE(eV1O2==+j$Hu;2=3=%9cF3f z#%!bJ^gP?L9WbC{od=%u>oWRiEx+MrbRT6j@&m~mIadlc%wXo)h7QMmBW;?EKKDBB zJxnBar{~C;csu22D9i3Fs(NSSNu(a`oI7PW6W;Y8N}io#J*aiQImitSJlCLQs~J8@ z=_}nTWH!uhuh}eh9M-wjeE{33Fu_1`s&7R>De<_?{L3zIGU+zV;$WG*E;|2nRO+K!u-cTWO{7cRcu&+C+S4J=3-WE sdd~Cz1gd@yuJ^HvnNC!+E?M^{om}Wsc%OD2oPQB|)2ZX$Wlo&aA0%y2u>b%7 From 1df955a08dc1f77064bd4156e168c109d72a37d1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:13:46 -0800 Subject: [PATCH 481/873] Update test_valid_parentheses.py --- .../test_valid_parentheses.py | 42 ++++++++----------- 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index b067b1737d5..9c2645a76e0 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -9,6 +9,8 @@ import unittest import allure +from parameterized import parameterized + from kyu_5.valid_parentheses.valid_parentheses \ import valid_parentheses from utils.log_func import print_log @@ -29,7 +31,18 @@ class ValidParenthesesTestCase(unittest.TestCase): """Testing valid_parentheses function.""" - def test_valid_parentheses(self): + @parameterized.expand([ + (" (", False), + (")test", False), + ("", True), + ("hi())(", False), + ("hi(hi)()", True), + ("()", True), + (")(()))", False), + ("(", False), + ("(())((()())())", True) + ]) + def test_valid_parentheses(self, test_input, expected): """ Testing valid_parentheses with various test data. @@ -37,12 +50,6 @@ def test_valid_parentheses(self): 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: - "()" => true - ")(()))" => false - "(" => false - "(())((()())())" => true :return: """ # pylint: disable-msg=R0801 @@ -55,20 +62,7 @@ def test_valid_parentheses(self): '

Test Description:

' "

") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - (" (", False), - (")test", False), - ("", True), - ("hi())(", False), - ("hi(hi)()", True), - ("()", True), - (")(()))", False), - ("(", False), - ("(())((()())())", True)) - - for string, expected in test_data: - print_log(string=string, - expected=expected) - self.assertEqual(expected, - valid_parentheses(string)) + with allure.step(f"Enter test string: {test_input}" + f"and verify the expected output: {expected}."): + print_log(test_input=test_input, expected=expected) + self.assertEqual(expected, valid_parentheses(test_input)) From 838cb71501bc11318459b0c87e1877f6f844e303 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:19:10 -0800 Subject: [PATCH 482/873] Update test_valid_parentheses.py --- .../test_valid_parentheses.py | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index 9c2645a76e0..9f295d3ad86 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -32,16 +32,15 @@ class ValidParenthesesTestCase(unittest.TestCase): """Testing valid_parentheses function.""" @parameterized.expand([ - (" (", False), - (")test", False), - ("", True), - ("hi())(", False), - ("hi(hi)()", True), - ("()", True), - (")(()))", False), - ("(", False), - ("(())((()())())", True) - ]) + (" (", False), + (")test", False), + ("", True), + ("hi())(", False), + ("hi(hi)()", True), + ("()", True), + (")(()))", False), + ("(", False), + ("(())((()())())", True)]) def test_valid_parentheses(self, test_input, expected): """ Testing valid_parentheses with various test data. From 0a386b7d35d07f38140caa6630466c63da40c59a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:21:06 -0800 Subject: [PATCH 483/873] Update test_valid_parentheses.py --- kyu_5/valid_parentheses/test_valid_parentheses.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index 9f295d3ad86..b5bfc6e37a1 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -10,7 +10,6 @@ import unittest import allure from parameterized import parameterized - from kyu_5.valid_parentheses.valid_parentheses \ import valid_parentheses from utils.log_func import print_log From b78707e64282439e2a1a50b20b30d6b393ebf6f7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:22:18 -0800 Subject: [PATCH 484/873] Update test_valid_parentheses.py --- .../test_valid_parentheses.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index b5bfc6e37a1..104e693afbe 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -31,15 +31,16 @@ class ValidParenthesesTestCase(unittest.TestCase): """Testing valid_parentheses function.""" @parameterized.expand([ - (" (", False), - (")test", False), - ("", True), - ("hi())(", False), - ("hi(hi)()", True), - ("()", True), - (")(()))", False), - ("(", False), - ("(())((()())())", True)]) + (" (", False), + (")test", False), + ("", True), + ("hi())(", False), + ("hi(hi)()", True), + ("()", True), + (")(()))", False), + ("(", False), + ("(())((()())())", True) + ]) def test_valid_parentheses(self, test_input, expected): """ Testing valid_parentheses with various test data. From 826df45ca972e844091ade5b3f12fb8cbf69275f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:30:59 -0800 Subject: [PATCH 485/873] Update test_anagrams.py --- kyu_5/where_my_anagrams_at/test_anagrams.py | 31 ++++++++++----------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/kyu_5/where_my_anagrams_at/test_anagrams.py b/kyu_5/where_my_anagrams_at/test_anagrams.py index 024ffb791b3..0efac66e5c1 100644 --- a/kyu_5/where_my_anagrams_at/test_anagrams.py +++ b/kyu_5/where_my_anagrams_at/test_anagrams.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_5.where_my_anagrams_at.anagrams import anagrams from utils.log_func import print_log @@ -29,7 +30,15 @@ class AnagramsTestCase(unittest.TestCase): """Testing anagrams function.""" - def test_anagrams(self): + @parameterized.expand([ + ('abba', + ['aabb', 'abcd', 'bbaa', 'dada'], + ['aabb', 'bbaa']), + ('racer', + ['crazer', 'carer', 'racar', 'caers', 'racer'], + ['carer', 'racer']) + ]) + def test_anagrams(self, string, array, expected): """ Testing anagrams function with various test data. @@ -48,19 +57,7 @@ def test_anagrams(self): '

Test Description:

' "

") # pylint: enable=R0801 - with allure.step("Enter test data (list of strings)" - " and verify the output"): - test_data: tuple = ( - ('abba', - ['aabb', 'abcd', 'bbaa', 'dada'], - ['aabb', 'bbaa']), - ('racer', - ['crazer', 'carer', 'racar', 'caers', 'racer'], - ['carer', 'racer'])) - - for d in test_data: - string: str = d[0] - array: list = d[1] - expected: list = d[2] - print_log(array=array, expected=expected) - self.assertListEqual(expected, anagrams(string, array)) + with allure.step(f"Enter test data: {string, array}" + f" and verify the expected output: {expected}"): + print_log(string=string, array=array, expected=expected) + self.assertListEqual(expected, anagrams(string, array)) From 39b58e05cfbd464c3c74afec76da78c589ac1d17 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:26:46 -0800 Subject: [PATCH 486/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 44 ++++++++++++----------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index f1c3ce28e12..a3058fd79d3 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.tic_tac_toe_checker.checker import is_solved @@ -27,7 +28,24 @@ class IsSolvedTestCase(unittest.TestCase): """Testing is_solved function.""" - def test_is_solved(self): + @parameterized.expand( + [([[0, 0, 1], + [0, 1, 2], + [2, 1, 0]], -1, 'not yet finished'), + ([[1, 1, 1], + [0, 2, 2], + [0, 0, 0]], 1, 'winning row'), + ([[2, 1, 2], + [2, 1, 1], + [1, 1, 2]], 1, 'winning column'), + ([[2, 1, 2], + [2, 1, 1], + [1, 2, 1]], 0, 'draw'), + ([[1, 2, 0], + [0, 1, 2], + [0, 0, 1]], 1, 'wining diagonal')] + ) + def test_is_solved(self, board, expected, message): """ Testing is_solved function with various test data. @@ -54,25 +72,9 @@ def test_is_solved(self): "

The function should return whether the board's " "current state is solved.

") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([[0, 0, 1], - [0, 1, 2], - [2, 1, 0]], -1, 'not yet finished'), - ([[1, 1, 1], - [0, 2, 2], - [0, 0, 0]], 1, 'winning row'), - ([[2, 1, 2], - [2, 1, 1], - [1, 1, 2]], 1, 'winning column'), - ([[2, 1, 2], - [2, 1, 1], - [1, 2, 1]], 0, 'draw'), - ([[1, 2, 0], - [0, 1, 2], - [0, 0, 1]], 1, 'wining diagonal')) - for board, expected, message in test_data: + with allure.step(f"Enter Tic-Tac-Toe board {board}" + f" and verify the output {expected}."): result: int = is_solved(board) - with allure.step("Enter Tic-Tac-Toe board and verify the output."): - print_log(expected=expected, result=result, message=message) - self.assertEqual(expected, result, msg=message) + print_log(expected=expected, result=result, message=message) + self.assertEqual(expected, result, msg=message) From f952729f793cbc3e774b2d93e64e62e37ab1c7ef Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:32:35 -0800 Subject: [PATCH 487/873] Update test_generate_hashtag.py --- .../test_generate_hashtag.py | 71 +++++++++---------- 1 file changed, 35 insertions(+), 36 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index 64de2a900a3..62ee385b52b 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.the_hashtag_generator.hashtag_generator \ import generate_hashtag @@ -30,33 +31,8 @@ class GenerateHashtagTestCase(unittest.TestCase): """Testing generate_hashtag function.""" - def test_generate_hashtag(self): - """ - Testing 'generate_hashtag' function with various test data. - - :return: - """ - allure.dynamic.title("Testing 'generate_hashtag' function") - allure.dynamic.severity(allure.severity_level.NORMAL) - allure.dynamic.description_html( - '

Codewars badge:

' - '' - '

Test Description:

' - "

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." - "

") - - test_data: tuple = ( - ('', + @parameterized.expand( + [('', False, 'Expected an empty string to return False'), ('Codewars', @@ -89,14 +65,37 @@ def test_generate_hashtag(self): 'oooooong Cat', False, 'Should return False if the final word is ' - 'longer than 140 chars.')) + 'longer than 140 chars.')] + ) + def test_generate_hashtag(self, string, expected, message): + """ + Testing 'generate_hashtag' function with various test data. - for string, expected, message in test_data: - actual_result = generate_hashtag(string) + :return: + """ + allure.dynamic.title("Testing 'generate_hashtag' function") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

Codewars badge:

' + '' + '

Test Description:

' + "

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." + "

") - with allure.step("Enter a test string and verify the output:"): - print_log(string=string, - message=message, - expected=expected, - actual_result=actual_result) - self.assertEqual(expected, actual_result, msg=message) + with allure.step("Enter a test string and verify the output:"): + actual_result = generate_hashtag(string) + print_log(string=string, + message=message, + expected=expected, + actual_result=actual_result) + self.assertEqual(expected, actual_result, message) From 559dd22682aeabf428a0e910c939ea7606679b71 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:34:43 -0800 Subject: [PATCH 488/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index a3058fd79d3..78a35fa4dfa 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -28,12 +28,12 @@ class IsSolvedTestCase(unittest.TestCase): """Testing is_solved function.""" - @parameterized.expand( - [([[0, 0, 1], - [0, 1, 2], - [2, 1, 0]], -1, 'not yet finished'), + @parameterized.expand([ + ([[0, 0, 1], + [0, 1, 2], + [2, 1, 0]], -1, 'not yet finished'), ([[1, 1, 1], - [0, 2, 2], + [0, 2, 2], [0, 0, 0]], 1, 'winning row'), ([[2, 1, 2], [2, 1, 1], @@ -43,8 +43,7 @@ class IsSolvedTestCase(unittest.TestCase): [1, 2, 1]], 0, 'draw'), ([[1, 2, 0], [0, 1, 2], - [0, 0, 1]], 1, 'wining diagonal')] - ) + [0, 0, 1]], 1, 'wining diagonal')]) def test_is_solved(self, board, expected, message): """ Testing is_solved function with various test data. From 4ddc7c7b2fbb911781d903b2a6937ab3d97cf5f1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:36:23 -0800 Subject: [PATCH 489/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index 78a35fa4dfa..76be6d81526 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -30,10 +30,10 @@ class IsSolvedTestCase(unittest.TestCase): @parameterized.expand([ ([[0, 0, 1], - [0, 1, 2], - [2, 1, 0]], -1, 'not yet finished'), + [0, 1, 2], + [2, 1, 0]], -1, 'not yet finished'), ([[1, 1, 1], - [0, 2, 2], + [0, 2, 2], [0, 0, 0]], 1, 'winning row'), ([[2, 1, 2], [2, 1, 1], From 759acb019f15a6df3c26e2e5fb527f21f8d63921 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:41:47 -0800 Subject: [PATCH 490/873] Update test_generate_hashtag.py --- .../test_generate_hashtag.py | 73 +++++++++---------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index 62ee385b52b..958a9594c14 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -33,40 +33,39 @@ class GenerateHashtagTestCase(unittest.TestCase): @parameterized.expand( [('', - False, - 'Expected an empty string to return False'), - ('Codewars', - '#Codewars', - 'Should handle a single word.'), - ('Codewars ', - '#Codewars', - 'Should handle trailing whitespace.'), - ('Codewars Is Nice', - '#CodewarsIsNice', - 'Should remove spaces.'), - ('codewars is nice', - '#CodewarsIsNice', - 'Should capitalize first letters of words.'), - ('CodeWars is nice', - '#CodewarsIsNice', - 'Should capitalize all letters of words - ' - 'all lower case but the first.'), - ('c i n', - '#CIN', - 'Should capitalize first letters of words even ' - 'when single letters.'), - ('codewars is nice', - '#CodewarsIsNice', - 'Should deal with unnecessary middle spaces.'), - ('Loooooooooooooooooooooooooooooooooooo' - 'oooooooooooooooooooooooooooooooooooooo' - 'oooooooooooooooooooooooooooooooooooooo' - 'ooooooooooooooooooooooooooooooooooooo' - 'oooooong Cat', - False, - 'Should return False if the final word is ' - 'longer than 140 chars.')] - ) + False, + 'Expected an empty string to return False'), + ('Codewars', + '#Codewars', + 'Should handle a single word.'), + ('Codewars ', + '#Codewars', + 'Should handle trailing whitespace.'), + ('Codewars Is Nice', + '#CodewarsIsNice', + 'Should remove spaces.'), + ('codewars is nice', + '#CodewarsIsNice', + 'Should capitalize first letters of words.'), + ('CodeWars is nice', + '#CodewarsIsNice', + 'Should capitalize all letters of words - ' + 'all lower case but the first.'), + ('c i n', + '#CIN', + 'Should capitalize first letters of words even ' + 'when single letters.'), + ('codewars is nice', + '#CodewarsIsNice', + 'Should deal with unnecessary middle spaces.'), + ('Loooooooooooooooooooooooooooooooooooo' + 'oooooooooooooooooooooooooooooooooooooo' + 'oooooooooooooooooooooooooooooooooooooo' + 'ooooooooooooooooooooooooooooooooooooo' + 'oooooong Cat', + False, + 'Should return False if the final word is ' + 'longer than 140 chars.')]) def test_generate_hashtag(self, string, expected, message): """ Testing 'generate_hashtag' function with various test data. @@ -95,7 +94,7 @@ def test_generate_hashtag(self, string, expected, message): with allure.step("Enter a test string and verify the output:"): actual_result = generate_hashtag(string) print_log(string=string, - message=message, - expected=expected, - actual_result=actual_result) + message=message, + expected=expected, + actual_result=actual_result) self.assertEqual(expected, actual_result, message) From 2d5fa44d85676796ad1f4602181c46965454423b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:44:19 -0800 Subject: [PATCH 491/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index 76be6d81526..cb9a483788a 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -29,12 +29,8 @@ class IsSolvedTestCase(unittest.TestCase): """Testing is_solved function.""" @parameterized.expand([ - ([[0, 0, 1], - [0, 1, 2], - [2, 1, 0]], -1, 'not yet finished'), - ([[1, 1, 1], - [0, 2, 2], - [0, 0, 0]], 1, 'winning row'), + ([[0, 0, 1], [0, 1, 2], [2, 1, 0]], -1, 'not yet finished'), + ([[1, 1, 1], [0, 2, 2], [0, 0, 0]], 1, 'winning row'), ([[2, 1, 2], [2, 1, 1], [1, 1, 2]], 1, 'winning column'), From c8421c33346311c9a7cd81b97890639ebb7f04b5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:00:06 -0800 Subject: [PATCH 492/873] Update test_checker.py --- kyu_5/tic_tac_toe_checker/test_checker.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/kyu_5/tic_tac_toe_checker/test_checker.py b/kyu_5/tic_tac_toe_checker/test_checker.py index cb9a483788a..e1a824da18b 100644 --- a/kyu_5/tic_tac_toe_checker/test_checker.py +++ b/kyu_5/tic_tac_toe_checker/test_checker.py @@ -31,15 +31,9 @@ class IsSolvedTestCase(unittest.TestCase): @parameterized.expand([ ([[0, 0, 1], [0, 1, 2], [2, 1, 0]], -1, 'not yet finished'), ([[1, 1, 1], [0, 2, 2], [0, 0, 0]], 1, 'winning row'), - ([[2, 1, 2], - [2, 1, 1], - [1, 1, 2]], 1, 'winning column'), - ([[2, 1, 2], - [2, 1, 1], - [1, 2, 1]], 0, 'draw'), - ([[1, 2, 0], - [0, 1, 2], - [0, 0, 1]], 1, 'wining diagonal')]) + ([[2, 1, 2], [2, 1, 1], [1, 1, 2]], 1, 'winning column'), + ([[2, 1, 2], [2, 1, 1], [1, 2, 1]], 0, 'draw'), + ([[1, 2, 0], [0, 1, 2], [0, 0, 1]], 1, 'wining diagonal')]) def test_is_solved(self, board, expected, message): """ Testing is_solved function with various test data. From 8139cc27d2db7748ce1c59c75abb7ba54ed97b2f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:04:38 -0800 Subject: [PATCH 493/873] Update test_sum_pairs.py --- kyu_5/sum_of_pairs/test_sum_pairs.py | 55 ++++++++++++++-------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/kyu_5/sum_of_pairs/test_sum_pairs.py b/kyu_5/sum_of_pairs/test_sum_pairs.py index 7b9481d048d..5d3445e6b6e 100644 --- a/kyu_5/sum_of_pairs/test_sum_pairs.py +++ b/kyu_5/sum_of_pairs/test_sum_pairs.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.sum_of_pairs.sum_pairs import sum_pairs @@ -32,7 +33,24 @@ class SumPairsTestCase(unittest.TestCase): """Testing 'sum_pairs' function.""" - def test_sum_pairs(self): + @parameterized.expand([ + ([1, 4, 8, 7, 3, 15], 8, [1, 7], + "should return [1, 7] for sum = 8"), + ([1, -2, 3, 0, -6, 1], -6, [0, -6], + "should return [0, -6] for sum = -6"), + ([20, -13, 40], -7, None, + "should return None for sum = -7"), + ([1, 2, 3, 4, 1, 0], 2, [1, 1], + "should return [1, 1] for sum = 2"), + ([10, 5, 2, 3, 7, 5], 10, [3, 7], + "should return [3, 7] for sum = 10"), + ([4, -2, 3, 3, 4], 8, [4, 4], + "should return [4, 4] for sum = 8"), + ([0, 2, 0], 0, [0, 0], + "should return [0, 0] for sum = 0"), + ([5, 9, 13, -3], 10, [13, -3], + "should return [13, -3] for sum = 10")]) + def test_sum_pairs(self, ints, s, expected, message): """ Testing 'sum_pairs' function. @@ -54,30 +72,13 @@ def test_sum_pairs(self): "from the left please) in order of appearance that add up " "to form the sum.

") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([1, 4, 8, 7, 3, 15], 8, [1, 7], - "should return [1, 7] for sum = 8"), - ([1, -2, 3, 0, -6, 1], -6, [0, -6], - "should return [0, -6] for sum = -6"), - ([20, -13, 40], -7, None, - "should return None for sum = -7"), - ([1, 2, 3, 4, 1, 0], 2, [1, 1], - "should return [1, 1] for sum = 2"), - ([10, 5, 2, 3, 7, 5], 10, [3, 7], - "should return [3, 7] for sum = 10"), - ([4, -2, 3, 3, 4], 8, [4, 4], - "should return [4, 4] for sum = 8"), - ([0, 2, 0], 0, [0, 0], - "should return [0, 0] for sum = 0"), - ([5, 9, 13, -3], 10, [13, -3], - "should return [13, -3] for sum = 10")) - with allure.step("Enter a test list and verify the output."): - for ints, s, expected, message in test_data: - result = sum_pairs(ints, s) - print_log(ints=ints, - s=s, - message=message, - expected=expected, - result=result) - self.assertEqual(expected, result) + with allure.step(f"Enter a test list {ints}" + f"and verify the output {expected}."): + result = sum_pairs(ints, s) + print_log(ints=ints, + s=s, + message=message, + expected=expected, + result=result) + self.assertEqual(expected, result) From 730890e63edbcee608b5c8d76d1858ff88ac1a20 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:25:11 -0800 Subject: [PATCH 494/873] Update test_generate_hashtag.py --- kyu_5/the_hashtag_generator/test_generate_hashtag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index 958a9594c14..c893d4863e7 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -33,8 +33,8 @@ class GenerateHashtagTestCase(unittest.TestCase): @parameterized.expand( [('', - False, - 'Expected an empty string to return False'), + False, + 'Expected an empty string to return False'), ('Codewars', '#Codewars', 'Should handle a single word.'), From 27eaf9b430a93fd81b3e2c0b68fbf4224576d3e2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:25:51 -0800 Subject: [PATCH 495/873] Update test_valid_parentheses.py --- kyu_5/valid_parentheses/test_valid_parentheses.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_5/valid_parentheses/test_valid_parentheses.py b/kyu_5/valid_parentheses/test_valid_parentheses.py index 104e693afbe..5d69841e18c 100644 --- a/kyu_5/valid_parentheses/test_valid_parentheses.py +++ b/kyu_5/valid_parentheses/test_valid_parentheses.py @@ -39,8 +39,7 @@ class ValidParenthesesTestCase(unittest.TestCase): ("()", True), (")(()))", False), ("(", False), - ("(())((()())())", True) - ]) + ("(())((()())())", True)]) def test_valid_parentheses(self, test_input, expected): """ Testing valid_parentheses with various test data. From fe878dd761f8415246e6753ccd9f6619903ddb41 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:28:25 -0800 Subject: [PATCH 496/873] Update test_generate_hashtag.py --- kyu_5/the_hashtag_generator/test_generate_hashtag.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index c893d4863e7..b8a2e24fc48 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -32,8 +32,7 @@ class GenerateHashtagTestCase(unittest.TestCase): """Testing generate_hashtag function.""" @parameterized.expand( - [('', - False, + [('', False, 'Expected an empty string to return False'), ('Codewars', '#Codewars', @@ -62,8 +61,7 @@ class GenerateHashtagTestCase(unittest.TestCase): 'oooooooooooooooooooooooooooooooooooooo' 'oooooooooooooooooooooooooooooooooooooo' 'ooooooooooooooooooooooooooooooooooooo' - 'oooooong Cat', - False, + 'oooooong Cat', False, 'Should return False if the final word is ' 'longer than 140 chars.')]) def test_generate_hashtag(self, string, expected, message): From 4feb47fbbcb3fc6761db79f4a1dbd8ce4ff87f69 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:31:10 -0800 Subject: [PATCH 497/873] Update test_generate_hashtag.py --- kyu_5/the_hashtag_generator/test_generate_hashtag.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index b8a2e24fc48..a0745aaacb6 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -32,14 +32,9 @@ class GenerateHashtagTestCase(unittest.TestCase): """Testing generate_hashtag function.""" @parameterized.expand( - [('', False, - 'Expected an empty string to return False'), - ('Codewars', - '#Codewars', - 'Should handle a single word.'), - ('Codewars ', - '#Codewars', - 'Should handle trailing whitespace.'), + [('', False, 'Expected an empty string to return False'), + ('Codewars', '#Codewars', 'Should handle a single word.'), + ('Codewars ', '#Codewars', 'Should handle trailing whitespace.'), ('Codewars Is Nice', '#CodewarsIsNice', 'Should remove spaces.'), From 0f0550e9dae6821b4d4f0471d8ddf9a6920766f3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:32:33 -0800 Subject: [PATCH 498/873] Update test_generate_hashtag.py --- kyu_5/the_hashtag_generator/test_generate_hashtag.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index a0745aaacb6..21cfda66a7d 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -35,12 +35,9 @@ class GenerateHashtagTestCase(unittest.TestCase): [('', False, 'Expected an empty string to return False'), ('Codewars', '#Codewars', 'Should handle a single word.'), ('Codewars ', '#Codewars', 'Should handle trailing whitespace.'), - ('Codewars Is Nice', - '#CodewarsIsNice', - 'Should remove spaces.'), - ('codewars is nice', - '#CodewarsIsNice', - 'Should capitalize first letters of words.'), + ('Codewars Is Nice', '#CodewarsIsNice', 'Should remove spaces.'), + ('codewars is nice', '#CodewarsIsNice', + 'Should capitalize first letters of words.'), ('CodeWars is nice', '#CodewarsIsNice', 'Should capitalize all letters of words - ' From 906498903e30d383ba98031f88d75a33aef1f985 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:36:12 -0800 Subject: [PATCH 499/873] Update test_generate_hashtag.py --- .../test_generate_hashtag.py | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/kyu_5/the_hashtag_generator/test_generate_hashtag.py b/kyu_5/the_hashtag_generator/test_generate_hashtag.py index 21cfda66a7d..a366013789e 100644 --- a/kyu_5/the_hashtag_generator/test_generate_hashtag.py +++ b/kyu_5/the_hashtag_generator/test_generate_hashtag.py @@ -34,28 +34,26 @@ class GenerateHashtagTestCase(unittest.TestCase): @parameterized.expand( [('', False, 'Expected an empty string to return False'), ('Codewars', '#Codewars', 'Should handle a single word.'), - ('Codewars ', '#Codewars', 'Should handle trailing whitespace.'), + ('Codewars ', '#Codewars', + 'Should handle trailing whitespace.'), ('Codewars Is Nice', '#CodewarsIsNice', 'Should remove spaces.'), ('codewars is nice', '#CodewarsIsNice', 'Should capitalize first letters of words.'), - ('CodeWars is nice', - '#CodewarsIsNice', - 'Should capitalize all letters of words - ' - 'all lower case but the first.'), - ('c i n', - '#CIN', - 'Should capitalize first letters of words even ' - 'when single letters.'), - ('codewars is nice', - '#CodewarsIsNice', - 'Should deal with unnecessary middle spaces.'), - ('Loooooooooooooooooooooooooooooooooooo' - 'oooooooooooooooooooooooooooooooooooooo' - 'oooooooooooooooooooooooooooooooooooooo' - 'ooooooooooooooooooooooooooooooooooooo' - 'oooooong Cat', False, - 'Should return False if the final word is ' - 'longer than 140 chars.')]) + ('CodeWars is nice', '#CodewarsIsNice', + 'Should capitalize all letters of words - ' + 'all lower case but the first.'), + ('c i n', '#CIN', + 'Should capitalize first letters of words even ' + 'when single letters.'), + ('codewars is nice', '#CodewarsIsNice', + 'Should deal with unnecessary middle spaces.'), + ('Loooooooooooooooooooooooooooooooooooo' + 'oooooooooooooooooooooooooooooooooooooo' + 'oooooooooooooooooooooooooooooooooooooo' + 'ooooooooooooooooooooooooooooooooooooo' + 'oooooong Cat', False, + 'Should return False if the final word is ' + 'longer than 140 chars.')]) def test_generate_hashtag(self, string, expected, message): """ Testing 'generate_hashtag' function with various test data. From f977abfff7b068b54d7f4c2dd2c6198daabcc1bb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:41:17 -0800 Subject: [PATCH 500/873] Update test_sum_two_smallest_numbers.py --- .../test_sum_two_smallest_numbers.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py b/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py index 5c20c1337a6..a227850deeb 100644 --- a/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py +++ b/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of two lowest positive integers +Test for -> Sum of two lowest positive integers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -12,6 +13,7 @@ # FUNDAMENTALS, ARRAYS +# pylint: disable-msg=R0801 @allure.epic('7 kyu') @allure.parent_suite('Beginner') @allure.suite("Data Structures") @@ -23,10 +25,9 @@ @allure.link( url='https://www.codewars.com/kata/558fc85d8fd1938afb000014', name='Source/Kata') +# pylint: enable-msg=R0801 class SumTwoSmallestNumbersTestCase(unittest.TestCase): - """ - Testing sum_two_smallest_numbers function - """ + """Testing sum_two_smallest_numbers function.""" def test_sum_two_smallest_numbers(self): """ From 61e7415a16b4817b0ef3707b6fb0f75222d2f5cd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:49:47 -0800 Subject: [PATCH 501/873] Update test_increment_string.py --- .../test_increment_string.py | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/kyu_5/string_incrementer/test_increment_string.py b/kyu_5/string_incrementer/test_increment_string.py index e6f40241467..7fdad745c48 100644 --- a/kyu_5/string_incrementer/test_increment_string.py +++ b/kyu_5/string_incrementer/test_increment_string.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.string_incrementer.string_incrementer \ import increment_string @@ -35,7 +36,17 @@ class StringIncrementerTestCase(unittest.TestCase): """Testing increment_string function.""" - def test_increment_string(self): + @parameterized.expand([ + ("foo", "foo1"), + ("foobar001", "foobar002"), + ("foobar1", "foobar2"), + ("foobar00", "foobar01"), + ("foobar99", "foobar100"), + ("foobar099", "foobar100"), + ("", "1"), + ('009', '010'), + ('^0000007', '^0000008')]) + def test_increment_string(self, string, expected): """ Testing a function named increment_string. @@ -56,21 +67,8 @@ def test_increment_string(self): "should be appended to the new string." "

") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("foo", "foo1"), - ("foobar001", "foobar002"), - ("foobar1", "foobar2"), - ("foobar00", "foobar01"), - ("foobar99", "foobar100"), - ("foobar099", "foobar100"), - ("", "1"), - ('009', '010'), - ('^0000007', '^0000008')) - - for sting, expected in test_data: - with allure.step("Enter test string and verify the output"): - result = increment_string(sting) - print_log(string=sting, - expected=expected, - result=result) - self.assertEqual(expected, result) + with allure.step(f"Enter test string: {string} " + f"and verify the output: {expected}"): + result = increment_string(string) + print_log(string=string, expected=expected, result=result) + self.assertEqual(expected, result) From 29c5bd377eea59cccb59dd2f4a27ac41962ee960 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 09:57:31 -0800 Subject: [PATCH 502/873] Update test_compute_ranks.py --- .../test_compute_ranks.py | 76 +++++++++---------- 1 file changed, 37 insertions(+), 39 deletions(-) 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 b624344674b..54dd6d356c9 100644 --- a/kyu_5/sports_league_table_ranking/test_compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/test_compute_ranks.py @@ -7,6 +7,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.sports_league_table_ranking.compute_ranks \ import compute_ranks @@ -28,7 +29,39 @@ class ComputeRanksTestCase(unittest.TestCase): """Testing Sports League Table Ranking.""" - def test_compute_ranks(self): + @parameterized.expand([ + (6, + [[0, 5, 2, 2], + [1, 4, 0, 2], + [2, 3, 1, 2], + [1, 5, 2, 2], + [2, 0, 1, 1], + [3, 4, 1, 1], + [2, 5, 0, 2], + [3, 1, 1, 1], + [4, 0, 2, 0]], + [4, 4, 6, 3, 1, 2]), + (6, + [[0, 5, 2, 0], + [1, 4, 2, 2], + [2, 3, 1, 3], + [1, 5, 0, 0], + [2, 0, 2, 1], + [3, 4, 3, 1]], + [2, 3, 4, 1, 5, 6]), + (4, + [[0, 3, 1, 1], + [1, 2, 2, 2], + [1, 3, 2, 0], + [2, 0, 2, 0]], + [3, 1, 1, 3]), + (10, + [], + [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]), + (8, + [[0, 7, 2, 0]], + [1, 2, 2, 2, 2, 2, 2, 8])]) + def test_compute_ranks(self, number, games, expected): """ Testing compute_ranks function. @@ -63,48 +96,13 @@ def test_compute_ranks(self): "scored and those conceded)" "
  • - Goals scored
  • ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (6, - [[0, 5, 2, 2], - [1, 4, 0, 2], - [2, 3, 1, 2], - [1, 5, 2, 2], - [2, 0, 1, 1], - [3, 4, 1, 1], - [2, 5, 0, 2], - [3, 1, 1, 1], - [4, 0, 2, 0]], - [4, 4, 6, 3, 1, 2]), - (6, - [[0, 5, 2, 0], - [1, 4, 2, 2], - [2, 3, 1, 3], - [1, 5, 0, 0], - [2, 0, 2, 1], - [3, 4, 3, 1]], - [2, 3, 4, 1, 5, 6]), - (4, - [[0, 3, 1, 1], - [1, 2, 2, 2], - [1, 3, 2, 0], - [2, 0, 2, 0]], - [3, 1, 1, 3]), - (10, - [], - [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]), - (8, - [[0, 7, 2, 0]], - [1, 2, 2, 2, 2, 2, 2, 8])) - for data in test_data: - number: int = data[0] - games: list = data[1] - expected: list = data[2] + with allure.step(f"Enter a test data: {number, games}" + f" and verify the result: {expected}"): actual_result: list = compute_ranks(number, games) print_log(number=number, games=games, expected=expected, actual_result=actual_result) - with allure.step("Enter a test data and verify the result:"): - self.assertEqual(expected, actual_result) + self.assertEqual(expected, actual_result) From fd42b67caa59e8afbf26ad6853d502d2548d6d9e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:03:26 -0800 Subject: [PATCH 503/873] Update test_pig_it.py --- kyu_5/simple_pig_latin/test_pig_it.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/kyu_5/simple_pig_latin/test_pig_it.py b/kyu_5/simple_pig_latin/test_pig_it.py index e141e8b7880..83f9e81e587 100644 --- a/kyu_5/simple_pig_latin/test_pig_it.py +++ b/kyu_5/simple_pig_latin/test_pig_it.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.simple_pig_latin.pig_it import pig_it @@ -28,7 +29,12 @@ class PigItTestCase(unittest.TestCase): """Testing pig_it function.""" - def test_pig_it(self): + @parameterized.expand([ + ('Pig latin is cool', 'igPay atinlay siay oolcay'), + ('This is my string', 'hisTay siay ymay tringsay'), + ('Hello world !', 'elloHay orldway !'), + ("O tempora o mores !", 'Oay emporatay oay oresmay !')]) + def test_pig_it(self, text, expected): """ Testing pig_it function. @@ -47,13 +53,7 @@ def test_pig_it(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ('Pig latin is cool', 'igPay atinlay siay oolcay'), - ('This is my string', 'hisTay siay ymay tringsay'), - ('Hello world !', 'elloHay orldway !'), - ("O tempora o mores !", 'Oay emporatay oay oresmay !')) - - for text, expected in test_data: - print_log(expected=expected, text=text) - self.assertEqual(expected, pig_it(text)) + with allure.step(f"Enter test string: {text} " + f"and verify the output: {expected}"): + print_log(expected=expected, text=text) + self.assertEqual(expected, pig_it(text)) From df3de0868fab376281508d742f72419e2b423b32 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:10:12 -0800 Subject: [PATCH 504/873] Update test_zeros.py --- .../test_zeros.py | 33 +++++++------------ 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py b/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py index fc5f97bf087..9ef7ceb7c2b 100644 --- a/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py +++ b/kyu_5/number_of_trailing_zeros_of_n/test_zeros.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_5.number_of_trailing_zeros_of_n.zeros import zeros from utils.log_func import print_log @@ -30,7 +31,13 @@ class ZerosTestCase(unittest.TestCase): """Testing zeros function.""" - def test_zeros(self): + @parameterized.expand([ + (0, 0, "Testing with n = 0"), + (6, 1, "Testing with n = 6"), + (10, 2, "Testing with n = 10"), + (12, 2, "Testing with n = 12"), + (30, 7, "Testing with n = 30")]) + def test_zeros(self, number, expected, message): """ Testing zeros function with various test data. @@ -48,23 +55,7 @@ def test_zeros(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test number and verify the result"): - test_data: tuple = ( - (0, 0, "Testing with n = 0"), - (6, 1, "Testing with n = 6"), - (10, 2, "Testing with n = 10"), - (12, 2, "Testing with n = 12"), - (30, 7, "Testing with n = 30")) - - for data in test_data: - - number: int = data[0] - expected: int = data[1] - message: str = data[2] - - print_log(message=message, - number=number, - expected=expected) - - self.assertEqual(expected, - zeros(number)) + with allure.step(f"Enter test number: {number} " + f"and verify the result: {expected}"): + print_log(message=message, number=number, expected=expected) + self.assertEqual(expected, zeros(number)) From b98e626ebd55c73c9c2f45c6f2b28852662fbdac Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:15:57 -0800 Subject: [PATCH 505/873] Update test_alphanumeric.py --- kyu_5/not_very_secure/test_alphanumeric.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index 4a38e741cba..03735ead100 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.not_very_secure.alphanumeric import alphanumeric @@ -34,7 +35,11 @@ class AlphanumericTestCase(unittest.TestCase): """Testing alphanumeric function.""" - def test_alphanumeric(self): + @parameterized.expand([ + ("hello world_", False), + ("PassW0rd", True), + (" ", False)]) + def test_alphanumeric(self, password, expected): """ Testing alphanumeric function with various test inputs. @@ -59,14 +64,5 @@ def test_alphanumeric(self): "

    ") # pylint: enable-msg=R0801 with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ("hello world_", False), - ("PassW0rd", True), - (" ", False)) - - for password, expected in test_data: - print_log(password=password, - expected=expected) - - self.assertEqual(expected, - alphanumeric(password)) + print_log(password=password, expected=expected) + self.assertEqual(expected, alphanumeric(password)) From 2ed1f76d453a8630c529f8d081f4324ed806ffe0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:20:22 -0800 Subject: [PATCH 506/873] Update test_move_zeros.py --- .../test_move_zeros.py | 48 +++++++++---------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/kyu_5/moving_zeros_to_the_end/test_move_zeros.py b/kyu_5/moving_zeros_to_the_end/test_move_zeros.py index b6d595dc71c..c0609f8087a 100644 --- a/kyu_5/moving_zeros_to_the_end/test_move_zeros.py +++ b/kyu_5/moving_zeros_to_the_end/test_move_zeros.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.moving_zeros_to_the_end.move_zeros import move_zeros @@ -31,7 +32,24 @@ class MoveZerosTestCase(unittest.TestCase): """Testing move_zeros function.""" - def test_move_zeros(self): + @parameterized.expand([ + ([1, 2, 0, 1, 0, 1, 0, 3, 0, 1], [1, 2, 1, 1, 3, 1, 0, 0, 0, 0]), + ([9, 0.0, 0, 9, 1, 2, 0, 1, 0, 1, 0.0, 3, 0, 1, 9, 0, 0, 0, 0, 9], + [9, 9, 1, 2, 1, 1, 3, 1, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), + (["a", 0, 0, "b", "c", "d", 0, 1, 0, 1, 0, 3, 0, 1, 9, 0, 0, 0, 0, 9], + ["a", "b", "c", "d", 1, 1, 3, 1, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), + (["a", 0, 0, "b", None, "c", "d", 0, 1, False, 0, + 1, 0, 3, [], 0, 1, 9, 0, 0, {}, 0, 0, 9], + ["a", "b", None, "c", "d", 1, False, 1, 3, [], 1, + 9, {}, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), + ([0, 1, None, 2, False, 1, 0], [1, None, 2, False, 1, 0, 0]), + (["a", "b"], ["a", "b"]), + (["a"], ["a"]), + ([0, 0], [0, 0]), + ([0], [0]), + ([False], [False]), + ([], [])]) + def test_move_zeros(self, array, expected): """ Testing move_zeros function with various test data. @@ -49,27 +67,7 @@ def test_move_zeros(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test data (list) and verify the output"): - test_data: tuple = ( - ([1, 2, 0, 1, 0, 1, 0, 3, 0, 1], [1, 2, 1, 1, 3, 1, 0, 0, 0, 0]), - ([9, 0.0, 0, 9, 1, 2, 0, 1, 0, 1, 0.0, 3, 0, 1, 9, 0, 0, 0, 0, 9], - [9, 9, 1, 2, 1, 1, 3, 1, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), - (["a", 0, 0, "b", "c", "d", 0, 1, 0, 1, 0, 3, 0, 1, 9, 0, 0, 0, 0, 9], - ["a", "b", "c", "d", 1, 1, 3, 1, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), - (["a", 0, 0, "b", None, "c", "d", 0, 1, False, 0, - 1, 0, 3, [], 0, 1, 9, 0, 0, {}, 0, 0, 9], - ["a", "b", None, "c", "d", 1, False, 1, 3, [], 1, - 9, {}, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), - ([0, 1, None, 2, False, 1, 0], [1, None, 2, False, 1, 0, 0]), - (["a", "b"], ["a", "b"]), - (["a"], ["a"]), - ([0, 0], [0, 0]), - ([0], [0]), - ([False], [False]), - ([], [])) - - for d in test_data: - array: list = d[0] - expected: list = d[1] - print_log(array=array, expected=expected) - self.assertEqual(expected, move_zeros(array)) + with allure.step(f"Enter test data: {array} " + f"and verify the output: {expected}"): + print_log(array=array, expected=expected) + self.assertEqual(expected, move_zeros(array)) From c051d30af9639956951620414fba8a1a7a6d1f25 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:43:40 -0800 Subject: [PATCH 507/873] Update test_alphanumeric.py --- kyu_5/not_very_secure/test_alphanumeric.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index 03735ead100..9088d7b24a1 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -50,7 +50,6 @@ def test_alphanumeric(self, password, expected): 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 """ # pylint: disable-msg=R0801 From af713b46632f9a667a96c8a5d35e87dd16d78723 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:46:26 -0800 Subject: [PATCH 508/873] Update test_alphanumeric.py --- kyu_5/not_very_secure/test_alphanumeric.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index 9088d7b24a1..66b5ac8c931 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -44,12 +44,13 @@ def test_alphanumeric(self, password, expected): Testing alphanumeric function with various test inputs. The string has the following conditions - to be alphanumeric only + to be alphanumeric only: - 1. At least one character ("" is not valid) + 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 + latin letters and digits from 0 to 9. + 3. No whitespaces or underscore or special chars. + :return: None """ # pylint: disable-msg=R0801 From 93d9495237737e54b6423b20efe77a47f960f3a2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:51:03 -0800 Subject: [PATCH 509/873] Update test_alphanumeric.py --- kyu_5/not_very_secure/test_alphanumeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index 66b5ac8c931..358dc4392a8 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -36,7 +36,7 @@ class AlphanumericTestCase(unittest.TestCase): """Testing alphanumeric function.""" @parameterized.expand([ - ("hello world_", False), + ("hello _world", False), ("PassW0rd", True), (" ", False)]) def test_alphanumeric(self, password, expected): From 943dca4020e137b3773f8a90116c666e5b9310ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:56:26 -0800 Subject: [PATCH 510/873] Update test_primes.py --- .../test_primes.py | 56 +++++++++---------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py b/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py index 54d0d17a54e..1477e4ef5eb 100644 --- a/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py +++ b/kyu_5/master_your_primes_sieve_with_memoization/test_primes.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.master_your_primes_sieve_with_memoization.primes \ import is_prime @@ -32,7 +33,28 @@ class PrimesTestCase(unittest.TestCase): """Testing is_prime function.""" - def test_is_primes(self): + @parameterized.expand([ + (1, False), + (2, True), + (5, True), + (143, False), + (-1, False), + (29, True), + (53, True), + (529, False), + (4539131, True), + (110268984695, False), + (97444114757, False), + (7301162915, False), + (8033908462571, False), + (8813991225347, False), + (857561895605, False), + (13, True), + (17, True), + (19, True), + (23, True), + (29, True)]) + def test_is_primes(self, number, expected): """ Testing is_prime function with various test data. @@ -54,31 +76,7 @@ def test_is_primes(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test number and verify the output"): - test_data: tuple = ( - (1, False), - (2, True), - (5, True), - (143, False), - (-1, False), - (29, True), - (53, True), - (529, False), - (4539131, True), - (110268984695, False), - (97444114757, False), - (7301162915, False), - (8033908462571, False), - (8813991225347, False), - (857561895605, False), - (13, True), - (17, True), - (19, True), - (23, True), - (29, True)) - - for data in test_data: - number = data[0] - expected = data[1] - print_log(number=number, expected=expected) - self.assertEqual(expected, is_prime(number)) + with allure.step(f"Enter test number: {number} " + f"and verify the output: {expected}."): + print_log(number=number, expected=expected) + self.assertEqual(expected, is_prime(number)) From 16a3d99dc19d6b32e2b0a6500db7330ae2ba1b3d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:04:10 -0800 Subject: [PATCH 511/873] Update test_josephus_survivor.py --- .../test_josephus_survivor.py | 43 +++++++++---------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/kyu_5/josephus_survivor/test_josephus_survivor.py b/kyu_5/josephus_survivor/test_josephus_survivor.py index fec570d1988..2c84a67fc28 100644 --- a/kyu_5/josephus_survivor/test_josephus_survivor.py +++ b/kyu_5/josephus_survivor/test_josephus_survivor.py @@ -10,6 +10,7 @@ import unittest import pytest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.josephus_survivor.josephus_survivor \ import josephus_survivor @@ -34,7 +35,13 @@ class JosephusSurvivorTestCase(unittest.TestCase): """Testing josephus_survivor function.""" - def test_josephus_survivor(self): + @parameterized.expand([ + ((7, 3), 4), + ((11, 19), 10), + ((1, 300), 1), + ((14, 2), 13), + ((100, 1), 100)]) + def test_josephus_survivor(self, test_data, expected): """ Testing josephus_survivor function with various test data. @@ -55,27 +62,19 @@ def test_josephus_survivor(self): "correctly returns who is the \"survivor\", ie: the " "last element of a Josephus permutation.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ((7, 3), 4), - ((11, 19), 10), - ((1, 300), 1), - ((14, 2), 13), - ((100, 1), 100)) - for test_data, expected in test_data: - total = test_data[0] - eliminated = test_data[1] - result = josephus_survivor(total, eliminated) + total = test_data[0] + eliminated = test_data[1] + result = josephus_survivor(total, eliminated) + with allure.step(f"Enter test data " + f"(n: {total}, " + f"k: {eliminated}) and verify " + f"the output ({result}) " + f"vs expected ({expected})"): - with allure.step(f"Enter test data " - f"(n: {total}, k: {eliminated}) and verify " - f"the output ({result}) " - f"vs expected ({expected})"): + print_log(total=total, + eliminated=eliminated, + result=result, + expected=expected) - print_log(total=total, - eliminated=eliminated, - result=result, - expected=expected) - - self.assertEqual(expected, - result) + self.assertEqual(expected, result) From 89bc032e8429b1f4a298d5bb551b296dab897361 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:05:43 -0800 Subject: [PATCH 512/873] Update test_josephus_survivor.py --- kyu_5/josephus_survivor/test_josephus_survivor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_5/josephus_survivor/test_josephus_survivor.py b/kyu_5/josephus_survivor/test_josephus_survivor.py index 2c84a67fc28..f94af1a22f1 100644 --- a/kyu_5/josephus_survivor/test_josephus_survivor.py +++ b/kyu_5/josephus_survivor/test_josephus_survivor.py @@ -73,8 +73,8 @@ def test_josephus_survivor(self, test_data, expected): f"vs expected ({expected})"): print_log(total=total, - eliminated=eliminated, - result=result, - expected=expected) + eliminated=eliminated, + result=result, + expected=expected) self.assertEqual(expected, result) From 13bbb82b62935458806c6bbc5f0eab1b71ad6630 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:12:39 -0800 Subject: [PATCH 513/873] Update test_list_squared.py --- .../test_list_squared.py | 42 +++++++++---------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/kyu_5/integers_recreation_one/test_list_squared.py b/kyu_5/integers_recreation_one/test_list_squared.py index cf750c34044..d3f5d273850 100644 --- a/kyu_5/integers_recreation_one/test_list_squared.py +++ b/kyu_5/integers_recreation_one/test_list_squared.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.integers_recreation_one.solution import list_squared @@ -44,7 +45,20 @@ class ListSquaredTestCase(unittest.TestCase): of the squared divisors. """ - def test_flatten(self): + @parameterized.expand([ + (1, 250, [[1, 1], [42, 2500], [246, 84100]]), + (42, 250, [[42, 2500], [246, 84100]]), + (250, 500, [[287, 84100]]), + (960, 5024, [[1434, 2856100], [1673, 2856100], + [1880, 4884100], [4264, 24304900]]), + (689, 5666, [[728, 722500], [1434, 2856100], + [1673, 2856100], [1880, 4884100], + [4264, 24304900]]), + (257, 4195, [[287, 84100], [728, 722500], + [1434, 2856100], [1673, 2856100], + [1880, 4884100]]) + ]) + def test_flatten(self, m, n, expected): """ Testing list_squared function. @@ -62,26 +76,8 @@ def test_flatten(self): "all integers between m and n whose sum of squared divisors " "is itself a square.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (1, 250, - [[1, 1], [42, 2500], [246, 84100]]), - (42, 250, - [[42, 2500], [246, 84100]]), - (250, 500, - [[287, 84100]]), - (960, 5024, - [[1434, 2856100], [1673, 2856100], - [1880, 4884100], [4264, 24304900]]), - (689, 5666, - [[728, 722500], [1434, 2856100], - [1673, 2856100], [1880, 4884100], - [4264, 24304900]]), - (257, 4195, [[287, 84100], [728, 722500], - [1434, 2856100], [1673, 2856100], - [1880, 4884100]])) - for m, n, expected in test_data: - with allure.step("Enter test data and verify the output..."): - actual_result = list_squared(m, n) - print_log(m=m, n=n, expected=expected, actual_result=actual_result) - self.assertListEqual(expected, actual_result) + with allure.step("Enter test data and verify the output..."): + actual_result = list_squared(m, n) + print_log(m=m, n=n, expected=expected, actual_result=actual_result) + self.assertListEqual(expected, actual_result) From e4c362e3615d365aafcb7b2e763e5bc24abcd00d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:16:19 -0800 Subject: [PATCH 514/873] Update test_list_squared.py --- kyu_5/integers_recreation_one/test_list_squared.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/kyu_5/integers_recreation_one/test_list_squared.py b/kyu_5/integers_recreation_one/test_list_squared.py index d3f5d273850..42921c19b5c 100644 --- a/kyu_5/integers_recreation_one/test_list_squared.py +++ b/kyu_5/integers_recreation_one/test_list_squared.py @@ -49,14 +49,9 @@ class ListSquaredTestCase(unittest.TestCase): (1, 250, [[1, 1], [42, 2500], [246, 84100]]), (42, 250, [[42, 2500], [246, 84100]]), (250, 500, [[287, 84100]]), - (960, 5024, [[1434, 2856100], [1673, 2856100], - [1880, 4884100], [4264, 24304900]]), - (689, 5666, [[728, 722500], [1434, 2856100], - [1673, 2856100], [1880, 4884100], - [4264, 24304900]]), - (257, 4195, [[287, 84100], [728, 722500], - [1434, 2856100], [1673, 2856100], - [1880, 4884100]]) + (960, 5024, [[1434, 2856100], [1673, 2856100], [1880, 4884100], [4264, 24304900]]), + (689, 5666, [[728, 722500], [1434, 2856100], [1673, 2856100], [1880, 4884100], [4264, 24304900]]), + (257, 4195, [[287, 84100], [728, 722500], [1434, 2856100], [1673, 2856100], [1880, 4884100]]) ]) def test_flatten(self, m, n, expected): """ From 6c1187feb2675fdcd6319f2317649bbb66d881dd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:19:25 -0800 Subject: [PATCH 515/873] Update test_list_squared.py --- kyu_5/integers_recreation_one/test_list_squared.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kyu_5/integers_recreation_one/test_list_squared.py b/kyu_5/integers_recreation_one/test_list_squared.py index 42921c19b5c..68e2c879706 100644 --- a/kyu_5/integers_recreation_one/test_list_squared.py +++ b/kyu_5/integers_recreation_one/test_list_squared.py @@ -49,9 +49,12 @@ class ListSquaredTestCase(unittest.TestCase): (1, 250, [[1, 1], [42, 2500], [246, 84100]]), (42, 250, [[42, 2500], [246, 84100]]), (250, 500, [[287, 84100]]), - (960, 5024, [[1434, 2856100], [1673, 2856100], [1880, 4884100], [4264, 24304900]]), - (689, 5666, [[728, 722500], [1434, 2856100], [1673, 2856100], [1880, 4884100], [4264, 24304900]]), - (257, 4195, [[287, 84100], [728, 722500], [1434, 2856100], [1673, 2856100], [1880, 4884100]]) + (960, 5024, [[1434, 2856100], [1673, 2856100], + [1880, 4884100], [4264, 24304900]]), + (689, 5666, [[728, 722500], [1434, 2856100], [1673, 2856100], + [1880, 4884100], [4264, 24304900]]), + (257, 4195, [[287, 84100], [728, 722500], [1434, 2856100], + [1673, 2856100], [1880, 4884100]]) ]) def test_flatten(self, m, n, expected): """ From cb629405ee665bf3e83854be06dc3a81131315b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:24:11 -0800 Subject: [PATCH 516/873] Update test_make_readable.py --- .../human_readable_time/test_make_readable.py | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/kyu_5/human_readable_time/test_make_readable.py b/kyu_5/human_readable_time/test_make_readable.py index 6ee62c69b6b..fb7ca95ef0a 100644 --- a/kyu_5/human_readable_time/test_make_readable.py +++ b/kyu_5/human_readable_time/test_make_readable.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.human_readable_time.make_readable \ import make_readable @@ -32,7 +33,13 @@ class MakeReadableTestCase(unittest.TestCase): """Testing make_readable function.""" - def test_make_readable(self): + @parameterized.expand([ + (0, "00:00:00"), + (5, "00:00:05"), + (60, "00:01:00"), + (86399, "23:59:59"), + (359999, "99:59:59")]) + def test_make_readable(self, seconds, expected): """ Testing make_readable function. @@ -57,14 +64,7 @@ def test_make_readable(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test number and verify the output"): - data: tuple = ( - (0, "00:00:00"), - (5, "00:00:05"), - (60, "00:01:00"), - (86399, "23:59:59"), - (359999, "99:59:59")) - - for seconds, expected in data: - print_log(seconds=seconds, expected=expected) - self.assertEqual(expected, make_readable(seconds)) + with allure.step(f"Enter test number: {seconds} " + f"and verify the output: {expected}"): + print_log(seconds=seconds, expected=expected) + self.assertEqual(expected, make_readable(seconds)) From 302a6ea2427fb7b0ea2838971501c22569170cc7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:26:50 -0800 Subject: [PATCH 517/873] Update test_flatten.py --- kyu_5/flatten/test_flatten.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_5/flatten/test_flatten.py b/kyu_5/flatten/test_flatten.py index 40977355bf6..13fb23d2cd7 100644 --- a/kyu_5/flatten/test_flatten.py +++ b/kyu_5/flatten/test_flatten.py @@ -90,4 +90,5 @@ def test_flatten(self): with allure.step("Enter test data #5 and verify the output"): expected = ['hello', 2, 'text', 4, 5, '[list]'] print_log(args=(['hello', 2, ['text', [4, 5]]], [[]], '[list]'), expected=expected) - self.assertListEqual(expected, flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]')) + self.assertListEqual(expected, + flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]')) From acc4e28781845121f66b24b6d4108f8ee310c112 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:30:00 -0800 Subject: [PATCH 518/873] Update test_first_non_repeating_letter.py --- .../test_first_non_repeating_letter.py | 38 +++++++++---------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py index 287f1690097..861859bf0de 100644 --- a/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py +++ b/kyu_5/first_non_repeating_character/test_first_non_repeating_letter.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.first_non_repeating_character.first_non_repeating_letter import ( first_non_repeating_letter @@ -32,7 +33,18 @@ class FirstNonRepeatingLetterTestCase(unittest.TestCase): """Testing first_non_repeating_letter function.""" - def test_first_non_repeating_letter(self): + @parameterized.expand([ + ('a', 'a'), + ('stress', 't'), + ('moonmen', 'e'), + ('', ''), + ('abba', ''), + ('aa', ''), + ('~><#~><', '#'), + ('hello world, eh?', 'w'), + ('sTreSS', 'T'), + ('Go hang a salami, I\'m a lasagna hog!', ',')]) + def test_first_non_repeating_letter(self, string, expected): """ Testing a function named first_non_repeating_letter. @@ -62,23 +74,7 @@ def test_first_non_repeating_letter(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ('a', 'a'), - ('stress', 't'), - ('moonmen', 'e'), - ('', ''), - ('abba', ''), - ('aa', ''), - ('~><#~><', '#'), - ('hello world, eh?', 'w'), - ('sTreSS', 'T'), - ('Go hang a salami, I\'m a lasagna hog!', ',')) - - for data in test_data: - string = data[0] - expected = data[1] - print_log(string=string, - expected=expected) - self.assertEqual(expected, - first_non_repeating_letter(string)) + with allure.step(f"Enter test string: {string} " + f"and verify the output: {expected}"): + print_log(string=string, expected=expected) + self.assertEqual(expected, first_non_repeating_letter(string)) From 63fcb55dc45c644ccb451e5ccc3fd6d8a99e3e15 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:40:35 -0800 Subject: [PATCH 519/873] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index af2dad37edc..518234b0e1a 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -11,4 +11,10 @@ engines: enabled: false no-name-in-module: enabled: false + similar-code: + config: + threshold: 6 #overriding will affect all languages +# identical-code: +# config: +# threshold: #overriding will affect all languages # ... CONFIG CONTENT ... From 0257999eed82e4c214472f393e884b9dc0b0e76b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:41:56 -0800 Subject: [PATCH 520/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 518234b0e1a..058c30a2e29 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -13,7 +13,7 @@ engines: enabled: false similar-code: config: - threshold: 6 #overriding will affect all languages + threshold: 16 #overriding will affect all languages # identical-code: # config: # threshold: #overriding will affect all languages From ca887681b5d6cbc2504c47aa60300a4f0cc14bf6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:43:35 -0800 Subject: [PATCH 521/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 058c30a2e29..96e137b3d7f 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -13,7 +13,7 @@ engines: enabled: false similar-code: config: - threshold: 16 #overriding will affect all languages + threshold: 25 #overriding will affect all languages # identical-code: # config: # threshold: #overriding will affect all languages From 54a9e2b446c1537d2c1f87b0d646588b586b9e81 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:45:09 -0800 Subject: [PATCH 522/873] Update .codeclimate.yml --- .codeclimate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 96e137b3d7f..9bfb8f22903 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -13,8 +13,8 @@ engines: enabled: false similar-code: config: - threshold: 25 #overriding will affect all languages -# identical-code: -# config: -# threshold: #overriding will affect all languages + threshold: 5 #overriding will affect all languages + identical-code: + config: + threshold: 5 #overriding will affect all languages # ... CONFIG CONTENT ... From a7e85caa2272117f16492af6869136f30380be19 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:47:08 -0800 Subject: [PATCH 523/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 9bfb8f22903..8f8fceba43d 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -13,8 +13,8 @@ engines: enabled: false similar-code: config: - threshold: 5 #overriding will affect all languages + threshold: 30 #overriding will affect all languages identical-code: config: - threshold: 5 #overriding will affect all languages + threshold: 30 #overriding will affect all languages # ... CONFIG CONTENT ... From 3b4e5175b7d6bb02051d0471dcb4a10b871d93a1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:49:39 -0800 Subject: [PATCH 524/873] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8f8fceba43d..a7adaa1c344 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -11,10 +11,12 @@ engines: enabled: false no-name-in-module: enabled: false + # Per-Language Mass Threshold Defaults + # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 30 #overriding will affect all languages + threshold: 40 #overriding will affect all languages identical-code: config: - threshold: 30 #overriding will affect all languages + threshold: 32 #overriding will affect all languages # ... CONFIG CONTENT ... From 401af04f7ed0ce4f6bc1d590720d993a70416bbb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:53:02 -0800 Subject: [PATCH 525/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index a7adaa1c344..e1a28791239 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -15,7 +15,7 @@ engines: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 40 #overriding will affect all languages + threshold: 50 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From 8b9b43bd67802b6ba48745b6f027be517e68d678 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:54:24 -0800 Subject: [PATCH 526/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index e1a28791239..1c3606dc846 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -18,5 +18,5 @@ engines: threshold: 50 #overriding will affect all languages identical-code: config: - threshold: 32 #overriding will affect all languages + threshold: 50 #overriding will affect all languages # ... CONFIG CONTENT ... From 5b470fa8aeae247da574ac0a9bc2137a01d49a0c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:57:52 -0800 Subject: [PATCH 527/873] Update .codeclimate.yml --- .codeclimate.yml | 37 +++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 1c3606dc846..bed9dd5c3d8 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,22 +1,19 @@ --- -engines: - # ... CONFIG CONTENT ... - pylint: - enabled: true - # ... CONFIG CONTENT ... - checks: - import-error: - enabled: false - syntax-error: - enabled: false - no-name-in-module: - enabled: false - # Per-Language Mass Threshold Defaults - # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine - similar-code: - config: - threshold: 50 #overriding will affect all languages - identical-code: - config: - threshold: 50 #overriding will affect all languages +version: "2" # required to adjust maintainability checks + +checks: + import-error: + enabled: false + syntax-error: + enabled: false + no-name-in-module: + enabled: false + # Per-Language Mass Threshold Defaults + # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine + similar-code: + config: + threshold: 50 #overriding will affect all languages + identical-code: + config: + threshold: 50 #overriding will affect all languages # ... CONFIG CONTENT ... From 3a3e23efa71e698cc860cdbec57616929bc20c48 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:00:20 -0800 Subject: [PATCH 528/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index bed9dd5c3d8..fd2183e58a2 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,8 +12,8 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 50 #overriding will affect all languages + threshold: 80 #overriding will affect all languages identical-code: config: - threshold: 50 #overriding will affect all languages + threshold: 80 #overriding will affect all languages # ... CONFIG CONTENT ... From 545468db4fd6561bccf71205b1dceff46607c124 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:01:37 -0800 Subject: [PATCH 529/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index fd2183e58a2..200bc1e9db4 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,8 +12,8 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 80 #overriding will affect all languages + threshold: 60 #overriding will affect all languages identical-code: config: - threshold: 80 #overriding will affect all languages + threshold: 32 #overriding will affect all languages # ... CONFIG CONTENT ... From 0885416ed0a3f9b550cf1b31da30937883729b1f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:04:32 -0800 Subject: [PATCH 530/873] Update .codeclimate.yml --- .codeclimate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 200bc1e9db4..112b397734e 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -8,11 +8,11 @@ checks: enabled: false no-name-in-module: enabled: false - # Per-Language Mass Threshold Defaults - # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine + # Per-Language Mass Threshold Defaults + # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 60 #overriding will affect all languages + threshold: 65 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From 2349d1917ef69de3a152cebfabd1450296871502 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:05:56 -0800 Subject: [PATCH 531/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 112b397734e..62db7700418 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 65 #overriding will affect all languages + threshold: 70 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From c070c6e6769de0e07e6197f5e8602d17ef23b7e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:07:21 -0800 Subject: [PATCH 532/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 62db7700418..3c1b7ebd3ea 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 70 #overriding will affect all languages + threshold: 68 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From 1fd2fb8413802dab68dcec0861cc04bf0189032d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:08:16 -0800 Subject: [PATCH 533/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 3c1b7ebd3ea..3b530b29f2d 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 #overriding will affect all languages + threshold: 66 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From 40e9ad04c436f4e403324d3f5bcdcac30f21dce9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:08:59 -0800 Subject: [PATCH 534/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 3b530b29f2d..1b5ed331774 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 66 #overriding will affect all languages + threshold: 67 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From f23da0cd10217240d6d51d0210fedfa4c15b3eef Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:09:48 -0800 Subject: [PATCH 535/873] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 1b5ed331774..3c1b7ebd3ea 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 67 #overriding will affect all languages + threshold: 68 #overriding will affect all languages identical-code: config: threshold: 32 #overriding will affect all languages From 32b642d0ee9dccaaaff2f8775c8876506403334d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 02:13:17 -0800 Subject: [PATCH 536/873] Update test_smallest.py --- kyu_5/find_the_smallest/test_smallest.py | 43 ++++++++++++------------ 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/kyu_5/find_the_smallest/test_smallest.py b/kyu_5/find_the_smallest/test_smallest.py index 7f93e597a14..034627a461c 100644 --- a/kyu_5/find_the_smallest/test_smallest.py +++ b/kyu_5/find_the_smallest/test_smallest.py @@ -10,6 +10,7 @@ import unittest import pytest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.find_the_smallest.solution import smallest @@ -30,7 +31,22 @@ class FindSmallestTestCase(unittest.TestCase): """Testing smallest function.""" - def test_smallest(self): + @parameterized.expand([ + (261235, [126235, 2, 0]), + (209917, [29917, 0, 1]), + (285365, [238565, 3, 1]), + (269045, [26945, 3, 0]), + (296837, [239687, 4, 1]), + (935855753, [358557539, 0, 8]), + (346674147588841927, [134667414758884927, 14, 0]), + (352343279580894007, [35234327958089407, 15, 0]), + (633814808310045545, [63381480831045545, 11, 0]), + (71269954474326234, [12679954474326234, 0, 3]), + (400360725952391834, [3460725952391834, 0, 3]), + (914459749498173781, [144597494981737819, 0, 17]), + (113343536213382181, [111334353621338218, 17, 0]), + (614132919143656569, [141326919143656569, 0, 5])]) + def test_smallest(self, n, expected): """ Testing smallest function with various test data. @@ -48,26 +64,9 @@ def test_smallest(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ((261235, [126235, 2, 0]), - (209917, [29917, 0, 1]), - (285365, [238565, 3, 1]), - (269045, [26945, 3, 0]), - (296837, [239687, 4, 1]), - (346674147588841927, [134667414758884927, 14, 0]), - (352343279580894007, [35234327958089407, 15, 0]), - (633814808310045545, [63381480831045545, 11, 0]), - (935855753, [358557539, 0, 8]), - (71269954474326234, [12679954474326234, 0, 3]), - (400360725952391834, [3460725952391834, 0, 3]), - (914459749498173781, [144597494981737819, 0, 17]), - (113343536213382181, [111334353621338218, 17, 0]), - (614132919143656569, [141326919143656569, 0, 5])) - for n, expected in test_data: + with allure.step(f"Enter test data: {n} " + f"and verify the output vs expected: {expected}."): result = smallest(n) - with allure.step("Enter test data and verify the output vs expected"): - print_log(n=n, - expected=expected, - result=result) - - self.assertListEqual(expected, result) + print_log(n=n, expected=expected, result=result) + self.assertListEqual(expected, result) From 9ddafe37342d47716613ea3a67f55618e4ef132c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 02:20:16 -0800 Subject: [PATCH 537/873] Update test_advice.py --- .../test_advice.py | 72 +++++++++---------- 1 file changed, 33 insertions(+), 39 deletions(-) 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 29f74a3c193..1a14c333cf5 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 @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.find_the_safest_places_in_town.advice \ import advice, create_city_map, agents_cleanup @@ -29,7 +30,12 @@ class FirstAdviceTestCase(unittest.TestCase): """Testing advice and all related help functions.""" - def test_create_city_map(self): + @parameterized.expand([ + (2, {(0, 0), (0, 1), (1, 0), (1, 1)}), + (0, set()), + (3, {(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), + (1, 2), (2, 0), (2, 1), (2, 2)})]) + def test_create_city_map(self, n, expected): """ Testing a function named create_city_map. @@ -48,31 +54,33 @@ def test_create_city_map(self): '

    Test Description:

    ' "

    The function should generate city map with coordinates.

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test data and verify the output"): - test_data: tuple = ( - (2, {(0, 0), (0, 1), (1, 0), (1, 1)}), - (0, set()), - (3, {(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), - (1, 2), (2, 0), (2, 1), (2, 2)})) - - for data in test_data: - # test data - n: int = data[0] - expected: set = data[1] - actual: set = create_city_map(n) - # test log - print_log(n=n, expected=expected, actual=actual) - # assertion - self.assertEqual(expected, actual) + with allure.step(f"Enter test data: {n} " + f"and verify the output: {expected}"): + actual: set = create_city_map(n) + # test log + print_log(n=n, expected=expected, actual=actual) + # assertion + self.assertEqual(expected, actual) - def test_agents_cleanup(self): + @parameterized.expand([ + ({(0, 0), (1, 5), (5, 1)}, 6, {(0, 0), (1, 5), (5, 1)}), + ({(0, 0), (1, 1), (99, 99)}, 2, {(0, 0), (1, 1)}), + ({(22, 23), (56, 35), (15, 7), (40, 15), (36, 30), (52, 47), + (9, 59), (65, 40), (28, 53), (19, 15), + (2, 30), (58, 40), (60, 36), (2, 67), (16, 58), (53, 13), + (36, 38), (29, 54), (50, 15), (14, 28), + (23, 30), (0, 64), (58, 57), (38, 2), (28, 40), (22, 6), + (12, 46), (50, 35), (56, 27)}, 10, set()) + ]) + def test_agents_cleanup(self, agents, n, expected): """ Testing a function named agents_cleanup. 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. + The function should remove all agents that are outside + the city boundaries. :return: """ # pylint: disable-msg=R0801 @@ -87,26 +95,12 @@ def test_agents_cleanup(self): "outside of the city boundaries.

    ") # pylint: enable-msg=R0801 with allure.step("Enter test data and verify the output"): - test_data: tuple = ( - ({(0, 0), (1, 5), (5, 1)}, 6, {(0, 0), (1, 5), (5, 1)}), - ({(0, 0), (1, 1), (99, 99)}, 2, {(0, 0), (1, 1)}), - ({(22, 23), (56, 35), (15, 7), (40, 15), (36, 30), (52, 47), - (9, 59), (65, 40), (28, 53), (19, 15), - (2, 30), (58, 40), (60, 36), (2, 67), (16, 58), (53, 13), - (36, 38), (29, 54), (50, 15), (14, 28), - (23, 30), (0, 64), (58, 57), (38, 2), (28, 40), (22, 6), - (12, 46), (50, 35), (56, 27)}, 10, set())) - - for data in test_data: - # test data - agents: set = data[0] - n: int = data[1] - expected: set = data[2] - actual: set = agents_cleanup(agents, n) - # test log - print_log(agents=agents, n=n, expected=expected, actual=actual) - # assertion - self.assertEqual(expected, actual) + # test data + actual: set = agents_cleanup(agents, n) + # test log + print_log(agents=agents, n=n, expected=expected, actual=actual) + # assertion + self.assertEqual(expected, actual) def test_first_non_repeating_letter(self): """ From c0d46ab3fb62b2ab4a7cb6a5e082d1371ef98785 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 05:40:48 -0800 Subject: [PATCH 538/873] Update test_all_fibonacci_numbers.py --- .../test_all_fibonacci_numbers.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py index cfeec516747..62ff31a2fa7 100644 --- a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py +++ b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py @@ -61,12 +61,6 @@ def test_all_fibonacci_numbers(self): 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040] - - result = list(itertools.islice(all_fibonacci_numbers(), - 30)) - - print_log(result=result, - expected=expected) - - self.assertEqual(expected, - result) + result = list(itertools.islice(all_fibonacci_numbers(),30)) + print_log(result=result, expected=expected) + self.assertEqual(expected, result) From d3006bd284a132f52c848b3a55a6c07c29d92eb2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 05:41:40 -0800 Subject: [PATCH 539/873] Update test_domain_name.py --- kyu_5/extract_the_domain_name_from_url/test_domain_name.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py index 2e52af09081..db4db3fee84 100644 --- a/kyu_5/extract_the_domain_name_from_url/test_domain_name.py +++ b/kyu_5/extract_the_domain_name_from_url/test_domain_name.py @@ -65,7 +65,5 @@ def test_domain_name(self): for url, expected in test_data: with allure.step("Enter test string and verify the output"): actual = domain_name(url) - print_log(url=url, - expected=expected, - actual=actual) + print_log(url=url, expected=expected, actual=actual) self.assertEqual(expected, actual) From 9b195e9fd93872a9ad2f5137adfe363f1e8821c0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 05:46:56 -0800 Subject: [PATCH 540/873] Update test_directions_reduction.py --- .../test_directions_reduction.py | 58 +++++++++---------- 1 file changed, 26 insertions(+), 32 deletions(-) diff --git a/kyu_5/directions_reduction/test_directions_reduction.py b/kyu_5/directions_reduction/test_directions_reduction.py index b55d0d1837a..416c0251f64 100644 --- a/kyu_5/directions_reduction/test_directions_reduction.py +++ b/kyu_5/directions_reduction/test_directions_reduction.py @@ -10,6 +10,7 @@ import unittest import allure from utils.log_func import print_log +from parameterized import parameterized from kyu_5.directions_reduction.directions_reduction \ import dir_reduc @@ -29,7 +30,25 @@ class DirectionsReductionTestCase(unittest.TestCase): """Testing dir_reduc function.""" - def test_directions_reduction(self): + @parameterized.expand([ + (["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH", "WEST"], + ['WEST']), + (["NORTH", "WEST", "SOUTH", "EAST"], + ["NORTH", "WEST", "SOUTH", "EAST"]), + (['NORTH', 'EAST', 'NORTH', 'EAST', 'WEST', 'WEST', 'EAST', + 'EAST', 'WEST', 'SOUTH'], + ['NORTH', 'EAST']), + (['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'], + ['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', + 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH']), + (['WEST', 'NORTH', 'EAST', 'EAST', 'EAST', 'EAST', 'WEST', 'WEST', + 'WEST', 'WEST', 'NORTH', 'NORTH', 'SOUTH', 'EAST'], + ['WEST', 'NORTH', 'NORTH', 'EAST']) + ]) + def test_directions_reduction(self, test_array, expected): """ dir_reduc function test suite. @@ -59,35 +78,10 @@ def test_directions_reduction(self): "strings and returns an array of strings with the needless " "directions removed (W<->E or S<->N side by side).

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH", "WEST"], - ['WEST']), - (["NORTH", "WEST", "SOUTH", "EAST"], - ["NORTH", "WEST", "SOUTH", "EAST"]), - (['NORTH', 'EAST', 'NORTH', 'EAST', 'WEST', 'WEST', 'EAST', - 'EAST', 'WEST', 'SOUTH'], - ['NORTH', 'EAST']), - (['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'], - ['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', - 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH']), - (['WEST', 'NORTH', 'EAST', 'EAST', 'EAST', 'EAST', 'WEST', 'WEST', - 'WEST', 'WEST', 'NORTH', 'NORTH', 'SOUTH', 'EAST'], - ['WEST', 'NORTH', 'NORTH', 'EAST'])) - for d in test_data: - test_array = d[0].copy() - expected = d[1] - result = dir_reduc(d[0]) - - with allure.step(f"Enter test data ({test_array}) " - f"and verify the output ({result}) " - f"vs expected ({expected})"): - - print_log(test_array=test_array, - result=result, - expected=expected) - - self.assertListEqual(expected, result) + result = dir_reduc(test_array) + with allure.step(f"Enter test data ({test_array}) " + f"and verify the output ({result}) " + f"vs expected ({expected})"): + print_log(test_array=test_array, result=result, expected=expected) + self.assertListEqual(expected, result) From e550d4a7c412b65740e251e8a684d186066a10ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:04:17 -0800 Subject: [PATCH 541/873] Update test_solution.py --- kyu_5/diophantine_equation/test_solution.py | 94 ++++++++------------- 1 file changed, 33 insertions(+), 61 deletions(-) diff --git a/kyu_5/diophantine_equation/test_solution.py b/kyu_5/diophantine_equation/test_solution.py index c3d4577021e..b40244eeebf 100644 --- a/kyu_5/diophantine_equation/test_solution.py +++ b/kyu_5/diophantine_equation/test_solution.py @@ -10,6 +10,7 @@ import unittest import pytest import allure +from parameterized import parameterized from kyu_5.diophantine_equation.solution import sol_equa @@ -30,82 +31,53 @@ class SolutionTestCase(unittest.TestCase): """Testing sol_equa function.""" - def test_solution_basic(self): + @parameterized.expand([ + (5, [[3, 1]]), + (12, [[4, 1]]), + (13, [[7, 3]]), + (16, [[4, 0]]), + (17, [[9, 4]]), + (20, [[6, 2]])]) + def test_solution_basic(self, num, expected): """ Testing using basic test data. :return: """ - self.assertEqual(sol_equa(5), [[3, 1]]) - self.assertEqual(sol_equa(12), [[4, 1]]) - self.assertEqual(sol_equa(13), [[7, 3]]) - self.assertEqual(sol_equa(16), [[4, 0]]) - self.assertEqual(sol_equa(17), [[9, 4]]) - self.assertEqual(sol_equa(20), [[6, 2]]) - - def test_solution_medium(self): + self.assertEqual(sol_equa(num), expected) + + @parameterized.expand([ + (9001, [[4501, 2250]]), + (9004, [[2252, 1125]]), + (9008, [[1128, 562]]), + (9009, [[4505, 2252], [1503, 750], [647, 320], [505, 248], + [415, 202], [353, 170], [225, 102], [153, 60], + [135, 48], [103, 20], [97, 10], [95, 2]])]) + def test_solution_medium(self, num, expected): """ Testing using medium test data. :return: """ - self.assertEqual(sol_equa(9001), [[4501, 2250]]) - - self.assertEqual(sol_equa(9004), [[2252, 1125]]) - - self.assertEqual(sol_equa(9008), [[1128, 562]]) - - self.assertEqual(sol_equa(9009), [[4505, 2252], - [1503, 750], - [647, 320], - [505, 248], - [415, 202], - [353, 170], - [225, 102], - [153, 60], - [135, 48], - [103, 20], - [97, 10], - [95, 2]]) - - def test_solution_big(self): + self.assertEqual(num, expected) + + @parameterized.expand([ + (900000, [[112502, 56249], [56254, 28123], [37506, 18747], + [22510, 11245], [18762, 9369], [12518, 6241], + [11270, 5615], [7530, 3735], [6286, 3107], [4550, 2225], + [3810, 1845], [2590, 1205], [2350, 1075], [1650, 675], + [1430, 535], [1150, 325], [1050, 225], [950, 25]]), + (90004, [[22502, 11250]]), + (90005, [[45003, 22501], [9003, 4499], [981, 467], [309, 37]]), + (90009, [[45005, 22502], [15003, 7500], [5005, 2498], + [653, 290], [397, 130], [315, 48]])]) + def test_solution_big(self, num, expected): """ Testing using big test data. :return: """ - self.assertEqual(sol_equa(900000), [[112502, 56249], - [56254, 28123], - [37506, 18747], - [22510, 11245], - [18762, 9369], - [12518, 6241], - [11270, 5615], - [7530, 3735], - [6286, 3107], - [4550, 2225], - [3810, 1845], - [2590, 1205], - [2350, 1075], - [1650, 675], - [1430, 535], - [1150, 325], - [1050, 225], - [950, 25]]) - - self.assertEqual(sol_equa(90004), [[22502, 11250]]) - - self.assertEqual(sol_equa(90005), [[45003, 22501], - [9003, 4499], - [981, 467], - [309, 37]]) - - self.assertEqual(sol_equa(90009), [[45005, 22502], - [15003, 7500], - [5005, 2498], - [653, 290], - [397, 130], - [315, 48]]) + self.assertEqual(num, expected) def test_solution_empty(self): """ From 252660de872cdbc43d6aac5f682a4adbbb8413df Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:09:31 -0800 Subject: [PATCH 542/873] Update test_did_i_finish_sudoku.py --- .../test_did_i_finish_sudoku.py | 74 +++++++++---------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py b/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py index 7abd62c6d7e..cae63e8253c 100644 --- a/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py +++ b/kyu_5/did_i_finish_my_sudoku/test_did_i_finish_sudoku.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.did_i_finish_my_sudoku.is_sudoku_done \ import done_or_not @@ -38,7 +39,38 @@ class DidIFinishedSudokuTestCase(unittest.TestCase): """Testing done_or_not function.""" - def test_done_or_not(self): + @parameterized.expand([ + ([[1, 3, 2, 5, 7, 9, 4, 6, 8], + [4, 9, 8, 2, 6, 1, 3, 7, 5], + [7, 5, 6, 3, 8, 4, 2, 1, 9], + [6, 4, 3, 1, 5, 8, 7, 9, 2], + [5, 2, 1, 7, 9, 3, 8, 4, 6], + [9, 8, 7, 4, 2, 6, 5, 3, 1], + [2, 1, 4, 9, 3, 5, 6, 8, 7], + [3, 6, 5, 8, 1, 7, 9, 2, 4], + [8, 7, 9, 6, 4, 2, 1, 5, 3]], + 'Finished!'), + ([[1, 3, 2, 5, 7, 9, 4, 6, 8], + [4, 9, 8, 2, 6, 1, 3, 7, 5], + [7, 5, 6, 3, 8, 4, 2, 1, 9], + [6, 4, 3, 1, 5, 8, 7, 9, 2], + [5, 2, 1, 7, 9, 3, 8, 4, 6], + [9, 8, 7, 4, 2, 6, 5, 3, 1], + [2, 1, 4, 9, 3, 5, 6, 8, 7], + [3, 6, 5, 8, 1, 7, 9, 2, 4], + [8, 7, 9, 6, 4, 2, 1, 3, 5]], + 'Try again!'), + ([[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]], + 'Try again!')]) + def test_done_or_not(self, board, expected): """ Testing done_or_not function. @@ -58,41 +90,9 @@ def test_done_or_not(self): "

    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!'

    ") - test_data: tuple = ( - ([[1, 3, 2, 5, 7, 9, 4, 6, 8], - [4, 9, 8, 2, 6, 1, 3, 7, 5], - [7, 5, 6, 3, 8, 4, 2, 1, 9], - [6, 4, 3, 1, 5, 8, 7, 9, 2], - [5, 2, 1, 7, 9, 3, 8, 4, 6], - [9, 8, 7, 4, 2, 6, 5, 3, 1], - [2, 1, 4, 9, 3, 5, 6, 8, 7], - [3, 6, 5, 8, 1, 7, 9, 2, 4], - [8, 7, 9, 6, 4, 2, 1, 5, 3]], - 'Finished!'), - ([[1, 3, 2, 5, 7, 9, 4, 6, 8], - [4, 9, 8, 2, 6, 1, 3, 7, 5], - [7, 5, 6, 3, 8, 4, 2, 1, 9], - [6, 4, 3, 1, 5, 8, 7, 9, 2], - [5, 2, 1, 7, 9, 3, 8, 4, 6], - [9, 8, 7, 4, 2, 6, 5, 3, 1], - [2, 1, 4, 9, 3, 5, 6, 8, 7], - [3, 6, 5, 8, 1, 7, 9, 2, 4], - [8, 7, 9, 6, 4, 2, 1, 3, 5]], - 'Try again!'), - ([[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]], - 'Try again!')) # pylint: enable-msg=R0801 - for board, expected in test_data: + with allure.step(f"Enter sudoku: {board} " + f"and verify the output: {expected}."): result: str = done_or_not(board) - - with allure.step("Enter sudoku and verify the output."): - print_log(expected=expected, result=result) - self.assertEqual(expected, result) + print_log(expected=expected, result=result) + self.assertEqual(expected, result) From 6bb4db4a056e484059a69743f13b0ea170de867b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:13:33 -0800 Subject: [PATCH 543/873] Update test_ips_between.py --- kyu_5/count_ip_addresses/test_ips_between.py | 39 ++++++++------------ 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/kyu_5/count_ip_addresses/test_ips_between.py b/kyu_5/count_ip_addresses/test_ips_between.py index b53bec5d459..5b3c74b3117 100644 --- a/kyu_5/count_ip_addresses/test_ips_between.py +++ b/kyu_5/count_ip_addresses/test_ips_between.py @@ -10,6 +10,7 @@ import unittest import pytest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.count_ip_addresses.ips_between import ips_between @@ -32,7 +33,17 @@ class IpsBetweenTestCase(unittest.TestCase): """Testing ips_between function.""" - def test_ips_between(self): + @parameterized.expand([ + ("10.0.0.0", "10.0.0.50", 50), + ("20.0.0.10", "20.0.1.0", 246), + ("10.0.0.0", "10.0.1.0", 256), + ("170.0.0.0", "170.1.0.0", 65536), + ("50.0.0.0", "50.1.1.1", 65793), + ("180.0.0.0", "181.0.0.0", 16777216), + ("1.2.3.4", "5.6.7.8", 67372036), + ("180.0.0.0", "181.0.0.0", 16777216), + ("117.170.96.190", "117.172.196.242", 156724)]) + def test_ips_between(self, start, end, expected): """ Testing ips_between function. @@ -60,29 +71,11 @@ def test_ips_between(self): "of strings. The last address will always be greater " "than the first one.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("10.0.0.0", "10.0.0.50", 50), - ("20.0.0.10", "20.0.1.0", 246), - ("10.0.0.0", "10.0.1.0", 256), - ("170.0.0.0", "170.1.0.0", 65536), - ("50.0.0.0", "50.1.1.1", 65793), - ("180.0.0.0", "181.0.0.0", 16777216), - ("1.2.3.4", "5.6.7.8", 67372036), - ("180.0.0.0", "181.0.0.0", 16777216), - ("117.170.96.190", "117.172.196.242", 156724)) - for start, end, expected in test_data: - result = ips_between(start, end) - - with allure.step(f"Enter test data (start: {start}, " + result = ips_between(start, end) + with allure.step(f"Enter test data (start: {start}, " f"end: {end}) and verify " f"the output ({result}) " f"vs expected ({expected})"): - - print_log(start=start, - end=end, - result=result, - expected=expected) - - self.assertEqual(expected, - result) + print_log(start=start, end=end, result=result, expected=expected) + self.assertEqual(expected, result) From 5aebd144afcb21a785ce21e80168a00cab093c6b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:16:39 -0800 Subject: [PATCH 544/873] Update test_alphabet_war.py --- .../test_alphabet_war.py | 48 ++++++++----------- 1 file changed, 21 insertions(+), 27 deletions(-) diff --git a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py index effd0553072..f89a7daf327 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py @@ -10,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_5.alphabet_wars_nuclear_strike.alphabet_war \ import alphabet_war @@ -38,7 +39,22 @@ class AlphabetWarTestCase(unittest.TestCase): """Testing alphabet_war function.""" - def test_alphabet_war(self): + @parameterized.expand([ + ('[a]#[b]#[c]', 'ac'), + ('[a]#b#[c][d]', 'd'), + ('[a][b][c]', 'abc'), + ('##a[a]b[c]#', 'c'), + ('abde[fgh]ijk', 'abdefghijk'), + ('ab#de[fgh]ijk', 'fgh'), + ('ab#de[fgh]ij#k', ''), + ('##abde[fgh]ijk', ''), + ('##abde[fgh]', ''), + ('##abcde[fgh]', ''), + ('abcde[fgh]', 'abcdefgh'), + ('##abde[fgh]ijk[mn]op', 'mn'), + ('#abde[fgh]i#jk[mn]op', 'mn'), + ('[ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#', 'abijk')]) + def test_alphabet_war(self, battlefield, expected): """ Testing alphabet_war function. @@ -80,32 +96,10 @@ def test_alphabet_war(self): '

    Test Description:

    ' "

    Test a function that accepts battlefield string and " "returns letters that survived the nuclear strike.

    ") - # pylint: enable-msg=R0801 - test_data: tuple = ( - ('[a]#[b]#[c]', 'ac'), - ('[a]#b#[c][d]', 'd'), - ('[a][b][c]', 'abc'), - ('##a[a]b[c]#', 'c'), - ('abde[fgh]ijk', 'abdefghijk'), - ('ab#de[fgh]ijk', 'fgh'), - ('ab#de[fgh]ij#k', ''), - ('##abde[fgh]ijk', ''), - ('##abde[fgh]', ''), - ('##abcde[fgh]', ''), - ('abcde[fgh]', 'abcdefgh'), - ('##abde[fgh]ijk[mn]op', 'mn'), - ('#abde[fgh]i#jk[mn]op', 'mn'), - ('[ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#', 'abijk')) - for battlefield, expected in test_data: - result: str = alphabet_war(battlefield) - - with allure.step(f"Enter test string ({battlefield}) " + result: str = alphabet_war(battlefield) + with allure.step(f"Enter test string ({battlefield}) " f"and verify the output ({result}) " f"vs expected ({expected})"): - - print_log(battlefield=battlefield, - result=result, - expected=expected) - - self.assertEqual(expected, result) + print_log(battlefield=battlefield, result=result, expected=expected) + self.assertEqual(expected, result) From d9598550a595a86ba322b182fb58f96084f7950c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:20:52 -0800 Subject: [PATCH 545/873] Update test_alphabet_war.py --- kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py index f89a7daf327..9242d8ff828 100644 --- a/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py +++ b/kyu_5/alphabet_wars_nuclear_strike/test_alphabet_war.py @@ -99,7 +99,7 @@ def test_alphabet_war(self, battlefield, expected): result: str = alphabet_war(battlefield) with allure.step(f"Enter test string ({battlefield}) " - f"and verify the output ({result}) " - f"vs expected ({expected})"): + f"and verify the output ({result}) " + f"vs expected ({expected})"): print_log(battlefield=battlefield, result=result, expected=expected) self.assertEqual(expected, result) From 3d44bbab78a3e97dff59cdea640d1e2c2385ecbe Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:21:58 -0800 Subject: [PATCH 546/873] Update test_ips_between.py --- kyu_5/count_ip_addresses/test_ips_between.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_5/count_ip_addresses/test_ips_between.py b/kyu_5/count_ip_addresses/test_ips_between.py index 5b3c74b3117..6206898ce83 100644 --- a/kyu_5/count_ip_addresses/test_ips_between.py +++ b/kyu_5/count_ip_addresses/test_ips_between.py @@ -74,8 +74,8 @@ def test_ips_between(self, start, end, expected): result = ips_between(start, end) with allure.step(f"Enter test data (start: {start}, " - f"end: {end}) and verify " - f"the output ({result}) " - f"vs expected ({expected})"): + f"end: {end}) and verify " + f"the output ({result}) " + f"vs expected ({expected})"): print_log(start=start, end=end, result=result, expected=expected) self.assertEqual(expected, result) From 323d25c03b4051bfc04139a3745ab89353d16e7f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:24:36 -0800 Subject: [PATCH 547/873] Update test_all_fibonacci_numbers.py --- kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py index 62ff31a2fa7..fa7e7e2edf8 100644 --- a/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py +++ b/kyu_5/fibonacci_streaming/test_all_fibonacci_numbers.py @@ -61,6 +61,6 @@ def test_all_fibonacci_numbers(self): 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040] - result = list(itertools.islice(all_fibonacci_numbers(),30)) + result = list(itertools.islice(all_fibonacci_numbers(), 30)) print_log(result=result, expected=expected) self.assertEqual(expected, result) From 7c18e31d5b99d6689ce830882746d41dcc6e0c16 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 06:25:29 -0800 Subject: [PATCH 548/873] Update test_directions_reduction.py --- kyu_5/directions_reduction/test_directions_reduction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_5/directions_reduction/test_directions_reduction.py b/kyu_5/directions_reduction/test_directions_reduction.py index 416c0251f64..53e23755496 100644 --- a/kyu_5/directions_reduction/test_directions_reduction.py +++ b/kyu_5/directions_reduction/test_directions_reduction.py @@ -9,8 +9,8 @@ import unittest import allure -from utils.log_func import print_log from parameterized import parameterized +from utils.log_func import print_log from kyu_5.directions_reduction.directions_reduction \ import dir_reduc From 38d8a70522de8a80e03bdcf1f827ebca5b4f7b24 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 10:30:34 -0800 Subject: [PATCH 549/873] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 975fa9fda43..be17c8afa70 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,3 +1,4 @@ +--- engines: # ... CONFIG CONTENT ... pylint: From d05afc2d39df3c16dea92973676e50e37b36f416 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:09:14 -0800 Subject: [PATCH 550/873] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index a5d507675ef..611bb59204b 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,8 +12,10 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 #overriding will affect all languages + #overriding will affect all languages + threshold: 68 identical-code: config: - threshold: 32 #overriding will affect all languages + #overriding will affect all languages + threshold: 32 # ... CONFIG CONTENT ... \ No newline at end of file From ad238d2eb458089076acf61bdb42dfabdc188dfe Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:18:45 -0800 Subject: [PATCH 551/873] Update test_thirt.py --- .../test_thirt.py | 49 +++++++++---------- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/kyu_6/a_rule_of_divisibility_by_13/test_thirt.py b/kyu_6/a_rule_of_divisibility_by_13/test_thirt.py index 89444fb387d..9449e02832d 100644 --- a/kyu_6/a_rule_of_divisibility_by_13/test_thirt.py +++ b/kyu_6/a_rule_of_divisibility_by_13/test_thirt.py @@ -1,5 +1,6 @@ """ -Test for -> A Rule of Divisibility by 13 +Test for -> A Rule of Divisibility by 13. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_6.a_rule_of_divisibility_by_13.thirt import thirt from utils.log_func import print_log @@ -23,14 +25,21 @@ url='https://www.codewars.com/kata/564057bc348c7200bd0000ff', name='Source/Kata') class ThirtTestCase(unittest.TestCase): - """ - Testing 'thirt' function - """ + """Testing 'thirt' function.""" + @parameterized.expand([ + (1234567, 87), + (321, 48), + (8529, 79), + (85299258, 31), + (5634, 57), + (1111111111, 71), + (987654321, 30)]) # pylint: disable-msg=R0801 - def test_thirt(self): + def test_thirt(self, n, expected): """ - Testing 'thirt' function with various test data + Testing 'thirt' function with various test data. + :return: """ allure.dynamic.title("Testing 'thirt' function") @@ -44,26 +53,12 @@ def test_thirt(self): "on an integer n (>=0). 'thirt' should return the stationary" " number.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (1234567, 87), - (321, 48), - (8529, 79), - (85299258, 31), - (5634, 57), - (1111111111, 71), - (987654321, 30)) - - for n, expected in test_data: - actual_result = thirt(n) - # 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) + actual_result = thirt(n) + # 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 From 33b54c1a4236865825783c639a280c8eea1247a6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:20:45 -0800 Subject: [PATCH 552/873] Update .codeclimate.yml --- .codeclimate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 611bb59204b..77ebd03845f 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,10 +12,10 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - #overriding will affect all languages + # overriding will affect all languages threshold: 68 identical-code: config: - #overriding will affect all languages + # overriding will affect all languages threshold: 32 -# ... CONFIG CONTENT ... \ No newline at end of file +# ... CONFIG CONTENT ... From 2c1d6cbfcab04f669c08f23e0ec5a26c088400a5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:22:03 -0800 Subject: [PATCH 553/873] Update .codeclimate.yml --- .codeclimate.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 77ebd03845f..b7689bf6a22 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,10 +12,8 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - # overriding will affect all languages threshold: 68 identical-code: config: - # overriding will affect all languages threshold: 32 # ... CONFIG CONTENT ... From 042d6b423446772746a335ccaf20bcbca97a1290 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:24:05 -0800 Subject: [PATCH 554/873] Update .codeclimate.yml --- .codeclimate.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index b7689bf6a22..b2adb8af485 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,5 +1,5 @@ --- -version: "2" # required to adjust maintainability checks +version: "2" # required to adjust maintainability checks checks: import-error: @@ -16,4 +16,3 @@ checks: identical-code: config: threshold: 32 -# ... CONFIG CONTENT ... From 084e5cb3203960ff8abb0ca84863b2a1e8d8101e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:25:29 -0800 Subject: [PATCH 555/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index b2adb8af485..a58e6f110fd 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 + threshold: 68 identical-code: config: - threshold: 32 + threshold: 32 From ff90f6d8d893ed6f248f1d693f39f48d623262f5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:31:18 -0800 Subject: [PATCH 556/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index a58e6f110fd..8d201fb98d9 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 + threshold: 68 identical-code: config: - threshold: 32 + threshold: 32 \ No newline at end of file From d73f6cbd0e2ad5a40d4574ec337fb415c0573444 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:35:46 -0800 Subject: [PATCH 557/873] Update .yamllint.yaml --- .yamllint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 84789e6067c..7caca1bfadb 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -17,7 +17,7 @@ rules: commas: enable comments: level: warning - comments-indentation: + min-spaces-from-content: 1 # Changed this to stop a mess between linters from Prettier level: warning document-end: disable document-start: From 681da828c3109c037a8371774f12907111889dbf Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:37:54 -0800 Subject: [PATCH 558/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8d201fb98d9..971b4cefe57 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,7 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 + threshold: 68 # overrides default identical-code: config: - threshold: 32 \ No newline at end of file + threshold: 32 # overrides default From 66411da2cf146219620cc327ab4b27d9a3b6fc19 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:39:49 -0800 Subject: [PATCH 559/873] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 971b4cefe57..1fdbfbc7002 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,7 +12,9 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - threshold: 68 # overrides default + # overrides default + threshold: 68 identical-code: config: - threshold: 32 # overrides default + # overrides default + threshold: 32 From 8f7b01c13ce0f0ed34ba121c2d1856ebee00fbf3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:41:44 -0800 Subject: [PATCH 560/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 1fdbfbc7002..655b96ecbdd 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -12,9 +12,9 @@ checks: # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine similar-code: config: - # overrides default + # overrides default threshold: 68 identical-code: config: - # overrides default + # overrides default threshold: 32 From 00fa790f91a42debc380bf961a6b93fc7cef286d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:43:07 -0800 Subject: [PATCH 561/873] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 655b96ecbdd..8ea082f21d6 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -13,8 +13,8 @@ checks: similar-code: config: # overrides default - threshold: 68 + threshold: "68" identical-code: config: # overrides default - threshold: 32 + threshold: "32" From 2c6a6fdbfe2f3633a5c2f7f202412765ab0fe96b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:47:15 -0800 Subject: [PATCH 562/873] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8ea082f21d6..bd2e509acdc 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -10,11 +10,13 @@ checks: enabled: false # Per-Language Mass Threshold Defaults # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine + # yamllint disable rule:indentation similar-code: config: - # overrides default + # overrides default threshold: "68" identical-code: config: - # overrides default + # overrides default threshold: "32" + # yamllint enable rule:indentation From d906a188445437be161ea25c77a32f791a929e62 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:51:40 -0800 Subject: [PATCH 563/873] Update .yamllint.yaml --- .yamllint.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.yamllint.yaml b/.yamllint.yaml index 7caca1bfadb..713ac3a3b42 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -18,6 +18,7 @@ rules: comments: level: warning min-spaces-from-content: 1 # Changed this to stop a mess between linters from Prettier + comments-indentation: level: warning document-end: disable document-start: From d0738b548be5411ed7176ceefa938050bb8a6a06 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:53:24 -0800 Subject: [PATCH 564/873] Update .yamllint.yaml --- .yamllint.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 713ac3a3b42..e9d3a5d49a5 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -15,14 +15,9 @@ rules: brackets: enable colons: enable commas: enable - comments: - level: warning - min-spaces-from-content: 1 # Changed this to stop a mess between linters from Prettier - comments-indentation: - level: warning - document-end: disable - document-start: - level: warning + comments: disable + comments-indentation: disable + document-start: disable empty-lines: enable empty-values: disable float-values: disable From bd9e4543616027f97d106d0be6b979d0cec3e8a3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:00:40 -0800 Subject: [PATCH 565/873] Update .yamllint --- .yamllint.yaml => .yamllint | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .yamllint.yaml => .yamllint (100%) diff --git a/.yamllint.yaml b/.yamllint similarity index 100% rename from .yamllint.yaml rename to .yamllint From 1adfe512c7a95abb9dc397b425b649f573b61ddb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:03:40 -0800 Subject: [PATCH 566/873] Update .yamllint.yaml --- .yamllint => .yamllint.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .yamllint => .yamllint.yaml (100%) diff --git a/.yamllint b/.yamllint.yaml similarity index 100% rename from .yamllint rename to .yamllint.yaml From 94e31f2ebbf0d3217875bfe6d90b5d7ed4650b99 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:05:04 -0800 Subject: [PATCH 567/873] Update .codeclimate.yml --- .codeclimate.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index bd2e509acdc..8e9c8cac813 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -8,15 +8,9 @@ checks: enabled: false no-name-in-module: enabled: false - # Per-Language Mass Threshold Defaults - # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine - # yamllint disable rule:indentation similar-code: config: - # overrides default - threshold: "68" + threshold: 68 identical-code: config: - # overrides default - threshold: "32" - # yamllint enable rule:indentation + threshold: 32 From 8b4407fa6d59d5c86b7b7bf3f1a65fcf8d9434fb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:06:09 -0800 Subject: [PATCH 568/873] Update .yamllint.yaml --- .yamllint.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.yamllint.yaml b/.yamllint.yaml index e9d3a5d49a5..40848bb2e90 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -8,6 +8,7 @@ yaml-files: ignore: | depricated/ + .codeclimate.yml rules: anchors: enable From 4b5e2a7185db90fd1baf877bc25be91595a74fc4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:07:35 -0800 Subject: [PATCH 569/873] Update .yamllint.yaml --- .yamllint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 40848bb2e90..95b4887076c 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -8,7 +8,7 @@ yaml-files: ignore: | depricated/ - .codeclimate.yml + ./.codeclimate.yml rules: anchors: enable From 3f2e559bb47a5973722cf637ddbb844bb49b6f1b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:09:20 -0800 Subject: [PATCH 570/873] Update .yamllint.yaml --- .yamllint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 95b4887076c..474502e30dc 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -8,7 +8,7 @@ yaml-files: ignore: | depricated/ - ./.codeclimate.yml + *.codeclimate.yml rules: anchors: enable From 62be92f39660aa2b27ebde2f928c63300edf84c7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:11:48 -0800 Subject: [PATCH 571/873] Update .yamllint.yaml --- .yamllint.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 474502e30dc..c7b8736994a 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -6,9 +6,9 @@ yaml-files: - '*.yml' - '.yamllint' -ignore: | - depricated/ - *.codeclimate.yml +ignore: + - depricated/ + - '*.codeclimate.yml' rules: anchors: enable From 3440a5aa33ce5fd9cac9f9805a8ec3b1511d0f39 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:14:02 -0800 Subject: [PATCH 572/873] Update .yamllint.yaml --- .yamllint.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index c7b8736994a..cba1da5947c 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -33,6 +33,8 @@ rules: new-lines: enable octal-values: disable quoted-strings: disable - trailing-spaces: enable + trailing-spaces: + ignore: + - '*.codeclimate.yml' truthy: level: warning From b680cfd80563274694f457c63076383d41659ed5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:15:29 -0800 Subject: [PATCH 573/873] Update .yamllint.yaml --- .yamllint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index cba1da5947c..3d3a435dd7f 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -8,7 +8,7 @@ yaml-files: ignore: - depricated/ - - '*.codeclimate.yml' + - ./*.codeclimate.yml rules: anchors: enable @@ -35,6 +35,6 @@ rules: quoted-strings: disable trailing-spaces: ignore: - - '*.codeclimate.yml' + - ./.codeclimate.yml truthy: level: warning From f08458f70afbf62eabe1ecdf24173cfa5cd6fa0e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:22:23 -0800 Subject: [PATCH 574/873] Update .yamllint.yaml --- .yamllint.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index 3d3a435dd7f..c7b8736994a 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -8,7 +8,7 @@ yaml-files: ignore: - depricated/ - - ./*.codeclimate.yml + - '*.codeclimate.yml' rules: anchors: enable @@ -33,8 +33,6 @@ rules: new-lines: enable octal-values: disable quoted-strings: disable - trailing-spaces: - ignore: - - ./.codeclimate.yml + trailing-spaces: enable truthy: level: warning From a73848b9e34f133467362c35dac5287853de1c2b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:30:53 -0800 Subject: [PATCH 575/873] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8e9c8cac813..37a76811055 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -14,3 +14,4 @@ checks: identical-code: config: threshold: 32 +--- \ No newline at end of file From 203a163aae902eb45f34c8383b2c0b1f68cc20dd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:42:58 -0800 Subject: [PATCH 576/873] Update yamllint.yml --- .github/workflows/yamllint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index d99a3e30c0b..5aab1fedfb0 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -36,4 +36,4 @@ jobs: yamllint --version - name: Analysing YML files run: | - yamllint . -c .yamllint.yaml + yamllint . -c ../../.yamllint.yaml From 4bd70f60e9b4f30f41009051abc0f30a38f26de6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:46:45 -0800 Subject: [PATCH 577/873] Update .yamllint.yaml --- .yamllint.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index c7b8736994a..e9d3a5d49a5 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -6,9 +6,8 @@ yaml-files: - '*.yml' - '.yamllint' -ignore: - - depricated/ - - '*.codeclimate.yml' +ignore: | + depricated/ rules: anchors: enable From 513e7da892a681bbc39e281addde9c34f2dad6e1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:46:48 -0800 Subject: [PATCH 578/873] Update yamllint.yml --- .github/workflows/yamllint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 5aab1fedfb0..d99a3e30c0b 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -36,4 +36,4 @@ jobs: yamllint --version - name: Analysing YML files run: | - yamllint . -c ../../.yamllint.yaml + yamllint . -c .yamllint.yaml From 66ff141889e8d91404844013d767c75e079ede6d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:46:51 -0800 Subject: [PATCH 579/873] Update .codeclimate.yml --- .codeclimate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 37a76811055..8e9c8cac813 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -14,4 +14,3 @@ checks: identical-code: config: threshold: 32 ---- \ No newline at end of file From 1781eaa2b0d03d98bab8cc7abc712db4a3c1eee1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:02:05 -0800 Subject: [PATCH 580/873] Create pydocstyle_kyu6.yml --- .github/workflows/pydocstyle_kyu6.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu6.yml diff --git a/.github/workflows/pydocstyle_kyu6.yml b/.github/workflows/pydocstyle_kyu6.yml new file mode 100644 index 00000000000..dda523bf394 --- /dev/null +++ b/.github/workflows/pydocstyle_kyu6.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle 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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --version + - name: Doc style checking with pydocstyle + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_6 From 17f626ea779d2fe9257ed15b879d059fc6172112 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:03:26 -0800 Subject: [PATCH 581/873] Update __init__.py --- kyu_6/a_rule_of_divisibility_by_13/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_6/a_rule_of_divisibility_by_13/__init__.py b/kyu_6/a_rule_of_divisibility_by_13/__init__.py index e69de29bb2d..e32b752781f 100644 --- a/kyu_6/a_rule_of_divisibility_by_13/__init__.py +++ b/kyu_6/a_rule_of_divisibility_by_13/__init__.py @@ -0,0 +1 @@ +"""A Rule of Divisibility by 13.""" From f58f8a8682a580b9d682c62c4a51c854b54af632 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:04:22 -0800 Subject: [PATCH 582/873] Update __init__.py --- kyu_6/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_6/__init__.py b/kyu_6/__init__.py index e69de29bb2d..37635729cbe 100644 --- a/kyu_6/__init__.py +++ b/kyu_6/__init__.py @@ -0,0 +1 @@ +"""6 kyu - Novice package.""" From c30fb64ea3072719b0501af4788a828fbdcd2353 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:09:22 -0800 Subject: [PATCH 583/873] Array.diff --- kyu_6/array_diff/__init__.py | 1 + kyu_6/array_diff/solution.py | 3 +- kyu_6/array_diff/test_array_diff.py | 51 +++++++++++++---------------- 3 files changed, 26 insertions(+), 29 deletions(-) diff --git a/kyu_6/array_diff/__init__.py b/kyu_6/array_diff/__init__.py index e69de29bb2d..fcd2ecced06 100644 --- a/kyu_6/array_diff/__init__.py +++ b/kyu_6/array_diff/__init__.py @@ -0,0 +1 @@ +"""# Array.diff.""" diff --git a/kyu_6/array_diff/solution.py b/kyu_6/array_diff/solution.py index 9f925b85838..aa96385c3e8 100644 --- a/kyu_6/array_diff/solution.py +++ b/kyu_6/array_diff/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Array.diff +Solution for -> Array.diff. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ diff --git a/kyu_6/array_diff/test_array_diff.py b/kyu_6/array_diff/test_array_diff.py index ee99d51e5f9..59b2d1538cf 100644 --- a/kyu_6/array_diff/test_array_diff.py +++ b/kyu_6/array_diff/test_array_diff.py @@ -1,5 +1,6 @@ """ -Test for -> Array.diff +Test for -> Array.diff. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_6.array_diff.solution import array_diff from utils.log_func import print_log @@ -28,7 +30,7 @@ # pylint: enable-msg=R0801 class ArrayDiffTestCase(unittest.TestCase): """ - Testing array_diff function + Testing array_diff function. Your goal in this kata is to implement a difference function, which subtracts one list from another and returns the result. @@ -42,9 +44,16 @@ class ArrayDiffTestCase(unittest.TestCase): array_diff([1,2,2,2,3],[2]) == [1,3] """ - def test_array_diff_function(self): + @parameterized.expand([ + ([1, 2], [1], [2], "a was [1,2], b was [1], expected [2]"), + ([1, 2, 2], [1], [2, 2], "a was [1,2,2], b was [1], expected [2,2]"), + ([1, 2, 2], [2], [1], "a was [1,2,2], b was [2], expected [1]"), + ([1, 2, 2], [], [1, 2, 2], "a was [1,2,2], b was [], expected [1,2,2]"), + ([], [1, 2], [], "a was [], b was [1,2], expected []")]) + def test_array_diff_function(self, a, b, expected, message): """ - Testing array_diff function + Testing array_diff function. + :return: """ # pylint: disable-msg=R0801 @@ -59,29 +68,15 @@ def test_array_diff_function(self): "and returns the result. It should remove all values from " "list a, which are present in list b.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([1, 2], [1], [2], "a was [1,2], b was [1], expected [2]"), - ([1, 2, 2], [1], [2, 2], "a was [1,2,2], b was [1], expected [2,2]"), - ([1, 2, 2], [2], [1], "a was [1,2,2], b was [2], expected [1]"), - ([1, 2, 2], [], [1, 2, 2], "a was [1,2,2], b was [], expected [1,2,2]"), - ([], [1, 2], [], "a was [], b was [1,2], expected []")) - - for test_item in test_data: - a: list = test_item[0] - b: list = test_item[1] - expected: list = test_item[2] - message: str = test_item[-1] + with allure.step(f"Enter a test data: {a, b} and verify the " + f"expected output vs actual result: {expected}."): actual_result: list = array_diff(a, b) + print_log(a=a, + b=b, + exp=expected, + message=message, + actual_result=actual_result) - with allure.step("Enter a test data and verify the " - "expected output vs actual result"): - - print_log(a=a, - b=b, - exp=expected, - message=message, - res=actual_result) - - self.assertEqual(expected, - actual_result, - message) + self.assertEqual(expected, + actual_result, + message) From 2cfcfcb9b807d9f56d7747bdfba12e39f36dfde9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:11:13 -0800 Subject: [PATCH 584/873] Update .yamllint.yaml --- .yamllint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.yamllint.yaml b/.yamllint.yaml index e9d3a5d49a5..0fc474edf2b 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -16,8 +16,8 @@ rules: colons: enable commas: enable comments: disable - comments-indentation: disable - document-start: disable + comments-indentation: enable + document-start: enable empty-lines: enable empty-values: disable float-values: disable From 9af83a5a4011804cbee7b73c49afbc898a7cf856 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:03:34 -0800 Subject: [PATCH 585/873] Array to table --- kyu_6/array_to_html_table/__init__.py | 1 + .../test_list_to_html_table.py | 136 +++++++++--------- kyu_6/array_to_html_table/to_table.py | 5 +- .../test_binary_to_string.py | 1 + 4 files changed, 74 insertions(+), 69 deletions(-) diff --git a/kyu_6/array_to_html_table/__init__.py b/kyu_6/array_to_html_table/__init__.py index e69de29bb2d..e1248be3484 100644 --- a/kyu_6/array_to_html_table/__init__.py +++ b/kyu_6/array_to_html_table/__init__.py @@ -0,0 +1 @@ +"""Array to HTML table.""" diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index 8e19f268323..f23487e7de4 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -1,5 +1,6 @@ """ -Test for -> Array to HTML table +Test for -> Array to HTML table. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.array_to_html_table.to_table import to_table @@ -25,13 +27,69 @@ url='https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a', name='Source/Kata') class ArrayToTableTestCase(unittest.TestCase): - """ - Testing to_table function - """ + """Testing to_table function.""" - def test_array_to_table_function(self): + @parameterized.expand([ + { + "input": ([["o"]]), + "output": "" + "" + "
    o
    " + }, + { + "input": ([["lorem", "ipsum"], ["dolor", "sit amet"]], True, True), + "output": "" + "" + "" + "" + "
    loremipsum
    1dolorsit amet
    " + }, + { + "input": ([[1, 2, 3], [4, 5, 6], [7, 8, 9]], False, True), + "output": "" + "" + "" + "" + "
    1123
    2456
    3789
    " + }, + { + "input": ( + [ + ["id", "name", "price", "quantity"], + [24351, "pen", 2.41, 500], + [None, "pencil", 0.99, 25], + [63401, "grizzly bear", None, 1], + [3532, "rubber duck", 5.45, 24], + [1523, None, 3.00, 6.8], + [11765, "caviar", 67.95, None] + ], True), + "output": + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
    idnamepricequantity
    24351pen2.41500
    pencil0.9925
    63401grizzly bear1
    3532rubber duck5.4524
    15233.06.8
    11765caviar67.95
    " + }, + { + "input": ([["a", "b", "c", "d", "e"], [True, False, False, True, True]], True), + "output": "" + "" + "" + "" + "" + "" + "
    abcde
    TrueFalseFalseTrueTrue
    "} + ]) + def test_array_to_table_function(self, test_item): """ - Testing to_table with various test data + Testing to_table with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -46,70 +104,12 @@ def test_array_to_table_function(self): "(data, header, index) and returns a string " "containing HTML tags representing the table.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - { - "input": ([["o"]]), - "output": "" - "" - "
    o
    " - }, - { - "input": ([["lorem", "ipsum"], ["dolor", "sit amet"]], True, True), - "output": "" - "" - "" - "" - "
    loremipsum
    1dolorsit amet
    " - }, - { - "input": ([[1, 2, 3], [4, 5, 6], [7, 8, 9]], False, True), - "output": "" - "" - "" - "" - "
    1123
    2456
    3789
    " - }, - { - "input": ( - [ - ["id", "name", "price", "quantity"], - [24351, "pen", 2.41, 500], - [None, "pencil", 0.99, 25], - [63401, "grizzly bear", None, 1], - [3532, "rubber duck", 5.45, 24], - [1523, None, 3.00, 6.8], - [11765, "caviar", 67.95, None] - ], True), - "output": - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "
    idnamepricequantity
    24351pen2.41500
    pencil0.9925
    63401grizzly bear1
    3532rubber duck5.4524
    15233.06.8
    11765caviar67.95
    " - }, - { - "input": ([["a", "b", "c", "d", "e"], [True, False, False, True, True]], True), - "output": "" - "" - "" - "" - "" - "" - "
    abcde
    TrueFalseFalseTrueTrue
    "}) - - for test_item in test_data: + with allure.step("Enter a test data and verify the " + "expected output vs actual result"): data: list = test_item["input"][0] header = test_item["input"][1] if len(test_item["input"]) > 1 else False index: bool = test_item["input"][2] if len(test_item["input"]) > 2 else False expected = test_item["output"] actual_result = to_table(data, header, index) - - with allure.step("Enter a test data and verify the expected output vs actual result"): - print_log(exp=expected, res=actual_result) - self.assertEqual(expected, actual_result) + print_log(exp=expected, res=actual_result) + self.assertEqual(expected, actual_result) diff --git a/kyu_6/array_to_html_table/to_table.py b/kyu_6/array_to_html_table/to_table.py index d000033d614..a737009e1fe 100644 --- a/kyu_6/array_to_html_table/to_table.py +++ b/kyu_6/array_to_html_table/to_table.py @@ -1,5 +1,6 @@ """ -Solution for -> Array to HTML table +Solution for -> Array to HTML table. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,6 +27,8 @@ def to_table(data: list, header: bool = False, index: bool = False) -> str: """ + Array to table. + Takes three arguments: data, headers, index, and returns a string containing HTML tags representing the table. diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 0a7e205c80c..3825d5699e6 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -8,6 +8,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.binary_to_text_ascii_conversion.binary_to_string \ import binary_to_string From 0560ddeff69de30803b5ca75e84b5ee1601f2837 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:07:45 -0800 Subject: [PATCH 586/873] Binary to text --- kyu_6/array_to_html_table/test_list_to_html_table.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index f23487e7de4..811ac3d2885 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -84,8 +84,7 @@ class ArrayToTableTestCase(unittest.TestCase): "" "TrueFalseFalseTrue" "True" - ""} - ]) + ""}]) def test_array_to_table_function(self, test_item): """ Testing to_table with various test data. From 43045c1fedc0c5164657942482a83afb7abcac60 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:09:55 -0800 Subject: [PATCH 587/873] Binary to text --- .../__init__.py | 1 + .../binary_to_string.py | 6 +- .../test_binary_to_string.py | 88 +++++++++---------- 3 files changed, 45 insertions(+), 50 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/__init__.py b/kyu_6/binary_to_text_ascii_conversion/__init__.py index e69de29bb2d..d701c1ceb36 100644 --- a/kyu_6/binary_to_text_ascii_conversion/__init__.py +++ b/kyu_6/binary_to_text_ascii_conversion/__init__.py @@ -0,0 +1 @@ +"""Binary to Text (ASCII) Conversion.""" diff --git a/kyu_6/binary_to_text_ascii_conversion/binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/binary_to_string.py index 055d549dfc4..13df3fc288b 100644 --- a/kyu_6/binary_to_text_ascii_conversion/binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/binary_to_string.py @@ -1,5 +1,6 @@ """ -Solution for -> Binary to Text (ASCII) Conversion +Solution for -> Binary to Text (ASCII) Conversion. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def binary_to_string(binary: str) -> str: """ + Binary to string. + Write a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded). @@ -29,7 +32,6 @@ def binary_to_string(binary: str) -> str: :param binary: :return: """ - if not binary: return '' diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 3825d5699e6..df4ca9fe14a 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -1,5 +1,6 @@ """ -Test for -> Binary to Text (ASCII) Conversion +Test for -> Binary to Text (ASCII) Conversion. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -30,14 +31,40 @@ url='https://www.codewars.com/kata/5583d268479559400d000064', name='Source/Kata') class SequenceTestCase(unittest.TestCase): - """ - Testing binary_to_string function - """ + """Testing binary_to_string function.""" - def test_binary_to_string(self): + @parameterized.expand([ + ('0100100001100101011011000110110001101111', 'Hello'), + ('00110001001100000011000100110001', '1011'), + ('010100110111000001100001011100100110101101' + '110011001000000110011001101100011001010111' + '011100101110001011100010000001100101011011' + '010110111101110100011010010110111101101110' + '011100110010000001110010011000010110111000' + '100000011010000110100101100111011010000010' + '0001', 'Sparks flew.. emotions ran high!'), + ('001000010100000000100011001001000010010101' + '011110001001100010101000101000001010010101' + '000101010111010001010111001001110100011110' + '010101010101001001010011110100110001100100' + '011001100110011101100010011000100110100001' + '101110011011010100100101001011010000100100' + '101001001011010010000100100101010101010011' + '110010100000111111001111100011111100111100' + '011111100111111001111110011111100111111000' + '101001001010000010101000100110001001010101' + '111000111001001110000011011100110001001100' + '110010111100101101001011110010101000101101' + '0010101000101111', + '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' + '(?>?<~~~~~)(*&%^98713/-/*-*/'), + ('011001100111011101101111001100010110001101' + '101110001101100110011001101010011100010110' + '010101110001', 'fwo1cn6fjqeq')]) + def test_binary_to_string(self, binary, expected): """ - Testing binary_to_string function - with various test data + Testing binary_to_string function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -51,44 +78,9 @@ def test_binary_to_string(self): "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ('0100100001100101011011000110110001101111', 'Hello'), - ('00110001001100000011000100110001', '1011'), - ('010100110111000001100001011100100110101101' - '110011001000000110011001101100011001010111' - '011100101110001011100010000001100101011011' - '010110111101110100011010010110111101101110' - '011100110010000001110010011000010110111000' - '100000011010000110100101100111011010000010' - '0001', 'Sparks flew.. emotions ran high!'), - ('001000010100000000100011001001000010010101' - '011110001001100010101000101000001010010101' - '000101010111010001010111001001110100011110' - '010101010101001001010011110100110001100100' - '011001100110011101100010011000100110100001' - '101110011011010100100101001011010000100100' - '101001001011010010000100100101010101010011' - '110010100000111111001111100011111100111100' - '011111100111111001111110011111100111111000' - '101001001010000010101000100110001001010101' - '111000111001001110000011011100110001001100' - '110010111100101101001011110010101000101101' - '0010101000101111', - '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' - '(?>?<~~~~~)(*&%^98713/-/*-*/'), - ('011001100111011101101111001100010110001101' - '101110001101100110011001101010011100010110' - '010101110001', 'fwo1cn6fjqeq')) - - for binary, expected in test_data: - actual_result = binary_to_string(binary) - with allure.step(f"Enter a binary ({binary}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(binary=binary, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + actual_result = binary_to_string(binary) + with allure.step(f"Enter a binary ({binary}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(binary=binary, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From 44d7c29952060ceb13c1e355f42845920c9be1e4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:21:04 -0800 Subject: [PATCH 588/873] Update test_list_to_html_table.py --- kyu_6/array_to_html_table/test_list_to_html_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index 811ac3d2885..2037b2b8378 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -87,12 +87,12 @@ class ArrayToTableTestCase(unittest.TestCase): ""}]) def test_array_to_table_function(self, test_item): """ - Testing to_table with various test data. + Testing 'to_table' function with various test data. :return: """ # pylint: disable-msg=R0801 - allure.dynamic.title("Testing to_table function") + allure.dynamic.title("Testing to_table function.") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' From ac44d8648f24a7c66b21ed7b92392891342f347e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:33:09 -0800 Subject: [PATCH 589/873] Update test_list_to_html_table.py --- kyu_6/array_to_html_table/test_list_to_html_table.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index 2037b2b8378..a44e0f119c6 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -77,7 +77,8 @@ class ArrayToTableTestCase(unittest.TestCase): "" }, { - "input": ([["a", "b", "c", "d", "e"], [True, False, False, True, True]], True), + "input": ([["a", "b", "c", "d", "e"], + [True, False, False, True, True]], True), "output": "" "" "" @@ -95,10 +96,10 @@ def test_array_to_table_function(self, test_item): allure.dynamic.title("Testing to_table function.") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( - '

    Codewars badge:

    ' - '' - '

    Test Description:

    ' + "

    Codewars badge:

    " + "" + "

    Test Description:

    " "

    Test that function takes three arguments " "(data, header, index) and returns a string " "containing HTML tags representing the table.

    ") From 167ebf2b716cfac70314ede34f816bd04f42c547 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:37:21 -0800 Subject: [PATCH 590/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index df4ca9fe14a..e4a09523e16 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -63,7 +63,7 @@ class SequenceTestCase(unittest.TestCase): '010101110001', 'fwo1cn6fjqeq')]) def test_binary_to_string(self, binary, expected): """ - Testing binary_to_string function with various test data. + Testing 'binary_to_string' function with various test data. :return: """ @@ -71,10 +71,10 @@ def test_binary_to_string(self, binary, expected): allure.dynamic.title("Testing binary_to_string function") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( - '

    Codewars badge:

    ' - '' - '

    Test Description:

    ' + "

    Codewars badge:

    " + "" + "

    Test Description:

    " "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") # pylint: enable-msg=R0801 From 4e717cb1910865c6b7d9987745cc06a48ac783ea Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:39:48 -0800 Subject: [PATCH 591/873] Update test_binary_to_string.py --- kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index e4a09523e16..8bd7fdb5643 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -72,8 +72,7 @@ def test_binary_to_string(self, binary, expected): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( "

    Codewars badge:

    " - "" + "" "

    Test Description:

    " "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") From 06e34586914a9bcf842e13a3d9a27146b1542e7b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:45:46 -0800 Subject: [PATCH 592/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 96 ++++++++++--------- 1 file changed, 52 insertions(+), 44 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 8bd7fdb5643..0a7e205c80c 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -1,6 +1,5 @@ """ -Test for -> Binary to Text (ASCII) Conversion. - +Test for -> Binary to Text (ASCII) Conversion Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,7 +8,6 @@ import unittest import allure -from parameterized import parameterized from utils.log_func import print_log from kyu_6.binary_to_text_ascii_conversion.binary_to_string \ import binary_to_string @@ -31,55 +29,65 @@ url='https://www.codewars.com/kata/5583d268479559400d000064', name='Source/Kata') class SequenceTestCase(unittest.TestCase): - """Testing binary_to_string function.""" + """ + Testing binary_to_string function + """ - @parameterized.expand([ - ('0100100001100101011011000110110001101111', 'Hello'), - ('00110001001100000011000100110001', '1011'), - ('010100110111000001100001011100100110101101' - '110011001000000110011001101100011001010111' - '011100101110001011100010000001100101011011' - '010110111101110100011010010110111101101110' - '011100110010000001110010011000010110111000' - '100000011010000110100101100111011010000010' - '0001', 'Sparks flew.. emotions ran high!'), - ('001000010100000000100011001001000010010101' - '011110001001100010101000101000001010010101' - '000101010111010001010111001001110100011110' - '010101010101001001010011110100110001100100' - '011001100110011101100010011000100110100001' - '101110011011010100100101001011010000100100' - '101001001011010010000100100101010101010011' - '110010100000111111001111100011111100111100' - '011111100111111001111110011111100111111000' - '101001001010000010101000100110001001010101' - '111000111001001110000011011100110001001100' - '110010111100101101001011110010101000101101' - '0010101000101111', - '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' - '(?>?<~~~~~)(*&%^98713/-/*-*/'), - ('011001100111011101101111001100010110001101' - '101110001101100110011001101010011100010110' - '010101110001', 'fwo1cn6fjqeq')]) - def test_binary_to_string(self, binary, expected): + def test_binary_to_string(self): """ - Testing 'binary_to_string' function with various test data. - + Testing binary_to_string function + with various test data :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing binary_to_string function") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( - "

    Codewars badge:

    " - "" - "

    Test Description:

    " + '

    Codewars badge:

    ' + '' + '

    Test Description:

    ' "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") # pylint: enable-msg=R0801 - actual_result = binary_to_string(binary) - with allure.step(f"Enter a binary ({binary}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - print_log(binary=binary, expected=expected, result=actual_result) - self.assertEqual(expected, actual_result) + test_data: tuple = ( + ('0100100001100101011011000110110001101111', 'Hello'), + ('00110001001100000011000100110001', '1011'), + ('010100110111000001100001011100100110101101' + '110011001000000110011001101100011001010111' + '011100101110001011100010000001100101011011' + '010110111101110100011010010110111101101110' + '011100110010000001110010011000010110111000' + '100000011010000110100101100111011010000010' + '0001', 'Sparks flew.. emotions ran high!'), + ('001000010100000000100011001001000010010101' + '011110001001100010101000101000001010010101' + '000101010111010001010111001001110100011110' + '010101010101001001010011110100110001100100' + '011001100110011101100010011000100110100001' + '101110011011010100100101001011010000100100' + '101001001011010010000100100101010101010011' + '110010100000111111001111100011111100111100' + '011111100111111001111110011111100111111000' + '101001001010000010101000100110001001010101' + '111000111001001110000011011100110001001100' + '110010111100101101001011110010101000101101' + '0010101000101111', + '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' + '(?>?<~~~~~)(*&%^98713/-/*-*/'), + ('011001100111011101101111001100010110001101' + '101110001101100110011001101010011100010110' + '010101110001', 'fwo1cn6fjqeq')) + + for binary, expected in test_data: + actual_result = binary_to_string(binary) + with allure.step(f"Enter a binary ({binary}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + + print_log(binary=binary, + expected=expected, + result=actual_result) + + self.assertEqual(expected, + actual_result) From a73c8ec75d0ef7473ec1fde4a528e93a899da990 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:48:00 -0800 Subject: [PATCH 593/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 0a7e205c80c..73435d5a18a 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -1,5 +1,6 @@ """ -Test for -> Binary to Text (ASCII) Conversion +Test for -> Binary to Text (ASCII) Conversion. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,9 +30,7 @@ url='https://www.codewars.com/kata/5583d268479559400d000064', name='Source/Kata') class SequenceTestCase(unittest.TestCase): - """ - Testing binary_to_string function - """ + """Testing binary_to_string function.""" def test_binary_to_string(self): """ From 27d8192de34ca91422bb43b1555e8f7afc0a0cb6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:51:21 -0800 Subject: [PATCH 594/873] Update test_binary_to_string.py --- .../binary_to_text_ascii_conversion/test_binary_to_string.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 73435d5a18a..ad181d764ed 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -34,8 +34,8 @@ class SequenceTestCase(unittest.TestCase): def test_binary_to_string(self): """ - Testing binary_to_string function - with various test data + Testing binary_to_string function with various test data. + :return: """ # pylint: disable-msg=R0801 From ed81bf9844f553a963dee0e864aa4511ec3a12c5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:56:05 -0800 Subject: [PATCH 595/873] Update test_list_to_html_table.py --- .../test_list_to_html_table.py | 146 +++++++++--------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index a44e0f119c6..8e19f268323 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -1,6 +1,5 @@ """ -Test for -> Array to HTML table. - +Test for -> Array to HTML table Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,7 +8,6 @@ import unittest import allure -from parameterized import parameterized from utils.log_func import print_log from kyu_6.array_to_html_table.to_table import to_table @@ -27,89 +25,91 @@ url='https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a', name='Source/Kata') class ArrayToTableTestCase(unittest.TestCase): - """Testing to_table function.""" + """ + Testing to_table function + """ - @parameterized.expand([ - { - "input": ([["o"]]), - "output": "
    abcde
    " - "" - "
    o
    " - }, - { - "input": ([["lorem", "ipsum"], ["dolor", "sit amet"]], True, True), - "output": "" - "" - "" - "" - "
    loremipsum
    1dolorsit amet
    " - }, - { - "input": ([[1, 2, 3], [4, 5, 6], [7, 8, 9]], False, True), - "output": "" - "" - "" - "" - "
    1123
    2456
    3789
    " - }, - { - "input": ( - [ - ["id", "name", "price", "quantity"], - [24351, "pen", 2.41, 500], - [None, "pencil", 0.99, 25], - [63401, "grizzly bear", None, 1], - [3532, "rubber duck", 5.45, 24], - [1523, None, 3.00, 6.8], - [11765, "caviar", 67.95, None] - ], True), - "output": - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "
    idnamepricequantity
    24351pen2.41500
    pencil0.9925
    63401grizzly bear1
    3532rubber duck5.4524
    15233.06.8
    11765caviar67.95
    " - }, - { - "input": ([["a", "b", "c", "d", "e"], - [True, False, False, True, True]], True), - "output": "" - "" - "" - "" - "" - "" - "
    abcde
    TrueFalseFalseTrueTrue
    "}]) - def test_array_to_table_function(self, test_item): + def test_array_to_table_function(self): """ - Testing 'to_table' function with various test data. - + Testing to_table with various test data :return: """ # pylint: disable-msg=R0801 - allure.dynamic.title("Testing to_table function.") + allure.dynamic.title("Testing to_table function") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( - "

    Codewars badge:

    " - "" - "

    Test Description:

    " + '

    Codewars badge:

    ' + '' + '

    Test Description:

    ' "

    Test that function takes three arguments " "(data, header, index) and returns a string " "containing HTML tags representing the table.

    ") # pylint: enable-msg=R0801 - with allure.step("Enter a test data and verify the " - "expected output vs actual result"): + test_data: tuple = ( + { + "input": ([["o"]]), + "output": "" + "" + "
    o
    " + }, + { + "input": ([["lorem", "ipsum"], ["dolor", "sit amet"]], True, True), + "output": "" + "" + "" + "" + "
    loremipsum
    1dolorsit amet
    " + }, + { + "input": ([[1, 2, 3], [4, 5, 6], [7, 8, 9]], False, True), + "output": "" + "" + "" + "" + "
    1123
    2456
    3789
    " + }, + { + "input": ( + [ + ["id", "name", "price", "quantity"], + [24351, "pen", 2.41, 500], + [None, "pencil", 0.99, 25], + [63401, "grizzly bear", None, 1], + [3532, "rubber duck", 5.45, 24], + [1523, None, 3.00, 6.8], + [11765, "caviar", 67.95, None] + ], True), + "output": + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
    idnamepricequantity
    24351pen2.41500
    pencil0.9925
    63401grizzly bear1
    3532rubber duck5.4524
    15233.06.8
    11765caviar67.95
    " + }, + { + "input": ([["a", "b", "c", "d", "e"], [True, False, False, True, True]], True), + "output": "" + "" + "" + "" + "" + "" + "
    abcde
    TrueFalseFalseTrueTrue
    "}) + + for test_item in test_data: data: list = test_item["input"][0] header = test_item["input"][1] if len(test_item["input"]) > 1 else False index: bool = test_item["input"][2] if len(test_item["input"]) > 2 else False expected = test_item["output"] actual_result = to_table(data, header, index) - print_log(exp=expected, res=actual_result) - self.assertEqual(expected, actual_result) + + with allure.step("Enter a test data and verify the expected output vs actual result"): + print_log(exp=expected, res=actual_result) + self.assertEqual(expected, actual_result) From 7b6a0aa347623a1bf3aa4b20d60ba10ee3ebbddf Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:56:09 -0800 Subject: [PATCH 596/873] Update test_binary_to_string.py --- kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index ad181d764ed..4e33a9dec5b 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -35,7 +35,7 @@ class SequenceTestCase(unittest.TestCase): def test_binary_to_string(self): """ Testing binary_to_string function with various test data. - + :return: """ # pylint: disable-msg=R0801 From 6c213d11ce371676f3d20b462f7e18576c44f6bb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:59:14 -0800 Subject: [PATCH 597/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 73 +++++++++---------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 4e33a9dec5b..886cdc8f42f 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -9,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.binary_to_text_ascii_conversion.binary_to_string \ import binary_to_string @@ -32,7 +33,35 @@ class SequenceTestCase(unittest.TestCase): """Testing binary_to_string function.""" - def test_binary_to_string(self): + @parameterized.expand([ + ('0100100001100101011011000110110001101111', 'Hello'), + ('00110001001100000011000100110001', '1011'), + ('010100110111000001100001011100100110101101' + '110011001000000110011001101100011001010111' + '011100101110001011100010000001100101011011' + '010110111101110100011010010110111101101110' + '011100110010000001110010011000010110111000' + '100000011010000110100101100111011010000010' + '0001', 'Sparks flew.. emotions ran high!'), + ('001000010100000000100011001001000010010101' + '011110001001100010101000101000001010010101' + '000101010111010001010111001001110100011110' + '010101010101001001010011110100110001100100' + '011001100110011101100010011000100110100001' + '101110011011010100100101001011010000100100' + '101001001011010010000100100101010101010011' + '110010100000111111001111100011111100111100' + '011111100111111001111110011111100111111000' + '101001001010000010101000100110001001010101' + '111000111001001110000011011100110001001100' + '110010111100101101001011110010101000101101' + '0010101000101111', + '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' + '(?>?<~~~~~)(*&%^98713/-/*-*/'), + ('011001100111011101101111001100010110001101' + '101110001101100110011001101010011100010110' + '010101110001', 'fwo1cn6fjqeq')]) + def test_binary_to_string(self, binary, expected): """ Testing binary_to_string function with various test data. @@ -49,44 +78,14 @@ def test_binary_to_string(self): "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ('0100100001100101011011000110110001101111', 'Hello'), - ('00110001001100000011000100110001', '1011'), - ('010100110111000001100001011100100110101101' - '110011001000000110011001101100011001010111' - '011100101110001011100010000001100101011011' - '010110111101110100011010010110111101101110' - '011100110010000001110010011000010110111000' - '100000011010000110100101100111011010000010' - '0001', 'Sparks flew.. emotions ran high!'), - ('001000010100000000100011001001000010010101' - '011110001001100010101000101000001010010101' - '000101010111010001010111001001110100011110' - '010101010101001001010011110100110001100100' - '011001100110011101100010011000100110100001' - '101110011011010100100101001011010000100100' - '101001001011010010000100100101010101010011' - '110010100000111111001111100011111100111100' - '011111100111111001111110011111100111111000' - '101001001010000010101000100110001001010101' - '111000111001001110000011011100110001001100' - '110010111100101101001011110010101000101101' - '0010101000101111', - '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' - '(?>?<~~~~~)(*&%^98713/-/*-*/'), - ('011001100111011101101111001100010110001101' - '101110001101100110011001101010011100010110' - '010101110001', 'fwo1cn6fjqeq')) + actual_result = binary_to_string(binary) + with allure.step(f"Enter a binary ({binary}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): - for binary, expected in test_data: - actual_result = binary_to_string(binary) - with allure.step(f"Enter a binary ({binary}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(binary=binary, + print_log(binary=binary, expected=expected, result=actual_result) - self.assertEqual(expected, + self.assertEqual(expected, actual_result) From 96f2b67442e5bb65636a146a4dfdbb24f0e59eb4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:05:19 -0800 Subject: [PATCH 598/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 886cdc8f42f..3f306858d7a 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -43,21 +43,6 @@ class SequenceTestCase(unittest.TestCase): '011100110010000001110010011000010110111000' '100000011010000110100101100111011010000010' '0001', 'Sparks flew.. emotions ran high!'), - ('001000010100000000100011001001000010010101' - '011110001001100010101000101000001010010101' - '000101010111010001010111001001110100011110' - '010101010101001001010011110100110001100100' - '011001100110011101100010011000100110100001' - '101110011011010100100101001011010000100100' - '101001001011010010000100100101010101010011' - '110010100000111111001111100011111100111100' - '011111100111111001111110011111100111111000' - '101001001010000010101000100110001001010101' - '111000111001001110000011011100110001001100' - '110010111100101101001011110010101000101101' - '0010101000101111', - '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' - '(?>?<~~~~~)(*&%^98713/-/*-*/'), ('011001100111011101101111001100010110001101' '101110001101100110011001101010011100010110' '010101110001', 'fwo1cn6fjqeq')]) From 682c9d60391bc6d069f955e2a6e07a132f1845c9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:05:34 -0800 Subject: [PATCH 599/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 3f306858d7a..886cdc8f42f 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -43,6 +43,21 @@ class SequenceTestCase(unittest.TestCase): '011100110010000001110010011000010110111000' '100000011010000110100101100111011010000010' '0001', 'Sparks flew.. emotions ran high!'), + ('001000010100000000100011001001000010010101' + '011110001001100010101000101000001010010101' + '000101010111010001010111001001110100011110' + '010101010101001001010011110100110001100100' + '011001100110011101100010011000100110100001' + '101110011011010100100101001011010000100100' + '101001001011010010000100100101010101010011' + '110010100000111111001111100011111100111100' + '011111100111111001111110011111100111111000' + '101001001010000010101000100110001001010101' + '111000111001001110000011011100110001001100' + '110010111100101101001011110010101000101101' + '0010101000101111', + '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' + '(?>?<~~~~~)(*&%^98713/-/*-*/'), ('011001100111011101101111001100010110001101' '101110001101100110011001101010011100010110' '010101110001', 'fwo1cn6fjqeq')]) From 4a5bfbce6bdddcf9f4a5ccd8f1e3afab8fce8e61 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:14:20 -0800 Subject: [PATCH 600/873] Update test_list_to_html_table.py --- .../array_to_html_table/test_list_to_html_table.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index 8e19f268323..b33450ce1b7 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -1,5 +1,6 @@ """ -Test for -> Array to HTML table +Test for -> Array to HTML table. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,13 +26,12 @@ url='https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a', name='Source/Kata') class ArrayToTableTestCase(unittest.TestCase): - """ - Testing to_table function - """ + """Testing to_table function.""" def test_array_to_table_function(self): """ - Testing to_table with various test data + Testing to_table with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -110,6 +110,7 @@ def test_array_to_table_function(self): expected = test_item["output"] actual_result = to_table(data, header, index) - with allure.step("Enter a test data and verify the expected output vs actual result"): + with allure.step("Enter a test data and verify expected" + " output vs actual result"): print_log(exp=expected, res=actual_result) self.assertEqual(expected, actual_result) From 62ae6a521540dcc0f0553fbe3872dbbfb6115d14 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:15:02 -0800 Subject: [PATCH 601/873] Update test_binary_to_string.py --- .../test_binary_to_string.py | 73 ++++++++++--------- 1 file changed, 38 insertions(+), 35 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 886cdc8f42f..11a84c6f9ca 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -33,35 +33,8 @@ class SequenceTestCase(unittest.TestCase): """Testing binary_to_string function.""" - @parameterized.expand([ - ('0100100001100101011011000110110001101111', 'Hello'), - ('00110001001100000011000100110001', '1011'), - ('010100110111000001100001011100100110101101' - '110011001000000110011001101100011001010111' - '011100101110001011100010000001100101011011' - '010110111101110100011010010110111101101110' - '011100110010000001110010011000010110111000' - '100000011010000110100101100111011010000010' - '0001', 'Sparks flew.. emotions ran high!'), - ('001000010100000000100011001001000010010101' - '011110001001100010101000101000001010010101' - '000101010111010001010111001001110100011110' - '010101010101001001010011110100110001100100' - '011001100110011101100010011000100110100001' - '101110011011010100100101001011010000100100' - '101001001011010010000100100101010101010011' - '110010100000111111001111100011111100111100' - '011111100111111001111110011111100111111000' - '101001001010000010101000100110001001010101' - '111000111001001110000011011100110001001100' - '110010111100101101001011110010101000101101' - '0010101000101111', - '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' - '(?>?<~~~~~)(*&%^98713/-/*-*/'), - ('011001100111011101101111001100010110001101' - '101110001101100110011001101010011100010110' - '010101110001', 'fwo1cn6fjqeq')]) - def test_binary_to_string(self, binary, expected): + @parameterized.expand([]) + def test_binary_to_string(self): """ Testing binary_to_string function with various test data. @@ -78,14 +51,44 @@ def test_binary_to_string(self, binary, expected): "

    Test a function that takes in a binary string and returns " "the equivalent decoded text (the text is ASCII encoded).

    ") # pylint: enable-msg=R0801 - actual_result = binary_to_string(binary) - with allure.step(f"Enter a binary ({binary}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): + test_data: tuple = ( + ('0100100001100101011011000110110001101111', 'Hello'), + ('00110001001100000011000100110001', '1011'), + ('010100110111000001100001011100100110101101' + '110011001000000110011001101100011001010111' + '011100101110001011100010000001100101011011' + '010110111101110100011010010110111101101110' + '011100110010000001110010011000010110111000' + '100000011010000110100101100111011010000010' + '0001', 'Sparks flew.. emotions ran high!'), + ('001000010100000000100011001001000010010101' + '011110001001100010101000101000001010010101' + '000101010111010001010111001001110100011110' + '010101010101001001010011110100110001100100' + '011001100110011101100010011000100110100001' + '101110011011010100100101001011010000100100' + '101001001011010010000100100101010101010011' + '110010100000111111001111100011111100111100' + '011111100111111001111110011111100111111000' + '101001001010000010101000100110001001010101' + '111000111001001110000011011100110001001100' + '110010111100101101001011110010101000101101' + '0010101000101111', + '!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO' + '(?>?<~~~~~)(*&%^98713/-/*-*/'), + ('011001100111011101101111001100010110001101' + '101110001101100110011001101010011100010110' + '010101110001', 'fwo1cn6fjqeq')) - print_log(binary=binary, + for binary, expected in test_data: + actual_result = binary_to_string(binary) + with allure.step(f"Enter a binary ({binary}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + + print_log(binary=binary, expected=expected, result=actual_result) - self.assertEqual(expected, + self.assertEqual(expected, actual_result) From 8d735fd265308456d3e0fa3562680cb5d4706d11 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:17:19 -0800 Subject: [PATCH 602/873] Update test_binary_to_string.py --- kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py index 11a84c6f9ca..4e33a9dec5b 100644 --- a/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py +++ b/kyu_6/binary_to_text_ascii_conversion/test_binary_to_string.py @@ -9,7 +9,6 @@ import unittest import allure -from parameterized import parameterized from utils.log_func import print_log from kyu_6.binary_to_text_ascii_conversion.binary_to_string \ import binary_to_string @@ -33,7 +32,6 @@ class SequenceTestCase(unittest.TestCase): """Testing binary_to_string function.""" - @parameterized.expand([]) def test_binary_to_string(self): """ Testing binary_to_string function with various test data. From 878727bef7348c74165422aa0415db644b241f75 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:25:24 -0800 Subject: [PATCH 603/873] # Casino chips --- kyu_6/casino_chips/__init__.py | 1 + kyu_6/casino_chips/solve.py | 6 ++-- kyu_6/casino_chips/test_solve.py | 62 +++++++++++++++----------------- 3 files changed, 33 insertions(+), 36 deletions(-) diff --git a/kyu_6/casino_chips/__init__.py b/kyu_6/casino_chips/__init__.py index e69de29bb2d..85116aaec47 100644 --- a/kyu_6/casino_chips/__init__.py +++ b/kyu_6/casino_chips/__init__.py @@ -0,0 +1 @@ +"""Casino chips.""" diff --git a/kyu_6/casino_chips/solve.py b/kyu_6/casino_chips/solve.py index 10c397f214d..ae532e301ba 100644 --- a/kyu_6/casino_chips/solve.py +++ b/kyu_6/casino_chips/solve.py @@ -1,5 +1,6 @@ """ -Solution for Casino chips +Solution for Casino chips. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def solve(arr: list) -> int: """ + Solve function. + You are given three piles of casino chips: white, green and black chips: @@ -26,7 +29,6 @@ def solve(arr: list) -> int: :return: """ arr = sorted(arr) - if arr[0] + arr[1] <= arr[2]: return arr[0] + arr[1] diff --git a/kyu_6/casino_chips/test_solve.py b/kyu_6/casino_chips/test_solve.py index af7b95b5934..5ed35a57740 100644 --- a/kyu_6/casino_chips/test_solve.py +++ b/kyu_6/casino_chips/test_solve.py @@ -1,5 +1,6 @@ """ -Test for Casino chips +Test for Casino chips. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_6.casino_chips.solve import solve from utils.log_func import print_log @@ -28,12 +30,26 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SolveTestCase(unittest.TestCase): - """ - Testing solve function - """ - def test_solve(self): + """Testing solve function.""" + + @parameterized.expand([ + ([8, 8, 8], 12), + ([1, 1, 1], 1), + ([8, 1, 4], 5), + ([7, 4, 10], 10), + ([12, 12, 12], 18), + ([6, 6, 6], 9), + ([1, 23, 2], 3), + ([9, 8, 6], 11), + ([10, 9, 6], 12), + ([4, 4, 3], 5), + ([1, 2, 1], 2), + ([4, 1, 1], 2), + ([8, 2, 8], 9)]) + def test_solve(self, arr, expected): """ - Testing 'solve' function with various test data + Testing 'solve' function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -49,31 +65,9 @@ def test_solve(self): "maximum number of days you can pick the chips. Each " "day you need to take exactly two chips.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([8, 8, 8], 12), - ([1, 1, 1], 1), - ([8, 1, 4], 5), - ([7, 4, 10], 10), - ([12, 12, 12], 18), - ([6, 6, 6], 9), - ([1, 23, 2], 3), - ([9, 8, 6], 11), - ([10, 9, 6], 12), - ([4, 4, 3], 5), - ([1, 2, 1], 2), - ([4, 1, 1], 2), - ([8, 2, 8], 9)) - - for arr, expected in test_data: - actual_result = solve(arr) - - with allure.step(f"Enter an array ({arr}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(arr=arr, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + actual_result = solve(arr) + with allure.step(f"Enter an array ({arr}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(arr=arr, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From 05e51ac6d35df9d5f05fdef26742c8d931aab09c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:29:57 -0800 Subject: [PATCH 604/873] Character frequency --- kyu_6/character_frequency/__init__.py | 1 + .../character_frequency.py | 10 +++++++--- .../test_character_frequency.py | 19 +++++++++---------- 3 files changed, 17 insertions(+), 13 deletions(-) diff --git a/kyu_6/character_frequency/__init__.py b/kyu_6/character_frequency/__init__.py index e69de29bb2d..0fb82f3ed1d 100644 --- a/kyu_6/character_frequency/__init__.py +++ b/kyu_6/character_frequency/__init__.py @@ -0,0 +1 @@ +"""Character frequency.""" diff --git a/kyu_6/character_frequency/character_frequency.py b/kyu_6/character_frequency/character_frequency.py index 443bc4f6680..f25c1a86c12 100644 --- a/kyu_6/character_frequency/character_frequency.py +++ b/kyu_6/character_frequency/character_frequency.py @@ -1,5 +1,6 @@ """ -Solution for -> Character frequency +Solution for -> Character frequency. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,9 @@ def letter_frequency(text: str) -> list: """ - return a list of tuples sorted by frequency with + Letter frequency. + + Return a list of tuples sorted by frequency with the most frequent letter first. Any letters with the same frequency are ordered alphabetically :param text: @@ -28,7 +31,8 @@ def letter_frequency(text: str) -> list: def sort_list(results: list) -> list: """ - Sort results list + Sort results list. + :param results: list :return: list """ diff --git a/kyu_6/character_frequency/test_character_frequency.py b/kyu_6/character_frequency/test_character_frequency.py index 595bd263a52..2baca31564c 100644 --- a/kyu_6/character_frequency/test_character_frequency.py +++ b/kyu_6/character_frequency/test_character_frequency.py @@ -1,5 +1,6 @@ """ -Test for -> Character frequency +Test for -> Character frequency. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,14 +29,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class LetterFrequencyTestCase(unittest.TestCase): - """ - Testing letter_frequency function - """ + """Testing letter_frequency function.""" def test_letter_frequency_all_lower(self): """ - Testing letter_frequency function - where all chars are in lower case + Testing letter_frequency function where all chars are in lower case. + :return: """ # pylint: disable-msg=R0801 @@ -60,8 +59,8 @@ def test_letter_frequency_all_lower(self): def test_letter_frequency_mixed(self): """ - Testing letter_frequency function - where all chars are in mixed case + Testing letter_frequency function where all chars are in mixed case. + :return: """ # pylint: disable-msg=R0801 @@ -89,8 +88,8 @@ def test_letter_frequency_mixed(self): def test_letter_frequency_all_caps(self): """ - Testing letter_frequency function - where all chars are in upper case + Testing letter_frequency function where all chars are in upper case. + :return: """ # pylint: disable-msg=R0801 From 2fc99117e7c689065516c9477413054412d7011c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:40:24 -0800 Subject: [PATCH 605/873] # Color Choice --- kyu_6/color_choice/__init__.py | 1 + kyu_6/color_choice/checkchoose.py | 6 ++- kyu_6/color_choice/test_checkchoose.py | 58 +++++++++++++------------- 3 files changed, 34 insertions(+), 31 deletions(-) diff --git a/kyu_6/color_choice/__init__.py b/kyu_6/color_choice/__init__.py index e69de29bb2d..2acace4ac95 100644 --- a/kyu_6/color_choice/__init__.py +++ b/kyu_6/color_choice/__init__.py @@ -0,0 +1 @@ +"""Color Choice.""" diff --git a/kyu_6/color_choice/checkchoose.py b/kyu_6/color_choice/checkchoose.py index e5930a8e0ee..3064b2976a8 100644 --- a/kyu_6/color_choice/checkchoose.py +++ b/kyu_6/color_choice/checkchoose.py @@ -1,5 +1,6 @@ """ -Solution for -> Color Choice +Solution for -> Color Choice. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def checkchoose(m: int, n: int) -> int: """ + Color Choice. + Knowing m (number of posters to design), knowing n (total number of available colors), search x (number of colors for each poster so that each poster @@ -19,7 +22,6 @@ def checkchoose(m: int, n: int) -> int: :return: """ for x in range(1, n + 1): - temp: int = factorial(n) // (factorial(x) * factorial(n - x)) if m == temp and n != x: diff --git a/kyu_6/color_choice/test_checkchoose.py b/kyu_6/color_choice/test_checkchoose.py index c54e574b029..2356cbe311d 100644 --- a/kyu_6/color_choice/test_checkchoose.py +++ b/kyu_6/color_choice/test_checkchoose.py @@ -1,5 +1,6 @@ """ -Test for -> Color Choice +Test for -> Color Choice. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.color_choice.checkchoose import checkchoose @@ -23,11 +25,22 @@ url='https://www.codewars.com/kata/55be10de92aad5ef28000023', name='Source/Kata') class CheckchooseTestCase(unittest.TestCase): - """ - Testing checkchoose function - """ - def test_checkchoose(self): + """Testing checkchoose function.""" + + @parameterized.expand([ + (6, 4, 2), + (4, 4, 1), + (4, 2, -1), + (35, 7, 3), + (36, 7, -1), + (1, 6, 0), + (1, 15, 0), + (2, 12, -1), + (75788358475481302186, 87, -1)]) + def test_checkchoose(self, m, n, expected): """ + Testing 'checkchoose' function with various test data. + 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: @@ -38,6 +51,10 @@ def test_checkchoose(self): 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? + :param m: + :param n: + :param expected: + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing checkchoose function") @@ -58,27 +75,10 @@ def test_checkchoose(self): "that when m is given at random there are no x satisfying " "equation (1) then return -1.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (6, 4, 2), - (4, 4, 1), - (4, 2, -1), - (35, 7, 3), - (36, 7, -1), - (1, 6, 0), - (1, 15, 0), - (2, 12, -1), - (75788358475481302186, 87, -1)) - - for d in test_data: - m: int = d[0] - n: int = d[1] - expected: int = d[2] - result: int = checkchoose(m, n) - - with allure.step(f"Pass m: {m}, " - f"n: {n} and assert the " - f"result: {result} vs " - f"expected: {expected}"): - - print_log(m=m, n=n, result=result, expected=expected) - self.assertEqual(expected, result) + result: int = checkchoose(m, n) + with allure.step(f"Pass m: {m}, " + f"n: {n} and assert the " + f"result: {result} vs " + f"expected: {expected}"): + print_log(m=m, n=n, result=result, expected=expected) + self.assertEqual(expected, result) From 8f905bf23bc3080c50728d9499e76fe9984fd47d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:44:02 -0800 Subject: [PATCH 606/873] # Count letters in string --- kyu_6/count_letters_in_string/__init__.py | 1 + .../count_letters_in_string/count_letters_in_string.py | 6 ++++-- .../test_count_letters_in_string.py | 10 +++++----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/kyu_6/count_letters_in_string/__init__.py b/kyu_6/count_letters_in_string/__init__.py index e69de29bb2d..98c1fdb2c3b 100644 --- a/kyu_6/count_letters_in_string/__init__.py +++ b/kyu_6/count_letters_in_string/__init__.py @@ -0,0 +1 @@ +"""Count letters in string.""" diff --git a/kyu_6/count_letters_in_string/count_letters_in_string.py b/kyu_6/count_letters_in_string/count_letters_in_string.py index c92dfeb2db7..2bb80cdc585 100644 --- a/kyu_6/count_letters_in_string/count_letters_in_string.py +++ b/kyu_6/count_letters_in_string/count_letters_in_string.py @@ -1,5 +1,6 @@ """ -Solution for -> Count letters in string +Solution for -> Count letters in string. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def letter_count(s: str) -> dict: """ + Letter count. + Count lowercase letters in a given string and return the letter count in a hash with 'letter' as key and count as 'value'. @@ -14,7 +17,6 @@ def letter_count(s: str) -> dict: :return: """ result: dict = {} - for char in s: if char.islower() and char not in result: result[char] = 1 diff --git a/kyu_6/count_letters_in_string/test_count_letters_in_string.py b/kyu_6/count_letters_in_string/test_count_letters_in_string.py index 27262ebe2bb..06b2d5dd04a 100644 --- a/kyu_6/count_letters_in_string/test_count_letters_in_string.py +++ b/kyu_6/count_letters_in_string/test_count_letters_in_string.py @@ -1,5 +1,6 @@ """ -Test for -> Count letters in string +Test for -> Count letters in string. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -29,13 +30,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class CountLettersInStringTestCase(unittest.TestCase): - """ - Testing 'letter_count' function - """ + """Testing 'letter_count' function.""" def test_count_letters_in_string(self): """ - Testing 'letter_count' function + Testing 'letter_count' function. + :return: """ # pylint: disable-msg=R0801 From 80850852dd6c37e3ed48e9950be0b6baf581e474 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:48:51 -0800 Subject: [PATCH 607/873] # Decipher this --- kyu_6/decipher_this/__init__.py | 1 + kyu_6/decipher_this/solution.py | 7 +-- kyu_6/decipher_this/test_decipher_this.py | 61 +++++++++++------------ 3 files changed, 33 insertions(+), 36 deletions(-) diff --git a/kyu_6/decipher_this/__init__.py b/kyu_6/decipher_this/__init__.py index e69de29bb2d..2c383e0b2f6 100644 --- a/kyu_6/decipher_this/__init__.py +++ b/kyu_6/decipher_this/__init__.py @@ -0,0 +1 @@ +"""Decipher this.""" diff --git a/kyu_6/decipher_this/solution.py b/kyu_6/decipher_this/solution.py index 8216562e8e5..4d89bf86f51 100644 --- a/kyu_6/decipher_this/solution.py +++ b/kyu_6/decipher_this/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Decipher this! +Solution for -> Decipher this!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,8 @@ def last_digit_index(word: str) -> int: """ - Find last digit index + Find last digit index. + :param word: :return: """ @@ -38,7 +40,6 @@ def decipher_this(string: str) -> str: results: list = [] for word in string.split(' '): - last_digit: int = last_digit_index(word) char: str = chr(int(word[0: last_digit])) diff --git a/kyu_6/decipher_this/test_decipher_this.py b/kyu_6/decipher_this/test_decipher_this.py index 53ad831941b..10ee08eda0d 100644 --- a/kyu_6/decipher_this/test_decipher_this.py +++ b/kyu_6/decipher_this/test_decipher_this.py @@ -1,5 +1,6 @@ """ -Test for -> Decipher this! +Test for -> Decipher this!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from kyu_6.decipher_this.solution import decipher_this from utils.log_func import print_log @@ -32,12 +34,28 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DecipherThisTestCase(unittest.TestCase): - """ - Testing decipher_this function - """ - def test_decipher_this(self): + """Testing decipher_this function.""" + + @parameterized.expand([ + ("", ""), + ('72olle 103doo 100ya', + 'Hello good day'), + ('82yade 115te 103o', + 'Ready set go'), + ("65 119esi 111dl 111lw 108dvei 105n 97n 111ka", + "A wise old owl lived in an oak"), + ("84eh 109ero 104e 115wa 116eh 108sse 104e 115eokp", + "The more he saw the less he spoke"), + ("84eh 108sse 104e 115eokp 116eh 109ero 104e 104dare", + "The less he spoke the more he heard"), + ("87yh 99na 119e 110to 97ll 98e 108eki 116tah 119esi 111dl 98dri", + "Why can we not all be like that wise old bird"), + ("84kanh 121uo 80roti 102ro 97ll 121ruo 104ple", + "Thank you Piotr for all your help")]) + def test_decipher_this(self, text, expected): """ - Testing decipher_this function + Testing decipher_this function. + :param self: :return: """ @@ -59,30 +77,7 @@ def test_decipher_this(self): "letters and spaces." "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("", - ""), - ('72olle 103doo 100ya', - 'Hello good day'), - ('82yade 115te 103o', - 'Ready set go'), - ("65 119esi 111dl 111lw 108dvei 105n 97n 111ka", - "A wise old owl lived in an oak"), - ("84eh 109ero 104e 115wa 116eh 108sse 104e 115eokp", - "The more he saw the less he spoke"), - ("84eh 108sse 104e 115eokp 116eh 109ero 104e 104dare", - "The less he spoke the more he heard"), - ("87yh 99na 119e 110to 97ll 98e 108eki 116tah 119esi 111dl 98dri", - "Why can we not all be like that wise old bird"), - ("84kanh 121uo 80roti 102ro 97ll 121ruo 104ple", - "Thank you Piotr for all your help")) - - for text, expected in test_data: - result: str = decipher_this(text) - print_log(text=text, - expected=expected, - result=result) - - with allure.step("Enter test string and verify the output"): - self.assertEqual(expected, - result) + result: str = decipher_this(text) + with allure.step(f"Enter test string: {text} and verify the output: {result}"): + print_log(text=text, expected=expected, result=result) + self.assertEqual(expected, result) From 5d92c6eb06767af80a594e2f23df8729b3313c27 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:53:11 -0800 Subject: [PATCH 608/873] # DefaultList --- kyu_6/default_list/__init__.py | 1 + kyu_6/default_list/default_list.py | 21 +++++++++++++++++---- kyu_6/default_list/test_default_list.py | 22 ++++++++++++++-------- 3 files changed, 32 insertions(+), 12 deletions(-) diff --git a/kyu_6/default_list/__init__.py b/kyu_6/default_list/__init__.py index e69de29bb2d..53bedb3f9c0 100644 --- a/kyu_6/default_list/__init__.py +++ b/kyu_6/default_list/__init__.py @@ -0,0 +1 @@ +"""DefaultList.""" diff --git a/kyu_6/default_list/default_list.py b/kyu_6/default_list/default_list.py index ff5936b1e4d..c6b5f42d8a7 100644 --- a/kyu_6/default_list/default_list.py +++ b/kyu_6/default_list/default_list.py @@ -1,15 +1,21 @@ """ -Solution for -> DefaultList +Solution for -> DefaultList. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ class DefaultList: - """ - A class called DefaultList - """ + """A class called DefaultList.""" + def __init__(self, lst: list, default_value: str): + """ + Create a new DefaultList instance. + + :param lst: + :param default_value: + """ # The class will have two parameters to be given: # a list, and a default value. self.__lst: list = lst @@ -17,6 +23,8 @@ def __init__(self, lst: list, default_value: str): def __getitem__(self, i: int): """ + Get item. + The default value will be returned any time an index of the list is called in the code that would normally raise an error: (i.e. i > len(list) - 1 or i < -len(list)). @@ -30,6 +38,7 @@ def __getitem__(self, i: int): def extend(self, items: list) -> None: """ This class must also support the regular list functions: extend. + :param items: iterable :return: """ @@ -38,6 +47,7 @@ def extend(self, items: list) -> None: def append(self, item) -> None: """ This class must also support the regular list functions: append. + :param item: :return: """ @@ -46,6 +56,7 @@ def append(self, item) -> None: def pop(self, item): """ This class must also support the regular list functions: pop. + :param item: :return: """ @@ -54,6 +65,7 @@ def pop(self, item): def remove(self, item) -> None: """ This class must also support the regular list functions: remove. + :param item: :return: """ @@ -62,6 +74,7 @@ def remove(self, item) -> None: def insert(self, index: int, item) -> None: """ This class must also support the regular list functions: insert. + :param index: :param item: :return: diff --git a/kyu_6/default_list/test_default_list.py b/kyu_6/default_list/test_default_list.py index b9b0134a607..ed5a1dd01c4 100644 --- a/kyu_6/default_list/test_default_list.py +++ b/kyu_6/default_list/test_default_list.py @@ -1,5 +1,6 @@ """ -Test for -> DefaultList +Test for -> DefaultList. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,7 +29,7 @@ name='Source/Kata') class DefaultListTestCase(unittest.TestCase): """ - Testing 'DefaultList' class + Testing 'DefaultList' class. Your job is to create a class (or a function which returns an object) called DefaultList. The class will @@ -45,7 +46,7 @@ class DefaultListTestCase(unittest.TestCase): def test_default_list_basic(self): """ - Testing 'DefaultList' class: __getitem__ + Testing 'DefaultList' class: __getitem__. Called to implement evaluation of self[key]. For sequence types, the accepted keys should be integers and slice objects. @@ -91,7 +92,8 @@ def test_default_list_basic(self): def test_default_list_extend(self): """ - Testing 'DefaultList' class: extend + Testing 'DefaultList' class: extend. + :return: """ # pylint: disable-msg=R0801 @@ -133,7 +135,8 @@ def test_default_list_extend(self): def test_default_list_append(self): """ - Testing 'DefaultList' class: append + Testing 'DefaultList' class: append. + :return: """ # pylint: disable-msg=R0801 @@ -170,7 +173,8 @@ def test_default_list_append(self): def test_default_list_remove(self): """ - Testing 'DefaultList' class: remove + Testing 'DefaultList' class: remove. + :return: """ # pylint: disable-msg=R0801 @@ -209,7 +213,8 @@ def test_default_list_remove(self): def test_default_list_insert(self): """ - Testing 'DefaultList' class: insert + Testing 'DefaultList' class: insert. + :return: """ # pylint: disable-msg=R0801 @@ -246,7 +251,8 @@ def test_default_list_insert(self): def test_default_list_pop(self): """ - Testing 'DefaultList' class: pop + Testing 'DefaultList' class: pop. + :return: """ # pylint: disable-msg=R0801 From 0e8ff85c2dd5650054857f0cae0ca859e976d166 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:03:20 -0800 Subject: [PATCH 609/873] # Disease Spread --- kyu_6/disease_spread/__init__.py | 1 + kyu_6/disease_spread/epidemic.py | 5 +- kyu_6/disease_spread/epidemic_test_data.py | 32 ++++---- kyu_6/disease_spread/test_epidemic.py | 90 +++++++++++----------- 4 files changed, 67 insertions(+), 61 deletions(-) diff --git a/kyu_6/disease_spread/__init__.py b/kyu_6/disease_spread/__init__.py index e69de29bb2d..19c2717ea6b 100644 --- a/kyu_6/disease_spread/__init__.py +++ b/kyu_6/disease_spread/__init__.py @@ -0,0 +1 @@ +"""Disease Spread.""" diff --git a/kyu_6/disease_spread/epidemic.py b/kyu_6/disease_spread/epidemic.py index ea8dbce6dd7..436a7883070 100644 --- a/kyu_6/disease_spread/epidemic.py +++ b/kyu_6/disease_spread/epidemic.py @@ -1,5 +1,6 @@ """ -Solution for -> Disease Spread +Solution for -> Disease Spread. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def epidemic(**kwargs) -> int: """ + Epidemic function. + We want to study the spread of the disease through the population of this school. The total population may be divided into three: - the infecteds (i) diff --git a/kyu_6/disease_spread/epidemic_test_data.py b/kyu_6/disease_spread/epidemic_test_data.py index 402fcd93d14..3dfd59c0162 100644 --- a/kyu_6/disease_spread/epidemic_test_data.py +++ b/kyu_6/disease_spread/epidemic_test_data.py @@ -1,14 +1,14 @@ """ -Epidemic Test Data Class +Epidemic Test Data Class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ class EpidemicTestData: - """ - Epidemic Test Data Class - """ + """Epidemic Test Data Class.""" + def __init__(self, **kwargs): # tm, n, s0, i0, b, a, expected self.__tm = kwargs['tm'] @@ -22,7 +22,8 @@ def __init__(self, **kwargs): @property def tm(self): """ - Returns tm value + Returns tm value. + :return: """ return self.__tm @@ -30,7 +31,7 @@ def tm(self): @property def n(self): """ - Returns n value + Returns n value. :return: """ @@ -39,7 +40,7 @@ def n(self): @property def s0(self): """ - Returns s0 value + Returns s0 value. :return: """ @@ -48,7 +49,7 @@ def s0(self): @property def i0(self): """ - Returns i0 value + Returns i0 value. :return: """ @@ -57,7 +58,7 @@ def i0(self): @property def b(self): """ - Returns b value + Returns b value. :return: """ @@ -66,7 +67,7 @@ def b(self): @property def a(self): """ - Returns a value + Returns a value. :return: """ @@ -75,22 +76,27 @@ def a(self): @property def expected(self): """ - Returns expected value + Returns expected value. :return: """ return self.__expected def __repr__(self): + """ + Repr function. + + :return: + """ return (f'tm: {self.tm}, n: {self.n}, s0: {self.s0}, ' f'i0: {self.i0}, b: {self.b}, a: {self.a}, ' f'expected: {self.expected}') def __eq__(self, other): """ - Object comparison - Override the default Equals behavior + Object comparison. + Override the default Equals behavior. :param other: :return: """ diff --git a/kyu_6/disease_spread/test_epidemic.py b/kyu_6/disease_spread/test_epidemic.py index e9bea6a5946..8e3fa69a075 100644 --- a/kyu_6/disease_spread/test_epidemic.py +++ b/kyu_6/disease_spread/test_epidemic.py @@ -1,5 +1,6 @@ """ -Test for -> Disease Spread +Test for -> Disease Spread. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.disease_spread.epidemic import epidemic from kyu_6.disease_spread.epidemic_test_data import EpidemicTestData @@ -24,12 +26,34 @@ url='https://www.codewars.com/kata/566543703c72200f0b0000c9', name='Source/Kata') class EpidemicTestCase(unittest.TestCase): - """ - Testing for solution Disease Spread - """ - def test_epidemic(self): + """Testing for solution Disease Spread.""" + + @parameterized.expand([ + EpidemicTestData(tm=18, n=432, s0=1004, i0=1, + b=0.00209, a=0.51, expected=420), + EpidemicTestData(tm=12, n=288, s0=1007, i0=2, + b=0.00206, a=0.45, expected=461), + EpidemicTestData(tm=13, n=312, s0=999, i0=1, + b=0.00221, a=0.55, expected=409), + EpidemicTestData(tm=24, n=576, s0=1005, i0=1, + b=0.00216, a=0.45, expected=474), + EpidemicTestData(tm=24, n=576, s0=982, i0=1, + b=0.00214, a=0.44, expected=460), + EpidemicTestData(tm=20, n=480, s0=1000, i0=1, + b=0.00199, a=0.53, expected=386), + EpidemicTestData(tm=28, n=672, s0=980, i0=1, + b=0.00198, a=0.44, expected=433), + EpidemicTestData(tm=14, n=336, s0=996, i0=2, + b=0.00206, a=0.41, expected=483), + EpidemicTestData(tm=13, n=312, s0=993, i0=2, + b=0.0021, a=0.51, expected=414), + EpidemicTestData(tm=28, n=672, s0=999, i0=1, + b=0.00197, a=0.55, expected=368) + ]) + def test_epidemic(self, etd): """ - Testing epidemic function + Testing epidemic function. + :return: """ # pylint: disable-msg=R0801 @@ -45,45 +69,17 @@ def test_epidemic(self): "of max(I)).

    ") # pylint: enable-msg=R0801 # tm , n, s0, i0, b, a, expected - test_data: tuple = ( - EpidemicTestData(tm=18, n=432, s0=1004, i0=1, - b=0.00209, a=0.51, expected=420), - EpidemicTestData(tm=12, n=288, s0=1007, i0=2, - b=0.00206, a=0.45, expected=461), - EpidemicTestData(tm=13, n=312, s0=999, i0=1, - b=0.00221, a=0.55, expected=409), - EpidemicTestData(tm=24, n=576, s0=1005, i0=1, - b=0.00216, a=0.45, expected=474), - EpidemicTestData(tm=24, n=576, s0=982, i0=1, - b=0.00214, a=0.44, expected=460), - EpidemicTestData(tm=20, n=480, s0=1000, i0=1, - b=0.00199, a=0.53, expected=386), - EpidemicTestData(tm=28, n=672, s0=980, i0=1, - b=0.00198, a=0.44, expected=433), - EpidemicTestData(tm=14, n=336, s0=996, i0=2, - b=0.00206, a=0.41, expected=483), - EpidemicTestData(tm=13, n=312, s0=993, i0=2, - b=0.0021, a=0.51, expected=414), - EpidemicTestData(tm=28, n=672, s0=999, i0=1, - b=0.00197, a=0.55, expected=368)) - - for etd in test_data: - tm = etd.tm - n = etd.n - s0 = etd.s0 - i0 = etd.i0 - b = etd.b - a = etd.a - expected = etd.expected - actual_result = epidemic(tm=tm, n=n, s0=s0, i0=i0, b=b, a=a) - - with allure.step(f"Enter test data ({etd}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(etd=etd, - expected=expected, - result=actual_result) + tm = etd.tm + n = etd.n + s0 = etd.s0 + i0 = etd.i0 + b = etd.b + a = etd.a + expected = etd.expected + actual_result = epidemic(tm=tm, n=n, s0=s0, i0=i0, b=b, a=a) - self.assertEqual(expected, - actual_result) + with allure.step(f"Enter test data ({etd}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(etd=etd, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From 255dd84a7a15f89957b10345e6222128167e4a5a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:09:46 -0800 Subject: [PATCH 610/873] # Duplicate Encoder --- kyu_6/duplicate_encoder/__init__.py | 1 + kyu_6/duplicate_encoder/duplicate_encode.py | 6 ++-- .../test_duplicate_encode.py | 34 +++++++++---------- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/kyu_6/duplicate_encoder/__init__.py b/kyu_6/duplicate_encoder/__init__.py index e69de29bb2d..7fec16bb903 100644 --- a/kyu_6/duplicate_encoder/__init__.py +++ b/kyu_6/duplicate_encoder/__init__.py @@ -0,0 +1 @@ +"""Duplicate Encoder.""" diff --git a/kyu_6/duplicate_encoder/duplicate_encode.py b/kyu_6/duplicate_encoder/duplicate_encode.py index b9a4e1e7a3a..ca9870b9ca4 100644 --- a/kyu_6/duplicate_encoder/duplicate_encode.py +++ b/kyu_6/duplicate_encoder/duplicate_encode.py @@ -1,5 +1,6 @@ """ -Solution for -> Duplicate Encoder +Solution for -> Duplicate Encoder. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def duplicate_encode(word: str) -> str: """ + Duplicate Encoder. + Converts a string to a new string where each character in the new string is "(" if that character appears only once in the original @@ -18,7 +21,6 @@ def duplicate_encode(word: str) -> str: :param word: :return: """ - result: str = '' word = ''.join(char.lower() for char in word) diff --git a/kyu_6/duplicate_encoder/test_duplicate_encode.py b/kyu_6/duplicate_encoder/test_duplicate_encode.py index 9b1dc61390d..84337bbe123 100644 --- a/kyu_6/duplicate_encoder/test_duplicate_encode.py +++ b/kyu_6/duplicate_encoder/test_duplicate_encode.py @@ -1,5 +1,6 @@ """ -Test for -> Duplicate Encoder +Test for -> Duplicate Encoder. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.duplicate_encoder.duplicate_encode \ import duplicate_encode @@ -28,13 +30,17 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DuplicateEncodeTestCase(unittest.TestCase): - """ - Testing duplicate_encode function - """ - def test_duplicate_encode(self): + """Testing duplicate_encode function.""" + + @parameterized.expand([ + ("din", "((("), + ("recede", "()()()"), + ("Success", ")())())"), + ("(( @", "))((")]) + def test_duplicate_encode(self, string, expected): """ - Testing duplicate_encode function - with various test inputs + Testing duplicate_encode function with various test inputs. + :return: """ # pylint: disable-msg=R0801 @@ -47,13 +53,7 @@ def test_duplicate_encode(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ("din", "((("), - ("recede", "()()()"), - ("Success", ")())())"), - ("(( @", "))((")) - - for string, expected in test_data: - print_log(string=string, expected=expected) - self.assertEqual(expected, duplicate_encode(string)) + with allure.step(f"Enter test string: {string} " + f"and verify the output: {expected}."): + print_log(string=string, expected=expected) + self.assertEqual(expected, duplicate_encode(string)) From c20735f1714d07554d2798123763154bb5a5bffd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:13:45 -0800 Subject: [PATCH 611/873] # Easy Diagonal --- kyu_6/easy_diagonal/__init__.py | 1 + kyu_6/easy_diagonal/diagonal.py | 5 ++- kyu_6/easy_diagonal/test_diagonal.py | 52 +++++++++++++--------------- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/kyu_6/easy_diagonal/__init__.py b/kyu_6/easy_diagonal/__init__.py index e69de29bb2d..6ddbf82813d 100644 --- a/kyu_6/easy_diagonal/__init__.py +++ b/kyu_6/easy_diagonal/__init__.py @@ -0,0 +1 @@ +"""Easy Diagonal.""" diff --git a/kyu_6/easy_diagonal/diagonal.py b/kyu_6/easy_diagonal/diagonal.py index c0c3d70d73d..41885a3c4a9 100644 --- a/kyu_6/easy_diagonal/diagonal.py +++ b/kyu_6/easy_diagonal/diagonal.py @@ -1,5 +1,6 @@ """ -Solution for -> Easy Diagonal +Solution for -> Easy Diagonal. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def diagonal(n: int, p: int) -> int: """ + Diagonal function. + 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). diff --git a/kyu_6/easy_diagonal/test_diagonal.py b/kyu_6/easy_diagonal/test_diagonal.py index 2bf2658cf74..55950967b48 100644 --- a/kyu_6/easy_diagonal/test_diagonal.py +++ b/kyu_6/easy_diagonal/test_diagonal.py @@ -1,11 +1,13 @@ """ -Test for -> Easy Diagonal +Test for -> Easy Diagonal. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.easy_diagonal.diagonal import diagonal @@ -24,12 +26,22 @@ name='Source/Kata') # pylint: enable-msg=R0801 class EasyDiagonalTestCase(unittest.TestCase): - """ - Testing easy_diagonal function - """ - def test_easy_diagonal(self): + """Testing easy_diagonal function.""" + + @parameterized.expand([ + (7, 0, 8), + (7, 1, 28), + (7, 2, 56), + (20, 3, 5985), + (100, 0, 101), + (20, 4, 20349), + (20, 15, 20349), + (1291, 5, 6385476296235036), + (129100, 5, 6429758786797926366807779220)]) + def test_easy_diagonal(self, n, p, expected): """ - Testing easy_diagonal function + Testing easy_diagonal function. + :param self: :return: """ @@ -48,26 +60,10 @@ def test_easy_diagonal(self): " 0 is the number of the diagonal). In the same way S(7, 1) " "is 28, S(7, 2) is 56.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (7, 0, 8), - (7, 1, 28), - (7, 2, 56), - (20, 3, 5985), - (100, 0, 101), - (20, 4, 20349), - (20, 15, 20349), - (1291, 5, 6385476296235036), - (129100, 5, 6429758786797926366807779220)) - - for td in test_data: - n = td[0] - p = td[1] - expected = td[2] - result = diagonal(n, p) + result = diagonal(n, p) + with allure.step(f"Enter n: {n}, " + f"p: {p} and assert the " + f"expected: {expected} vs " + f"result: {result}"): print_log(n=n, p=p, expected=expected, result=result) - - with allure.step(f"Enter n: {n}, " - f"p: {p} and assert the " - f"expected: {expected} vs " - f"result: {result}"): - self.assertEqual(expected, result) + self.assertEqual(expected, result) From 43d754071ef9f410e5ddafe8b3b1b2ad79c8e413 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:18:19 -0800 Subject: [PATCH 612/873] # Encrypt this --- kyu_6/encrypt_this/__init__.py | 1 + kyu_6/encrypt_this/solution.py | 3 +- kyu_6/encrypt_this/test_encrypt_this.py | 56 ++++++++++++------------- 3 files changed, 29 insertions(+), 31 deletions(-) diff --git a/kyu_6/encrypt_this/__init__.py b/kyu_6/encrypt_this/__init__.py index e69de29bb2d..d849d5c028b 100644 --- a/kyu_6/encrypt_this/__init__.py +++ b/kyu_6/encrypt_this/__init__.py @@ -0,0 +1 @@ +"""Encrypt this.""" diff --git a/kyu_6/encrypt_this/solution.py b/kyu_6/encrypt_this/solution.py index ece2d6a668c..c9a96a103fe 100644 --- a/kyu_6/encrypt_this/solution.py +++ b/kyu_6/encrypt_this/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Encrypt this! +Solution for -> Encrypt this!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ diff --git a/kyu_6/encrypt_this/test_encrypt_this.py b/kyu_6/encrypt_this/test_encrypt_this.py index 6e59abe6823..867c4923e59 100644 --- a/kyu_6/encrypt_this/test_encrypt_this.py +++ b/kyu_6/encrypt_this/test_encrypt_this.py @@ -1,5 +1,6 @@ """ -Solution for -> Encrypt this! +Solution for -> Encrypt this!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -10,6 +11,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.encrypt_this.solution import encrypt_this @@ -36,12 +38,27 @@ name='Source/Kata') # pylint: enable-msg=R0801 class EncryptThisTestCase(unittest.TestCase): - """ - Testing encrypt_this function - """ - def test_encrypt_this(self): + """Testing encrypt_this function.""" + + @parameterized.expand([ + ("", ""), + ("Hello", "72olle"), + ("good", "103doo"), + ("hello world", "104olle 119drlo"), + ("A wise old owl lived in an oak", + "65 119esi 111dl 111lw 108dvei 105n 97n 111ka"), + ("The more he saw the less he spoke", + "84eh 109ero 104e 115wa 116eh 108sse 104e 115eokp"), + ("The less he spoke the more he heard", + "84eh 108sse 104e 115eokp 116eh 109ero 104e 104dare"), + ("Why can we not all be like that wise old bird", + "87yh 99na 119e 110to 97ll 98e 108eki 116tah 119esi 111dl 98dri"), + ("Thank you Piotr for all your help", + "84kanh 121uo 80roti 102ro 97ll 121ruo 104ple")]) + def test_encrypt_this(self, text, expected): """ - Testing encrypt_this function + Testing encrypt_this function. + :param self: :return: """ @@ -62,28 +79,7 @@ def test_encrypt_this(self): "Keepin' it simple: There are no special characters in input." "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("", - ""), - ("Hello", - "72olle"), - ("good", - "103doo"), - ("hello world", - "104olle 119drlo"), - ("A wise old owl lived in an oak", - "65 119esi 111dl 111lw 108dvei 105n 97n 111ka"), - ("The more he saw the less he spoke", - "84eh 109ero 104e 115wa 116eh 108sse 104e 115eokp"), - ("The less he spoke the more he heard", - "84eh 108sse 104e 115eokp 116eh 109ero 104e 104dare"), - ("Why can we not all be like that wise old bird", - "87yh 99na 119e 110to 97ll 98e 108eki 116tah 119esi 111dl 98dri"), - ("Thank you Piotr for all your help", - "84kanh 121uo 80roti 102ro 97ll 121ruo 104ple")) - - for text, expected in test_data: - result = encrypt_this(text) + result = encrypt_this(text) + with allure.step(f"Enter test string: {text} and verify the output: {expected}."): print_log(text=text, expected=expected, result=result) - with allure.step("Enter test string and verify the output"): - self.assertEqual(expected, result) + self.assertEqual(expected, result) From ad80b8d8d792a33c864500f58048db3306dc121f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:23:37 -0800 Subject: [PATCH 613/873] # Find the odd int --- kyu_6/find_the_odd_int/__init__.py | 1 + kyu_6/find_the_odd_int/find_the_odd_int.py | 11 +++-- .../find_the_odd_int/test_find_the_odd_int.py | 49 +++++++++---------- 3 files changed, 29 insertions(+), 32 deletions(-) diff --git a/kyu_6/find_the_odd_int/__init__.py b/kyu_6/find_the_odd_int/__init__.py index e69de29bb2d..5d913eb58d9 100644 --- a/kyu_6/find_the_odd_int/__init__.py +++ b/kyu_6/find_the_odd_int/__init__.py @@ -0,0 +1 @@ +"""Find the odd int.""" diff --git a/kyu_6/find_the_odd_int/find_the_odd_int.py b/kyu_6/find_the_odd_int/find_the_odd_int.py index feda87f4099..d530bee9a56 100644 --- a/kyu_6/find_the_odd_int/find_the_odd_int.py +++ b/kyu_6/find_the_odd_int/find_the_odd_int.py @@ -1,5 +1,6 @@ """ -Solution for -> Find the odd int +Solution for -> Find the odd int. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,10 +10,10 @@ def find_it(seq: List[int]) -> int: """ - Given an array, find the int that - appears an odd number of times. - :param seq: - :return: + Find the int that appears an odd number of times. + + :param seq: list + :return: int """ pares: Dict[int, int] = {} result: int = 0 diff --git a/kyu_6/find_the_odd_int/test_find_the_odd_int.py b/kyu_6/find_the_odd_int/test_find_the_odd_int.py index 45c89d3fa63..9882064aeea 100644 --- a/kyu_6/find_the_odd_int/test_find_the_odd_int.py +++ b/kyu_6/find_the_odd_int/test_find_the_odd_int.py @@ -1,5 +1,6 @@ """ -Test for -> Find the odd int +Test for -> Find the odd int. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.find_the_odd_int.find_the_odd_int import find_it @@ -24,12 +26,24 @@ url='https://www.codewars.com/kata/54da5a58ea159efa38000836', name='Source/Kata') class FindTheOddIntTestCase(unittest.TestCase): - """ - Testing find_it function - """ - def test_something(self): + """Testing find_it function.""" + + @parameterized.expand([ + ([20, 1, -1, 2, -2, 3, 3, 5, 5, 1, 2, 4, 20, 4, -1, -2, 5], + 5, 'should return 5 (because it appears 3 times)'), + ([5, 4, 3, 2, 1, 5, 4, 3, 2, 10, 10], + 1, 'should return 1 (because it appears 1 time)'), + ([-15, -14, -11, -11, -7, -7, -7, -5, -11, -7, -7, -5, -7, -14, + -7, -15, -7, -5, -11, -14, -5, -5, -7, -7, -14, -11, -15, -7, + -5, -11, -7, -15, -15, -15, -5, -15, -15], + -5, 'Random tests'), + ([14, 2, -3, -12, -17, 14, 2, 2, -17, -17, -12, -12, 14, -17, -1, + 2, -12, -3, -17, -12, -17, -1, 14, -12, 2], + 2, 'Random tests')]) + def test_something(self, lst, expected, msg): """ Sample testing. + :return: """ # pylint: disable-msg=R0801 @@ -43,25 +57,6 @@ def test_something(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([20, 1, -1, 2, -2, 3, 3, 5, 5, 1, 2, 4, 20, 4, -1, -2, 5], - 5, - 'should return 5 (because it appears 3 times)'), - ([5, 4, 3, 2, 1, 5, 4, 3, 2, 10, 10], - 1, - 'should return 1 (because it appears 1 time)'), - ([-15, -14, -11, -11, -7, -7, -7, -5, -11, -7, -7, -5, -7, -14, - -7, -15, -7, -5, -11, -14, -5, -5, -7, -7, -14, -11, -15, -7, - -5, -11, -7, -15, -15, -15, -5, -15, -15], - -5, - 'Random tests'), - ([14, 2, -3, -12, -17, 14, 2, 2, -17, -17, -12, -12, 14, -17, -1, - 2, -12, -3, -17, -12, -17, -1, 14, -12, 2], - 2, - 'Random tests')) - - with allure.step("Assert the result"): - for data in test_data: - lst, expected, msg = data - print_log(list=lst, expected=expected, msg=msg) - self.assertEqual(find_it(lst), expected, msg=msg) + with allure.step("Assert test result:"): + print_log(list=lst, expected=expected, msg=msg) + self.assertEqual(find_it(lst), expected, msg=msg) From f482cea7ae50ad2a419a314f6f0e42b7f4bab38e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:29:45 -0800 Subject: [PATCH 614/873] # First character that repeats --- .../first_character_that_repeats/__init__.py | 1 + .../first_character_that_repeats.py | 11 +++++----- .../test_first_character_that_repeats.py | 21 ++++++++++++------- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/kyu_6/first_character_that_repeats/__init__.py b/kyu_6/first_character_that_repeats/__init__.py index e69de29bb2d..57d1883788b 100644 --- a/kyu_6/first_character_that_repeats/__init__.py +++ b/kyu_6/first_character_that_repeats/__init__.py @@ -0,0 +1 @@ +"""First character that repeats.""" diff --git a/kyu_6/first_character_that_repeats/first_character_that_repeats.py b/kyu_6/first_character_that_repeats/first_character_that_repeats.py index a228b4a93e1..02b3419cb30 100644 --- a/kyu_6/first_character_that_repeats/first_character_that_repeats.py +++ b/kyu_6/first_character_that_repeats/first_character_that_repeats.py @@ -1,5 +1,6 @@ """ -Solution for -> First character that repeats +Solution for -> First character that repeats. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,10 +8,10 @@ def first_dup(word: str) -> str | None: """ - Find the first character that repeats - in a String and return that character. - :param word: str - :return: str, None + Find the first character that repeats in a String and return that character. + + :param word: string + :return: string, None """ for char in word: if word.count(char) > 1: diff --git a/kyu_6/first_character_that_repeats/test_first_character_that_repeats.py b/kyu_6/first_character_that_repeats/test_first_character_that_repeats.py index a8a388decb0..efdbb8f1442 100644 --- a/kyu_6/first_character_that_repeats/test_first_character_that_repeats.py +++ b/kyu_6/first_character_that_repeats/test_first_character_that_repeats.py @@ -1,5 +1,6 @@ """ -Test for -> First character that repeats +Test for -> First character that repeats. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -21,19 +22,19 @@ @allure.feature("String") @allure.story('First character that repeats') @allure.tag('ALGORITHMS') -@allure.link(url='https://www.codewars.com/kata/54f9f4d7c41722304e000bbb', - name='Source/Kata') +@allure.link( + url='https://www.codewars.com/kata/54f9f4d7c41722304e000bbb', + name='Source/Kata') # pylint: enable-msg=R0801 class FirstDupTestCase(unittest.TestCase): - """ - Testing first_dup function. + """Testing first_dup function.""" - Find the first character that repeats - in a String and return that character. - """ def test_first_dup_none(self): """ Test string with no duplicate chars. + + Find the first character that repeats + in a String and return that character. :return: """ # pylint: disable-msg=R0801 @@ -63,6 +64,7 @@ def test_first_dup_none(self): def test_first_dup_mixed(self): """ Test string with mixed type of chars. + :return: """ # pylint: disable-msg=R0801 @@ -92,6 +94,7 @@ def test_first_dup_mixed(self): def test_first_alpha_only(self): """ Test string with alphabet chars only. + :return: """ # pylint: disable-msg=R0801 @@ -114,6 +117,7 @@ def test_first_alpha_only(self): def test_first_space(self): """ Repeating char is a space. + :return: """ # pylint: disable-msg=R0801 @@ -136,6 +140,7 @@ def test_first_space(self): def test_first_no_alpha(self): """ Test string with no alphabet chars. + :return: """ # pylint: disable-msg=R0801 From 18b4033f797b7488dc0ee48426a1a0da1a7e4e8b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:36:10 -0800 Subject: [PATCH 615/873] # Format a string of names like 'Bart, Lisa & Maggie' --- kyu_6/format_string_of_names/__init__.py | 1 + kyu_6/format_string_of_names/solution.py | 3 +- kyu_6/format_string_of_names/test_namelist.py | 46 +++++++++---------- 3 files changed, 24 insertions(+), 26 deletions(-) diff --git a/kyu_6/format_string_of_names/__init__.py b/kyu_6/format_string_of_names/__init__.py index e69de29bb2d..db3d02f1658 100644 --- a/kyu_6/format_string_of_names/__init__.py +++ b/kyu_6/format_string_of_names/__init__.py @@ -0,0 +1 @@ +"""Format a string of names like 'Bart, Lisa & Maggie'.""" diff --git a/kyu_6/format_string_of_names/solution.py b/kyu_6/format_string_of_names/solution.py index c21c51a6985..48d060200d6 100644 --- a/kyu_6/format_string_of_names/solution.py +++ b/kyu_6/format_string_of_names/solution.py @@ -1,5 +1,6 @@ """ Solution for -> Format a string of names like \'Bart, Lisa & Maggie\'. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,7 @@ def namelist(names: list) -> str: """ - Format a string of names like 'Bart, Lisa & Maggie' + Format a string of names like 'Bart, Lisa & Maggie'. :param names: an array containing hashes of names :return: a string formatted as a list of names separated diff --git a/kyu_6/format_string_of_names/test_namelist.py b/kyu_6/format_string_of_names/test_namelist.py index 8f1649e4a91..5ebeb2495ec 100644 --- a/kyu_6/format_string_of_names/test_namelist.py +++ b/kyu_6/format_string_of_names/test_namelist.py @@ -1,5 +1,6 @@ """ Test for -> Format a string of names like \'Bart, Lisa & Maggie\'. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.format_string_of_names.solution import namelist @@ -28,13 +30,24 @@ name='Source/Kata') # pylint: enable-msg=R0801 class NamelistTestCase(unittest.TestCase): - """ - Testing namelist function - """ + """Testing namelist function.""" - def test_namelist(self): + @parameterized.expand([ + ([{'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'}, + {'name': 'Homer'}, {'name': 'Marge'}], + 'Bart, Lisa, Maggie, Homer & Marge', + "Must work with many names"), + ([{'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'}], + 'Bart, Lisa & Maggie', + "Must work with many names"), + ([{'name': 'Bart'}, {'name': 'Lisa'}], 'Bart & Lisa', + "Must work with two names"), + ([{'name': 'Bart'}], 'Bart', + "Wrong output for a single name"), + ([], '', "Must work with no names")]) + def test_namelist(self, names, expected, message): """ - Test namelist + Test namelist. Given: an array containing hashes of names @@ -58,26 +71,9 @@ def test_namelist(self): "by commas except for the last two names, which should be " "separated by an ampersand.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([{'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'}, - {'name': 'Homer'}, {'name': 'Marge'}], - 'Bart, Lisa, Maggie, Homer & Marge', - "Must work with many names"), - ([{'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'}], - 'Bart, Lisa & Maggie', - "Must work with many names"), - ([{'name': 'Bart'}, {'name': 'Lisa'}], - 'Bart & Lisa', - "Must work with two names"), - ([{'name': 'Bart'}], - 'Bart', - "Wrong output for a single name"), - ([], - '', - "Must work with no names")) - - for names, expected, message in test_data: - result: str = namelist(names) + result: str = namelist(names) + with allure.step(f"Process input consist of names: {names}" + f" and verify the output: {expected}."): print_log(names=names, expected=expected, result=result, From f3f8cf2d33bbc4a43456a679390c6d1729bda97f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:42:42 -0800 Subject: [PATCH 616/873] # Help the bookseller --- kyu_6/help_the_bookseller/__init__.py | 1 + kyu_6/help_the_bookseller/stock_list.py | 5 +- kyu_6/help_the_bookseller/test_stock_list.py | 71 +++++++++----------- 3 files changed, 36 insertions(+), 41 deletions(-) diff --git a/kyu_6/help_the_bookseller/__init__.py b/kyu_6/help_the_bookseller/__init__.py index e69de29bb2d..75cea309e18 100644 --- a/kyu_6/help_the_bookseller/__init__.py +++ b/kyu_6/help_the_bookseller/__init__.py @@ -0,0 +1 @@ +"""Help the bookseller.""" diff --git a/kyu_6/help_the_bookseller/stock_list.py b/kyu_6/help_the_bookseller/stock_list.py index c611ade7d79..4a03dc9e7f9 100644 --- a/kyu_6/help_the_bookseller/stock_list.py +++ b/kyu_6/help_the_bookseller/stock_list.py @@ -1,5 +1,6 @@ """ -Solution for -> Help the bookseller ! +Solution for -> Help the bookseller!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def stock_list(list_of_art: list, list_of_cat: list) -> str: """ + Stock list function. + You will be given a stockist (e.g. : L) and a list of categories in capital letters e.g : M = {"A", "B", "C", "W"} diff --git a/kyu_6/help_the_bookseller/test_stock_list.py b/kyu_6/help_the_bookseller/test_stock_list.py index d21c275c48e..853f1fe0a41 100644 --- a/kyu_6/help_the_bookseller/test_stock_list.py +++ b/kyu_6/help_the_bookseller/test_stock_list.py @@ -1,5 +1,6 @@ """ -Test for -> Help the bookseller ! +Test for -> Help the bookseller!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.help_the_bookseller.stock_list import stock_list @@ -24,12 +26,28 @@ url='https://www.codewars.com/kata/54dc6f5a224c26032800005c', name='Source/Kata') class StockListTestCase(unittest.TestCase): - """ - Testing stock_list function - """ - def test_stock_list(self): + """Testing stock_list function.""" + + @parameterized.expand([ + (["ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"], + ["A", "B"], "(A : 200) - (B : 1140)"), + (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], + ['A', 'B', 'C', 'D'], + '(A : 0) - (B : 1290) - (C : 515) - (D : 600)'), + (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], + ['A', 'B', 'C', 'W'], + '(A : 0) - (B : 114) - (C : 70) - (W : 0)'), + (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', + 'DRTYMKH 060'], ['B', 'R', 'D', 'X'], + '(B : 364) - (R : 225) - (D : 60) - (X : 0)'), + (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', + 'DRTYMKH 060'], + ['U', 'V', 'R'], '(U : 0) - (V : 0) - (R : 225)'), + ([], ['B', 'R', 'D', 'X'], '')]) + def test_stock_list(self, list_of_art, list_of_cat, expected): """ - Testing stock_list function with various test data + Testing stock_list function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -46,40 +64,13 @@ def test_stock_list(self): "to each category of M and to sum their quantity according to " "each category.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (["ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"], - ["A", "B"], - "(A : 200) - (B : 1140)"), - (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], - ['A', 'B', 'C', 'D'], - '(A : 0) - (B : 1290) - (C : 515) - (D : 600)'), - (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], - ['A', 'B', 'C', 'W'], - '(A : 0) - (B : 114) - (C : 70) - (W : 0)'), - (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', - 'DRTYMKH 060'], - ['B', 'R', 'D', 'X'], - '(B : 364) - (R : 225) - (D : 60) - (X : 0)'), - (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', - 'DRTYMKH 060'], - ['U', 'V', 'R'], - '(U : 0) - (V : 0) - (R : 225)'), - ([], - ['B', 'R', 'D', 'X'], - '')) - - for list_of_art, list_of_cat, expected in test_data: - actual_result = stock_list(list_of_art, list_of_cat) - - with allure.step(f"Enter test data ({list_of_art}, " - f"{list_of_cat}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(list_of_artt=list_of_art, + actual_result = stock_list(list_of_art, list_of_cat) + with allure.step(f"Enter test data ({list_of_art}, " + f"{list_of_cat}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(list_of_artt=list_of_art, list_of_cat=list_of_cat, expected=expected, result=actual_result) - - self.assertEqual(expected, - actual_result) + self.assertEqual(expected, actual_result) From e762a26a57ffbb452cad43910e67560032c8e3b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:14:46 -0800 Subject: [PATCH 617/873] # Character with longest consecutive repetition --- kyu_6/longest_repetition/__init__.py | 1 + .../longest_repetition/longest_repetition.py | 9 +++-- .../test_longest_repetition.py | 39 ++++++++++--------- 3 files changed, 26 insertions(+), 23 deletions(-) diff --git a/kyu_6/longest_repetition/__init__.py b/kyu_6/longest_repetition/__init__.py index e69de29bb2d..2bb611974ed 100644 --- a/kyu_6/longest_repetition/__init__.py +++ b/kyu_6/longest_repetition/__init__.py @@ -0,0 +1 @@ +"""Character with longest consecutive repetition.""" diff --git a/kyu_6/longest_repetition/longest_repetition.py b/kyu_6/longest_repetition/longest_repetition.py index eb2896cef7e..201a33b8539 100644 --- a/kyu_6/longest_repetition/longest_repetition.py +++ b/kyu_6/longest_repetition/longest_repetition.py @@ -1,5 +1,6 @@ """ -Solution for -> First character that repeats +Solution for -> First character that repeats. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,8 +10,10 @@ def longest_repetition(chars: str) -> Tuple: """ + Longest repetition. + For a given string s find the character c (or C) - with longest consecutive repetition and return: (c, l) + with the longest consecutive repetition and return: (c, l) where l (or L) is the length of the repetition. If there are two or more characters with @@ -20,12 +23,10 @@ def longest_repetition(chars: str) -> Tuple: :param chars: :return: """ - result: Tuple = ('', 0) current: List = ['', 0] for c in chars: - if c == current[0]: current[1] += 1 else: diff --git a/kyu_6/longest_repetition/test_longest_repetition.py b/kyu_6/longest_repetition/test_longest_repetition.py index 75f5fb9b93c..e9b2c1e2159 100644 --- a/kyu_6/longest_repetition/test_longest_repetition.py +++ b/kyu_6/longest_repetition/test_longest_repetition.py @@ -1,5 +1,6 @@ """ -Test for -> First character that repeats +Test for -> First character that repeats. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.longest_repetition.longest_repetition \ import longest_repetition @@ -28,13 +30,23 @@ name='Source/Kata') # pylint: enable-msg=R0801 class LongestRepetitionTestCase(unittest.TestCase): - """ - Testing longest_repetition function - """ - def test_longest_repetition(self): + """Testing longest_repetition function.""" + + @parameterized.expand([ + # [input, expected], + ["aaaabb", ('a', 4)], + ["bbbaaabaaaa", ('a', 4)], + ["cbdeuuu900", ('u', 3)], + ["abbbbb", ('b', 5)], + ["aabb", ('a', 2)], + ["ba", ('b', 1)], + ["", ('', 0)]]) + def test_longest_repetition(self, string, expected): """ + Test longest_repetition function with various test data. + For a given string s find the character c (or C) with - longest consecutive repetition and return: (c, l) + the longest consecutive repetition and return: (c, l) where l (or L) is the length of the repetition. For empty string return: ('', 0) @@ -51,16 +63,5 @@ def test_longest_repetition(self): "

    ") # pylint: enable-msg=R0801 with allure.step("Pass string and verify the output"): - test_data: tuple = ( - # [input, expected], - ["aaaabb", ('a', 4)], - ["bbbaaabaaaa", ('a', 4)], - ["cbdeuuu900", ('u', 3)], - ["abbbbb", ('b', 5)], - ["aabb", ('a', 2)], - ["ba", ('b', 1)], - ["", ('', 0)]) - - for t in test_data: - print_log(string=t[0], expected=t[1]) - self.assertEqual(t[1], longest_repetition(t[0])) + print_log(string=string, expected=expected) + self.assertEqual(expected, longest_repetition(string)) From 9ed0edc55f977f895358dfbde3a109bdd7fc176e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:19:10 -0800 Subject: [PATCH 618/873] # Multiples of 3 or 5 --- kyu_6/multiples_of_3_or_5/__init__.py | 1 + kyu_6/multiples_of_3_or_5/solution.py | 5 +++- kyu_6/multiples_of_3_or_5/test_solution.py | 34 ++++++++++------------ 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/kyu_6/multiples_of_3_or_5/__init__.py b/kyu_6/multiples_of_3_or_5/__init__.py index e69de29bb2d..e34242028d4 100644 --- a/kyu_6/multiples_of_3_or_5/__init__.py +++ b/kyu_6/multiples_of_3_or_5/__init__.py @@ -0,0 +1 @@ +"""Multiples of 3 or 5.""" diff --git a/kyu_6/multiples_of_3_or_5/solution.py b/kyu_6/multiples_of_3_or_5/solution.py index 1e2471bc1cd..9e96bebcc5b 100644 --- a/kyu_6/multiples_of_3_or_5/solution.py +++ b/kyu_6/multiples_of_3_or_5/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Multiples of 3 or 5 +Solution for -> Multiples of 3 or 5. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def solution(number: int) -> int: """ + Solution for 'ultiples of 3 or 5' problem. + If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. diff --git a/kyu_6/multiples_of_3_or_5/test_solution.py b/kyu_6/multiples_of_3_or_5/test_solution.py index aaceb0419d1..757dc7f7983 100644 --- a/kyu_6/multiples_of_3_or_5/test_solution.py +++ b/kyu_6/multiples_of_3_or_5/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Multiples of 3 or 5 +Test for -> Multiples of 3 or 5. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.multiples_of_3_or_5.solution import solution @@ -25,12 +27,16 @@ url='https://www.codewars.com/kata/514b92a657cdc65150000006', name='Source/Kata') class SolutionTestCase(unittest.TestCase): - """ - Testing solution function - """ - def test_solution(self): + """Testing solution function.""" + + @parameterized.expand([ + (4, 3, 'Should return 3 for n=4'), + (200, 9168, 'Should return 9168 for n=200'), + (-1, 0, 'Should return 0 for n=-1'), + (1291, 388935, 'Random test')]) + def test_solution(self, number, expected, msg): """ - Testing solution function + Testing solution function. If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. @@ -53,16 +59,6 @@ def test_solution(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (4, 3, 'Should return 3 for n=4'), - (200, 9168, 'Should return 9168 for n=200'), - (-1, 0, 'Should return 0 for n=-1'), - (1291, 388935, 'Random test')) - - for td in test_data: - number, expected, msg = td - with allure.step( - f"Pass test data ({number}) and verify the output"): - - print_log(expected=expected, number=number, msg=msg) - self.assertEqual(expected, solution(number), msg) + with allure.step(f"Pass test data ({number}) and verify the output"): + print_log(expected=expected, number=number, msg=msg) + self.assertEqual(expected, solution(number), msg) From e396da871ede72bf5be956c86f2066f986d4265e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:24:14 -0800 Subject: [PATCH 619/873] # No arithmetic progressions --- kyu_6/no_arithmetic_progressions/__init__.py | 1 + kyu_6/no_arithmetic_progressions/sequence.py | 15 +++-- .../test_sequence.py | 60 ++++++++----------- 3 files changed, 37 insertions(+), 39 deletions(-) diff --git a/kyu_6/no_arithmetic_progressions/__init__.py b/kyu_6/no_arithmetic_progressions/__init__.py index e69de29bb2d..cb2f8ce19b0 100644 --- a/kyu_6/no_arithmetic_progressions/__init__.py +++ b/kyu_6/no_arithmetic_progressions/__init__.py @@ -0,0 +1 @@ +"""No arithmetic progressions.""" diff --git a/kyu_6/no_arithmetic_progressions/sequence.py b/kyu_6/no_arithmetic_progressions/sequence.py index 1a3f001c8b9..5dda94e3d16 100644 --- a/kyu_6/no_arithmetic_progressions/sequence.py +++ b/kyu_6/no_arithmetic_progressions/sequence.py @@ -1,5 +1,6 @@ """ -Solution for -> No arithmetic progressions +Solution for -> No arithmetic progressions. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -34,9 +35,11 @@ def sequence(n: int) -> int: return n -def sum_of_arithmetic_progression(a: int, dif: int, terms: int = 3) -> int: +def sum_of_arithmetic_progression(a: int, + dif: int, + terms: int = 3) -> int: """ - Sum of an Arithmetic Progression + Sum of an Arithmetic Progression. :param a: :param dif: @@ -46,9 +49,11 @@ def sum_of_arithmetic_progression(a: int, dif: int, terms: int = 3) -> int: return terms * (a + general_term_of_arithmetic_progression(a, dif)) // 2 -def general_term_of_arithmetic_progression(a: int, dif: int, terms: int = 3) -> int: +def general_term_of_arithmetic_progression(a: int, + dif: int, + terms: int = 3) -> int: """ - General Term of an Arithmetic Progression + General Term of an Arithmetic Progression. :param a: :param dif: diff --git a/kyu_6/no_arithmetic_progressions/test_sequence.py b/kyu_6/no_arithmetic_progressions/test_sequence.py index 1690ece844c..f7e2712ddcc 100644 --- a/kyu_6/no_arithmetic_progressions/test_sequence.py +++ b/kyu_6/no_arithmetic_progressions/test_sequence.py @@ -1,7 +1,6 @@ """ -Test for -> No arithmetic progressions -Testing sequence function -A function f(n), should returns the n-th member of sequence. +Test for -> No arithmetic progressions. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,6 +10,7 @@ import unittest import allure import pytest +from parameterized import parameterized from utils.log_func import print_log from kyu_6.no_arithmetic_progressions.sequence import sequence @@ -29,12 +29,23 @@ # pylint: enable-msg=R0801 @pytest.mark.skip(reason="The solution is not ready") class SequenceTestCase(unittest.TestCase): - """ - Testing sequence function - """ - def test_sequence(self): + """Testing sequence function.""" + + @parameterized.expand([ + (1233, 62047), + (0, 0), + (1, 1), + (2, 3), + (3, 4), + (4, 9), + (6541, 717373), + (7878, 790248), + (1435, 67909), + (6457, 715501)]) + def test_sequence(self, n, expected): """ - A function f(n), should returns the n-th member of sequence. + A function f(n), should return the n-th member of sequence. + :return: """ # pylint: disable-msg=R0801 @@ -50,30 +61,11 @@ def test_sequence(self): "non-negative integer, which is not yet in the sequence, " "so that no 3 terms of sequence form an arithmetic " "progression.

    ") - # pylint: enable-msg=R0801 - test_data = ( - (1233, 62047), - (0, 0), - (1, 1), - (2, 3), - (3, 4), - (4, 9), - (6541, 717373), - (7878, 790248), - (1435, 67909), - (6457, 715501)) - - for n, expected in test_data: - actual_result = sequence(n) - # pylint: disable-msg=R0801 - with allure.step( - f"Enter a number ({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 + actual_result = sequence(n) + with allure.step(f"Enter a number ({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 From b212c8aaa2cff6c95c16d3897545d8e0e1a53465 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:29:43 -0800 Subject: [PATCH 620/873] # Number Zoo Patrol --- kyu_6/number_zoo_patrol/__init__.py | 1 + kyu_6/number_zoo_patrol/missing_number.py | 6 +- .../test_find_missing_number.py | 109 ++++++++---------- 3 files changed, 56 insertions(+), 60 deletions(-) diff --git a/kyu_6/number_zoo_patrol/__init__.py b/kyu_6/number_zoo_patrol/__init__.py index e69de29bb2d..61289cb71d4 100644 --- a/kyu_6/number_zoo_patrol/__init__.py +++ b/kyu_6/number_zoo_patrol/__init__.py @@ -0,0 +1 @@ +"""Number Zoo Patrol.""" diff --git a/kyu_6/number_zoo_patrol/missing_number.py b/kyu_6/number_zoo_patrol/missing_number.py index 0ef044c0d23..cca5b2dfcaf 100644 --- a/kyu_6/number_zoo_patrol/missing_number.py +++ b/kyu_6/number_zoo_patrol/missing_number.py @@ -1,5 +1,6 @@ """ -Solution for -> Number Zoo Patrol +Solution for -> Number Zoo Patrol. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def find_missing_number(numbers: list) -> int: """ + Find missing number. + A function that takes a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). Return this missing number. @@ -22,7 +25,6 @@ def find_missing_number(numbers: list) -> int: # 2 - the range is ok, next number (the one comes after last one) is missing max_num: int = max(numbers) length: int = len(numbers) - if length == max_num: return max_num + 1 diff --git a/kyu_6/number_zoo_patrol/test_find_missing_number.py b/kyu_6/number_zoo_patrol/test_find_missing_number.py index 43d86cec932..650c0f8d64c 100644 --- a/kyu_6/number_zoo_patrol/test_find_missing_number.py +++ b/kyu_6/number_zoo_patrol/test_find_missing_number.py @@ -1,5 +1,6 @@ """ -Test for -> Number Zoo Patrol +Test for -> Number Zoo Patrol. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.number_zoo_patrol.missing_number \ import find_missing_number @@ -29,17 +31,54 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FindMissingNumberTestCase(unittest.TestCase): - """ - Testing 'find_missing_number' function - """ + """Testing 'find_missing_number' function.""" - def test_find_missing_number(self): + @parameterized.expand([ + ([2, 3, 4], 1), + ([1, 3, 4], 2), + ([1, 2, 4], 3), + ([1, 2, 3], 4), + ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, + 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, + 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, + 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, + 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, + 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, + 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, + 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, + 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, + 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, + 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, + 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, + 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, + 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, + 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, + 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, + 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, + 500], 36)]) + def test_find_missing_number(self, numbers, expected): """ + Testing 'find_missing_number' function with various test data. + 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. - :return: """ # pylint: disable-msg=R0801 @@ -55,55 +94,9 @@ def test_find_missing_number(self): "(which can be any number including n). The function should" " return the missing number.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([2, 3, 4], 1), - ([1, 3, 4], 2), - ([1, 2, 4], 3), - ([1, 2, 3], 4), - ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, - 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, - 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, - 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, - 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, - 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, - 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, - 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, - 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, - 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, - 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, - 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, - 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, - 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, - 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, - 500], 36)) - - for data in test_data: - numbers: list = data[0] - expected: int = data[1] - actual_result: int = find_missing_number(numbers) - - with allure.step(f"Enter a list and verify the " - f"expected output: {expected} vs " - f"actual result: {actual_result}"): - print_log(seq=numbers, - expected=expected, - result=actual_result) - - self.assertEqual(expected, actual_result) + actual_result: int = find_missing_number(numbers) + with allure.step(f"Enter a list and verify the " + f"expected output: {expected} vs " + f"actual result: {actual_result}"): + print_log(seq=numbers, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From 284430fa70678fd7d7b18250fced3379766efe52 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:31:28 -0800 Subject: [PATCH 621/873] Update test_longest_repetition.py --- kyu_6/longest_repetition/test_longest_repetition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/longest_repetition/test_longest_repetition.py b/kyu_6/longest_repetition/test_longest_repetition.py index e9b2c1e2159..5792cbbcc1c 100644 --- a/kyu_6/longest_repetition/test_longest_repetition.py +++ b/kyu_6/longest_repetition/test_longest_repetition.py @@ -43,7 +43,7 @@ class LongestRepetitionTestCase(unittest.TestCase): ["", ('', 0)]]) def test_longest_repetition(self, string, expected): """ - Test longest_repetition function with various test data. + Test 'longest_repetition' with various test data. For a given string s find the character c (or C) with the longest consecutive repetition and return: (c, l) From 7c984c98f861ee471f8d5a096154b8facca61185 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:32:49 -0800 Subject: [PATCH 622/873] Update test_stock_list.py ./kyu_6/help_the_bookseller/test_stock_list.py:73:27: E127 continuation line over-indented for visual indent list_of_cat=list_of_cat, ^ ./kyu_6/help_the_bookseller/test_stock_list.py:74:27: E127 continuation line over-indented for visual indent expected=expected, ^ ./kyu_6/help_the_bookseller/test_stock_list.py:75:27: E127 continuation line over-indented for visual indent result=actual_result) --- kyu_6/help_the_bookseller/test_stock_list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_6/help_the_bookseller/test_stock_list.py b/kyu_6/help_the_bookseller/test_stock_list.py index 853f1fe0a41..89f8e6a4282 100644 --- a/kyu_6/help_the_bookseller/test_stock_list.py +++ b/kyu_6/help_the_bookseller/test_stock_list.py @@ -70,7 +70,7 @@ def test_stock_list(self, list_of_art, list_of_cat, expected): f"expected output ({expected}) vs " f"actual result ({actual_result})"): print_log(list_of_artt=list_of_art, - list_of_cat=list_of_cat, - expected=expected, - result=actual_result) + list_of_cat=list_of_cat, + expected=expected, + result=actual_result) self.assertEqual(expected, actual_result) From 70204c9230cb42226e66bf7d706d7b6bd607169f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:36:22 -0800 Subject: [PATCH 623/873] Update test_longest_repetition.py --- kyu_6/longest_repetition/test_longest_repetition.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_6/longest_repetition/test_longest_repetition.py b/kyu_6/longest_repetition/test_longest_repetition.py index 5792cbbcc1c..afe74e6a6d8 100644 --- a/kyu_6/longest_repetition/test_longest_repetition.py +++ b/kyu_6/longest_repetition/test_longest_repetition.py @@ -28,7 +28,6 @@ @allure.link( url='https://www.codewars.com/kata/586d6cefbcc21eed7a001155', name='Source/Kata') -# pylint: enable-msg=R0801 class LongestRepetitionTestCase(unittest.TestCase): """Testing longest_repetition function.""" From 11d2069b5ed9926a2f7049ec0198d91261825376 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:41:02 -0800 Subject: [PATCH 624/873] Update test_alphanumeric.py --- kyu_5/not_very_secure/test_alphanumeric.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kyu_5/not_very_secure/test_alphanumeric.py b/kyu_5/not_very_secure/test_alphanumeric.py index 358dc4392a8..019a71ff9fb 100644 --- a/kyu_5/not_very_secure/test_alphanumeric.py +++ b/kyu_5/not_very_secure/test_alphanumeric.py @@ -31,7 +31,6 @@ @allure.link( url='https://www.codewars.com/kata/526dbd6c8c0eb53254000110', name='Source/Kata') -# pylint: enable-msg=R0801 class AlphanumericTestCase(unittest.TestCase): """Testing alphanumeric function.""" @@ -53,7 +52,6 @@ def test_alphanumeric(self, password, expected): :return: None """ - # pylint: disable-msg=R0801 allure.dynamic.title("Testing alphanumeric function") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( @@ -62,7 +60,7 @@ def test_alphanumeric(self, password, expected): '/badges/large">' '

    Test Description:

    ' "

    ") - # pylint: enable-msg=R0801 +# pylint: enable-msg=R0801 with allure.step("Enter test string and verify the output"): print_log(password=password, expected=expected) self.assertEqual(expected, alphanumeric(password)) From f49c559a84c411f46c7f84ed1833785b6d9a820a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:44:10 -0800 Subject: [PATCH 625/873] Update test_longest_repetition.py --- kyu_6/longest_repetition/test_longest_repetition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/longest_repetition/test_longest_repetition.py b/kyu_6/longest_repetition/test_longest_repetition.py index afe74e6a6d8..fa96d3bbff3 100644 --- a/kyu_6/longest_repetition/test_longest_repetition.py +++ b/kyu_6/longest_repetition/test_longest_repetition.py @@ -60,7 +60,7 @@ def test_longest_repetition(self, string, expected): '/badges/large">' '

    Test Description:

    ' "

    ") - # pylint: enable-msg=R0801 +# pylint: enable-msg=R0801 with allure.step("Pass string and verify the output"): print_log(string=string, expected=expected) self.assertEqual(expected, longest_repetition(string)) From 82943efbe19dae27048216de304447dd1a87e98f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:46:47 -0800 Subject: [PATCH 626/873] Update .codeclimate.yml --- .codeclimate.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8e9c8cac813..b5c9c42e4a6 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -14,3 +14,6 @@ checks: identical-code: config: threshold: 32 +plugins: + duplication: + enabled: false From cadec142d75ecad1f5f713a033028582a88f522b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:51:21 -0800 Subject: [PATCH 627/873] # Numericals of a String --- kyu_6/numericals_of_string/__init__.py | 1 + kyu_6/numericals_of_string/numericals.py | 5 ++++- kyu_6/numericals_of_string/test_numericals.py | 11 ++++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/kyu_6/numericals_of_string/__init__.py b/kyu_6/numericals_of_string/__init__.py index e69de29bb2d..9396bad1856 100644 --- a/kyu_6/numericals_of_string/__init__.py +++ b/kyu_6/numericals_of_string/__init__.py @@ -0,0 +1 @@ +"""Numericals of a String.""" diff --git a/kyu_6/numericals_of_string/numericals.py b/kyu_6/numericals_of_string/numericals.py index 6981857641f..a8ef7014b41 100644 --- a/kyu_6/numericals_of_string/numericals.py +++ b/kyu_6/numericals_of_string/numericals.py @@ -1,5 +1,6 @@ """ -Solution for -> Numericals of a String +Solution for -> Numericals of a String. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def numericals(s: str) -> str: """ + Numericals function. + For each symbol in the string if it's the first character occurrence, replace it with a '1', else replace it with the amount of diff --git a/kyu_6/numericals_of_string/test_numericals.py b/kyu_6/numericals_of_string/test_numericals.py index eca29da562f..08e813f2b4c 100644 --- a/kyu_6/numericals_of_string/test_numericals.py +++ b/kyu_6/numericals_of_string/test_numericals.py @@ -1,5 +1,6 @@ """ -Test for -> Numericals of a String +Test for -> Numericals of a String. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,12 +29,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class NumericalsTestCase(unittest.TestCase): - """ - Testing 'numericals' function - """ + """Testing 'numericals' function.""" + def test_numericals(self): """ - Testing 'numericals' function + Testing 'numericals' function with various test data. + :return: """ # pylint: disable-msg=R0801 From 84ba365baf31136b3a4541050e8f32f09fd78550 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:54:16 -0800 Subject: [PATCH 628/873] # Permute a Palindrome --- kyu_6/permute_a_palindrome/__init__.py | 1 + .../permute_a_palindrome/permute_a_palindrome.py | 6 ++++-- .../test_permute_a_palindrome.py | 16 +++++++++------- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/kyu_6/permute_a_palindrome/__init__.py b/kyu_6/permute_a_palindrome/__init__.py index e69de29bb2d..79a0d58f5fd 100644 --- a/kyu_6/permute_a_palindrome/__init__.py +++ b/kyu_6/permute_a_palindrome/__init__.py @@ -0,0 +1 @@ +"""Permute a Palindrome.""" diff --git a/kyu_6/permute_a_palindrome/permute_a_palindrome.py b/kyu_6/permute_a_palindrome/permute_a_palindrome.py index 641f3eb4007..489155f9f55 100644 --- a/kyu_6/permute_a_palindrome/permute_a_palindrome.py +++ b/kyu_6/permute_a_palindrome/permute_a_palindrome.py @@ -1,5 +1,6 @@ """ -Solution for -> Permute a Palindrome +Solution for -> Permute a Palindrome. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def permute_a_palindrome(string: str) -> bool: """ + Permute a Palindrome. + A function that check whether the permutation of an input string is a palindrome. :param string: @@ -20,7 +23,6 @@ def permute_a_palindrome(string: str) -> bool: non_even: int = 0 chars: set = set(string) - for char in chars: if string.count(char) % 2 != 0: non_even += 1 diff --git a/kyu_6/permute_a_palindrome/test_permute_a_palindrome.py b/kyu_6/permute_a_palindrome/test_permute_a_palindrome.py index 961cc4f1c27..abc0021e2f0 100644 --- a/kyu_6/permute_a_palindrome/test_permute_a_palindrome.py +++ b/kyu_6/permute_a_palindrome/test_permute_a_palindrome.py @@ -1,5 +1,6 @@ """ -Test for -> Permute a Palindrome +Test for -> Permute a Palindrome. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -24,13 +25,12 @@ url='https://www.codewars.com/kata/58ae6ae22c3aaafc58000079', name='Source/Kata') class PermutePalindromeTestCase(unittest.TestCase): - """ - Testing permute_a_palindrome function - """ + """Testing permute_a_palindrome function.""" def test_permute_a_palindrome_positive(self): """ - Testing permute_a_palindrome function + Testing permute_a_palindrome function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -70,7 +70,8 @@ def test_permute_a_palindrome_positive(self): def test_permute_a_palindrome_negative(self): """ - Negative testing permute_a_palindrome function + Negative testing permute_a_palindrome function. + :return: """ # pylint: disable-msg=R0801 @@ -104,7 +105,8 @@ def test_permute_a_palindrome_negative(self): def test_permute_a_palindrome_empty_string(self): """ - Testing permute_a_palindrome function with empty string + Testing permute_a_palindrome function with empty string. + :return: """ # pylint: disable-msg=R0801 From 62b0ea1f0f5ea96907267d364ce80ecabf400860 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 05:02:55 -0800 Subject: [PATCH 629/873] # Pokemon Damage Calculator --- kyu_6/pokemon_damage_calculator/__init__.py | 1 + .../calculate_damage.py | 15 +++-- .../test_calculate_damage.py | 58 +++++++++---------- 3 files changed, 36 insertions(+), 38 deletions(-) diff --git a/kyu_6/pokemon_damage_calculator/__init__.py b/kyu_6/pokemon_damage_calculator/__init__.py index e69de29bb2d..7479a7281c9 100644 --- a/kyu_6/pokemon_damage_calculator/__init__.py +++ b/kyu_6/pokemon_damage_calculator/__init__.py @@ -0,0 +1 @@ +"""Pokemon Damage Calculator.""" diff --git a/kyu_6/pokemon_damage_calculator/calculate_damage.py b/kyu_6/pokemon_damage_calculator/calculate_damage.py index 2f9816a8e97..f9f1f808b56 100644 --- a/kyu_6/pokemon_damage_calculator/calculate_damage.py +++ b/kyu_6/pokemon_damage_calculator/calculate_damage.py @@ -1,5 +1,6 @@ """ -Solution for -> Pokemon Damage Calculator +Solution for -> Pokemon Damage Calculator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -15,11 +16,13 @@ def calculate_damage(your_type: str, opponent_type: str, attack, defense) -> int: """ + Pokemon Damage Calculator. + It's a Pokemon battle! Your task is to calculate the damage that a particular move would do using the following formula (not the actual one from the game): - damage = 50 * (attack / defense) * effectiveness + damage = 50 * (attack / defense) * effectiveness :param your_type: :param opponent_type: @@ -32,11 +35,11 @@ def calculate_damage(your_type: str, opponent_type: str, attack, defense) -> int def effectiveness(your_type: str, opponent_type: str) -> float: """ - Effectiveness: + Effectiveness. - Super effective: 2x damage - Neutral: 1x damage - Not very effective: 0.5x damage + Super effective: 2x damage + Neutral: 1x damage + Not very effective: 0.5x damage To prevent this kata from being tedious, you'll only be dealing with four types: fire, water, grass, and electric. diff --git a/kyu_6/pokemon_damage_calculator/test_calculate_damage.py b/kyu_6/pokemon_damage_calculator/test_calculate_damage.py index 766704a4d5c..1774010421b 100644 --- a/kyu_6/pokemon_damage_calculator/test_calculate_damage.py +++ b/kyu_6/pokemon_damage_calculator/test_calculate_damage.py @@ -1,5 +1,6 @@ """ -Test for -> Pokemon Damage Calculator +Test for -> Pokemon Damage Calculator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.pokemon_damage_calculator.calculate_damage \ import calculate_damage @@ -33,13 +35,20 @@ url='https://www.codewars.com/kata/536e9a7973130a06eb000e9f', name='Source/Kata') class CalculateDamageTestCase(unittest.TestCase): - """ - Testing calculate_damage function: - damage = 50 * (attack / defense) * effectiveness - """ - def test_calculate_damage(self): + """Testing calculate_damage function.""" + + @parameterized.expand([ + (("fire", "water", 100, 100), 25), + (("grass", "water", 100, 100), 100), + (("electric", "fire", 100, 100), 50), + (("grass", "electric", 57, 19), 150), + (("grass", "water", 40, 40), 100), + (("grass", "fire", 35, 5), 175), + (("fire", "electric", 10, 2), 250)]) + def test_calculate_damage(self, test_data, expected): """ - Testing calculate_damage with various test data + Testing calculate_damage with various test data: + damage = 50 * (attack / defense) * effectiveness :return: """ # pylint: disable-msg=R0801 @@ -55,33 +64,18 @@ def test_calculate_damage(self): " formula (not the actual one from the game): " "damage = 50 * (attack / defense) * effectiveness

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (("fire", "water", 100, 100), 25), - (("grass", "water", 100, 100), 100), - (("electric", "fire", 100, 100), 50), - (("grass", "electric", 57, 19), 150), - (("grass", "water", 40, 40), 100), - (("grass", "fire", 35, 5), 175), - (("fire", "electric", 10, 2), 250)) - - for test_data, expected in test_data: - your_type = test_data[0] - opponent_type = test_data[1] - attack = test_data[2] - defense = test_data[3] - actual_result = calculate_damage( + your_type = test_data[0] + opponent_type = test_data[1] + attack = test_data[2] + defense = test_data[3] + actual_result = calculate_damage( your_type, opponent_type, attack, defense) - with allure.step(f"Enter a test data ({test_data}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(test_data=test_data, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + with allure.step(f"Enter a test data ({test_data}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})."): + print_log(test_data=test_data, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From 33c7994ddfeece569e9ac7e0970170eeb1434c89 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 05:20:06 -0800 Subject: [PATCH 630/873] # Potion Class 101 --- kyu_6/potion_class_101/__init__.py | 1 + kyu_6/potion_class_101/potion.py | 27 +++++++++++++++++++------ kyu_6/potion_class_101/test_potion.py | 29 ++++++++++++++++++++------- 3 files changed, 44 insertions(+), 13 deletions(-) diff --git a/kyu_6/potion_class_101/__init__.py b/kyu_6/potion_class_101/__init__.py index e69de29bb2d..d8a2cfb8484 100644 --- a/kyu_6/potion_class_101/__init__.py +++ b/kyu_6/potion_class_101/__init__.py @@ -0,0 +1 @@ +"""Potion Class 101.""" diff --git a/kyu_6/potion_class_101/potion.py b/kyu_6/potion_class_101/potion.py index 77dab6da517..11105cfe3ff 100644 --- a/kyu_6/potion_class_101/potion.py +++ b/kyu_6/potion_class_101/potion.py @@ -1,5 +1,6 @@ """ -Solution for -> Potion Class 101 +Solution for -> Potion Class 101. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,22 +12,32 @@ class Potion: """ + Potion. + This is your first potion class in Hogwarts and professor gave you a homework to figure out what color potion will turn into if he'll mix it with some other potion. All potions have some color that written down as RGB color from [0, 0, 0] to [255, 255, 255]. To make task more complicated teacher will do few mixing and after will ask you for final color. Besides - color you also need to figure out what volume will have potion + color, you also need to figure out what volume will have potion after final mix. """ def __init__(self, color: Tuple[int, int, int], volume: int): + """ + Create a new Potion instance. + + :param color: + :param volume: + """ self._color: Tuple[int, int, int] = color self._volume: int = volume def mix(self, other) -> object: """ + Mix. + Based on your programming background you managed to figure that after mixing two potions colors will mix as if mix two RGB colors. @@ -49,7 +60,8 @@ def mix(self, other) -> object: @property def volume(self) -> int: """ - Return volume value + Return volume value. + :return: int """ return self._volume @@ -57,7 +69,8 @@ def volume(self) -> int: @volume.setter def volume(self, value: int) -> None: """ - Set volume value + Set volume value. + :param value: int :return: """ @@ -66,7 +79,8 @@ def volume(self, value: int) -> None: @property def color(self) -> tuple: """ - Get color value + Get color value. + :return: tuple """ return self._color @@ -74,7 +88,8 @@ def color(self) -> tuple: @color.setter def color(self, value: Tuple[int, int, int]) -> None: """ - Set color value + Set color value. + :param value: tuple :return: """ diff --git a/kyu_6/potion_class_101/test_potion.py b/kyu_6/potion_class_101/test_potion.py index c964e3992b8..3159c596afa 100644 --- a/kyu_6/potion_class_101/test_potion.py +++ b/kyu_6/potion_class_101/test_potion.py @@ -1,5 +1,6 @@ """ -Test for -> Potion Class 101 +Test for -> Potion Class 101. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from utils.log_func import print_log from kyu_6.potion_class_101.potion import Potion @@ -22,12 +24,12 @@ url='https://www.codewars.com/kata/5981ff1daf72e8747d000091', name='Source/Kata') class PotionTestCase(unittest.TestCase): - """ - Testing potion func for Potion Class 101 problem - """ + """Testing potion func for Potion Class 101 problem.""" + def test_potion(self): """ - Testing potion function with various test inputs + Testing potion function with various test inputs. + :return: """ # pylint: disable-msg=R0801 @@ -56,19 +58,32 @@ def test_potion(self): e = potions[0].mix(potions[1]).mix(potions[2]).mix( potions[3]).mix(potions[4]).mix(potions[5]) - with allure.step("Mix between RGB colors and verify the output"): - + with allure.step(f"Mix between RGB colors: {(147, 149, 130)} " + f"and verify the output: {a.color, a.volume}."): self.assertEqual((147, 149, 130), a.color) self.assertEqual(49, a.volume) + print_log(expected=49, result=a.volume) + with allure.step(f"Mix between RGB colors: {(135, 101, 128)} " + f"and verify the output: {b.color, b.volume}."): self.assertEqual((135, 101, 128), b.color) self.assertEqual(76, b.volume) + print_log(expected=76, result=b.volume) + with allure.step(f"Mix between RGB colors: {(74, 50, 18)} " + f"and verify the output: {c.color, c.volume}."): self.assertEqual((74, 50, 18), c.color) self.assertEqual(52, c.volume) + print_log(expected=52, result=c.volume) + with allure.step(f"Mix between RGB colors: {(130, 91, 102)} " + f"and verify the output: {d.color, d.volume}."): self.assertEqual((130, 91, 102), d.color) self.assertEqual(99, d.volume) + print_log(expected=99, result=d.volume) + with allure.step(f"Mix between RGB colors: {(132, 96, 99)} " + f"and verify the output: {e.color, e.volume}."): self.assertEqual((132, 96, 99), e.color) self.assertEqual(103, e.volume) + print_log(expected=103, result=e.volume) From 1d08d44d6f95233f3af542ee05e6dc4e20b60035 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 05:23:34 -0800 Subject: [PATCH 631/873] # Pyramid Array --- kyu_6/pyramid_array/__init__.py | 1 + kyu_6/pyramid_array/pyramid_array.py | 5 ++++- kyu_6/pyramid_array/test_pyramid_array.py | 22 ++++++++++++---------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/kyu_6/pyramid_array/__init__.py b/kyu_6/pyramid_array/__init__.py index e69de29bb2d..ee4ddb671fb 100644 --- a/kyu_6/pyramid_array/__init__.py +++ b/kyu_6/pyramid_array/__init__.py @@ -0,0 +1 @@ +"""Pyramid Array.""" diff --git a/kyu_6/pyramid_array/pyramid_array.py b/kyu_6/pyramid_array/pyramid_array.py index 744b8e85abd..31f35c98ab6 100644 --- a/kyu_6/pyramid_array/pyramid_array.py +++ b/kyu_6/pyramid_array/pyramid_array.py @@ -1,5 +1,6 @@ """ -Solution for -> Pyramid Array +Solution for -> Pyramid Array. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def pyramid(n: int) -> list: """ + Pyramid function. + Write a function that when given a number >= 0, returns an Array of ascending length subarrays. diff --git a/kyu_6/pyramid_array/test_pyramid_array.py b/kyu_6/pyramid_array/test_pyramid_array.py index 1ab3cc3e595..8ebf6e90c61 100644 --- a/kyu_6/pyramid_array/test_pyramid_array.py +++ b/kyu_6/pyramid_array/test_pyramid_array.py @@ -1,5 +1,6 @@ """ -Test for -> Pyramid Array +Test for -> Pyramid Array. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,15 +26,16 @@ name='Source/Kata') # pylint: enable-msg=R0801 class PyramidTestCase(unittest.TestCase): - """ - Testing 'pyramid' function - """ + """Testing 'pyramid' function.""" + def test_pyramid(self): """ + Testing 'pyramid' function with various test data. + The 'pyramid' function should return - an Array of ascending length subarrays. + an Array of ascending length sub-arrays. - Note: the subarrays should be filled with 1s. + Note: the sub-arrays should be filled with 1s. :return: """ # pylint: disable-msg=R0801 @@ -46,25 +48,25 @@ def test_pyramid(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Pass zero"): + with allure.step("Pass zero:"): n: int = 0 expected: list = [] print_log(n=n, expected=expected) self.assertEqual(pyramid(n), expected) - with allure.step("Pass one"): + with allure.step("Pass one:"): n = 1 expected = [[1]] print_log(n=n, expected=expected) self.assertEqual(pyramid(n), expected) - with allure.step("Pass two"): + with allure.step("Pass two:"): n = 2 expected = [[1], [1, 1]] print_log(n=n, expected=expected) self.assertEqual(pyramid(n), expected) - with allure.step("Pass three"): + with allure.step("Pass three:"): n = 3 expected = [[1], [1, 1], [1, 1, 1]] print_log(n=n, expected=expected) From 2ad5d87a5ba83623090ccad6feb3e7c87dbd5126 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 05:30:08 -0800 Subject: [PATCH 632/873] # ROTATE THE LETTERS OF EACH ELEMENT --- .../__init__.py | 1 + .../group_cities.py | 10 ++- .../test_group_cities.py | 75 +++++++++---------- 3 files changed, 44 insertions(+), 42 deletions(-) diff --git a/kyu_6/rotate_the_letters_of_each_element/__init__.py b/kyu_6/rotate_the_letters_of_each_element/__init__.py index e69de29bb2d..afc1dfa50eb 100644 --- a/kyu_6/rotate_the_letters_of_each_element/__init__.py +++ b/kyu_6/rotate_the_letters_of_each_element/__init__.py @@ -0,0 +1 @@ +"""ROTATE THE LETTERS OF EACH ELEMENT.""" diff --git a/kyu_6/rotate_the_letters_of_each_element/group_cities.py b/kyu_6/rotate_the_letters_of_each_element/group_cities.py index 506c7ed7f88..fb8725ecda2 100644 --- a/kyu_6/rotate_the_letters_of_each_element/group_cities.py +++ b/kyu_6/rotate_the_letters_of_each_element/group_cities.py @@ -1,5 +1,6 @@ """ -Solution for -> ROTATE THE LETTERS OF EACH ELEMENT +Solution for -> ROTATE THE LETTERS OF EACH ELEMENT. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def group_cities(seq: list) -> list: """ + Grouping cities. + A function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. @@ -55,7 +58,8 @@ def group_cities(seq: list) -> list: def rotate(item: str, element: str) -> bool: """ - Rotate elements/chars + Rotate elements/chars. + :param item: str :param element: str :return: bool @@ -74,6 +78,8 @@ def rotate(item: str, element: str) -> bool: def sort_results(results: list) -> None: """ + Sorting results. + Sort the groups deafeningly by size and in the case of a tie, by the first element of the group alphabetically. :param results: list diff --git a/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py b/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py index fe132c61b0a..f1ad659eaa0 100644 --- a/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py +++ b/kyu_6/rotate_the_letters_of_each_element/test_group_cities.py @@ -1,5 +1,6 @@ """ -Solution for -> ROTATE THE LETTERS OF EACH ELEMENT +Solution for -> ROTATE THE LETTERS OF EACH ELEMENT. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.rotate_the_letters_of_each_element.group_cities \ import group_cities @@ -30,13 +32,34 @@ name='Source/Kata') # pylint: enable-msg=R0801 class GroupCitiesTestCase(unittest.TestCase): - """ - Testing 'group_cities' function - """ + """Testing 'group_cities' function.""" - def test_group_cities(self): + @parameterized.expand([ + (['Tokyo', 'London', 'Rome', 'Donlon', 'Kyoto', 'Paris', 'Okyot'], + [['Kyoto', 'Okyot', 'Tokyo'], ['Donlon', 'London'], + ['Paris'], ['Rome']]), + (['Tokyo', 'London', 'Rome', 'Donlon'], + [['Donlon', 'London'], ['Rome'], ['Tokyo']]), + (['Rome', 'Rome', 'Rome', 'Donlon', 'London'], + [['Donlon', 'London'], ['Rome']]), + (['Ab', 'Aa'], + [['Aa'], ['Ab']]), + ([], []), + (['Bb', 'Cbacb', 'Bacaa', 'C', 'A', 'Bccab', 'Ba'], + [['A'], ['Ba'], ['Bacaa'], ['Bb'], ['Bccab'], ['C'], ['Cbacb']]), + (['Abaa', 'Bc', 'Ca', 'Bbcac', 'Caca', 'Ba', 'Cab', + 'Cbbcc', 'A', 'C', 'Cba', 'Baa', 'Abc'], + [['Abc', 'Cab'], ['A'], ['Abaa'], ['Ba'], ['Baa'], ['Bbcac'], ['Bc'], + ['C'], ['Ca'], ['Caca'], ['Cba'], ['Cbbcc']]), + (['Ab', 'Aba', 'A', 'Bbab', 'Baa', 'B', 'Cac', 'A', 'Baa', + 'Bbbb', 'Ac', 'Bcbaa', 'Ab'], + [['Aba', 'Baa'], ['A'], ['Ab'], ['Ac'], ['B'], ['Bbab'], + ['Bbbb'], ['Bcbaa'], ['Cac']])]) + def test_group_cities(self, seq, expected): """ - Test that a function that given a sequence of strings, + Testing 'group_cities' function with various test data. + + Make sure that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. @@ -60,37 +83,9 @@ def test_group_cities(self): "will be taken into account for the result, discarding the rest." "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (['Tokyo', 'London', 'Rome', 'Donlon', 'Kyoto', 'Paris', 'Okyot'], - [['Kyoto', 'Okyot', 'Tokyo'], ['Donlon', 'London'], - ['Paris'], ['Rome']]), - (['Tokyo', 'London', 'Rome', 'Donlon'], - [['Donlon', 'London'], ['Rome'], ['Tokyo']]), - (['Rome', 'Rome', 'Rome', 'Donlon', 'London'], - [['Donlon', 'London'], ['Rome']]), - (['Ab', 'Aa'], - [['Aa'], ['Ab']]), - ([], []), - (['Bb', 'Cbacb', 'Bacaa', 'C', 'A', 'Bccab', 'Ba'], - [['A'], ['Ba'], ['Bacaa'], ['Bb'], ['Bccab'], ['C'], ['Cbacb']]), - (['Abaa', 'Bc', 'Ca', 'Bbcac', 'Caca', 'Ba', 'Cab', - 'Cbbcc', 'A', 'C', 'Cba', 'Baa', 'Abc'], - [['Abc', 'Cab'], ['A'], ['Abaa'], ['Ba'], ['Baa'], ['Bbcac'], ['Bc'], - ['C'], ['Ca'], ['Caca'], ['Cba'], ['Cbbcc']]), - (['Ab', 'Aba', 'A', 'Bbab', 'Baa', 'B', 'Cac', 'A', 'Baa', - 'Bbbb', 'Ac', 'Bcbaa', 'Ab'], - [['Aba', 'Baa'], ['A'], ['Ab'], ['Ac'], ['B'], ['Bbab'], - ['Bbbb'], ['Bcbaa'], ['Cac']])) - - for data in test_data: - seq: list = data[0] - expected: list = data[1] - actual_result: list = group_cities(seq) - - with allure.step("Enter a list and verify the " - "expected output vs actual result"): - print_log(seq=seq, - expected=expected, - result=actual_result) - - self.assertListEqual(expected, actual_result) + actual_result: list = group_cities(seq) + with allure.step(f"Enter a list: {seq} " + f"and verify the expected output: {expected} " + f"vs actual result: {actual_result}"): + print_log(seq=seq, expected=expected, result=actual_result) + self.assertListEqual(expected, actual_result) From a18f2d229f95084feebc4cb555c71ad7f3b299d7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:03:15 -0800 Subject: [PATCH 633/873] # Row of the odd triangle --- kyu_6/row_of_the_odd_triangle/__init__.py | 1 + kyu_6/row_of_the_odd_triangle/odd_row.py | 11 +++- kyu_6/row_of_the_odd_triangle/test_odd_row.py | 66 +++++++++---------- 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/kyu_6/row_of_the_odd_triangle/__init__.py b/kyu_6/row_of_the_odd_triangle/__init__.py index e69de29bb2d..ab0c4d984e9 100644 --- a/kyu_6/row_of_the_odd_triangle/__init__.py +++ b/kyu_6/row_of_the_odd_triangle/__init__.py @@ -0,0 +1 @@ +"""Row of the odd triangle.""" diff --git a/kyu_6/row_of_the_odd_triangle/odd_row.py b/kyu_6/row_of_the_odd_triangle/odd_row.py index 176a75e8d83..b0fafb98126 100644 --- a/kyu_6/row_of_the_odd_triangle/odd_row.py +++ b/kyu_6/row_of_the_odd_triangle/odd_row.py @@ -1,5 +1,6 @@ """ -Solution for -> Row of the odd triangle +Solution for -> Row of the odd triangle. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def odd_row(n: int) -> list: """ + Odd row. + Given a triangle of consecutive odd numbers finds the triangle's row knowing its index (the rows are 1-indexed). @@ -26,7 +29,8 @@ def odd_row(n: int) -> list: def calc_first_number(n: int) -> int: """ - Calculate first number in the row + Calculate first number in the row. + :param n: :return: """ @@ -35,7 +39,8 @@ def calc_first_number(n: int) -> int: def calc_last_number(n: int) -> int: """ - Calculate last number in the row + Calculate last number in the row. + :param n: :return: """ diff --git a/kyu_6/row_of_the_odd_triangle/test_odd_row.py b/kyu_6/row_of_the_odd_triangle/test_odd_row.py index 7fc73c9c772..3a3574fb9b6 100644 --- a/kyu_6/row_of_the_odd_triangle/test_odd_row.py +++ b/kyu_6/row_of_the_odd_triangle/test_odd_row.py @@ -1,5 +1,6 @@ """ -Test for -> Row of the odd triangle +Test for -> Row of the odd triangle. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.row_of_the_odd_triangle.odd_row import odd_row @@ -26,12 +28,26 @@ name='Source/Kata') # pylint: enable=R0801 class OddRowTestCase(unittest.TestCase): - """ - Testing odd_row function - """ - def test_odd_row(self): + """Testing odd_row function.""" + + @parameterized.expand([ + (1, [1]), + (2, [3, 5]), + (13, [157, 159, 161, 163, 165, 167, 169, 171, + 173, 175, 177, 179, 181]), + (19, [343, 345, 347, 349, 351, 353, 355, 357, + 359, 361, 363, 365, 367, 369, 371, 373, + 375, 377, 379]), + (41, [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])]) + def test_odd_row(self, n, expected): """ - Testing odd_row function with various test data + Testing odd_row function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -45,33 +61,11 @@ def test_odd_row(self): "

    Given a triangle of consecutive odd numbers find " "the triangle's row knowing its index (the rows are 1-indexed)

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (1, [1]), - (2, [3, 5]), - (13, [157, 159, 161, 163, 165, 167, 169, 171, - 173, 175, 177, 179, 181]), - (19, [343, 345, 347, 349, 351, 353, 355, 357, - 359, 361, 363, 365, 367, 369, 371, 373, - 375, 377, 379]), - (41, [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])) - - for n, expected in test_data: - actual_result = odd_row(n) - - with allure.step( - f"Enter the triangle's row ({n}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - # pylint: disable=R0801 - print_log(n=n, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) - # pylint: disable=R0801 + actual_result = odd_row(n) + with allure.step(f"Enter the triangle's row ({n}) " + f"and verify the expected output ({expected}) " + f"vs actual result ({actual_result})"): + # pylint: disable=R0801 + print_log(n=n, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) + # pylint: disable=R0801 From e4694d777f5b17a690ccc9009e577c921843f42f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:07:46 -0800 Subject: [PATCH 634/873] # Scheduling (Shortest Job First or SJF) --- kyu_6/scheduling/__init__.py | 1 + kyu_6/scheduling/solution.py | 9 ++-- kyu_6/scheduling/test_solution.py | 82 ++++++++++++++----------------- 3 files changed, 45 insertions(+), 47 deletions(-) diff --git a/kyu_6/scheduling/__init__.py b/kyu_6/scheduling/__init__.py index e69de29bb2d..2da72909021 100644 --- a/kyu_6/scheduling/__init__.py +++ b/kyu_6/scheduling/__init__.py @@ -0,0 +1 @@ +"""Scheduling (Shortest Job First or SJF).""" diff --git a/kyu_6/scheduling/solution.py b/kyu_6/scheduling/solution.py index dfe7d3fed23..3422d750592 100644 --- a/kyu_6/scheduling/solution.py +++ b/kyu_6/scheduling/solution.py @@ -1,5 +1,6 @@ """ -Test for -> Scheduling (Shortest Job First or SJF) +Test for -> Scheduling (Shortest Job First or SJF). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def shortest_job_first(jobs: list, index: int) -> int: """ + Shortest Job First or SJF. + It takes in: 1. "jobs" a non-empty array of positive integers. They represent the clock-cycles(cc) needed to finish the job. @@ -41,12 +44,12 @@ def shortest_job_first(jobs: list, index: int) -> int: def get_min_job(jobs: list) -> int: """ - Get the smallest job value of jobs that is not equal to 0 + Get the smallest job value of jobs that is not equal to 0. + :param jobs: :return: """ min_job: int = max(jobs) - for j in jobs: if j <= min_job and j != 0: min_job = j diff --git a/kyu_6/scheduling/test_solution.py b/kyu_6/scheduling/test_solution.py index f2fcd014e08..88b8b9e0606 100644 --- a/kyu_6/scheduling/test_solution.py +++ b/kyu_6/scheduling/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Scheduling (Shortest Job First or SJF) +Test for -> Scheduling (Shortest Job First or SJF). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.scheduling.solution import shortest_job_first @@ -25,14 +27,35 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SJFTestCase(unittest.TestCase): - """ - Testing 'shortest_job_first' function - """ + """Testing 'shortest_job_first' function.""" # pylint: disable-msg=R0801 - def test_sjf(self): + @parameterized.expand([ + (([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)]) + def test_sjf(self, n, expected): """ - Testing 'shortest_job_first' function with various test data + Testing 'shortest_job_first' function with various test data. + :return: """ allure.dynamic.title("Testing 'shortest_job_first(' function") @@ -46,41 +69,12 @@ def test_sjf(self): "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 + 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 From ffe8bb9d35c320312421b8c40877e27e3dff1f88 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:12:08 -0800 Subject: [PATCH 635/873] # Sort the odd --- kyu_6/sort_the_odd/__init__.py | 1 + kyu_6/sort_the_odd/solution.py | 5 +++- kyu_6/sort_the_odd/test_sort_array.py | 36 ++++++++++++--------------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/kyu_6/sort_the_odd/__init__.py b/kyu_6/sort_the_odd/__init__.py index e69de29bb2d..f7790e17376 100644 --- a/kyu_6/sort_the_odd/__init__.py +++ b/kyu_6/sort_the_odd/__init__.py @@ -0,0 +1 @@ +"""Sort the odd.""" diff --git a/kyu_6/sort_the_odd/solution.py b/kyu_6/sort_the_odd/solution.py index 30a78bb28a7..0ddc74aad08 100644 --- a/kyu_6/sort_the_odd/solution.py +++ b/kyu_6/sort_the_odd/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Sort the odd +Solution for -> Sort the odd. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def sort_array(source_array: list) -> list: """ + Sort array. + Sorting ascending odd numbers but even numbers must be on their places. diff --git a/kyu_6/sort_the_odd/test_sort_array.py b/kyu_6/sort_the_odd/test_sort_array.py index 4791ffccb1d..f6770e5a9ef 100644 --- a/kyu_6/sort_the_odd/test_sort_array.py +++ b/kyu_6/sort_the_odd/test_sort_array.py @@ -1,5 +1,6 @@ """ -Test for -> Sort the odd +Test for -> Sort the odd. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_6.sort_the_odd.solution import sort_array from utils.log_func import print_log @@ -24,10 +26,13 @@ url='https://www.codewars.com/kata/578aa45ee9fd15ff4600090d', name='Source/Kata') class SortArrayTestCase(unittest.TestCase): - """ - Testing 'sort_array' function - """ - def test_sort_array(self): + """Testing 'sort_array' function.""" + + @parameterized.expand([ + ([5, 3, 2, 8, 1, 4], [1, 3, 2, 8, 5, 4]), + ([5, 3, 1, 8, 0], [1, 3, 5, 8, 0]), + ([], [])]) + def test_sort_array(self, source_array, expected): """ The 'sort_array' function. @@ -52,20 +57,11 @@ def test_sort_array(self): "

    The task is to sort ascending odd numbers but " "even numbers must be on their places.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([5, 3, 2, 8, 1, 4], [1, 3, 2, 8, 5, 4]), - ([5, 3, 1, 8, 0], [1, 3, 5, 8, 0]), - ([], [])) - - for source_array, expected in test_data: - actual_result: list = sort_array(source_array) - - with allure.step( - "Enter a list and verify the expected " - "output vs actual result"): - - print_log(source_array=source_array, + actual_result: list = sort_array(source_array) + with allure.step(f"Enter a list: {source_array} " + f"and verify the expected: {expected}" + f"output vs actual result: {actual_result}."): + print_log(source_array=source_array, expected=expected, result=actual_result) - - self.assertListEqual(expected, actual_result) + self.assertListEqual(expected, actual_result) From 061266ebac4e32ffa2f08b8de8daf6ff1905e459 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:14:44 -0800 Subject: [PATCH 636/873] # String subpattern recognition I --- kyu_6/string_subpattern_recognition_1/__init__.py | 1 + .../string_subpattern_recognition_1/has_subpattern.py | 6 +++--- .../test_has_subpattern.py | 11 +++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/kyu_6/string_subpattern_recognition_1/__init__.py b/kyu_6/string_subpattern_recognition_1/__init__.py index e69de29bb2d..8e22adbcc27 100644 --- a/kyu_6/string_subpattern_recognition_1/__init__.py +++ b/kyu_6/string_subpattern_recognition_1/__init__.py @@ -0,0 +1 @@ +"""String subpattern recognition I.""" diff --git a/kyu_6/string_subpattern_recognition_1/has_subpattern.py b/kyu_6/string_subpattern_recognition_1/has_subpattern.py index 2bceb72aefa..6ab6ff05fff 100644 --- a/kyu_6/string_subpattern_recognition_1/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_1/has_subpattern.py @@ -1,5 +1,6 @@ """ -Solution for -> String subpattern recognition I +Solution for -> String subpattern recognition I. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,7 @@ def has_subpattern(string: str) -> bool: """ - String subpattern recognition I + String subpattern recognition I. In this kata you need to build a function to return either true/True or false/False if a string can be @@ -21,7 +22,6 @@ def has_subpattern(string: str) -> bool: :return: """ length: int = len(string) - n: int = 2 while n < (length // 2) + 1: if length % n != 0: diff --git a/kyu_6/string_subpattern_recognition_1/test_has_subpattern.py b/kyu_6/string_subpattern_recognition_1/test_has_subpattern.py index 4a3e2d2d0ac..bc225f7903f 100644 --- a/kyu_6/string_subpattern_recognition_1/test_has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_1/test_has_subpattern.py @@ -1,5 +1,6 @@ """ -Test for -> String subpattern recognition I +Test for -> String subpattern recognition I. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,13 +32,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class HasSubpatternTestCase(unittest.TestCase): - """ - String subpattern recognition I - Testing 'has_subpattern' function - """ + """Testing 'has_subpattern' function.""" + def test_has_subpattern(self): """ - String subpattern recognition I + String subpattern recognition I. Verify that 'has_subpattern' function to returns either true/True or false/False if a string can be From b778a9a3bfba4bad287338ec9da1ef9eaa61fc4c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:20:06 -0800 Subject: [PATCH 637/873] # String subpattern recognition II --- .../__init__.py | 1 + .../has_subpattern.py | 7 +- .../test_has_subpattern.py | 81 ++++++++++--------- 3 files changed, 45 insertions(+), 44 deletions(-) diff --git a/kyu_6/string_subpattern_recognition_2/__init__.py b/kyu_6/string_subpattern_recognition_2/__init__.py index e69de29bb2d..93098650858 100644 --- a/kyu_6/string_subpattern_recognition_2/__init__.py +++ b/kyu_6/string_subpattern_recognition_2/__init__.py @@ -0,0 +1 @@ +"""String subpattern recognition II.""" diff --git a/kyu_6/string_subpattern_recognition_2/has_subpattern.py b/kyu_6/string_subpattern_recognition_2/has_subpattern.py index d686c3b6cc4..afacabfe03d 100644 --- a/kyu_6/string_subpattern_recognition_2/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_2/has_subpattern.py @@ -1,5 +1,6 @@ """ -Solution for -> String subpattern recognition II +Solution for -> String subpattern recognition II. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -10,7 +11,7 @@ def has_subpattern(string: str) -> bool: """ - String subpattern recognition II + String subpattern recognition II. if a subpattern has been used, it will be repeated at least twice, meaning the subpattern has to be shorter than the original string; @@ -27,7 +28,6 @@ def has_subpattern(string: str) -> bool: for char in string: if char not in char_dict: - char_dict[char] = string.count(char) if char_dict[char] == 1: @@ -35,7 +35,6 @@ def has_subpattern(string: str) -> bool: if char_dict[char] in primes or is_prime(char_dict[char]): primes.add(char_dict[char]) - if length % char_dict[char] != 0: return False 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 7c6bcc87718..39f58b6234b 100644 --- a/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py @@ -1,5 +1,6 @@ """ -Test for -> String subpattern recognition II +Test for -> String subpattern recognition II. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.string_subpattern_recognition_2.has_subpattern import has_subpattern @@ -19,7 +21,7 @@ @allure.suite("Advanced Language Features") @allure.sub_suite("Unit Tests") @allure.feature("String") -@allure.story('String subpattern recognition II') +@allure.story('String sub-pattern recognition II') @allure.tag('FUNDAMENTALS', 'STRINGS', 'REGULAR EXPRESSIONS', @@ -30,12 +32,43 @@ name='Source/Kata') # pylint: enable-msg=R0801 class HasSubpatternTestCase(unittest.TestCase): - """ - Testing 'has_subpattern' function - """ + """Testing 'has_subpattern' function.""" - def test_has_subpattern(self): + @parameterized.expand([ + ("a", False), + ("aaaa", True), + ("abcd", False), + ("babababababababa", True), + ("ababababa", False), + ("123a123a123a", True), + ("123A123a123a", False), + ("12aa13a21233", True), + ("12aa13a21233A", False), + ("abcdabcaccd", False), + ("w9TkPyHgTygqGTCBnL94FFa5q1uvyBzCOFdzFGl3439FCsk59yjq" + "A7nT9g3N94nTzFkCy31AkN2Hdd2Fmyn5VFGCBN5n931mkaw14bXw" + "Aywzw1TwyoAB2yLdydPGALFv51Bj0Vnnd1VayBTsun1TV31yPmbj" + "PNaq1kuXoVGkokjTTd2LFbOV7n2XTayLnbBsTFmsdHuVaykF0V23" + "w3slOymC1OF4akgo5yGLFsGF139oTG7GsuuvVPwTy3dm5oglTlF4" + "FlqkNyFVFGvm1VuljHggH74nFwCFLy0n0qALdy0o4yyw592BovN7" + "Bvy1AGwVngklvBGB204H2BTXjAykyXBFja5ov4jTkTGybBnATCvO" + "llwGClTmvw9os9TyH41vvjmkVXdTw3aysnTBPTvvgmA51wvkn1T7" + "1OyyGLPgV9LdmqyldTwbdu0TqTH377kOynv3Byd0vVlynTkAyyj1" + "1dqyv5FN1TsTyv5Gajgvd0Xn2dCjvFXq3lykg7soolyksllVGNkV" + "3VFLqwvnyBPH1T1NoBuzLnmlC5lO7FlHFwNVT1AuGT2zNsdVodnl" + "TdnnnwOdNTg5qH0PPXl5FljvOu0vyqBFXLTz9uvAzP5b1lTkHG5a" + "TqzzwCOkwl0dBVGjbkdFFy4TljFaTGBdAVGT1luFVnByHvn2XvAB" + "lAOGw77BjTg1k5yV17ddCmP14GvL2P5XBTkTw95v3ksv5kqkyuCy" + "X430BAy2AB5NlC5wXbOv4zgVl9GLb5wBzaNdT7vyzslPBkws5Nw2" + "w0nvN1V5dG4qzLX7dsV1ujGu0lzVbmPkVB59sVVoVFBHPyOuygO0" + "ClwmA2bGkHLVayBb5Cayl2m9w4TBgkGbTw0lHB2VG5NnFwyF17Gk" + "Tn5TdH7HVnlyvG51do9k35zO4aqmPBTwnXu5wdBvvTPdL715ln4o" + "jGVTTlgks119kuCV3Ta5vLa7nqmdolmjPG5wqGynXG2n1XTCbz10" + "BadOFvTbbgHOnywVG50wwNnzObkddNF5BGzobX", True)]) + def test_has_subpattern(self, string, expected): """ + Testing 'has_subpattern' function with various test data. + 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. @@ -60,39 +93,7 @@ def test_has_subpattern(self): "

    ") # pylint: enable-msg=R0801 with allure.step("Pass the string and verify the output"): - test_data: tuple = ( - ("a", False), - ("aaaa", True), - ("abcd", False), - ("babababababababa", True), - ("ababababa", False), - ("123a123a123a", True), - ("123A123a123a", False), - ("12aa13a21233", True), - ("12aa13a21233A", False), - ("abcdabcaccd", False), - ("w9TkPyHgTygqGTCBnL94FFa5q1uvyBzCOFdzFGl3439FCsk59yjq" - "A7nT9g3N94nTzFkCy31AkN2Hdd2Fmyn5VFGCBN5n931mkaw14bXw" - "Aywzw1TwyoAB2yLdydPGALFv51Bj0Vnnd1VayBTsun1TV31yPmbj" - "PNaq1kuXoVGkokjTTd2LFbOV7n2XTayLnbBsTFmsdHuVaykF0V23" - "w3slOymC1OF4akgo5yGLFsGF139oTG7GsuuvVPwTy3dm5oglTlF4" - "FlqkNyFVFGvm1VuljHggH74nFwCFLy0n0qALdy0o4yyw592BovN7" - "Bvy1AGwVngklvBGB204H2BTXjAykyXBFja5ov4jTkTGybBnATCvO" - "llwGClTmvw9os9TyH41vvjmkVXdTw3aysnTBPTvvgmA51wvkn1T7" - "1OyyGLPgV9LdmqyldTwbdu0TqTH377kOynv3Byd0vVlynTkAyyj1" - "1dqyv5FN1TsTyv5Gajgvd0Xn2dCjvFXq3lykg7soolyksllVGNkV" - "3VFLqwvnyBPH1T1NoBuzLnmlC5lO7FlHFwNVT1AuGT2zNsdVodnl" - "TdnnnwOdNTg5qH0PPXl5FljvOu0vyqBFXLTz9uvAzP5b1lTkHG5a" - "TqzzwCOkwl0dBVGjbkdFFy4TljFaTGBdAVGT1luFVnByHvn2XvAB" - "lAOGw77BjTg1k5yV17ddCmP14GvL2P5XBTkTw95v3ksv5kqkyuCy" - "X430BAy2AB5NlC5wXbOv4zgVl9GLb5wBzaNdT7vyzslPBkws5Nw2" - "w0nvN1V5dG4qzLX7dsV1ujGu0lzVbmPkVB59sVVoVFBHPyOuygO0" - "ClwmA2bGkHLVayBb5Cayl2m9w4TBgkGbTw0lHB2VG5NnFwyF17Gk" - "Tn5TdH7HVnlyvG51do9k35zO4aqmPBTwnXu5wdBvvTPdL715ln4o" - "jGVTTlgks119kuCV3Ta5vLa7nqmdolmjPG5wqGynXG2n1XTCbz10" - "BadOFvTbbgHOnywVG50wwNnzObkddNF5BGzobX", True)) # pylint: disable-msg=R0801 - for data in test_data: - print_log(string=data[0], expected=data[1]) - self.assertEqual(data[1], has_subpattern(data[0])) + print_log(string=string, expected=expected) + self.assertEqual(expected, has_subpattern(string)) # pylint: enable-msg=R0801 From cc5ac75f45bab5177aa582d42b2c1ba4da3413b9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:22:44 -0800 Subject: [PATCH 638/873] # String subpattern recognition III --- kyu_6/string_subpattern_recognition_3/__init__.py | 1 + .../string_subpattern_recognition_3/has_subpattern.py | 8 +++----- .../test_has_subpattern.py | 10 +++++----- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/kyu_6/string_subpattern_recognition_3/__init__.py b/kyu_6/string_subpattern_recognition_3/__init__.py index e69de29bb2d..b63d54f57ea 100644 --- a/kyu_6/string_subpattern_recognition_3/__init__.py +++ b/kyu_6/string_subpattern_recognition_3/__init__.py @@ -0,0 +1 @@ +"""String subpattern recognition III.""" diff --git a/kyu_6/string_subpattern_recognition_3/has_subpattern.py b/kyu_6/string_subpattern_recognition_3/has_subpattern.py index 12cff1a2e0d..700d08cd958 100644 --- a/kyu_6/string_subpattern_recognition_3/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_3/has_subpattern.py @@ -1,5 +1,6 @@ """ -Solution for -> String subpattern recognition III +Solution for -> String subpattern recognition III. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,7 +10,7 @@ def has_subpattern(string: str) -> str: """ - String subpattern recognition III + String subpattern recognition III. Since there is no deterministic way to tell which pattern was really the original one among all the possible @@ -18,13 +19,11 @@ def has_subpattern(string: str) -> str: 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). - :param string: :return: """ # get unique chars filtered_chars: set = set(list(string)) - # set counter for each char in string char_counter: dict = {} for char in filtered_chars: @@ -32,7 +31,6 @@ def has_subpattern(string: str) -> str: # get sorted counters sorted_char_counters: list = sorted(set(char_counter.values())) - # find common greatest divider: divider = sorted_char_counters[0] if len(sorted_char_counters) > 1: diff --git a/kyu_6/string_subpattern_recognition_3/test_has_subpattern.py b/kyu_6/string_subpattern_recognition_3/test_has_subpattern.py index 28d6c90d817..634dd5315dd 100644 --- a/kyu_6/string_subpattern_recognition_3/test_has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_3/test_has_subpattern.py @@ -1,5 +1,6 @@ """ -Test for -> String subpattern recognition III +Test for -> String subpattern recognition III. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -31,12 +32,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class HasSubpatternTestCase(unittest.TestCase): - """ - Testing 'has_subpattern' function - """ + """Testing 'has_subpattern' function.""" + def test_has_subpattern(self): """ - Verify that 'has_subpattern' function + Verify that 'has_subpattern' function. Return a subpattern with sorted characters, otherwise return the base string with sorted From 29d8688920da06732a61cc9c4f07cd42bca1b2af Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:27:06 -0800 Subject: [PATCH 639/873] # String transformer --- kyu_6/string_transformer/__init__.py | 1 + .../string_transformer/string_transformer.py | 7 +- .../test_string_transformer.py | 93 +++++++++---------- 3 files changed, 50 insertions(+), 51 deletions(-) diff --git a/kyu_6/string_transformer/__init__.py b/kyu_6/string_transformer/__init__.py index e69de29bb2d..1fe64939a53 100644 --- a/kyu_6/string_transformer/__init__.py +++ b/kyu_6/string_transformer/__init__.py @@ -0,0 +1 @@ +"""String transformer.""" diff --git a/kyu_6/string_transformer/string_transformer.py b/kyu_6/string_transformer/string_transformer.py index 4062245866c..7f2d7297575 100644 --- a/kyu_6/string_transformer/string_transformer.py +++ b/kyu_6/string_transformer/string_transformer.py @@ -1,5 +1,6 @@ """ -Test for -> String transformer +Test for -> String transformer. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def string_transformer(s: str) -> str: """ + String transformer. + Given a string, return a new string that has transformed based on the input: @@ -20,12 +23,10 @@ def string_transformer(s: str) -> str: You may assume the input only contain English alphabet and spaces. - :param s: str :return: str """ s_arr: list = s.split(' ')[::-1] - for i, word in enumerate(s_arr): s_arr[i] = ''.join((char.upper() if char.islower() else char.lower()) for char in word) diff --git a/kyu_6/string_transformer/test_string_transformer.py b/kyu_6/string_transformer/test_string_transformer.py index 4a5fd3fb318..161a3360f9d 100644 --- a/kyu_6/string_transformer/test_string_transformer.py +++ b/kyu_6/string_transformer/test_string_transformer.py @@ -1,5 +1,6 @@ """ -Solution for -> String transformer +Solution for -> String transformer. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.string_transformer.string_transformer \ import string_transformer @@ -24,14 +26,46 @@ url='https://www.codewars.com/kata/5878520d52628a092f0002d0', name='Source/Kata') class StringTransformerTestCase(unittest.TestCase): - """ - Testing string_transformer function - """ + """Testing string_transformer function.""" - def test_string_transformer(self): + @parameterized.expand([ + ("Example string", "STRING eXAMPLE"), + ("Example Input", "iNPUT eXAMPLE"), + ("To be OR not to be That is the Question", + "qUESTION THE IS tHAT BE TO NOT or BE tO"), + ("", ""), + ("You Know When THAT Hotline Bling", + "bLING hOTLINE that wHEN kNOW yOU"), + (" A b C d E f G ", " g F e D c B a "), + ("Alc Rl VLEE k xLU c c", + "C C Xlu K vlee rL aLC"), + ("J VVmviAdpIAFzh zs oMHsx HPvN xt sN PlW u K " + "Q XnV mR Betg ox E j cIiQ Fa GJdk ECYzH BkuU ", + " bKUu ecyZh gjDK fA CiIq J e OX bETG Mr " + "xNv q k U pLw Sn XT hpVn OmhSX ZS vvMVIaDPiafZH j"), + ("LXOP QmsZs R i jUor SWDkkhh P X Q H vz gD " + "KSpv hGCOSB e e r piw pXB OqkIbb ", + " oQKiBB Pxb PIW R E E Hgcosb ksPV Gd VZ h q " + "x p swdKKHH JuOR I r qMSzS lxop"), + ("V Ots Ev k Q bC jK Db cezl YdmzzYbK iu JdJu P " + "qeAwqZYewoHk YnGdGQa LoDorPaUom cSJo s", + "S CsjO lOdORpAuOM yNgDgqA QEaWQzyEWOhK p jDjU " + "IU yDMZZyBk CEZL dB Jk Bc q K eV oTS v"), + ("KYjBc SgkXrFIDq MYv XAEzh RX fkSPCF tMtYN ewyhq " + "EFSgia DUH u vXizIYb u oZ OMw YjaqzJ BJGjfOc s", + "S bjgJFoC yJAQZj omW Oz U VxIZiyB U duh efsGIA " + "EWYHQ TmTyn FKspcf rx xaeZH myV sGKxRfidQ kyJbC"), + ("ncE ZpQ O y A fBNbw R v rCg n yhpvx BMn tk " + "ubCZrHJl GiEyCjZcRk kheNwWj PA ZAGpsZamNHb", + "zagPSzAMnhB pa KHEnWwJ gIeYcJzCrK UBczRhjL TK " + "bmN YHPVX N RcG V r FbnBW a Y o zPq NCe"), + ("UOtfi erH kCk KXzg Io Y I TYAf " + "EGXVSvASIyJ p Zf p kV g RI V", + "v ri G Kv P zF P egxvsVasiYj tyaF " + "i y iO kxZG KcK ERh uoTFI")]) + def test_string_transformer(self, s, expected): """ - Testing string_transformer function - with multiple test data. + Testing string_transformer function with multiple test data. Given a string, return a new string that has transformed based on the input: @@ -40,7 +74,6 @@ def test_string_transformer(self): case to upper case, upper case to lower case. 2. Reverse the order of words from the input. - :return: """ # pylint: disable-msg=R0801 @@ -53,43 +86,7 @@ def test_string_transformer(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ("Example string", "STRING eXAMPLE"), - ("Example Input", "iNPUT eXAMPLE"), - ("To be OR not to be That is the Question", - "qUESTION THE IS tHAT BE TO NOT or BE tO"), - ("", ""), - ("You Know When THAT Hotline Bling", - "bLING hOTLINE that wHEN kNOW yOU"), - (" A b C d E f G ", " g F e D c B a "), - ("Alc Rl VLEE k xLU c c", - "C C Xlu K vlee rL aLC"), - ("J VVmviAdpIAFzh zs oMHsx HPvN xt sN PlW u K " - "Q XnV mR Betg ox E j cIiQ Fa GJdk ECYzH BkuU ", - " bKUu ecyZh gjDK fA CiIq J e OX bETG Mr " - "xNv q k U pLw Sn XT hpVn OmhSX ZS vvMVIaDPiafZH j"), - ("LXOP QmsZs R i jUor SWDkkhh P X Q H vz gD " - "KSpv hGCOSB e e r piw pXB OqkIbb ", - " oQKiBB Pxb PIW R E E Hgcosb ksPV Gd VZ h q " - "x p swdKKHH JuOR I r qMSzS lxop"), - ("V Ots Ev k Q bC jK Db cezl YdmzzYbK iu JdJu P " - "qeAwqZYewoHk YnGdGQa LoDorPaUom cSJo s", - "S CsjO lOdORpAuOM yNgDgqA QEaWQzyEWOhK p jDjU " - "IU yDMZZyBk CEZL dB Jk Bc q K eV oTS v"), - ("KYjBc SgkXrFIDq MYv XAEzh RX fkSPCF tMtYN ewyhq " - "EFSgia DUH u vXizIYb u oZ OMw YjaqzJ BJGjfOc s", - "S bjgJFoC yJAQZj omW Oz U VxIZiyB U duh efsGIA " - "EWYHQ TmTyn FKspcf rx xaeZH myV sGKxRfidQ kyJbC"), - ("ncE ZpQ O y A fBNbw R v rCg n yhpvx BMn tk " - "ubCZrHJl GiEyCjZcRk kheNwWj PA ZAGpsZamNHb", - "zagPSzAMnhB pa KHEnWwJ gIeYcJzCrK UBczRhjL TK " - "bmN YHPVX N RcG V r FbnBW a Y o zPq NCe"), - ("UOtfi erH kCk KXzg Io Y I TYAf " - "EGXVSvASIyJ p Zf p kV g RI V", - "v ri G Kv P zF P egxvsVasiYj tyaF " - "i y iO kxZG KcK ERh uoTFI")) - - for s, expected in test_data: - print_log(s=s, expected=expected) - self.assertEqual(expected, string_transformer(s)) + with allure.step(f"Enter test string: {s} " + f"and verify the output: {expected}."): + print_log(s=s, expected=expected) + self.assertEqual(expected, string_transformer(s)) From 77dc370af86d336187d57658af2050d58b4bbed1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:31:07 -0800 Subject: [PATCH 640/873] # Sum of Digits / Digital Root --- kyu_6/sum_of_digits_digital_root/__init__.py | 1 + .../digital_root.py | 4 +-- .../test_digital_root.py | 32 +++++++++---------- 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/kyu_6/sum_of_digits_digital_root/__init__.py b/kyu_6/sum_of_digits_digital_root/__init__.py index e69de29bb2d..f8852e83334 100644 --- a/kyu_6/sum_of_digits_digital_root/__init__.py +++ b/kyu_6/sum_of_digits_digital_root/__init__.py @@ -0,0 +1 @@ +"""Sum of Digits / Digital Root.""" diff --git a/kyu_6/sum_of_digits_digital_root/digital_root.py b/kyu_6/sum_of_digits_digital_root/digital_root.py index f7f06e1c09e..340dddb02cc 100644 --- a/kyu_6/sum_of_digits_digital_root/digital_root.py +++ b/kyu_6/sum_of_digits_digital_root/digital_root.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of Digits / Digital Root +Solution for -> Sum of Digits / Digital Root. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -14,7 +15,6 @@ def digital_root(n: int) -> int: 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. - :param n: :return: """ diff --git a/kyu_6/sum_of_digits_digital_root/test_digital_root.py b/kyu_6/sum_of_digits_digital_root/test_digital_root.py index 2c99719aec7..104c2b268aa 100644 --- a/kyu_6/sum_of_digits_digital_root/test_digital_root.py +++ b/kyu_6/sum_of_digits_digital_root/test_digital_root.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Digits / Digital Root +Test for -> Sum of Digits / Digital Root. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.sum_of_digits_digital_root.digital_root \ import digital_root @@ -27,10 +29,15 @@ url='https://www.codewars.com/kata/541c8630095125aba6000c00', name='Source/Kata') class DigitalRootTestCase(unittest.TestCase): - """ - Testing digital_root function - """ - def test_digital_root(self): + """Testing digital_root function.""" + + @parameterized.expand([ + (16, 7), + (456, 6), + (942, 6), + (132189, 6), + (493193, 2)]) + def test_digital_root(self, n, expected): """ In this kata, you must create a digital root function. @@ -51,14 +58,7 @@ def test_digital_root(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter a number and verify the output"): - test_data: tuple = ( - (16, 7), - (456, 6), - (942, 6), - (132189, 6), - (493193, 2)) - - for n, expected in test_data: - print_log(n=n, expected=expected) - self.assertEqual(expected, digital_root(n)) + with allure.step(f"Enter a number: {n} " + f"and verify the output: {expected}."): + print_log(n=n, expected=expected) + self.assertEqual(expected, digital_root(n)) From 5163e6e8347e776212e45bee57cb5706ede645f3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:36:05 -0800 Subject: [PATCH 641/873] # Sums of Parts --- kyu_6/sums_of_parts/__init__.py | 1 + kyu_6/sums_of_parts/solution.py | 5 ++- kyu_6/sums_of_parts/test_solution.py | 48 ++++++++++++---------------- 3 files changed, 26 insertions(+), 28 deletions(-) diff --git a/kyu_6/sums_of_parts/__init__.py b/kyu_6/sums_of_parts/__init__.py index e69de29bb2d..00e7797ee13 100644 --- a/kyu_6/sums_of_parts/__init__.py +++ b/kyu_6/sums_of_parts/__init__.py @@ -0,0 +1 @@ +"""Sums of Parts.""" diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index 938405f8f4b..61787ce07cb 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -1,5 +1,6 @@ """ -Test for -> Sums of Parts +Test for -> Sums of Parts. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def parts_sums(input_ls: list) -> list: """ + Sums of Parts. + 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: diff --git a/kyu_6/sums_of_parts/test_solution.py b/kyu_6/sums_of_parts/test_solution.py index 0ef885b8310..66c7e27c3fc 100644 --- a/kyu_6/sums_of_parts/test_solution.py +++ b/kyu_6/sums_of_parts/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Sums of Parts +Test for -> Sums of Parts. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.sums_of_parts.solution import parts_sums @@ -27,14 +29,20 @@ name='Source/Kata') # pylint: enable-msg=R0801 class PartsSumTestCase(unittest.TestCase): - """ - Testing 'parts_sums' function - """ + """Testing 'parts_sums' function.""" # pylint: disable-msg=R0801 - def test_parts_sum(self): + @parameterized.expand([ + ([], [0]), + ([1, 2, 3, 4, 5, 6], [21, 20, 18, 15, 11, 6, 0]), + ([0, 1, 3, 6, 10], [20, 20, 19, 16, 10, 0]), + ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358], + [10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, + 9291270, 2581057, 2580168, 2579358, 0])]) + def test_parts_sum(self, input_ls, expected): """ - Testing 'parts_sums' function with various test data + Testing 'parts_sums' function with various test data. + :return: """ allure.dynamic.title("Testing 'parts_sums' function") @@ -50,25 +58,11 @@ def test_parts_sum(self): "parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]" "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ([], [0]), - ([1, 2, 3, 4, 5, 6], [21, 20, 18, 15, 11, 6, 0]), - ([0, 1, 3, 6, 10], [20, 20, 19, 16, 10, 0]), - ([744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358], - [10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, - 9291270, 2581057, 2580168, 2579358, 0])) - - for input_ls, expected in test_data: - actual_result = parts_sums(input_ls) - # pylint: disable-msg=R0801 - with allure.step(f"Enter a list ls ({input_ls}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(input_ls=input_ls, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + actual_result = parts_sums(input_ls) + # pylint: disable-msg=R0801 + with allure.step(f"Enter a list ls ({input_ls}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(input_ls=input_ls, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) # pylint: enable-msg=R0801 From edb8fe5bc4046afaa2434ad0ff088b3b5e2f6ae2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:41:10 -0800 Subject: [PATCH 642/873] Update test_odd_row.py --- kyu_6/row_of_the_odd_triangle/test_odd_row.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/row_of_the_odd_triangle/test_odd_row.py b/kyu_6/row_of_the_odd_triangle/test_odd_row.py index 3a3574fb9b6..253f963aae8 100644 --- a/kyu_6/row_of_the_odd_triangle/test_odd_row.py +++ b/kyu_6/row_of_the_odd_triangle/test_odd_row.py @@ -65,7 +65,7 @@ def test_odd_row(self, n, expected): with allure.step(f"Enter the triangle's row ({n}) " f"and verify the expected output ({expected}) " f"vs actual result ({actual_result})"): - # pylint: disable=R0801 + # pylint: disable=R0801 print_log(n=n, expected=expected, result=actual_result) self.assertEqual(expected, actual_result) - # pylint: disable=R0801 + # pylint: disable=R0801 From ec3629fc697f934d3f5620cf195e2b398406ca27 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 06:41:21 -0800 Subject: [PATCH 643/873] # Unique In Order --- kyu_6/unique_in_order/__init__.py | 1 + kyu_6/unique_in_order/test_unique_in_order.py | 94 +++++++++---------- kyu_6/unique_in_order/unique_in_order.py | 7 +- 3 files changed, 53 insertions(+), 49 deletions(-) diff --git a/kyu_6/unique_in_order/__init__.py b/kyu_6/unique_in_order/__init__.py index e69de29bb2d..7eb914d30ce 100644 --- a/kyu_6/unique_in_order/__init__.py +++ b/kyu_6/unique_in_order/__init__.py @@ -0,0 +1 @@ +"""Unique In Order.""" diff --git a/kyu_6/unique_in_order/test_unique_in_order.py b/kyu_6/unique_in_order/test_unique_in_order.py index c559aea68b7..fae5d7007dd 100644 --- a/kyu_6/unique_in_order/test_unique_in_order.py +++ b/kyu_6/unique_in_order/test_unique_in_order.py @@ -1,5 +1,6 @@ """ -Test for -> Unique In Order +Test for -> Unique In Order. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.unique_in_order.unique_in_order import unique_in_order @@ -27,13 +29,49 @@ name='Source/Kata') # pylint: enable-msg=R0801 class UniqueInOrderTestCase(unittest.TestCase): - """ - Testing the 'unique_in_order' function - """ - def test_unique_in_order(self): + """Testing the 'unique_in_order' function.""" + + @parameterized.expand([ + ('AAAABBBCCDAABBB', + ['A', 'B', 'C', 'D', 'A', 'B'], + 'Should reduce duplicates'), + ('ABBCcAD', + ['A', 'B', 'C', 'c', 'A', 'D'], + 'Should be case-sensitive'), + ([1, 2, 2, 3, 3], + [1, 2, 3], + 'Should work with different element types'), + ('ooooDDDDDdddddvOORRRRvvvFFFFpppppeeeeeppppIIIIssss' + 'NUUUUjjVVVVVVVnnnZfffffjjjYYYYYkkkOOOOTvvvMMMtttttdyyyyFFFFCVVVVNNNuuuuufffQQQQQfffiiii', + ['o', 'D', 'd', 'v', 'O', 'R', 'v', 'F', 'p', 'e', 'p', 'I', 's', 'N', 'U', 'j', 'V', 'n', 'Z', 'f', + 'j', 'Y', 'k', 'O', 'T', 'v', 'M', 't', 'd', 'y', 'F', 'C', 'V', 'N', 'u', 'f', 'Q', 'f', 'i'], + 'Should work with randomly generated sequence'), + ([-544706949, 1830150107, 1830150107, 1830150107, 1830150107, -1251355533, -1251355533, -1251355533, + -1251355533, -707089731, -707089731, -707089731, -707089731, 509047895, 509047895, 509047895, + 509047895, -1478087323, -1478087323, -1478087323, -1478087323, -1478087323, -1228474529, -1228474529, + -1228474529, -27169356, -27169356, -1573356849, 1825933760, 1825933760, -101353285, -960509376, + -960509376, -960509376, 1631449194, 1631449194, 1631449194, 1631449194, -701582506, -701582506, + -1257392178, -1257392178, -909724592, -909724592, -909724592, -909724592, -909724592, -1610827611, + 356483390, -721079729, -721079729, -721079729, -721079729, 327193119, 327193119, 327193119, 946667439, + 1773522857, -94646693, -94646693, -94646693, 1202235680, -1682985580, -1682985580, -1682985580, + -1682985580, -1682985580, -308066619, 807682642, 1886853360, 1165912447, -1816272783, -1816272783, + -1816272783, -1816272783, 2088008817, -2119157678, -2119157678, -2119157678, -2119157678, 1041981535, + 1041981535, 1041981535, 1041981535, 1041981535, 661938680, 661938680, 661938680, 661938680, 438934930, + 1442648715, 1442648715, 468638621, 468638621, 468638621, 258893461, -46757153, -46757153, 1997749513, + 1997749513, 1997749513, 1997749513, 78748495, 78748495, 78748495, 1555244045, 1506976994, 1506976994, + 1506976994, -804276632, -804276632, -804276632, -804276632, -804276632, -367750677, -733550250, + -733550250, -733550250, -733550250], + [-544706949, 1830150107, -1251355533, -707089731, 509047895, -1478087323, -1228474529, -27169356, + -1573356849, 1825933760, -101353285, -960509376, 1631449194, -701582506, -1257392178, -909724592, + -1610827611, 356483390, -721079729, 327193119, 946667439, 1773522857, -94646693, 1202235680, + -1682985580, -308066619, 807682642, 1886853360, 1165912447, -1816272783, 2088008817, -2119157678, + 1041981535, 661938680, 438934930, 1442648715, 468638621, 258893461, -46757153, 1997749513, 78748495, + 1555244045, 1506976994, -804276632, -367750677, -733550250], + 'Should work with randomly generated sequence')]) + def test_unique_in_order(self, test_data, expected, msg): """ - Testing the 'unique_in_order' function - with various test data + Testing the 'unique_in_order' function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -48,44 +86,6 @@ def test_unique_in_order(self): # pylint: enable-msg=R0801 # pylint: disable=line-too-long with allure.step("Pass test data and verify the output"): - data: tuple = ( - ('AAAABBBCCDAABBB', - ['A', 'B', 'C', 'D', 'A', 'B'], - 'Should reduce duplicates'), - ('ABBCcAD', - ['A', 'B', 'C', 'c', 'A', 'D'], - 'Should be case-sensitive'), - ([1, 2, 2, 3, 3], - [1, 2, 3], - 'Should work with different element types'), - ('ooooDDDDDdddddvOORRRRvvvFFFFpppppeeeeeppppIIIIssss' - 'NUUUUjjVVVVVVVnnnZfffffjjjYYYYYkkkOOOOTvvvMMMtttttdyyyyFFFFCVVVVNNNuuuuufffQQQQQfffiiii', - ['o', 'D', 'd', 'v', 'O', 'R', 'v', 'F', 'p', 'e', 'p', 'I', 's', 'N', 'U', 'j', 'V', 'n', 'Z', 'f', - 'j', 'Y', 'k', 'O', 'T', 'v', 'M', 't', 'd', 'y', 'F', 'C', 'V', 'N', 'u', 'f', 'Q', 'f', 'i'], - 'Should work with randomly generated sequence'), - ([-544706949, 1830150107, 1830150107, 1830150107, 1830150107, -1251355533, -1251355533, -1251355533, - -1251355533, -707089731, -707089731, -707089731, -707089731, 509047895, 509047895, 509047895, - 509047895, -1478087323, -1478087323, -1478087323, -1478087323, -1478087323, -1228474529, -1228474529, - -1228474529, -27169356, -27169356, -1573356849, 1825933760, 1825933760, -101353285, -960509376, - -960509376, -960509376, 1631449194, 1631449194, 1631449194, 1631449194, -701582506, -701582506, - -1257392178, -1257392178, -909724592, -909724592, -909724592, -909724592, -909724592, -1610827611, - 356483390, -721079729, -721079729, -721079729, -721079729, 327193119, 327193119, 327193119, 946667439, - 1773522857, -94646693, -94646693, -94646693, 1202235680, -1682985580, -1682985580, -1682985580, - -1682985580, -1682985580, -308066619, 807682642, 1886853360, 1165912447, -1816272783, -1816272783, - -1816272783, -1816272783, 2088008817, -2119157678, -2119157678, -2119157678, -2119157678, 1041981535, - 1041981535, 1041981535, 1041981535, 1041981535, 661938680, 661938680, 661938680, 661938680, 438934930, - 1442648715, 1442648715, 468638621, 468638621, 468638621, 258893461, -46757153, -46757153, 1997749513, - 1997749513, 1997749513, 1997749513, 78748495, 78748495, 78748495, 1555244045, 1506976994, 1506976994, - 1506976994, -804276632, -804276632, -804276632, -804276632, -804276632, -367750677, -733550250, - -733550250, -733550250, -733550250], - [-544706949, 1830150107, -1251355533, -707089731, 509047895, -1478087323, -1228474529, -27169356, - -1573356849, 1825933760, -101353285, -960509376, 1631449194, -701582506, -1257392178, -909724592, - -1610827611, 356483390, -721079729, 327193119, 946667439, 1773522857, -94646693, 1202235680, - -1682985580, -308066619, 807682642, 1886853360, 1165912447, -1816272783, 2088008817, -2119157678, - 1041981535, 661938680, 438934930, 1442648715, 468638621, 258893461, -46757153, 1997749513, 78748495, - 1555244045, 1506976994, -804276632, -367750677, -733550250], - 'Should work with randomly generated sequence')) # pylint: enable=line-too-long - for test_data, expected, msg in data: - print_log(iterable=test_data, expected=expected, msg=msg) - self.assertEqual(expected, unique_in_order(test_data), msg=msg) + print_log(iterable=test_data, expected=expected, msg=msg) + self.assertEqual(expected, unique_in_order(test_data), msg=msg) diff --git a/kyu_6/unique_in_order/unique_in_order.py b/kyu_6/unique_in_order/unique_in_order.py index 46f751bca55..66980de3e9b 100644 --- a/kyu_6/unique_in_order/unique_in_order.py +++ b/kyu_6/unique_in_order/unique_in_order.py @@ -1,5 +1,6 @@ """ -Test for -> Unique In Order +Test for -> Unique In Order. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def unique_in_order(iterable: Iterable) -> list: """ + Unique In Order. + Takes as argument a sequence and returns a list of items without any elements with the same value next to each other and preserving the original @@ -16,7 +19,7 @@ def unique_in_order(iterable: Iterable) -> list: :param iterable: :return: """ - result: List = [] + result: list = [] for i in iterable: if len(result) == 0 or i != result[-1]: result.append(i) From b553c773887f172aa171a8ccd6c333dff9f7ecfb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 06:44:46 -0800 Subject: [PATCH 644/873] Update test_sort_array.py --- kyu_6/sort_the_odd/test_sort_array.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/sort_the_odd/test_sort_array.py b/kyu_6/sort_the_odd/test_sort_array.py index f6770e5a9ef..aa4c4335550 100644 --- a/kyu_6/sort_the_odd/test_sort_array.py +++ b/kyu_6/sort_the_odd/test_sort_array.py @@ -62,6 +62,6 @@ def test_sort_array(self, source_array, expected): f"and verify the expected: {expected}" f"output vs actual result: {actual_result}."): print_log(source_array=source_array, - expected=expected, - result=actual_result) + expected=expected, + result=actual_result) self.assertListEqual(expected, actual_result) From 0695155d21697baf75daf8a5e81fa61892d41001 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 06:46:37 -0800 Subject: [PATCH 645/873] Update unique_in_order.py --- kyu_6/unique_in_order/unique_in_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/unique_in_order/unique_in_order.py b/kyu_6/unique_in_order/unique_in_order.py index 66980de3e9b..ac53167f7fa 100644 --- a/kyu_6/unique_in_order/unique_in_order.py +++ b/kyu_6/unique_in_order/unique_in_order.py @@ -5,7 +5,7 @@ GitHub: https://github.com/ikostan """ -from typing import Iterable, List +from typing import Iterable def unique_in_order(iterable: Iterable) -> list: From dbe5410276b2a65f57e574ba897353b210a5db27 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 06:53:24 -0800 Subject: [PATCH 646/873] Update test_unique_in_order.py --- kyu_6/unique_in_order/test_unique_in_order.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/unique_in_order/test_unique_in_order.py b/kyu_6/unique_in_order/test_unique_in_order.py index fae5d7007dd..6f6230eb204 100644 --- a/kyu_6/unique_in_order/test_unique_in_order.py +++ b/kyu_6/unique_in_order/test_unique_in_order.py @@ -31,6 +31,7 @@ class UniqueInOrderTestCase(unittest.TestCase): """Testing the 'unique_in_order' function.""" + # pylint: disable=line-too-long @parameterized.expand([ ('AAAABBBCCDAABBB', ['A', 'B', 'C', 'D', 'A', 'B'], @@ -68,6 +69,7 @@ class UniqueInOrderTestCase(unittest.TestCase): 1041981535, 661938680, 438934930, 1442648715, 468638621, 258893461, -46757153, 1997749513, 78748495, 1555244045, 1506976994, -804276632, -367750677, -733550250], 'Should work with randomly generated sequence')]) + # pylint: enable=line-too-long def test_unique_in_order(self, test_data, expected, msg): """ Testing the 'unique_in_order' function with various test data. @@ -84,8 +86,6 @@ def test_unique_in_order(self, test_data, expected, msg): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - # pylint: disable=line-too-long with allure.step("Pass test data and verify the output"): - # pylint: enable=line-too-long print_log(iterable=test_data, expected=expected, msg=msg) self.assertEqual(expected, unique_in_order(test_data), msg=msg) From 62d1e18b013d9a971602f547259bf891d19437ed Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:12:59 -0800 Subject: [PATCH 647/873] # Valid Braces --- kyu_6/valid_braces/__init__.py | 1 + kyu_6/valid_braces/test_valid_braces.py | 66 ++++++++++++------------- kyu_6/valid_braces/valid_braces.py | 15 +++--- 3 files changed, 40 insertions(+), 42 deletions(-) diff --git a/kyu_6/valid_braces/__init__.py b/kyu_6/valid_braces/__init__.py index e69de29bb2d..2416982f30e 100644 --- a/kyu_6/valid_braces/__init__.py +++ b/kyu_6/valid_braces/__init__.py @@ -0,0 +1 @@ +"""Valid Braces.""" diff --git a/kyu_6/valid_braces/test_valid_braces.py b/kyu_6/valid_braces/test_valid_braces.py index a027de60dab..2c41b068ca7 100644 --- a/kyu_6/valid_braces/test_valid_braces.py +++ b/kyu_6/valid_braces/test_valid_braces.py @@ -1,5 +1,6 @@ """ -Test for -> Valid Braces +Test for -> Valid Braces. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.valid_braces.valid_braces import valid_braces @@ -26,13 +28,33 @@ name='Source/Kata') # pylint: enable-msg=R0801 class ValidBracesTestCase(unittest.TestCase): - """ - Testing the 'valid_braces' function - """ - def test_valid_braces(self): + """Testing the 'valid_braces' function.""" + + @parameterized.expand([ + ("(){}[]", True), + ("([{}])", True), + ("(}", False), + ("[(])", False), + ("[({})](]", False), + ("()", True), + ("[]", True), + ("[(])", False), + ("{}", True), + ("{}()[]", True), + ("([{}])", True), + ("([}{])", False), + ("{}({})[]", True), + ("(({{[[]]}}))", True), + ("(((({{", False), + (")(}{][", False), + ("())({}}{()][][", False), + ("{}()[]", True), + ("([}{])", False), + ("{}({})[]", True)]) + def test_valid_braces(self, string, expected): """ - Testing the 'valid_braces' function - with various test data + Testing the 'valid_braces' function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -47,31 +69,7 @@ def test_valid_braces(self): # pylint: enable-msg=R0801 # pylint: disable=line-too-long with allure.step("Pass test data and verify the output"): - data: tuple = ( - ("(){}[]", True), - ("([{}])", True), - ("(}", False), - ("[(])", False), - ("[({})](]", False), - ("()", True), - ("[]", True), - ("[(])", False), - ("{}", True), - ("{}()[]", True), - ("([{}])", True), - ("([}{])", False), - ("{}({})[]", True), - ("(({{[[]]}}))", True), - ("(((({{", False), - (")(}{][", False), - ("())({}}{()][][", False), - ("{}()[]", True), - ("([}{])", False), - ("{}({})[]", True), - ) - # pylint: enable=line-too-long - for string, expected in data: - actual = valid_braces(string) - print_log(string=string, expected=expected, actual=actual) - self.assertEqual(expected, actual) + actual = valid_braces(string) + print_log(string=string, expected=expected, actual=actual) + self.assertEqual(expected, actual) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 8dfe03f68fb..41bc9019531 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -1,5 +1,6 @@ """ -Test for -> Valid Braces +Test for -> Valid Braces. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,14 +12,15 @@ '[': ']', ']': '[', '{': '}', - '}': '{', -} + '}': '{'} CLOSING: str = ')}]' def valid_braces(string: str) -> bool: """ + Valid braces. + A function that takes a string of braces, and determines if the order of the braces is valid. It should return true if the string is valid, and false if it's invalid. @@ -38,28 +40,25 @@ def valid_braces(string: str) -> bool: @typing.no_type_check def validate_next_pair(string: str, index: int) -> None | int: """ - Check if next pair of brackets is valid + Check if next pair of brackets is valid. + :param string: string of brackets :param index: current index to validate :return: next index or None if no matching brackets """ char: str = string[index] - # in the first half of the string a new pair # should not be starting from closing brackets if index < (len(string) // 2) and char in CLOSING: return None - # neighbor two brackets are matching pair if BRACES[char] == string[index + 1]: index += 2 return index - # matching pair consist of brackets # in each half of the string if BRACES[char] == string[(index + 1) * -1]: index += 1 return index - # no matching pair found return None From 168a6b0dd2df4f9f77d04df84993500988fe3dbe Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:18:45 -0800 Subject: [PATCH 648/873] # Vasya - Clerk --- kyu_6/vasya_clerk/__init__.py | 1 + kyu_6/vasya_clerk/test_tickets.py | 54 +++++++++++++------------------ kyu_6/vasya_clerk/tickets.py | 5 ++- 3 files changed, 28 insertions(+), 32 deletions(-) diff --git a/kyu_6/vasya_clerk/__init__.py b/kyu_6/vasya_clerk/__init__.py index e69de29bb2d..b69c6afdc0e 100644 --- a/kyu_6/vasya_clerk/__init__.py +++ b/kyu_6/vasya_clerk/__init__.py @@ -0,0 +1 @@ +"""Vasya - Clerk.""" diff --git a/kyu_6/vasya_clerk/test_tickets.py b/kyu_6/vasya_clerk/test_tickets.py index c6601ead184..9f26051f876 100644 --- a/kyu_6/vasya_clerk/test_tickets.py +++ b/kyu_6/vasya_clerk/test_tickets.py @@ -1,5 +1,6 @@ """ -Test for -> Vasya - Clerk +Test for -> Vasya - Clerk. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.vasya_clerk.tickets import tickets @@ -27,10 +29,24 @@ url='https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8', name='Source/Kata') class TicketsTestCase(unittest.TestCase): - """ - Testing tickets function - """ - def test_tickets(self): + """Testing tickets function.""" + + @parameterized.expand([ + ([25, 25, 50], 'YES', 'All good'), + ([25, 100], 'NO', + 'Vasya will not have enough money ' + 'to give change to 100 dollars'), + ([25, 25, 50, 50, 100], 'NO', + 'Vasya will not have the right bills ' + 'to give 75 dollars of change (you can\'t ' + 'make two bills of 25 from one of 50)'), + ([25, 50, 25, 100, 25, 25, 50, 100, 25, 25, 25, + 100, 25, 25, 50, 100, 25, 50, 25, 100, 25, 50, + 50, 50], 'NO', 'N/A'), + ([25, 25, 25, 100, 25, 25, 25, 100, 25, + 25, 50, 100, 25, 25, 50, 100, 50, 50], + 'NO', 'N/A')]) + def test_tickets(self, arr, expected, msg): """ Testing tickets function with various test inputs. @@ -64,29 +80,5 @@ def test_tickets(self): "

    ") # pylint: enable-msg=R0801 with allure.step("Enter test input (list) and verify the output"): - test_data: tuple = ( - ([25, 25, 50], - 'YES', - 'All good'), - ([25, 100], - 'NO', - 'Vasya will not have enough money ' - 'to give change to 100 dollars'), - ([25, 25, 50, 50, 100], - 'NO', - 'Vasya will not have the right bills ' - 'to give 75 dollars of change (you can\'t ' - 'make two bills of 25 from one of 50)'), - ([25, 50, 25, 100, 25, 25, 50, 100, 25, 25, 25, - 100, 25, 25, 50, 100, 25, 50, 25, 100, 25, 50, - 50, 50], - 'NO', - 'N/A'), - ([25, 25, 25, 100, 25, 25, 25, 100, 25, - 25, 50, 100, 25, 25, 50, 100, 50, 50], - 'NO', - 'N/A')) - - for arr, expected, msg in test_data: - print_log(people=arr, expected=expected, msg=msg) - self.assertEqual(expected, tickets(arr), msg) + print_log(people=arr, expected=expected, msg=msg) + self.assertEqual(expected, tickets(arr), msg) diff --git a/kyu_6/vasya_clerk/tickets.py b/kyu_6/vasya_clerk/tickets.py index a3bcdec74fa..959d18e4ac9 100644 --- a/kyu_6/vasya_clerk/tickets.py +++ b/kyu_6/vasya_clerk/tickets.py @@ -1,5 +1,6 @@ """ -Solution for -> Vasya - Clerk +Solution for -> Vasya - Clerk. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def tickets(people: list) -> str: """ + Tickets. + 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. From cd22053e3515e671f80533e9ba445232f1187df3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:22:14 -0800 Subject: [PATCH 649/873] # Who likes it --- kyu_6/who_likes_it/__init__.py | 1 + kyu_6/who_likes_it/likes_function.py | 5 +++- kyu_6/who_likes_it/test_likes_function.py | 33 ++++++++++++----------- 3 files changed, 22 insertions(+), 17 deletions(-) diff --git a/kyu_6/who_likes_it/__init__.py b/kyu_6/who_likes_it/__init__.py index e69de29bb2d..847d06cd0b7 100644 --- a/kyu_6/who_likes_it/__init__.py +++ b/kyu_6/who_likes_it/__init__.py @@ -0,0 +1 @@ +"""Who likes it.""" diff --git a/kyu_6/who_likes_it/likes_function.py b/kyu_6/who_likes_it/likes_function.py index 3da0dae4a09..cef01e652b6 100644 --- a/kyu_6/who_likes_it/likes_function.py +++ b/kyu_6/who_likes_it/likes_function.py @@ -1,5 +1,6 @@ """ -Solution for -> Who likes it? +Solution for -> Who likes it?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def likes(names: list) -> str: """ + Likes. + A function which must take in input array, containing the names of people who like an item. It must return the display text. diff --git a/kyu_6/who_likes_it/test_likes_function.py b/kyu_6/who_likes_it/test_likes_function.py index 8e94829d92f..d4444648ba8 100644 --- a/kyu_6/who_likes_it/test_likes_function.py +++ b/kyu_6/who_likes_it/test_likes_function.py @@ -1,5 +1,6 @@ """ -Test for -> likes function +Test for -> likes function. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.who_likes_it.likes_function import likes @@ -35,9 +37,18 @@ class LikesTestCase(unittest.TestCase): 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. """ - def test_likes_function(self): + + @parameterized.expand([ + ([], 'no one likes this'), + (['Peter'], 'Peter likes this'), + (['Jacob', 'Alex'], 'Jacob and Alex like this'), + (['Max', 'John', 'Mark'], 'Max, John and Mark like this'), + (['Alex', 'Jacob', 'Mark', 'Max'], + 'Alex, Jacob and 2 others like this')]) + def test_likes_function(self, names, expected): """ - Testing likes function with various test data + Testing likes function with various test data. + :return: """ # pylint: disable=R0801 @@ -53,19 +64,9 @@ def test_likes_function(self): "display text. For 4 or more names, the number in and 2 " "others simply increases.

    ") # pylint: enable=R0801 - test_data: tuple = ( - ([], 'no one likes this'), - (['Peter'], 'Peter likes this'), - (['Jacob', 'Alex'], 'Jacob and Alex like this'), - (['Max', 'John', 'Mark'], 'Max, John and Mark like this'), - (['Alex', 'Jacob', 'Mark', 'Max'], - 'Alex, Jacob and 2 others like this')) - with allure.step( "Enter a test data and verify the expected " "output vs actual result"): - - for names, expected in test_data: - actual_result = likes(names) - print_log(exp=expected, res=actual_result) - self.assertEqual(expected, actual_result) + actual_result = likes(names) + print_log(exp=expected, res=actual_result) + self.assertEqual(expected, actual_result) From 00be386110aff3f345e74a5659f65a64e2088ced Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:29:36 -0800 Subject: [PATCH 650/873] # Your order, please --- kyu_6/your_order_please/__init__.py | 1 + kyu_6/your_order_please/order.py | 3 +- kyu_6/your_order_please/test_order.py | 41 ++++++++++++--------------- 3 files changed, 21 insertions(+), 24 deletions(-) diff --git a/kyu_6/your_order_please/__init__.py b/kyu_6/your_order_please/__init__.py index e69de29bb2d..a2ee20d1714 100644 --- a/kyu_6/your_order_please/__init__.py +++ b/kyu_6/your_order_please/__init__.py @@ -0,0 +1 @@ +"""Your order, please.""" diff --git a/kyu_6/your_order_please/order.py b/kyu_6/your_order_please/order.py index 5ce6fca7a3a..578a57e60b1 100644 --- a/kyu_6/your_order_please/order.py +++ b/kyu_6/your_order_please/order.py @@ -1,5 +1,6 @@ """ -Solution for -> Your order, please +Solution for -> Your order, please. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ diff --git a/kyu_6/your_order_please/test_order.py b/kyu_6/your_order_please/test_order.py index 2501ff0292f..9a89e03dfd6 100644 --- a/kyu_6/your_order_please/test_order.py +++ b/kyu_6/your_order_please/test_order.py @@ -1,5 +1,6 @@ """ -Test for -> Your order, please +Test for -> Your order, please. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_6.your_order_please.order import order @@ -24,11 +26,18 @@ url='https://www.codewars.com/kata/55c45be3b2079eccff00010f', name='Source/Kata') class OrderTestCase(unittest.TestCase): - """ - Testing 'order' function - """ - def test_order(self): + """Testing 'order' function.""" + + @parameterized.expand([ + ("is2 Thi1s T4est 3a", + "Thi1s is2 3a T4est"), + ("4of Fo1r pe6ople g3ood th5e the2", + "Fo1r the2 g3ood 4of th5e pe6ople"), + ("", "")]) + def test_order(self, sentence, expected): """ + Testing 'order' function with various test data. + Your task is to verify that 'order' function sorts a given string by following rules: @@ -62,22 +71,8 @@ def test_order(self): 'The words in the input String will only contain valid consecutive ' 'numbers.

    ') # pylint: enable-msg=R0801 - test_data: tuple = ( - ("is2 Thi1s T4est 3a", - "Thi1s is2 3a T4est"), - ("4of Fo1r pe6ople g3ood th5e the2", - "Fo1r the2 g3ood 4of th5e pe6ople"), - ("", "")) - - for (sentence, expected) in test_data: - actual_result: str = order(sentence) - - with allure.step("Enter a string and verify the " + actual_result: str = order(sentence) + with allure.step("Enter a string and verify the " "expected output vs actual result"): - - print_log(sentence=sentence, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + print_log(sentence=sentence, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) From ccf04c4717cb47634f720ca2649e481fb2f0e302 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:31:52 -0800 Subject: [PATCH 651/873] Update test_order.py --- kyu_6/your_order_please/test_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/your_order_please/test_order.py b/kyu_6/your_order_please/test_order.py index 9a89e03dfd6..2bab1ddeed9 100644 --- a/kyu_6/your_order_please/test_order.py +++ b/kyu_6/your_order_please/test_order.py @@ -73,6 +73,6 @@ def test_order(self, sentence, expected): # pylint: enable-msg=R0801 actual_result: str = order(sentence) with allure.step("Enter a string and verify the " - "expected output vs actual result"): + "expected output vs actual result"): print_log(sentence=sentence, expected=expected, result=actual_result) self.assertEqual(expected, actual_result) From 54d428c312dca7015bcd4ec51a888212ee97ec81 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:32:24 -0800 Subject: [PATCH 652/873] Update test_order.py --- kyu_6/your_order_please/test_order.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_6/your_order_please/test_order.py b/kyu_6/your_order_please/test_order.py index 2bab1ddeed9..85da2b1c22d 100644 --- a/kyu_6/your_order_please/test_order.py +++ b/kyu_6/your_order_please/test_order.py @@ -51,7 +51,6 @@ def test_order(self, sentence, expected): 3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers. - :return: """ # pylint: disable-msg=R0801 From 0e67a55ec9e8cf653d125669714386ba04aba93d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:35:14 -0800 Subject: [PATCH 653/873] Update solution.py kyu_6/array_diff/solution.py:10 in public function `array_diff`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_6/array_diff/solution.py:10 in public function `array_diff`: D400: First line should end with a period (not 'e') The [first line of a] docstring is a phrase ending in a period. --- kyu_6/array_diff/solution.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/array_diff/solution.py b/kyu_6/array_diff/solution.py index aa96385c3e8..ff5a91ecbaa 100644 --- a/kyu_6/array_diff/solution.py +++ b/kyu_6/array_diff/solution.py @@ -8,9 +8,10 @@ def array_diff(a: list, b: list) -> list: """ + Array diff. + Difference function, which subtracts one list from another and returns the result. - :param a: list a :param b: list b :return: diff between a and b From f41ac82c8d52bd249392156ee6bb20af285dab6e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:39:53 -0800 Subject: [PATCH 654/873] Update solution.py --- kyu_6/encrypt_this/solution.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/encrypt_this/solution.py b/kyu_6/encrypt_this/solution.py index c9a96a103fe..46c36e08e1a 100644 --- a/kyu_6/encrypt_this/solution.py +++ b/kyu_6/encrypt_this/solution.py @@ -8,6 +8,8 @@ def encrypt_this(text: str) -> str: """ + Encrypt this. + Encrypts 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 From e7168bb158ec19c3535702eb81e853b5d4d5c550 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:43:03 -0800 Subject: [PATCH 655/873] Update string_transformer.py --- kyu_6/string_transformer/string_transformer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/string_transformer/string_transformer.py b/kyu_6/string_transformer/string_transformer.py index 7f2d7297575..44a1c99a267 100644 --- a/kyu_6/string_transformer/string_transformer.py +++ b/kyu_6/string_transformer/string_transformer.py @@ -8,7 +8,7 @@ def string_transformer(s: str) -> str: """ - String transformer. + Transform string. Given a string, return a new string that has transformed based on the input: From 5192b4f3caaf76646ffad05a317d9ee635b35c98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 18:52:42 +0000 Subject: [PATCH 656/873] Bump codecov/codecov-action from 5.1.1 to 5.1.2 in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.1.1 to 5.1.2. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.1.1...v5.1.2) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 72dc8b80a8d..2bf61934519 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -42,7 +42,7 @@ jobs: 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.1.1 + uses: codecov/codecov-action@v5.1.2 with: token: ${{ secrets.codecov_token }} files: coverage.xml From ae4fbac4413ce49e2b27b7d37bbaa8c1f347e3f4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:50:13 -0800 Subject: [PATCH 657/873] Update group_cities.py kyu_6/rotate_the_letters_of_each_element/group_cities.py:10 in public function `group_cities`: D401: First line should be in imperative mood (perhaps 'Group', not 'Grouping') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_6/rotate_the_letters_of_each_element/group_cities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/rotate_the_letters_of_each_element/group_cities.py b/kyu_6/rotate_the_letters_of_each_element/group_cities.py index fb8725ecda2..675f3a223b4 100644 --- a/kyu_6/rotate_the_letters_of_each_element/group_cities.py +++ b/kyu_6/rotate_the_letters_of_each_element/group_cities.py @@ -8,7 +8,7 @@ def group_cities(seq: list) -> list: """ - Grouping cities. + Group cities. A function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. From 535114f4bd407b63716dd6a992e5bd68cc5ba1db Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:52:19 -0800 Subject: [PATCH 658/873] Update thirt.py kyu_6/a_rule_of_divisibility_by_13/thirt.py:1 at module level: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_6/a_rule_of_divisibility_by_13/thirt.py:1 at module level: D400: First line should end with a period (not '3') The [first line of a] docstring is a phrase ending in a period. kyu_6/a_rule_of_divisibility_by_13/thirt.py:11 in public function `thirt`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_6/a_rule_of_divisibility_by_13/thirt.py:11 in public function `thirt`: D400: First line should end with a period (not 's') The [first line of a] docstring is a phrase ending in a period. kyu_6/a_rule_of_divisibility_by_13/thirt.py:11 in public function `thirt`: D401: First line should be in imperative mood; try rephrasing (found 'The') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". kyu_6/rotate_the_letters_of_each_element/group_cities.py:10 in public function `group_cities`: D401: First line should be in imperative mood (perhaps 'Group', not 'Grouping') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_6/a_rule_of_divisibility_by_13/thirt.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kyu_6/a_rule_of_divisibility_by_13/thirt.py b/kyu_6/a_rule_of_divisibility_by_13/thirt.py index c94eef2fa9c..3288a6ddfd2 100644 --- a/kyu_6/a_rule_of_divisibility_by_13/thirt.py +++ b/kyu_6/a_rule_of_divisibility_by_13/thirt.py @@ -1,5 +1,6 @@ """ -Solution for -> A Rule of Divisibility by 13 +Solution for -> A Rule of Divisibility by 13. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def thirt(n: int) -> int: """ + Rule of Divisibility by 13. + The function which processes this sequence of operations on an integer n (>=0). `thirt` will return the stationary number. :param n: int From 3f205f0fb28ed259b06d127aaddd5793b3daa98b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:56:01 -0800 Subject: [PATCH 659/873] Update epidemic_test_data.py --- kyu_6/disease_spread/epidemic_test_data.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kyu_6/disease_spread/epidemic_test_data.py b/kyu_6/disease_spread/epidemic_test_data.py index 3dfd59c0162..b9a1b872eed 100644 --- a/kyu_6/disease_spread/epidemic_test_data.py +++ b/kyu_6/disease_spread/epidemic_test_data.py @@ -10,6 +10,11 @@ class EpidemicTestData: """Epidemic Test Data Class.""" def __init__(self, **kwargs): + """ + Create a new EpidemicTestData instance. + + :param kwargs: + """ # tm, n, s0, i0, b, a, expected self.__tm = kwargs['tm'] self.__n = kwargs['n'] From 4f75ac3addbff9c9bb3365870109e8aac9ca45f6 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:56:45 -0800 Subject: [PATCH 660/873] Update solution.py --- kyu_6/sums_of_parts/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py index 61787ce07cb..38ca0cefa69 100644 --- a/kyu_6/sums_of_parts/solution.py +++ b/kyu_6/sums_of_parts/solution.py @@ -8,7 +8,7 @@ def parts_sums(input_ls: list) -> list: """ - Sums of Parts. + Sum of Parts. The function parts_sums will take as parameter a list input_ls and return a list of the sums of its parts. From 274a6404d3bc10160505461ee87234c086ed05a8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:57:57 -0800 Subject: [PATCH 661/873] Update sequence.py --- kyu_6/no_arithmetic_progressions/sequence.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kyu_6/no_arithmetic_progressions/sequence.py b/kyu_6/no_arithmetic_progressions/sequence.py index 5dda94e3d16..b0cbf3a64ce 100644 --- a/kyu_6/no_arithmetic_progressions/sequence.py +++ b/kyu_6/no_arithmetic_progressions/sequence.py @@ -16,16 +16,11 @@ def sequence(n: int) -> int: form an arithmetic progression. Example: - f(0) = 0 -- smallest non-negative - f(1) = 1 -- smallest non-negative, which is not yet in the sequence - f(2) = 3 -- since 0, 1, 2 form an arithmetic progression - f(3) = 4 -- neither of 0, 1, 4, 0, 3, 4, 1, 3, 4 form an arithmetic progression, so we can take smallest non-negative, which is larger than 3 - f(4) = 9 -- 5, 6, 7, 8 are not good, since 1, 3, 5, 0, 3, 6, 1, 4, 7, 0, 4, 8 are all valid arithmetic progressions. From 270a50e031cc8439fe3e62789a2da80b114ae773 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:00:27 -0800 Subject: [PATCH 662/873] Update sequence.py --- kyu_6/no_arithmetic_progressions/sequence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/no_arithmetic_progressions/sequence.py b/kyu_6/no_arithmetic_progressions/sequence.py index b0cbf3a64ce..3a53bcc3ee1 100644 --- a/kyu_6/no_arithmetic_progressions/sequence.py +++ b/kyu_6/no_arithmetic_progressions/sequence.py @@ -8,7 +8,7 @@ def sequence(n: int) -> int: """ - A function f(n), which returns the n-th member of sequence. + Function f(n), which returns the n-th member of sequence. Consider a sequence, which is formed by the following rule: next term is taken as the smallest possible non-negative integer, From 9dafa55ddb77cea54cbf051b6340c9f66c71c3e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:01:41 -0800 Subject: [PATCH 663/873] Update unique_in_order.py --- kyu_6/unique_in_order/unique_in_order.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_6/unique_in_order/unique_in_order.py b/kyu_6/unique_in_order/unique_in_order.py index ac53167f7fa..28bcd0ed73b 100644 --- a/kyu_6/unique_in_order/unique_in_order.py +++ b/kyu_6/unique_in_order/unique_in_order.py @@ -10,7 +10,7 @@ def unique_in_order(iterable: Iterable) -> list: """ - Unique In Order. + Make Unique In Order. Takes as argument a sequence and returns a list of items without any elements with the same value @@ -23,4 +23,5 @@ def unique_in_order(iterable: Iterable) -> list: for i in iterable: if len(result) == 0 or i != result[-1]: result.append(i) + return result From c74dcec2b40f207534a78d5d862de005327b4c2c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:02:16 -0800 Subject: [PATCH 664/873] Update order.py --- kyu_6/your_order_please/order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/your_order_please/order.py b/kyu_6/your_order_please/order.py index 578a57e60b1..84a112b8ca4 100644 --- a/kyu_6/your_order_please/order.py +++ b/kyu_6/your_order_please/order.py @@ -8,7 +8,7 @@ def order(sentence: str) -> str: """ - Sorts a given string by following rules: + Sort 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. From 1d66000cd2b77345cc1d86f075fe00ba19e61e0f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:03:55 -0800 Subject: [PATCH 665/873] Update sequence.py --- kyu_6/no_arithmetic_progressions/sequence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/no_arithmetic_progressions/sequence.py b/kyu_6/no_arithmetic_progressions/sequence.py index 3a53bcc3ee1..f65ad51edea 100644 --- a/kyu_6/no_arithmetic_progressions/sequence.py +++ b/kyu_6/no_arithmetic_progressions/sequence.py @@ -8,7 +8,7 @@ def sequence(n: int) -> int: """ - Function f(n), which returns the n-th member of sequence. + Return the n-th member of sequence. Consider a sequence, which is formed by the following rule: next term is taken as the smallest possible non-negative integer, From 70891e12529d9b7f748201a9f4d3437d9dd9a9d1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:06:16 -0800 Subject: [PATCH 666/873] Update default_list.py --- kyu_6/default_list/default_list.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_6/default_list/default_list.py b/kyu_6/default_list/default_list.py index c6b5f42d8a7..625adf06919 100644 --- a/kyu_6/default_list/default_list.py +++ b/kyu_6/default_list/default_list.py @@ -37,7 +37,7 @@ def __getitem__(self, i: int): def extend(self, items: list) -> None: """ - This class must also support the regular list functions: extend. + Support the regular list functions: extend. :param items: iterable :return: @@ -46,7 +46,7 @@ def extend(self, items: list) -> None: def append(self, item) -> None: """ - This class must also support the regular list functions: append. + Support the regular list functions: append. :param item: :return: @@ -55,7 +55,7 @@ def append(self, item) -> None: def pop(self, item): """ - This class must also support the regular list functions: pop. + Support the regular list functions: pop. :param item: :return: @@ -64,7 +64,7 @@ def pop(self, item): def remove(self, item) -> None: """ - This class must also support the regular list functions: remove. + Support the regular list functions: remove. :param item: :return: @@ -73,7 +73,7 @@ def remove(self, item) -> None: def insert(self, index: int, item) -> None: """ - This class must also support the regular list functions: insert. + Support the regular list functions: insert. :param index: :param item: From 6dd86f2504d679125e24adb388be5e2a79ceba12 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:08:37 -0800 Subject: [PATCH 667/873] Update order.py --- kyu_6/your_order_please/order.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kyu_6/your_order_please/order.py b/kyu_6/your_order_please/order.py index 84a112b8ca4..047e5888745 100644 --- a/kyu_6/your_order_please/order.py +++ b/kyu_6/your_order_please/order.py @@ -8,13 +8,11 @@ def order(sentence: str) -> str: """ - Sort a given string by following rules: + Sort a given string by rules listed below. 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. @@ -28,4 +26,5 @@ def order(sentence: str) -> str: if str(i) in word: results.append(word) break + return ' '.join(results) From 8e090ea975139266d6ff8f9ae7d6d5969349015f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:41:24 -0800 Subject: [PATCH 668/873] Update valid_braces.py --- kyu_6/valid_braces/valid_braces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/valid_braces/valid_braces.py b/kyu_6/valid_braces/valid_braces.py index 41bc9019531..2297f8b19fd 100644 --- a/kyu_6/valid_braces/valid_braces.py +++ b/kyu_6/valid_braces/valid_braces.py @@ -19,7 +19,7 @@ def valid_braces(string: str) -> bool: """ - Valid braces. + Validate braces. A function that takes a string of braces, and determines if the order of the braces is valid. It should return true if the string is valid, From 4c77fc62588a6ff82a45eb42d20d9a863503dd00 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:43:30 -0800 Subject: [PATCH 669/873] Recognition of string subpattern --- kyu_6/string_subpattern_recognition_1/has_subpattern.py | 2 +- kyu_6/string_subpattern_recognition_2/has_subpattern.py | 2 +- kyu_6/string_subpattern_recognition_3/has_subpattern.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_6/string_subpattern_recognition_1/has_subpattern.py b/kyu_6/string_subpattern_recognition_1/has_subpattern.py index 6ab6ff05fff..c186876cb8d 100644 --- a/kyu_6/string_subpattern_recognition_1/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_1/has_subpattern.py @@ -8,7 +8,7 @@ def has_subpattern(string: str) -> bool: """ - String subpattern recognition I. + Recognition of string subpattern I. In this kata you need to build a function to return either true/True or false/False if a string can be diff --git a/kyu_6/string_subpattern_recognition_2/has_subpattern.py b/kyu_6/string_subpattern_recognition_2/has_subpattern.py index afacabfe03d..093018c2e2e 100644 --- a/kyu_6/string_subpattern_recognition_2/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_2/has_subpattern.py @@ -11,7 +11,7 @@ def has_subpattern(string: str) -> bool: """ - String subpattern recognition II. + Recognition of string subpattern II. if a subpattern has been used, it will be repeated at least twice, meaning the subpattern has to be shorter than the original string; diff --git a/kyu_6/string_subpattern_recognition_3/has_subpattern.py b/kyu_6/string_subpattern_recognition_3/has_subpattern.py index 700d08cd958..0a4dbffa6f1 100644 --- a/kyu_6/string_subpattern_recognition_3/has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_3/has_subpattern.py @@ -10,7 +10,7 @@ def has_subpattern(string: str) -> str: """ - String subpattern recognition III. + Recognition of string subpattern III. Since there is no deterministic way to tell which pattern was really the original one among all the possible From 89950bc4ecfd2c1fce651ddddfd02541cb3654fa Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:46:34 -0800 Subject: [PATCH 670/873] Update test_calculate_damage.py --- kyu_6/pokemon_damage_calculator/test_calculate_damage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_6/pokemon_damage_calculator/test_calculate_damage.py b/kyu_6/pokemon_damage_calculator/test_calculate_damage.py index 1774010421b..c403c018af8 100644 --- a/kyu_6/pokemon_damage_calculator/test_calculate_damage.py +++ b/kyu_6/pokemon_damage_calculator/test_calculate_damage.py @@ -47,8 +47,8 @@ class CalculateDamageTestCase(unittest.TestCase): (("fire", "electric", 10, 2), 250)]) def test_calculate_damage(self, test_data, expected): """ - Testing calculate_damage with various test data: - damage = 50 * (attack / defense) * effectiveness + Testing calculate_damage with various test data. + :return: """ # pylint: disable-msg=R0801 From 360ee7ec2ad099c66921ad9580324e480c6a4020 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:48:22 -0800 Subject: [PATCH 671/873] Update solution.py kyu_6/format_string_of_names/test_namelist.py:1 at module level: D301: Use r""" if any backslashes in a docstring Use r"""raw triple double quotes""" if you use any backslashes (\) in your docstrings. Exceptions are backslashes for line-continuation and unicode escape sequences \N... and \u... These are considered intended unescaped content in docstrings. kyu_6/format_string_of_names/solution.py:1 at module level: D301: Use r""" if any backslashes in a docstring Use r"""raw triple double quotes""" if you use any backslashes (\) in your docstrings. Exceptions are backslashes for line-continuation and unicode escape sequences \N... and \u... These are considered intended unescaped content in docstrings. --- kyu_6/format_string_of_names/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/format_string_of_names/solution.py b/kyu_6/format_string_of_names/solution.py index 48d060200d6..5fb9e3f9fea 100644 --- a/kyu_6/format_string_of_names/solution.py +++ b/kyu_6/format_string_of_names/solution.py @@ -1,5 +1,5 @@ """ -Solution for -> Format a string of names like \'Bart, Lisa & Maggie\'. +Solution for -> Format a string of names like 'Bart, Lisa & Maggie'. Created by Egor Kostan. GitHub: https://github.com/ikostan From 8eebd8195d09d4c4ae610072921005f810ae6a55 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:50:18 -0800 Subject: [PATCH 672/873] Update test_likes_function.py kyu_6/who_likes_it/test_likes_function.py:33 in public class `LikesTestCase`: D400: First line should end with a period (not 'n') The [first line of a] docstring is a phrase ending in a period. --- kyu_6/who_likes_it/test_likes_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/who_likes_it/test_likes_function.py b/kyu_6/who_likes_it/test_likes_function.py index d4444648ba8..a9ee5f536f6 100644 --- a/kyu_6/who_likes_it/test_likes_function.py +++ b/kyu_6/who_likes_it/test_likes_function.py @@ -31,7 +31,7 @@ # pylint: enable=R0801 class LikesTestCase(unittest.TestCase): """ - Testing likes function + Testing likes function. The function should take in input array, containing the names of people who like an item. It must return the display text. From 52ba64dfa725ec86ecab900344552e9804278aad Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:51:12 -0800 Subject: [PATCH 673/873] Update test_namelist.py kyu_6/format_string_of_names/test_namelist.py:1 at module level: D301: Use r""" if any backslashes in a docstring Use r"""raw triple double quotes""" if you use any backslashes (\) in your docstrings. Exceptions are backslashes for line-continuation and unicode escape sequences \N... and \u... These are considered intended unescaped content in docstrings. --- kyu_6/format_string_of_names/test_namelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/format_string_of_names/test_namelist.py b/kyu_6/format_string_of_names/test_namelist.py index 5ebeb2495ec..8c92df26734 100644 --- a/kyu_6/format_string_of_names/test_namelist.py +++ b/kyu_6/format_string_of_names/test_namelist.py @@ -1,5 +1,5 @@ """ -Test for -> Format a string of names like \'Bart, Lisa & Maggie\'. +Test for -> Format a string of names like 'Bart, Lisa & Maggie'. Created by Egor Kostan. GitHub: https://github.com/ikostan From 5136bf56a0bc026588be3930acb995d5bf112c8a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 06:02:27 -0800 Subject: [PATCH 674/873] Update test_list_to_html_table.py No name 'to_table' in module 'kyu_6.array_to_html_table' kyu_6/array_to_html_table/ test_list_to_html_table.py 10 import allure 11 from utils.log_func import print_log 12 from kyu_6.array_to_html_table.to_table import to_table 13 Time to fix: 5 minutes no-name-in-module (E0611) Why is this an issue? No name %r in module %r Used when a name cannot be found in a module. --- kyu_6/array_to_html_table/test_list_to_html_table.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index b33450ce1b7..0ebd52ad415 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -10,7 +10,9 @@ import unittest import allure from utils.log_func import print_log +# pylint: disable = no-name-in-module from kyu_6.array_to_html_table.to_table import to_table +# pylint: enable = no-name-in-module @allure.epic('6 kyu') From ddfcd250e3185f3f7edff39a0b6fe1e656d1c9f7 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 06:26:46 -0800 Subject: [PATCH 675/873] Update test_likes_function.py --- kyu_6/who_likes_it/test_likes_function.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/who_likes_it/test_likes_function.py b/kyu_6/who_likes_it/test_likes_function.py index a9ee5f536f6..b0826ee4135 100644 --- a/kyu_6/who_likes_it/test_likes_function.py +++ b/kyu_6/who_likes_it/test_likes_function.py @@ -11,7 +11,9 @@ import allure from parameterized import parameterized from utils.log_func import print_log +# pylint: disable = no-name-in-module from kyu_6.who_likes_it.likes_function import likes +# pylint: enable = no-name-in-module # pylint: disable=R0801 From 9ce726e85ab3be1a31c74df2f1899587a23f626f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 07:18:53 -0800 Subject: [PATCH 676/873] Default list --- kyu_6/default_list/default_list.py | 26 +++++++++++-- kyu_6/default_list/test_default_list.py | 52 +++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 3 deletions(-) diff --git a/kyu_6/default_list/default_list.py b/kyu_6/default_list/default_list.py index 625adf06919..160fa9f544b 100644 --- a/kyu_6/default_list/default_list.py +++ b/kyu_6/default_list/default_list.py @@ -53,14 +53,26 @@ def append(self, item) -> None: """ self.__lst.append(item) - def pop(self, item): + def pop(self, index=None): """ Support the regular list functions: pop. - :param item: + :param index: :return: """ - return self.__lst.pop(item) + # Return default value when list is empty or None + if not self.__lst: + return self.__default_value + + # Return default value when no index is 0 and list is not empty + if index == 0 and self.__lst: + return self.__lst.pop(index) + + # Return default value when no index + list is not empty + if not index and self.__lst: + return self.__lst.pop(-1) + + return self.__lst.pop(index) def remove(self, item) -> None: """ @@ -80,3 +92,11 @@ def insert(self, index: int, item) -> None: :return: """ self.__lst.insert(index, item) + + def __repr__(self) -> str: + """ + Provide a readable, human-friendly string representation of the object. + + :return: + """ + return f"lst: {self.__lst}, default: {self.__default_value}" diff --git a/kyu_6/default_list/test_default_list.py b/kyu_6/default_list/test_default_list.py index ed5a1dd01c4..fa3d7cba35e 100644 --- a/kyu_6/default_list/test_default_list.py +++ b/kyu_6/default_list/test_default_list.py @@ -290,3 +290,55 @@ def test_default_list_pop(self): actual = lst[i] print_log(lst=lst, i=i, expected=expected_str, actual=actual) self.assertEqual(expected_str, actual) + + with allure.step("Pop first item and verify the result"): + i = 0 + expected_str = 4 + actual = lst[i] + print_log(lst=lst, i=i, expected=expected_str, actual=actual) + self.assertEqual(expected_str, actual) + + def test_default_list_edge_cases_pop(self): + """ + Testing 'DefaultList' class: pop. + + Tests regular pop operations and edge case of popping from empty list. + :return: + """ + # pylint: disable-msg=R0801 + allure.dynamic.title("Testing 'DefaultList' class: edge cases for pop") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

    Codewars badge:

    ' + '' + '

    Test Description:

    ' + "

    Testing edge cases for pop method.

    ") + # pylint: enable-msg=R0801 + with allure.step("Create a default/empty list:"): + default_value = 'default' + empty_list = DefaultList([], default_value) + + with allure.step("Test popping from empty list without index:"): + actual = empty_list.pop() + print_log(lst=empty_list, i=None, expected=default_value, actual=actual) + self.assertEqual(default_value, actual) + + with allure.step("Test popping from empty list with index:"): + actual = empty_list.pop(0) + print_log(lst=empty_list, i=0, expected=default_value, actual=actual) + self.assertEqual(default_value, actual) + + with allure.step("Test popping from list with elements:"): + test_list = DefaultList([1, 2, 3], default_value) + + with allure.step("Test popping from list with elements and no index:"): + actual = test_list.pop() + print_log(lst=test_list, i=None, expected=3, actual=actual) + self.assertEqual(3, actual) + + with allure.step("Test popping from list with elements and index:"): + actual = test_list.pop(0) + print(test_list) + print_log(lst=test_list, i=0, expected=1, actual=actual) + self.assertEqual(1, actual) From 4242c0ebd353f3bb85609a82d923ea15f70f7d53 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 07:20:31 -0800 Subject: [PATCH 677/873] Update test_default_list.py --- kyu_6/default_list/test_default_list.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_6/default_list/test_default_list.py b/kyu_6/default_list/test_default_list.py index fa3d7cba35e..ab373daaa20 100644 --- a/kyu_6/default_list/test_default_list.py +++ b/kyu_6/default_list/test_default_list.py @@ -339,6 +339,5 @@ def test_default_list_edge_cases_pop(self): with allure.step("Test popping from list with elements and index:"): actual = test_list.pop(0) - print(test_list) print_log(lst=test_list, i=0, expected=1, actual=actual) self.assertEqual(1, actual) From 047f6074aed09be8273b22b7b23014fac950c0bc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:43:40 -0800 Subject: [PATCH 678/873] Update test_default_list.py --- kyu_6/default_list/test_default_list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_6/default_list/test_default_list.py b/kyu_6/default_list/test_default_list.py index ab373daaa20..56e91185a7a 100644 --- a/kyu_6/default_list/test_default_list.py +++ b/kyu_6/default_list/test_default_list.py @@ -293,10 +293,10 @@ def test_default_list_pop(self): with allure.step("Pop first item and verify the result"): i = 0 - expected_str = 4 + expected = 4 actual = lst[i] - print_log(lst=lst, i=i, expected=expected_str, actual=actual) - self.assertEqual(expected_str, actual) + print_log(lst=lst, i=i, expected=expected, actual=actual) + self.assertEqual(expected, actual) def test_default_list_edge_cases_pop(self): """ From 0ef885f2363487e587821461a508e879e4101c59 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:47:56 -0800 Subject: [PATCH 679/873] Update test_order.py --- kyu_6/your_order_please/test_order.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/kyu_6/your_order_please/test_order.py b/kyu_6/your_order_please/test_order.py index 85da2b1c22d..c126b34d398 100644 --- a/kyu_6/your_order_please/test_order.py +++ b/kyu_6/your_order_please/test_order.py @@ -41,16 +41,16 @@ def test_order(self, sentence, expected): 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. + 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). + 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. + 3. If the input string is empty, return an empty string. + The words in the input String will only contain valid + consecutive numbers. :return: """ # pylint: disable-msg=R0801 From 85706b46c17b06665407494a2899e36296b1198f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:53:02 -0800 Subject: [PATCH 680/873] Edge cases --- kyu_6/default_list/test_default_list.py | 44 ------------- kyu_6/default_list/test_edge_case_list.py | 75 +++++++++++++++++++++++ 2 files changed, 75 insertions(+), 44 deletions(-) create mode 100644 kyu_6/default_list/test_edge_case_list.py diff --git a/kyu_6/default_list/test_default_list.py b/kyu_6/default_list/test_default_list.py index 56e91185a7a..6019dd54bc0 100644 --- a/kyu_6/default_list/test_default_list.py +++ b/kyu_6/default_list/test_default_list.py @@ -297,47 +297,3 @@ def test_default_list_pop(self): actual = lst[i] print_log(lst=lst, i=i, expected=expected, actual=actual) self.assertEqual(expected, actual) - - def test_default_list_edge_cases_pop(self): - """ - Testing 'DefaultList' class: pop. - - Tests regular pop operations and edge case of popping from empty list. - :return: - """ - # pylint: disable-msg=R0801 - allure.dynamic.title("Testing 'DefaultList' class: edge cases for pop") - allure.dynamic.severity(allure.severity_level.NORMAL) - allure.dynamic.description_html( - '

    Codewars badge:

    ' - '' - '

    Test Description:

    ' - "

    Testing edge cases for pop method.

    ") - # pylint: enable-msg=R0801 - with allure.step("Create a default/empty list:"): - default_value = 'default' - empty_list = DefaultList([], default_value) - - with allure.step("Test popping from empty list without index:"): - actual = empty_list.pop() - print_log(lst=empty_list, i=None, expected=default_value, actual=actual) - self.assertEqual(default_value, actual) - - with allure.step("Test popping from empty list with index:"): - actual = empty_list.pop(0) - print_log(lst=empty_list, i=0, expected=default_value, actual=actual) - self.assertEqual(default_value, actual) - - with allure.step("Test popping from list with elements:"): - test_list = DefaultList([1, 2, 3], default_value) - - with allure.step("Test popping from list with elements and no index:"): - actual = test_list.pop() - print_log(lst=test_list, i=None, expected=3, actual=actual) - self.assertEqual(3, actual) - - with allure.step("Test popping from list with elements and index:"): - actual = test_list.pop(0) - print_log(lst=test_list, i=0, expected=1, actual=actual) - self.assertEqual(1, actual) diff --git a/kyu_6/default_list/test_edge_case_list.py b/kyu_6/default_list/test_edge_case_list.py new file mode 100644 index 00000000000..2849da5d7fa --- /dev/null +++ b/kyu_6/default_list/test_edge_case_list.py @@ -0,0 +1,75 @@ +""" +Test for edge case -> DefaultList. + +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + +# FUNDAMENTALS CLASSES BASIC LANGUAGE FEATURES +# OBJECT-ORIENTED PROGRAMMING + +import unittest +import allure +from utils.log_func import print_log +from kyu_6.default_list.default_list import DefaultList + + +@allure.epic('6 kyu') +@allure.parent_suite('Novice') +@allure.suite("Object-Oriented Programming") +@allure.sub_suite("Unit Tests") +@allure.feature("Classes") +@allure.story('DefaultList') +@allure.tag('FUNDAMENTALS', + 'CLASSES', + 'BASIC LANGUAGE FEATURES', + 'OBJECT-ORIENTED PROGRAMMING') +@allure.link( + url='https://www.codewars.com/kata/5e882048999e6c0023412908', + name='Source/Kata') +class EdgeCaseListTestCase(unittest.TestCase): + """Testing 'DefaultList' class with edge cases.""" + + def test_default_list_edge_cases_pop(self): + """ + Testing 'DefaultList' class: pop. + + Tests regular pop operations and edge case of popping from empty list. + :return: + """ + # pylint: disable-msg=R0801 + allure.dynamic.title("Testing 'DefaultList' class: edge cases for pop") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + '

    Codewars badge:

    ' + '' + '

    Test Description:

    ' + "

    Testing edge cases for pop method.

    ") + # pylint: enable-msg=R0801 + with allure.step("Create a default/empty list:"): + default_value = 'default' + empty_list = DefaultList([], default_value) + + with allure.step("Test popping from empty list without index:"): + actual = empty_list.pop() + print_log(lst=empty_list, i=None, expected=default_value, actual=actual) + self.assertEqual(default_value, actual) + + with allure.step("Test popping from empty list with index:"): + actual = empty_list.pop(0) + print_log(lst=empty_list, i=0, expected=default_value, actual=actual) + self.assertEqual(default_value, actual) + + with allure.step("Test popping from list with elements:"): + test_list = DefaultList([1, 2, 3], default_value) + + with allure.step("Test popping from list with elements and no index:"): + actual = test_list.pop() + print_log(lst=test_list, i=None, expected=3, actual=actual) + self.assertEqual(3, actual) + + with allure.step("Test popping from list with elements and index:"): + actual = test_list.pop(0) + print_log(lst=test_list, i=0, expected=1, actual=actual) + self.assertEqual(1, actual) From 160e6b29fc782a61d24fab20e30aaa1eb5b80174 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:57:08 -0800 Subject: [PATCH 681/873] Update test_edge_case_list.py --- kyu_6/default_list/test_edge_case_list.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/default_list/test_edge_case_list.py b/kyu_6/default_list/test_edge_case_list.py index 2849da5d7fa..2bccb04a64a 100644 --- a/kyu_6/default_list/test_edge_case_list.py +++ b/kyu_6/default_list/test_edge_case_list.py @@ -14,6 +14,7 @@ from kyu_6.default_list.default_list import DefaultList +# pylint: disable=duplicate-code @allure.epic('6 kyu') @allure.parent_suite('Novice') @allure.suite("Object-Oriented Programming") @@ -29,6 +30,7 @@ name='Source/Kata') class EdgeCaseListTestCase(unittest.TestCase): """Testing 'DefaultList' class with edge cases.""" + # pylint: enable=duplicate-code def test_default_list_edge_cases_pop(self): """ From ec4d39ba9d72a5aef93d34ee2113851417a907ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:59:24 -0800 Subject: [PATCH 682/873] Update tickets.py --- kyu_6/vasya_clerk/tickets.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_6/vasya_clerk/tickets.py b/kyu_6/vasya_clerk/tickets.py index 959d18e4ac9..62fbc5d7fa2 100644 --- a/kyu_6/vasya_clerk/tickets.py +++ b/kyu_6/vasya_clerk/tickets.py @@ -10,11 +10,11 @@ def tickets(people: list) -> str: """ Tickets. - Return YES, if Vasya can sell a ticket to every + 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. - :param people: - :return: + hand at that moment. Otherwise, return 'NO'. + :param people: list + :return: str """ vasya: list = [] From 34a3d2b0b2bc6f17fba7e5ff641eb74a7d324f22 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:07:00 -0800 Subject: [PATCH 683/873] Update test_stock_list.py suggestion (testing): Consider adding a test case with duplicate categories in the stock list. This would ensure the function correctly handles scenarios where multiple books belong to the same category. --- kyu_6/help_the_bookseller/test_stock_list.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kyu_6/help_the_bookseller/test_stock_list.py b/kyu_6/help_the_bookseller/test_stock_list.py index 89f8e6a4282..62576109164 100644 --- a/kyu_6/help_the_bookseller/test_stock_list.py +++ b/kyu_6/help_the_bookseller/test_stock_list.py @@ -29,6 +29,9 @@ class StockListTestCase(unittest.TestCase): """Testing stock_list function.""" @parameterized.expand([ + ([], ['B', 'R', 'D', 'X'], ''), + (['BKWRK 125', 'BTSQZ 239', 'BBART 350', 'DRTYM 060'], + ['B', 'D'], '(B : 714) - (D : 60)'), (["ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"], ["A", "B"], "(A : 200) - (B : 1140)"), (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], @@ -58,7 +61,7 @@ def test_stock_list(self, list_of_art, list_of_cat, expected): '' '

    Test Description:

    ' - "

    You will be given a stocklist (e.g. : L) and a list of " + "

    You will be given a stock-list (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 " From d5763ded94aab62b42658b78dbe5ad4e38e33f91 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:12:12 -0800 Subject: [PATCH 684/873] Update test_stock_list.py --- kyu_6/help_the_bookseller/test_stock_list.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kyu_6/help_the_bookseller/test_stock_list.py b/kyu_6/help_the_bookseller/test_stock_list.py index 62576109164..cd963e5ec86 100644 --- a/kyu_6/help_the_bookseller/test_stock_list.py +++ b/kyu_6/help_the_bookseller/test_stock_list.py @@ -29,9 +29,6 @@ class StockListTestCase(unittest.TestCase): """Testing stock_list function.""" @parameterized.expand([ - ([], ['B', 'R', 'D', 'X'], ''), - (['BKWRK 125', 'BTSQZ 239', 'BBART 350', 'DRTYM 060'], - ['B', 'D'], '(B : 714) - (D : 60)'), (["ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"], ["A", "B"], "(A : 200) - (B : 1140)"), (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], @@ -46,7 +43,9 @@ class StockListTestCase(unittest.TestCase): (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R'], '(U : 0) - (V : 0) - (R : 225)'), - ([], ['B', 'R', 'D', 'X'], '')]) + ([], ['B', 'R', 'D', 'X'], ''), + (['BKWRK 125', 'BTSQZ 239', 'BBART 350', 'DRTYM 060'], + ['B', 'D'], '(B : 714) - (D : 60)')]) def test_stock_list(self, list_of_art, list_of_cat, expected): """ Testing stock_list function with various test data. From 8f7dce0829a61b9892accfa6bcdb240a2fb61011 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:14:45 -0800 Subject: [PATCH 685/873] Update test_edge_case_list.py --- kyu_6/default_list/test_edge_case_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/default_list/test_edge_case_list.py b/kyu_6/default_list/test_edge_case_list.py index 2bccb04a64a..520a7993a17 100644 --- a/kyu_6/default_list/test_edge_case_list.py +++ b/kyu_6/default_list/test_edge_case_list.py @@ -30,8 +30,8 @@ name='Source/Kata') class EdgeCaseListTestCase(unittest.TestCase): """Testing 'DefaultList' class with edge cases.""" - # pylint: enable=duplicate-code + # pylint: enable=duplicate-code def test_default_list_edge_cases_pop(self): """ Testing 'DefaultList' class: pop. From 12eb620cbccece2d2cbba380d1aa62221b0de43d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 00:38:32 -0800 Subject: [PATCH 686/873] Update __init__.py --- kyu_7/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_7/__init__.py b/kyu_7/__init__.py index e69de29bb2d..57cf1c057ce 100644 --- a/kyu_7/__init__.py +++ b/kyu_7/__init__.py @@ -0,0 +1 @@ +"""7 kyu - Beginner.""" From ea443aaec4f7b9e0ac9a6e4adb2f5e4367ca28fd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 00:42:44 -0800 Subject: [PATCH 687/873] # Always perfect --- kyu_7/always_perfect/__init__.py | 1 + kyu_7/always_perfect/check_root.py | 5 +++- kyu_7/always_perfect/test_check_root.py | 35 ++++++++++++------------- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/kyu_7/always_perfect/__init__.py b/kyu_7/always_perfect/__init__.py index e69de29bb2d..d006d53914d 100644 --- a/kyu_7/always_perfect/__init__.py +++ b/kyu_7/always_perfect/__init__.py @@ -0,0 +1 @@ +"""Always perfect.""" diff --git a/kyu_7/always_perfect/check_root.py b/kyu_7/always_perfect/check_root.py index 44aa145d091..579c16e45c6 100644 --- a/kyu_7/always_perfect/check_root.py +++ b/kyu_7/always_perfect/check_root.py @@ -1,5 +1,6 @@ """ -Solution for -> Always perfect +Solution for -> Always perfect. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -10,6 +11,8 @@ def check_root(string: str) -> str: """ + Check root. + 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. diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index d63dcf6cb8b..17af30585b5 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -1,5 +1,6 @@ """ -Test for -> Always perfect +Test for -> Always perfect. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.always_perfect.check_root import check_root @@ -32,13 +34,18 @@ name='Source/Kata') # pylint: enable-msg=R0801 class CheckRootTestCase(unittest.TestCase): - """ - Testing check_root function - """ + """Testing check_root function.""" - def test_check_root(self): + @parameterized.expand([ + ('4,5,6,7', '841, 29'), + ('3,s,5,6', 'incorrect input'), + ('11,13,14,15', 'not consecutive'), + ('10,11,12,13,15', 'incorrect input'), + ('10,11,12,13', '17161, 131'), + ('*-3,-2,-1,0', 'incorrect input')]) + def test_check_root(self,string, expected): """ - Testing check_root function with various test inputs + Testing check_root function with various test inputs. A function which takes numbers separated by commas in string format and returns the number which is a @@ -62,15 +69,7 @@ def test_check_root(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ('4,5,6,7', '841, 29'), - ('3,s,5,6', 'incorrect input'), - ('11,13,14,15', 'not consecutive'), - ('10,11,12,13,15', 'incorrect input'), - ('10,11,12,13', '17161, 131'), - ('*-3,-2,-1,0', 'incorrect input')) - - for string, expected in test_data: - print_log(string=string, expected=expected) - self.assertEqual(expected, check_root(string)) + with allure.step(f"Enter test string: {string} " + f"and verify the output: {expected}."): + print_log(string=string, expected=expected) + self.assertEqual(expected, check_root(string)) From 5d58bf6b11b8fc73299de92c0db1264bdc07f9d1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:00:24 -0800 Subject: [PATCH 688/873] # Basic Math (Add or Subtract) --- kyu_7/basic_math_add_or_subtract/__init__.py | 1 + kyu_7/basic_math_add_or_subtract/calculate.py | 6 ++- .../test_calculate.py | 39 ++++++++----------- 3 files changed, 22 insertions(+), 24 deletions(-) diff --git a/kyu_7/basic_math_add_or_subtract/__init__.py b/kyu_7/basic_math_add_or_subtract/__init__.py index e69de29bb2d..e7333b17d9d 100644 --- a/kyu_7/basic_math_add_or_subtract/__init__.py +++ b/kyu_7/basic_math_add_or_subtract/__init__.py @@ -0,0 +1 @@ +"""Basic Math (Add or Subtract).""" diff --git a/kyu_7/basic_math_add_or_subtract/calculate.py b/kyu_7/basic_math_add_or_subtract/calculate.py index a94d40cc896..1725ea52e98 100644 --- a/kyu_7/basic_math_add_or_subtract/calculate.py +++ b/kyu_7/basic_math_add_or_subtract/calculate.py @@ -1,5 +1,6 @@ """ -Solution for -> Basic Math (Add or Subtract) +Solution for -> Basic Math (Add or Subtract). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -11,7 +12,8 @@ def calculate(s: str) -> str: """ - Perform addition and subtraction on a given string + Perform addition and subtraction on a given string. + :param s: str :return: str """ diff --git a/kyu_7/basic_math_add_or_subtract/test_calculate.py b/kyu_7/basic_math_add_or_subtract/test_calculate.py index 97098b18427..91dbbb8663d 100644 --- a/kyu_7/basic_math_add_or_subtract/test_calculate.py +++ b/kyu_7/basic_math_add_or_subtract/test_calculate.py @@ -1,5 +1,6 @@ """ -Test for -> Basic Math (Add or Subtract) +Test for -> Basic Math (Add or Subtract). + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from kyu_7.basic_math_add_or_subtract.calculate import calculate from utils.log_func import print_log @@ -26,13 +28,16 @@ name='Source/Kata') # pylint: enable-msg=R0801 class CalculateTestCase(unittest.TestCase): - """ - Testing calculate function - """ + """Testing calculate function.""" - def test_calculate(self): + @parameterized.expand([ + ('1plus2plus3plus4', '10'), + ('1minus2minus3minus4', '-8'), + ('1plus2plus3minus4', '2')]) + def test_calculate(self, s, expected): """ - Testing calculate function with various test data + Testing calculate function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -46,21 +51,11 @@ def test_calculate(self): "

    In this kata, you will do addition and subtraction " "on a given string. The return value must be also a " "string.

    ") - # pylint: enable-msg=R0801 - test_data: tuple = ( - ('1plus2plus3plus4', '10'), - ('1minus2minus3minus4', '-8'), - ('1plus2plus3minus4', '2')) - for s, expected in test_data: - # pylint: disable-msg=R0801 - actual_result = calculate(s) - with allure.step(f"Enter string ({s}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - print_log(s=s, - expected=expected, - result=actual_result) + actual_result = calculate(s) + with allure.step(f"Enter string ({s}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(s=s, expected=expected, result=actual_result) # pylint: enable-msg=R0801 - self.assertEqual(expected, - actual_result) + self.assertEqual(expected, actual_result) From e326058fb9d495ccf5717026c1987d5e2e522c71 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:08:04 -0800 Subject: [PATCH 689/873] # Beginner Series #3 Sum of Numbers --- kyu_7/beginner_series_sum_of_numbers/__init__.py | 1 + .../sum_of_numbers.py | 6 +++++- .../test_sum_of_numbers.py | 16 +++++++++------- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/kyu_7/beginner_series_sum_of_numbers/__init__.py b/kyu_7/beginner_series_sum_of_numbers/__init__.py index e69de29bb2d..4607db93807 100644 --- a/kyu_7/beginner_series_sum_of_numbers/__init__.py +++ b/kyu_7/beginner_series_sum_of_numbers/__init__.py @@ -0,0 +1 @@ +"""Beginner Series #3 Sum of Numbers.""" diff --git a/kyu_7/beginner_series_sum_of_numbers/sum_of_numbers.py b/kyu_7/beginner_series_sum_of_numbers/sum_of_numbers.py index 4fc7214c8bb..746cb759568 100644 --- a/kyu_7/beginner_series_sum_of_numbers/sum_of_numbers.py +++ b/kyu_7/beginner_series_sum_of_numbers/sum_of_numbers.py @@ -1,5 +1,6 @@ """ -Beginner Series #3 Sum of Numbers +Beginner Series #3 Sum of Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def get_sum(a: int, b: int) -> int: """ + Get sum. + Given two integers a and b, which can be positive or negative, find the sum of all the numbers @@ -18,4 +21,5 @@ def get_sum(a: int, b: int) -> int: """ if a > b: a, b = b, a + return sum(i for i in range(a, (b + 1))) diff --git a/kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py b/kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py index 9ed4aace96f..4b9e62bfbc1 100644 --- a/kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py +++ b/kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Numbers +Test for -> Sum of Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SumOfNumbersTestCase(unittest.TestCase): - """ - Testing get_sum function - """ + """Testing get_sum function.""" def test_get_sum_equal_numbers(self): """ - a and b are equal + Test that 'a' and 'b' are equal. + :return: """ # pylint: disable-msg=R0801 @@ -53,7 +53,8 @@ def test_get_sum_equal_numbers(self): def test_get_sum_positive_numbers(self): """ - a an b are positive numbers + Test 'a' an 'b' are positive numbers. + :return: """ # pylint: disable-msg=R0801 @@ -87,7 +88,8 @@ def test_get_sum_positive_numbers(self): def test_get_sum_negative_numbers(self): """ - a or b is negative + Test 'a' or 'b' is negative. + :return: """ # pylint: disable-msg=R0801 From 32bfe3e7125eb12b1ec0b9a296ae0b97d54939d4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:13:05 -0800 Subject: [PATCH 690/873] ## About this Kata --- kyu_7/coloured_triangles/__init__.py | 1 + .../solution_for_triangle.py | 12 ++-- kyu_7/coloured_triangles/test_triangle.py | 64 +++++++++---------- 3 files changed, 39 insertions(+), 38 deletions(-) diff --git a/kyu_7/coloured_triangles/__init__.py b/kyu_7/coloured_triangles/__init__.py index e69de29bb2d..f53ed968f60 100644 --- a/kyu_7/coloured_triangles/__init__.py +++ b/kyu_7/coloured_triangles/__init__.py @@ -0,0 +1 @@ +"""Coloured Triangles.""" diff --git a/kyu_7/coloured_triangles/solution_for_triangle.py b/kyu_7/coloured_triangles/solution_for_triangle.py index 19c1218e55e..1917f355d15 100644 --- a/kyu_7/coloured_triangles/solution_for_triangle.py +++ b/kyu_7/coloured_triangles/solution_for_triangle.py @@ -1,5 +1,6 @@ """ -Solution for -> Coloured Triangles +Solution for -> Coloured Triangles. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -17,14 +18,15 @@ 'G': 'G', 'GG': 'G', 'BR': 'G', - 'RB': 'G', -} + 'RB': 'G'} def triangle(row: str) -> str: """ - You will be given the first row of the triangle as a string - and its your job to return the final colour which would + Triangle function. + + You will be given the first row of the triangle as a string, + and it's your job to return the final colour which would appear in the bottom row as a string. I :param row: str, the first row of the triangle as a string diff --git a/kyu_7/coloured_triangles/test_triangle.py b/kyu_7/coloured_triangles/test_triangle.py index 0e73ae33bdf..36dd38491bf 100644 --- a/kyu_7/coloured_triangles/test_triangle.py +++ b/kyu_7/coloured_triangles/test_triangle.py @@ -1,5 +1,6 @@ """ -Test for -> Coloured Triangles +Test for -> Coloured Triangles. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure # pylint: disable=import-error +from parameterized import parameterized from utils.log_func import print_log from kyu_7.coloured_triangles.solution_for_triangle import triangle @@ -27,39 +29,35 @@ name='Source/Kata') # pylint: enable-msg=R0801 class TriangleTestCase(unittest.TestCase): - """ - Testing triangle function - """ + """Testing triangle function.""" - def test_triangle(self): + @parameterized.expand([ + ('GB', 'R'), + ('RRR', 'R'), + ('RGBG', 'B'), + ('RBRGBRB', 'G'), + ('RBRGBRBGGRRRBGBBBGG', 'G'), + ('B', 'B'), + ('BGBGB', 'R'), + ('BBRRBRGBRRBRGRRBGGRRBBGBGGRGGB', 'G'), + ('RB', 'G'), + ('GRBGRGBBRBRGRRGGGGRBRBRGGRB', 'B'), + ('BBGRBGRRGGGRRBRBRBGRBGRRRBBBG', 'G'), + ('RRBBRRGBRBGBRBRGBGGRBBBBRGGRGB', 'R'), + ('GGBRGBBRBGRRGGGBGBGRGBGGRGRB', 'R'), + ('BRBBGGRGBGGGBGRBRGRGRRBBGBR', 'G'), + ('GBBRBRGGGGBRGGBBGGBGBRGRBGRGBB', 'G'), + ('RRRBRRGRRGBGBBRGRGRGRB', 'B'), + ('BRGGRBBBBGBRRRRBRBRRBGBGRBGB', 'B'), + ('RRBRBRBBBBBRBRRBBBGBBGBGGGRGR', 'G')]) + def test_triangle(self, string, expected): """ - Basic test case + Basic test case. + :return: """ - with allure.step("Enter test string and verify the output"): - test_data = [ - ('GB', 'R'), - ('RRR', 'R'), - ('RGBG', 'B'), - ('RBRGBRB', 'G'), - ('RBRGBRBGGRRRBGBBBGG', 'G'), - ('B', 'B'), - ('BGBGB', 'R'), - ('BBRRBRGBRRBRGRRBGGRRBBGBGGRGGB', 'G'), - ('RB', 'G'), - ('GRBGRGBBRBRGRRGGGGRBRBRGGRB', 'B'), - ('BBGRBGRRGGGRRBRBRBGRBGRRRBBBG', 'G'), - ('RRBBRRGBRBGBRBRGBGGRBBBBRGGRGB', 'R'), - ('GGBRGBBRBGRRGGGBGBGRGBGGRGRB', 'R'), - ('BRBBGGRGBGGGBGRBRGRGRRBBGBR', 'G'), - ('GBBRBRGGGGBRGGBBGGBGBRGRBGRGBB', 'G'), - ('RRRBRRGRRGBGBBRGRGRGRB', 'B'), - ('BRGGRBBBBGBRRRRBRBRRBGBGRBGB', 'B'), - ('RRBRBRBBBBBRBRRBBBGBBGBGGGRGR', 'G')] - - for string, expected in test_data: - result = triangle(string) - print_log(string=string, - expected=expected, - result=result) - self.assertEqual(expected, result) + with allure.step(f"Enter test string: {string} " + f"and verify the output: {expected}"): + result = triangle(string) + print_log(string=string, expected=expected, result=result) + self.assertEqual(expected, result) From 178f1620b2670d91a2d736476494700409eb5752 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:19:25 -0800 Subject: [PATCH 691/873] # 'Disemvowel' Trolls --- kyu_7/disemvowel_trolls/README.md | 2 +- kyu_7/disemvowel_trolls/__init__.py | 1 + kyu_7/disemvowel_trolls/disemvowel_trolls.py | 5 +- .../test_disemvowel_trolls.py | 54 +++++++++---------- 4 files changed, 32 insertions(+), 30 deletions(-) diff --git a/kyu_7/disemvowel_trolls/README.md b/kyu_7/disemvowel_trolls/README.md index 62b882e9bbb..cc7d443e5cd 100644 --- a/kyu_7/disemvowel_trolls/README.md +++ b/kyu_7/disemvowel_trolls/README.md @@ -1,4 +1,4 @@ -# Disemvowel Trolls +# 'Disemvowel' Trolls Trolls are attacking your comment section! diff --git a/kyu_7/disemvowel_trolls/__init__.py b/kyu_7/disemvowel_trolls/__init__.py index e69de29bb2d..4d5269f9cc0 100644 --- a/kyu_7/disemvowel_trolls/__init__.py +++ b/kyu_7/disemvowel_trolls/__init__.py @@ -0,0 +1 @@ +"""'Disemvowel' Trolls.""" diff --git a/kyu_7/disemvowel_trolls/disemvowel_trolls.py b/kyu_7/disemvowel_trolls/disemvowel_trolls.py index 68824a193db..d086c5105bc 100644 --- a/kyu_7/disemvowel_trolls/disemvowel_trolls.py +++ b/kyu_7/disemvowel_trolls/disemvowel_trolls.py @@ -1,5 +1,6 @@ """ -Solution for -> Disemvowel Trolls +Solution for -> 'Disemvowel' Trolls. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,8 @@ def disemvowel(string: str) -> str: """ + 'Disemvowel' function. + A function that takes a string and return a new string with all vowels removed. diff --git a/kyu_7/disemvowel_trolls/test_disemvowel_trolls.py b/kyu_7/disemvowel_trolls/test_disemvowel_trolls.py index deaa1c49367..1ffd251d2ac 100644 --- a/kyu_7/disemvowel_trolls/test_disemvowel_trolls.py +++ b/kyu_7/disemvowel_trolls/test_disemvowel_trolls.py @@ -1,5 +1,6 @@ """ -Test for -> Disemvowel Trolls +Test for -> 'Disemvowel' Trolls. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.disemvowel_trolls.disemvowel_trolls import disemvowel @@ -30,13 +32,27 @@ name='Source/Kata') # pylint: enable-msg=R0801 class DisemvowelTestCase(unittest.TestCase): - """ - Testing disemvowel function - """ - def test_disemvowel(self): + """Testing 'disemvowel' function.""" + + @parameterized.expand([ + ("This website is for losers LOL!", + "Ths wbst s fr lsrs LL!"), + ("No offense but, Your writing is among the worst I've ever read", + "N ffns bt, Yr wrtng s mng th wrst 'v vr rd"), + ("What are you, a communist?", + "Wht r y, cmmnst?"), + ("IeiIvp EIfgoIh,d(kaM]A>EuiGzEooOoW oK f&uswtee " + "pKAUIGzW K f&swt pK*" + "]IkEI GqrjOal`E\" eeAeSuaTdAu-FISac", + "Nt/'vg*db{G} ^@*\\}d%}>*]k Gqrjl`\" STd-FSc")]) + def test_disemvowel(self, input_data, expected): """ + Testing 'disemvowel' function with various test data. + The string "This website is for losers LOL!" - should become "Ths wbst s fr lsrs LL!" + should become "Ths wbst s fr lsrs LL!". :return: """ # pylint: disable-msg=R0801 @@ -49,25 +65,7 @@ def test_disemvowel(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("This website is for losers LOL!", - "Ths wbst s fr lsrs LL!"), - ("No offense but, Your writing is among the worst I've ever read", - "N ffns bt, Yr wrtng s mng th wrst 'v vr rd"), - ("What are you, a communist?", - "Wht r y, cmmnst?"), - ("IeiIvp EIfgoIh,d(kaM]A>EuiGzEooOoW oK f&uswtee " - "pKAUIGzW K f&swt pK*" - "]IkEI GqrjOal`E\" eeAeSuaTdAu-FISac", - "Nt/'vg*db{G} ^@*\\}d%}>*]k Gqrjl`\" STd-FSc")) - - for data in test_data: - input_data, expected = data - - with allure.step("Enter test data ans assert the result"): - print_log(input=input_data, - expected=expected) - self.assertEqual(disemvowel(input_data), - expected) + with allure.step(f"Enter test data: {input_data} " + f"and assert the result: {expected}."): + print_log(input=input_data, expected=expected) + self.assertEqual(disemvowel(input_data), expected) From cd198dc2bc80f8a796d7f0705d377a1dc78507eb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:26:03 -0800 Subject: [PATCH 692/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 17af30585b5..5362169c978 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -51,12 +51,12 @@ def test_check_root(self,string, expected): 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 + If string contains other characters than number, or it has more or less than 4 numbers separated by comma - function returns "incorrect input". + function returns 'incorrect input'. If string contains 4 numbers but not consecutive it - returns "not consecutive". + returns 'not consecutive'. :return: """ # pylint: disable-msg=R0801 @@ -64,8 +64,9 @@ def test_check_root(self,string, expected): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 From 43f9c23758c28557a36e851caef63d0607f11fa8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:33:10 -0800 Subject: [PATCH 693/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 5362169c978..71aac90ada9 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -18,9 +18,9 @@ # pylint: disable-msg=R0801 @allure.epic('7 kyu') @allure.parent_suite('Beginner') -@allure.suite("Data Structures") -@allure.sub_suite("Unit Tests") -@allure.feature("Lists") +@allure.suite('Data Structures') +@allure.sub_suite('Unit Tests') +@allure.feature('Lists') @allure.story('Always perfect') @allure.tag('FUNDAMENTALS', 'STRINGS', @@ -34,7 +34,7 @@ name='Source/Kata') # pylint: enable-msg=R0801 class CheckRootTestCase(unittest.TestCase): - """Testing check_root function.""" + """Testing 'check_root' function.""" @parameterized.expand([ ('4,5,6,7', '841, 29'), @@ -45,7 +45,7 @@ class CheckRootTestCase(unittest.TestCase): ('*-3,-2,-1,0', 'incorrect input')]) def test_check_root(self,string, expected): """ - Testing check_root function with various test inputs. + Testing 'check_root' function with various test inputs. A function which takes numbers separated by commas in string format and returns the number which is a From 05a5c1e594fcf8c9f0a147cdcb520c01c7bd0f35 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:34:22 -0800 Subject: [PATCH 694/873] Update README.md --- kyu_7/always_perfect/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/always_perfect/README.md b/kyu_7/always_perfect/README.md index 062d6e3a6bc..02b61f957e1 100644 --- a/kyu_7/always_perfect/README.md +++ b/kyu_7/always_perfect/README.md @@ -6,7 +6,7 @@ is ALWAYS a perfect square. For example we have: 1,2,3,4 and the product will be 1X2X3X4=24. If we add 1 to the product that would become 25, since the result number is a perfect square the square root of 25 would be 5. -So now lets write a function which takes numbers separated by commas in string +So now let's write 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. From af43cf627f654e836923c7d139d69e2058976d31 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:35:54 -0800 Subject: [PATCH 695/873] Update README.md --- kyu_7/always_perfect/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_7/always_perfect/README.md b/kyu_7/always_perfect/README.md index 02b61f957e1..3e48701bf13 100644 --- a/kyu_7/always_perfect/README.md +++ b/kyu_7/always_perfect/README.md @@ -1,18 +1,18 @@ # Always perfect While surfing in web I found interesting math problem called "Always perfect". -That means if you add 1 to the product of four consecutive numbers the answer -is ALWAYS a perfect square. For example we have: 1,2,3,4 and the product will -be 1X2X3X4=24. If we add 1 to the product that would become 25, since the result -number is a perfect square the square root of 25 would be 5. +That means if you add `1` to the product of four consecutive numbers the answer +is ALWAYS a perfect square. For example, we have: `1,2,3,4` and the product will +be `1X2X3X4=24`. If we add `1` to the product that would become `25`, since the result +number is a perfect square the square root of `25` would be `5`. So now let's write 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 +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". +If string contains `4` numbers but not consecutive it returns "not consecutive". [Source](https://www.codewars.com/kata/55f3facb78a9fd5b26000036) \ No newline at end of file From da0bed24e5a37ac9a395a1729111c482c752eaa8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:37:16 -0800 Subject: [PATCH 696/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 71aac90ada9..72515f333d0 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -42,7 +42,8 @@ class CheckRootTestCase(unittest.TestCase): ('11,13,14,15', 'not consecutive'), ('10,11,12,13,15', 'incorrect input'), ('10,11,12,13', '17161, 131'), - ('*-3,-2,-1,0', 'incorrect input')]) + #('*-3,-2,-1,0', 'incorrect input') + ]) def test_check_root(self,string, expected): """ Testing 'check_root' function with various test inputs. From e14344bc45e233d9fbeddc540ca88a81b2410d14 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:48:11 -0800 Subject: [PATCH 697/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 72515f333d0..8715be3742f 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -42,8 +42,7 @@ class CheckRootTestCase(unittest.TestCase): ('11,13,14,15', 'not consecutive'), ('10,11,12,13,15', 'incorrect input'), ('10,11,12,13', '17161, 131'), - #('*-3,-2,-1,0', 'incorrect input') - ]) + ('::*-3,-2,-1,0', 'incorrect input')]) def test_check_root(self,string, expected): """ Testing 'check_root' function with various test inputs. From fa76728dbaa4544c5a18f2c9a3df8acd7a833251 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:51:50 -0800 Subject: [PATCH 698/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 8715be3742f..8152b8be614 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -42,7 +42,7 @@ class CheckRootTestCase(unittest.TestCase): ('11,13,14,15', 'not consecutive'), ('10,11,12,13,15', 'incorrect input'), ('10,11,12,13', '17161, 131'), - ('::*-3,-2,-1,0', 'incorrect input')]) + ('\\*-3,-2,-1,0', 'incorrect input')]) def test_check_root(self,string, expected): """ Testing 'check_root' function with various test inputs. From 28ff0367161273d019aafbedaa6f87202903943f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:04:08 -0800 Subject: [PATCH 699/873] # Easy Line --- kyu_7/easy_line/__init__.py | 1 + kyu_7/easy_line/easyline.py | 11 ++-- kyu_7/easy_line/test_easyline.py | 109 ++++++++++++++----------------- 3 files changed, 57 insertions(+), 64 deletions(-) diff --git a/kyu_7/easy_line/__init__.py b/kyu_7/easy_line/__init__.py index e69de29bb2d..06636851b1d 100644 --- a/kyu_7/easy_line/__init__.py +++ b/kyu_7/easy_line/__init__.py @@ -0,0 +1 @@ +"""Easy Line.""" diff --git a/kyu_7/easy_line/easyline.py b/kyu_7/easy_line/easyline.py index bbfdf652a34..4c4620602a4 100644 --- a/kyu_7/easy_line/easyline.py +++ b/kyu_7/easy_line/easyline.py @@ -1,5 +1,6 @@ """ -Solution for -> Easy Line +Solution for -> Easy Line. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,10 +10,11 @@ def easy_line(n: int): """ + Easy line function. + The function will take n (with: n>= 0) as parameter and will return the sum of the squares of the binomial - coefficients on line n. - + coefficients with line 'n'. :param n: the line number (with: n>= 0) :return: """ @@ -33,7 +35,8 @@ def easy_line(n: int): def calc_combination_per_row_item(row: int, i: int) -> int: """ - Generates a specific combination from Pascal's Triangle row by specified index + Generate specific combination from Pascal's Triangle row by specified index. + :param row: row :param i: index :return: diff --git a/kyu_7/easy_line/test_easyline.py b/kyu_7/easy_line/test_easyline.py index 633f8a3ceb3..1057cace388 100644 --- a/kyu_7/easy_line/test_easyline.py +++ b/kyu_7/easy_line/test_easyline.py @@ -1,5 +1,6 @@ """ -Test for -> Easy Line +Test for -> Easy Line. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,7 @@ import unittest import pytest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.easy_line.easyline import easy_line, calc_combination_per_row_item @@ -28,20 +30,23 @@ # pylint: enable=R0801 class EasyLineTestCase(unittest.TestCase): """ + Testing 'easyline' function. + We want to calculate the sum of the squares of the binomial - coefficients on a given line with a function called easyline + coefficients on a given line with a function called 'easyline' (or easyLine or easy-line). - Can you write a program which calculate easyline(n) where n + Can you write a program which calculate 'easyline(n)' where 'n' is the line number? The function will take n (with: n>= 0) as parameter and will - return the sum of the squares of the binomial coefficients on line n. + return the sum of the squares of the binomial coefficients with line 'n'. """ def test_easy_line_exception(self): """ - Testing easy line function exception + Testing easy line function exception. + :return: """ # pylint: disable-msg=R0801 @@ -66,9 +71,19 @@ def test_easy_line_exception(self): self.assertRaises(ValueError, easy_line(n)) self.assertEqual(error_txt, error.value) - def test_calc_combinations_per_row(self): + @parameterized.expand([ + (0, 0, 1), + (1, 1, 1), + (2, 1, 2), + (3, 2, 3), + (4, 3, 4), + (5, 4, 5), + (6, 5, 6), + (7, 6, 7)]) + def test_calc_combinations_per_row(self, n, i, expected): """ - Testing calc_combinations_per_row function + Testing calc_combinations_per_row function. + :return: """ # pylint: disable-msg=R0801 @@ -85,34 +100,28 @@ def test_calc_combinations_per_row(self): "combination per that row " "coefficients on line n.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (0, 0, 1), - (1, 1, 1), - (2, 1, 2), - (3, 2, 3), - (4, 3, 4), - (5, 4, 5), - (6, 5, 6), - (7, 6, 7)) - - for data in test_data: - n: int = data[0] - i: int = data[1] - expected: int = data[2] - actual: int = calc_combination_per_row_item(n, i) - - with allure.step(f"Enter row number ({n}) " - f"and assert expected ({expected}) " - f"vs actual ({actual})."): - print_log(n=n, - actual=actual, - expected=expected) - - self.assertEqual(expected, actual) - - def test_easy_line(self): + actual: int = calc_combination_per_row_item(n, i) + with allure.step(f"Enter row number ({n}) " + f"and assert expected ({expected}) " + f"vs actual ({actual})."): + print_log(n=n, actual=actual, expected=expected) + self.assertEqual(expected, actual) + + @parameterized.expand([ + (0, 1), + (1, 2), + (4, 70), + (7, 3432), + (13, 10400600), + (17, 2333606220), + (19, 35345263800), + (22, 2104098963720), + (24, 32247603683100), + (50, 100891344545564193334812497256)]) + def test_easy_line(self, n, expected): """ - Testing easy_line function + Testing easy_line function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -128,29 +137,9 @@ def test_easy_line(self): "and must return the sum of the squares of the binomial " "coefficients on line n.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (0, 1), - (1, 2), - (4, 70), - (7, 3432), - (13, 10400600), - (17, 2333606220), - (19, 35345263800), - (22, 2104098963720), - (24, 32247603683100), - (50, 100891344545564193334812497256)) - - for data in test_data: - n: int = data[0] - expected: int = data[1] - actual: int = easy_line(n) - - with allure.step(f"Enter line number ({n}) " - f"and assert expected ({expected}) " - f"vs actual ({actual})."): - - print_log(n=n, - actual=actual, - expected=expected) - - self.assertEqual(expected, actual) + actual: int = easy_line(n) + with allure.step(f"Enter line number ({n}) " + f"and assert expected ({expected}) " + f"vs actual ({actual})."): + print_log(n=n, actual=actual, expected=expected) + self.assertEqual(expected, actual) From 9037fd538fd56f303da214fd5048e83e39cf910e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:10:34 -0800 Subject: [PATCH 700/873] # Factorial --- kyu_7/factorial/__init__.py | 1 + kyu_7/factorial/factorial.py | 5 ++++- kyu_7/factorial/test_factorial.py | 36 +++++++++++++------------------ 3 files changed, 20 insertions(+), 22 deletions(-) diff --git a/kyu_7/factorial/__init__.py b/kyu_7/factorial/__init__.py index e69de29bb2d..0d4024da9d8 100644 --- a/kyu_7/factorial/__init__.py +++ b/kyu_7/factorial/__init__.py @@ -0,0 +1 @@ +"""Factorial.""" \ No newline at end of file diff --git a/kyu_7/factorial/factorial.py b/kyu_7/factorial/factorial.py index 6fc1fdb8bfb..10daa754d9e 100644 --- a/kyu_7/factorial/factorial.py +++ b/kyu_7/factorial/factorial.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of Numbers +Solution for -> Factorial. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def factorial(n: int) -> int: """ + Factorial function. + A function to calculate factorial for a given input. If input is below 0 or above 12 throw an exception of type ValueError (Python). diff --git a/kyu_7/factorial/test_factorial.py b/kyu_7/factorial/test_factorial.py index 340ff807274..2bcf153ae7e 100644 --- a/kyu_7/factorial/test_factorial.py +++ b/kyu_7/factorial/test_factorial.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Numbers +Test for -> Factorial. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.factorial.factorial import factorial @@ -25,13 +27,16 @@ url='https://www.codewars.com/kata/54ff0d1f355cfd20e60001fc', name='Source/Kata') class FactorialTestCase(unittest.TestCase): - """ - Testing 'factorial' function - """ + """Testing 'factorial' function.""" - def test_factorial(self): + @parameterized.expand([ + (0, 1, "factorial for 0 is 1"), + (1, 1, "factorial for 1 is 1"), + (2, 2, "factorial for 2 is 2"), + (3, 6, "factorial for 3 is 6")]) + def test_factorial(self, n, expected, msg): """ - Testing 'factorial' function + Testing 'factorial' function. In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less @@ -53,18 +58,7 @@ def test_factorial(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter a number and verify the output"): - data: tuple = ( - (0, 1, "factorial for 0 is 1"), - (1, 1, "factorial for 1 is 1"), - (2, 2, "factorial for 2 is 2"), - (3, 6, "factorial for 3 is 6")) - - for n, expected, msg in data: - print_log(n=n, - expected=expected, - msg=msg) - - self.assertEqual(expected, - factorial(n), - msg) + with allure.step(f"Enter a number n: {n} " + f"and verify the expected output: {expected}."): + print_log(n=n, expected=expected, msg=msg) + self.assertEqual(expected, factorial(n), msg) From b9059f9d67a86034c0a26d925e46916dda96670d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:14:16 -0800 Subject: [PATCH 701/873] Update __init__.py --- kyu_7/factorial/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/factorial/__init__.py b/kyu_7/factorial/__init__.py index 0d4024da9d8..dcc62b69df6 100644 --- a/kyu_7/factorial/__init__.py +++ b/kyu_7/factorial/__init__.py @@ -1 +1 @@ -"""Factorial.""" \ No newline at end of file +"""Factorial.""" From 9f0be1401f0284d4d4834554952d8a25701502c4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:23:33 -0800 Subject: [PATCH 702/873] # Computer problem series #1 --- kyu_7/fill_the_hard_disk_drive/__init__.py | 1 + kyu_7/fill_the_hard_disk_drive/save.py | 11 ++-- kyu_7/fill_the_hard_disk_drive/test_save.py | 65 +++++++++------------ 3 files changed, 36 insertions(+), 41 deletions(-) diff --git a/kyu_7/fill_the_hard_disk_drive/__init__.py b/kyu_7/fill_the_hard_disk_drive/__init__.py index e69de29bb2d..cbcb5c2dfc2 100644 --- a/kyu_7/fill_the_hard_disk_drive/__init__.py +++ b/kyu_7/fill_the_hard_disk_drive/__init__.py @@ -0,0 +1 @@ +"""Computer problem series #1.""" diff --git a/kyu_7/fill_the_hard_disk_drive/save.py b/kyu_7/fill_the_hard_disk_drive/save.py index 3f3eb9811cf..c192982246d 100644 --- a/kyu_7/fill_the_hard_disk_drive/save.py +++ b/kyu_7/fill_the_hard_disk_drive/save.py @@ -1,5 +1,6 @@ """ -Solution for -> Computer problem series #1: Fill the Hard Disk Drive +Solution for -> Computer problem series #1: Fill the Hard Disk Drive. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def save(sizes: list, hd: int) -> int: """ + 'Save' function. + Your task is to determine how many files of the copy queue you will be able to save into your Hard Disk Drive. @@ -18,9 +21,9 @@ def save(sizes: list, hd: int) -> int: Output: Number of files that can be fully saved in the HD - :param sizes: - :param hd: - :return: + :param sizes: list + :param hd: int + :return: int """ counter: int = 0 total: int = 0 diff --git a/kyu_7/fill_the_hard_disk_drive/test_save.py b/kyu_7/fill_the_hard_disk_drive/test_save.py index 79e8a0a025b..8eb9bbc6c16 100644 --- a/kyu_7/fill_the_hard_disk_drive/test_save.py +++ b/kyu_7/fill_the_hard_disk_drive/test_save.py @@ -1,5 +1,6 @@ """ -Test for -> Computer problem series #1: Fill the Hard Disk Drive +Test for -> Computer problem series #1: Fill the Hard Disk Drive. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.fill_the_hard_disk_drive.save import save @@ -29,13 +31,14 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SaveTestCase(unittest.TestCase): - """ - Testing 'save' function - """ + """Testing 'save' function.""" - def test_save_negative(self): + @parameterized.expand([ + ([11, 13, 15, 17, 19], 8, 0), + ([45], 12, 0)]) + def test_save_negative(self, sizes, hd, expected): """ - Testing 'save' function: negative + Testing 'save' function: negative. The function should determine how many files of the copy queue you will be able @@ -52,22 +55,22 @@ def test_save_negative(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter sizes, hd and verify the output"): - data: tuple = ( - ([11, 13, 15, 17, 19], 8, 0), - ([45], 12, 0)) - - for sizes, hd, expected in data: - print_log(sizes=sizes, - hd=hd, - expected=expected) - - self.assertEqual(expected, - save(sizes, hd)) + with allure.step(f"Enter sizes: {sizes}, " + f"hd: {hd} " + f"and verify the expected output: {expected}."): + print_log(sizes=sizes, hd=hd, expected=expected) + self.assertEqual(expected, save(sizes, hd)) - def test_save_positive(self): + @parameterized.expand([ + ([4, 4, 4, 3, 3], 12, 3), + ([4, 4, 4, 3, 3], 11, 2), + ([4, 8, 15, 16, 23, 42], 108, 6), + ([13], 13, 1), + ([1, 2, 3, 4], 250, 4), + ([100], 500, 1)]) + def test_save_positive(self, sizes, hd, expected): """ - Testing 'save' function: positive + Testing 'save' function: positive. The function should determine how many files of the copy queue you will be able @@ -84,20 +87,8 @@ def test_save_positive(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter sizes, hd and verify the output"): - data: tuple = ( - ([4, 4, 4, 3, 3], 12, 3), - ([4, 4, 4, 3, 3], 11, 2), - ([4, 8, 15, 16, 23, 42], 108, 6), - ([13], 13, 1), - ([1, 2, 3, 4], 250, 4), - ([100], 500, 1)) - - for sizes, hd, expected in data: - - print_log(sizes=sizes, - hd=hd, - expected=expected) - - self.assertEqual(expected, - save(sizes, hd)) + with allure.step(f"Enter sizes: {sizes}, " + f"hd: {hd} " + f"and verify the expected output: {expected}."): + print_log(sizes=sizes, hd=hd, expected=expected) + self.assertEqual(expected, save(sizes, hd)) From f88005102b40bcd0a14871ce62d1c425424471b3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:27:34 -0800 Subject: [PATCH 703/873] Find the longest gap --- kyu_7/find_the_longest_gap/__init__.py | 1 + kyu_7/find_the_longest_gap/gap.py | 12 +++++---- kyu_7/find_the_longest_gap/test_gap.py | 35 +++++++++++--------------- 3 files changed, 23 insertions(+), 25 deletions(-) diff --git a/kyu_7/find_the_longest_gap/__init__.py b/kyu_7/find_the_longest_gap/__init__.py index e69de29bb2d..a95949658a6 100644 --- a/kyu_7/find_the_longest_gap/__init__.py +++ b/kyu_7/find_the_longest_gap/__init__.py @@ -0,0 +1 @@ +"""Find the longest gap.""" diff --git a/kyu_7/find_the_longest_gap/gap.py b/kyu_7/find_the_longest_gap/gap.py index 78f74d3d935..a4aa13e5275 100644 --- a/kyu_7/find_the_longest_gap/gap.py +++ b/kyu_7/find_the_longest_gap/gap.py @@ -1,5 +1,6 @@ """ -Solution for -> Find the longest gap! +Solution for -> Find the longest gap!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,7 @@ def gap(num: int) -> int: """ - Returns the length of its longest - binary gap. + Returns the length of its longest binary gap. The function should return 0 if num doesn't contain a binary gap. @@ -30,7 +30,8 @@ def gap(num: int) -> int: def calc_g_cur(g_cur: int, char: str) -> int: """ - Calculates g_cur + Calculates g_cur. + :param g_cur: :param char: :return: @@ -44,7 +45,8 @@ def calc_g_cur(g_cur: int, char: str) -> int: def calc_g_max(g_cur: int, g_max: int) -> int: """ - Calculates g_max + Calculates g_max. + :param g_cur: :param g_max: :return: diff --git a/kyu_7/find_the_longest_gap/test_gap.py b/kyu_7/find_the_longest_gap/test_gap.py index 9efbb54617c..9afd0f021b4 100644 --- a/kyu_7/find_the_longest_gap/test_gap.py +++ b/kyu_7/find_the_longest_gap/test_gap.py @@ -1,5 +1,6 @@ """ -Test for -> Find the longest gap! +Test for -> Find the longest gap!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.find_the_longest_gap.gap import gap @@ -27,13 +29,16 @@ @allure.link(url='https://www.codewars.com/kata/55b86beb1417eab500000051', name='Source/Kata') class GapTestCase(unittest.TestCase): - """ - Testing gap function - """ + """Testing gap function.""" - def test_gap(self): + @parameterized.expand([ + (9, 2), + (529, 4), + (20, 1), + (15, 0)]) + def test_gap(self, num, expected): """ - Testing gap function with various test inputs + Testing gap function with various test inputs. A binary gap within a positive number num is any sequence of consecutive zeros that is @@ -57,17 +62,7 @@ def test_gap(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter integer and assert the result"): - data: tuple = ( - (9, 2), - (529, 4), - (20, 1), - (15, 0)) - - for num, expected in data: - - print_log(num=num, - expected=expected) - - self.assertEqual(expected, - gap(num)) + with allure.step(f"Enter integer num: {num} " + f"and assert the expected result: {expected}."): + print_log(num=num, expected=expected) + self.assertEqual(expected, gap(num)) From 665796311596a7b20f6477d527020fa0deb11bcd Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:28:25 -0800 Subject: [PATCH 704/873] Update __init__.py --- kyu_7/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/__init__.py b/kyu_7/__init__.py index 57cf1c057ce..9234b19f32e 100644 --- a/kyu_7/__init__.py +++ b/kyu_7/__init__.py @@ -1 +1 @@ -"""7 kyu - Beginner.""" +"""'7 kyu - Beginner' package.""" From 41d9c302279d50607027584101d9e989ad3840b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:33:23 -0800 Subject: [PATCH 705/873] # Formatting decimal places #1 --- kyu_7/formatting_decimal_places_1/__init__.py | 1 + .../test_two_decimal_places.py | 42 ++++++++----------- .../two_decimal_places.py | 6 ++- 3 files changed, 22 insertions(+), 27 deletions(-) diff --git a/kyu_7/formatting_decimal_places_1/__init__.py b/kyu_7/formatting_decimal_places_1/__init__.py index e69de29bb2d..068921274f9 100644 --- a/kyu_7/formatting_decimal_places_1/__init__.py +++ b/kyu_7/formatting_decimal_places_1/__init__.py @@ -0,0 +1 @@ +"""Formatting decimal places #1.""" diff --git a/kyu_7/formatting_decimal_places_1/test_two_decimal_places.py b/kyu_7/formatting_decimal_places_1/test_two_decimal_places.py index dbcb6a002f5..332efe671d8 100644 --- a/kyu_7/formatting_decimal_places_1/test_two_decimal_places.py +++ b/kyu_7/formatting_decimal_places_1/test_two_decimal_places.py @@ -1,5 +1,6 @@ """ -Solution for -> Formatting decimal places #1 +Solution for -> Formatting decimal places #1. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.formatting_decimal_places_1.two_decimal_places \ import two_decimal_places @@ -29,14 +31,18 @@ name='Source/Kata') # pylint: enable-msg=R0801 class TwoDecimalPlacesTestCase(unittest.TestCase): - """ - Testing two_decimal_places function - """ + """Testing two_decimal_places function.""" - def test_two_decimal_places(self): + @parameterized.expand([ + (10.1289767789, 10.12, + "didn't work for 10.1289767789"), + (-7488.83485834983, -7488.83, + "didn't work for -7488.83485834983"), + (4.653725356, 4.65, + "didn't work for 4.653725356")]) + def test_two_decimal_places(self, number, expected, msg): """ - Testing two_decimal_places function - with various test inputs + Testing two_decimal_places function with various test inputs. Each floating-point number should be formatted that only the first two @@ -48,7 +54,6 @@ def test_two_decimal_places(self): Don't round the numbers! Just cut them after two decimal places! - :return: """ # pylint: disable-msg=R0801 @@ -61,20 +66,7 @@ def test_two_decimal_places(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Pass a number and verify the output"): - test_data: tuple = ( - (10.1289767789, 10.12, - "didn't work for 10.1289767789"), - (-7488.83485834983, -7488.83, - "didn't work for -7488.83485834983"), - (4.653725356, 4.65, - "didn't work for 4.653725356")) - - for number, expected, msg in test_data: - - print_log(number=number, - expected=expected) - - self.assertEqual(expected, - two_decimal_places(number), - msg) + with allure.step(f"Pass a number: {number} " + f"and verify the expected output: {expected}."): + print_log(number=number, expected=expected) + self.assertEqual(expected, two_decimal_places(number), msg) diff --git a/kyu_7/formatting_decimal_places_1/two_decimal_places.py b/kyu_7/formatting_decimal_places_1/two_decimal_places.py index f01b102d8b1..2c4761b2149 100644 --- a/kyu_7/formatting_decimal_places_1/two_decimal_places.py +++ b/kyu_7/formatting_decimal_places_1/two_decimal_places.py @@ -1,5 +1,6 @@ """ -Test for -> Formatting decimal places #1 +Test for -> Formatting decimal places #1. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def two_decimal_places(number) -> float: """ + Formatting decimal places #1. + Each floating-point number should be formatted that only the first two decimal places are returned. @@ -15,7 +18,6 @@ def two_decimal_places(number) -> float: Don't round the numbers! Just cut them after two decimal places! - :param number: :return: float """ From 11dd1fd89ed844b01a89e63fc6673f68f90f0456 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:53:56 -0800 Subject: [PATCH 706/873] # Fun with lists: length --- kyu_7/fun_with_lists_length/__init__.py | 1 + kyu_7/fun_with_lists_length/length.py | 5 ++++- kyu_7/fun_with_lists_length/node.py | 20 ++++++++++++-------- kyu_7/fun_with_lists_length/test_length.py | 12 +++++------- 4 files changed, 22 insertions(+), 16 deletions(-) diff --git a/kyu_7/fun_with_lists_length/__init__.py b/kyu_7/fun_with_lists_length/__init__.py index e69de29bb2d..bd9e46da088 100644 --- a/kyu_7/fun_with_lists_length/__init__.py +++ b/kyu_7/fun_with_lists_length/__init__.py @@ -0,0 +1 @@ +"""Fun with lists: length.""" diff --git a/kyu_7/fun_with_lists_length/length.py b/kyu_7/fun_with_lists_length/length.py index 397d2fd9275..9192818760e 100644 --- a/kyu_7/fun_with_lists_length/length.py +++ b/kyu_7/fun_with_lists_length/length.py @@ -1,5 +1,6 @@ """ -Solution for -> Fun with lists: length +Solution for -> Fun with lists: length. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def length(head) -> int: """ + Length function. + The method length, which accepts a linked list (head), and returns the length of the list. :param head: diff --git a/kyu_7/fun_with_lists_length/node.py b/kyu_7/fun_with_lists_length/node.py index 5a1e70f2743..d02cc0e4de6 100644 --- a/kyu_7/fun_with_lists_length/node.py +++ b/kyu_7/fun_with_lists_length/node.py @@ -1,14 +1,14 @@ """ -Node class for -> Fun with lists: length +Node class for -> Fun with lists: length. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ class Node: - """ - The linked list - """ + """The linked list.""" + def __init__(self, data, n_next=None): self._data = data self._next = n_next @@ -16,7 +16,8 @@ def __init__(self, data, n_next=None): @property def next(self): """ - Get next + Get next. + :return: """ return self._next @@ -24,7 +25,8 @@ def next(self): @next.setter def next(self, n_next=None) -> None: """ - Get next + Get next. + :param n_next: :return: """ @@ -33,7 +35,8 @@ def next(self, n_next=None) -> None: @property def data(self): """ - Get data + Get data. + :return: """ return self._data @@ -41,7 +44,8 @@ def data(self): @data.setter def data(self, data) -> None: """ - Get data + Get data. + :param data: :return: """ diff --git a/kyu_7/fun_with_lists_length/test_length.py b/kyu_7/fun_with_lists_length/test_length.py index f7fb605aa50..584e4baf72a 100644 --- a/kyu_7/fun_with_lists_length/test_length.py +++ b/kyu_7/fun_with_lists_length/test_length.py @@ -1,5 +1,6 @@ """ -Test for -> Fun with lists: length +Test for -> Fun with lists: length. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,14 +29,11 @@ name='Source/Kata') # pylint: enable-msg=R0801 class LengthTestCase(unittest.TestCase): - """ - Testing length function - """ + """Testing length function.""" def test_length_none(self): """ - Testing length function - where head = None + Testing length function where head = None. The method length, which accepts a linked list (head), and returns the length of the list. @@ -57,7 +55,7 @@ def test_length_none(self): def test_length(self): """ - Testing length function + Testing length function. The method length, which accepts a linked list (head), and returns the length of the list. From b0e6da0439040d1d1cf26f1e866a7be8ead1cbb5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:01:10 -0800 Subject: [PATCH 707/873] # Simple Fun #74: Growing Plant --- kyu_7/growing_plant/__init__.py | 1 + kyu_7/growing_plant/growing_plant.py | 4 +- kyu_7/growing_plant/test_growing_plant.py | 88 +++++++---------------- 3 files changed, 27 insertions(+), 66 deletions(-) diff --git a/kyu_7/growing_plant/__init__.py b/kyu_7/growing_plant/__init__.py index e69de29bb2d..7bb5d963f8c 100644 --- a/kyu_7/growing_plant/__init__.py +++ b/kyu_7/growing_plant/__init__.py @@ -0,0 +1 @@ +"""Simple Fun #74: Growing Plant.""" diff --git a/kyu_7/growing_plant/growing_plant.py b/kyu_7/growing_plant/growing_plant.py index e66280a46fa..40599735949 100644 --- a/kyu_7/growing_plant/growing_plant.py +++ b/kyu_7/growing_plant/growing_plant.py @@ -1,5 +1,6 @@ """ -Solution -> Simple Fun #74: Growing Plant +Solution -> Simple Fun #74: Growing Plant. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -12,7 +13,6 @@ def growing_plant(up_speed: int, down_speed: int, desired_height: int) -> int: lack of sun heat. Initially, plant is 0 meters tall. We plant the seed at the beginning of a day. We want to know when the height of the plant will reach a certain level. - :param up_speed: int :param down_speed: int :param desired_height: int diff --git a/kyu_7/growing_plant/test_growing_plant.py b/kyu_7/growing_plant/test_growing_plant.py index 40e6cfd4d63..120a555c881 100644 --- a/kyu_7/growing_plant/test_growing_plant.py +++ b/kyu_7/growing_plant/test_growing_plant.py @@ -1,5 +1,6 @@ """ -Test -> Simple Fun #74: Growing Plant +Test -> Simple Fun #74: Growing Plant. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.growing_plant.growing_plant import growing_plant @@ -25,51 +27,19 @@ name='Source/Kata') # pylint: enable-msg=R0801 class GrowingPlantTestCase(unittest.TestCase): - """ - Testing growing_plant function - """ - - def test_growing_plant(self): + """Testing growing_plant function.""" + + @parameterized.expand([ + ((100, 10, 910), 10), + ((10, 9, 4), 1), + ((5, 2, 0), 1), + ((5, 2, 5), 1), + ((5, 2, 6), 2)]) + def test_growing_plant(self, input_data, expected): """ - Testing growing_plant function - - Task - - Each day a plant is growing by upSpeed meters. - Each night that plant's height decreases by downSpeed - meters due to the lack of sun heat. Initially, plant - is 0 meters tall. We plant the seed at the beginning - of a day. We want to know when the height of the plant - will reach a certain level. - - Example - - For upSpeed = 100, downSpeed = 10 and desiredHeight = 910, - the output should be 10. - - For upSpeed = 10, downSpeed = 9 and desiredHeight = 4, - the output should be 1. Because the plant reach to the desired - height at day 1(10 meters). - - Input/Output + Testing growing_plant function. - [input] integer upSpeed - A positive integer representing the daily growth. - Constraints: 5 ≤ upSpeed ≤ 100. - - [input] integer downSpeed - A positive integer representing the nightly decline. - Constraints: 2 ≤ downSpeed < upSpeed. - - [input] integer desiredHeight - A positive integer representing the threshold. - Constraints: 4 ≤ desiredHeight ≤ 1000. - - [output] an integer - - The number of days that it will take for the plant to - reach/pass desiredHeight (including the last day in the - total count). + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title('Testing growing_plant function') @@ -82,23 +52,13 @@ def test_growing_plant(self): "

    ") # pylint: enable-msg=R0801 with allure.step('Enter upSpeed, downSpeed and ' - 'desiredHeight and verify the output'): - test_data: tuple = ( - ((100, 10, 910), 10), - ((10, 9, 4), 1), - ((5, 2, 0), 1), - ((5, 2, 5), 1), - ((5, 2, 6), 2)) - - for input_data, expected in test_data: - up_speed: int = input_data[0] - down_speed: int = input_data[1] - desired_height: int = input_data[2] - - print_log(input_data=input_data, - expected=expected) - - self.assertEqual(expected, - growing_plant(up_speed, - down_speed, - desired_height)) + 'desiredHeight and verify the output.'): + up_speed: int = input_data[0] + down_speed: int = input_data[1] + desired_height: int = input_data[2] + print_log(input_data=input_data, + expected=expected) + self.assertEqual(expected, + growing_plant(up_speed, + down_speed, + desired_height)) From dbcafc2ab3c60e4919455df396f996715b429329 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:05:03 -0800 Subject: [PATCH 708/873] # Help Bob count letters and digits --- .../__init__.py | 1 + .../count_letters_and_digits.py | 5 ++- .../test_count_letters_and_digits.py | 44 ++++++++----------- 3 files changed, 23 insertions(+), 27 deletions(-) diff --git a/kyu_7/help_bob_count_letters_and_digits/__init__.py b/kyu_7/help_bob_count_letters_and_digits/__init__.py index e69de29bb2d..6a43dcb8bb7 100644 --- a/kyu_7/help_bob_count_letters_and_digits/__init__.py +++ b/kyu_7/help_bob_count_letters_and_digits/__init__.py @@ -0,0 +1 @@ +"""Help Bob count letters and digits.""" diff --git a/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py b/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py index c392c6ea86b..3c8ceabe119 100644 --- a/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py +++ b/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py @@ -1,5 +1,6 @@ """ Solution for -> Help Bob count letters and digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,8 @@ def count_letters_and_digits(s: str) -> int: """ - A method that can determine how many - letters and digits are in a given string. + A method that can determine how many letters and digits are in a given string. + :param s: :return: """ diff --git a/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py b/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py index b4d04b9d967..fcc38672024 100644 --- a/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py +++ b/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py @@ -1,5 +1,6 @@ """ Test for -> Help Bob count letters and digits. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.help_bob_count_letters_and_digits.count_letters_and_digits \ import (count_letters_and_digits) @@ -25,13 +27,18 @@ url='https://www.codewars.com/kata/5738f5ea9545204cec000155', name='Source/Kata') class CalculateTestCase(unittest.TestCase): - """ - Testing count_letters_and_digits function - """ - - def test_count_letters_and_digits(self): + """Testing count_letters_and_digits function.""" + + @parameterized.expand([ + ('n!!ice!!123', 7), + ('de?=?=tttes!!t', 8), + ('', 0), + ('!@#$%^&`~.', 0), + ('u_n_d_e_r__S_C_O_R_E', 10)]) + def test_count_letters_and_digits(self, s, expected): """ - Testing the function with various test data + Testing the function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -45,22 +52,9 @@ def test_count_letters_and_digits(self): "

    Test a method that can determine how many letters " "and digits are in a given string.

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ('n!!ice!!123', 7), - ('de?=?=tttes!!t', 8), - ('', 0), - ('!@#$%^&`~.', 0), - ('u_n_d_e_r__S_C_O_R_E', 10)) - - for s, expected in test_data: - actual_result: int = count_letters_and_digits(s) - with allure.step(f"Enter string ({s}) and verify the " - f"expected output ({expected}) vs " - f"actual result ({actual_result})"): - - print_log(s=s, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) + actual_result: int = count_letters_and_digits(s) + with allure.step(f"Enter string ({s}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + print_log(s=s, expected=expected,result=actual_result) + self.assertEqual(expected, actual_result) From 62572c95063d204fda29b040b2a27189e5c3b78b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:14:52 -0800 Subject: [PATCH 709/873] # Isograms --- kyu_7/isograms/__init__.py | 1 + kyu_7/isograms/is_isogram.py | 6 ++-- kyu_7/isograms/test_is_isogram.py | 48 ++++++++++++++----------------- 3 files changed, 25 insertions(+), 30 deletions(-) diff --git a/kyu_7/isograms/__init__.py b/kyu_7/isograms/__init__.py index e69de29bb2d..b9ce839e97f 100644 --- a/kyu_7/isograms/__init__.py +++ b/kyu_7/isograms/__init__.py @@ -0,0 +1 @@ +"""Isograms""" diff --git a/kyu_7/isograms/is_isogram.py b/kyu_7/isograms/is_isogram.py index a3eed345329..78344099730 100644 --- a/kyu_7/isograms/is_isogram.py +++ b/kyu_7/isograms/is_isogram.py @@ -1,5 +1,6 @@ """ -Solution for -> Isograms +Solution for -> Isograms. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,7 @@ def is_isogram(string: str) -> bool: """ - Determines whether a string that - contains only letters is an isogram + Determines whether a string that contains only letters is an 'isogram'. :param string: str :return: bool diff --git a/kyu_7/isograms/test_is_isogram.py b/kyu_7/isograms/test_is_isogram.py index da41bd1fe00..2b59e77ca1f 100644 --- a/kyu_7/isograms/test_is_isogram.py +++ b/kyu_7/isograms/test_is_isogram.py @@ -1,5 +1,6 @@ """ -Test for -> Isograms +Test for -> 'Isograms'. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.isograms.is_isogram import is_isogram @@ -24,13 +26,20 @@ url='https://www.codewars.com/kata/54ba84be607a92aa900000f1', name='Source/Kata') class IsIsogramTestCase(unittest.TestCase): - """ - Testing 'is_isogram' function - """ - - def test_is_isogram(self): + """Testing 'is_isogram' function.""" + + @parameterized.expand([ + ("Dermatoglyphics", True, ''), + ("isogram", True, ''), + ("aba", False, "same chars may not be adjacent"), + ("moOse", False, "same chars may not be same case"), + ("isIsogram", False, ''), + ('', True, "an empty string is a valid isogram")]) + def test_is_isogram(self, string, expected, message): """ - Testing 'is_isogram' function + Testing 'is_isogram' function. + + :return: """ # pylint: disable-msg=R0801 allure.dynamic.title("Testing 'is_isogram' function") @@ -45,23 +54,8 @@ def test_is_isogram(self): "Assume the empty string is an isogram. Ignore letter case." "

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - ("Dermatoglyphics", True, ''), - ("isogram", True, ''), - ("aba", False, "same chars may not be adjacent"), - ("moOse", False, "same chars may not be same case"), - ("isIsogram", False, ''), - ('', True, "an empty string is a valid isogram")) - - for string, expected, message in test_data: - with allure.step( - f"Enter a test string {string} and verify the result"): - actual_result: bool = is_isogram(string) - - print_log(expected=expected, - value=string, - message=message) - - self.assertEqual(expected, - actual_result, - message) + with allure.step(f"Enter a test string {string} " + f"and verify the expected result: {expected}."): + actual_result: bool = is_isogram(string) + print_log(expected=expected, value=string, message=message) + self.assertEqual(expected, actual_result, message) From 61405a2be1c8c45ceb0bff8de3fd0fa6ed9143f4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:15:28 -0800 Subject: [PATCH 710/873] Update README.md --- kyu_7/isograms/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_7/isograms/README.md b/kyu_7/isograms/README.md index 246712ff4e9..b261e60c991 100644 --- a/kyu_7/isograms/README.md +++ b/kyu_7/isograms/README.md @@ -1,8 +1,8 @@ # Isograms -An isogram is a word that has no repeating letters, consecutive +An `isogram` is a word that has no repeating letters, consecutive or non-consecutive. Implement a function that determines whether -a string that contains only letters is an isogram. Assume the empty +a string that contains only letters is an `isogram`. Assume the empty string is an `isogram`. Ignore letter case. ```text From 2463479670a83c60816a0fb3dbe5e02bfb3d6d42 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:20:02 -0800 Subject: [PATCH 711/873] # Jaden Casing Strings --- kyu_7/jaden_casing_strings/README.md | 9 ++++----- kyu_7/jaden_casing_strings/__init__.py | 1 + .../jaden_casing_strings/jaden_casing_strings.py | 6 ++++-- .../test_jaden_casing_strings.py | 15 +++++++-------- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/kyu_7/jaden_casing_strings/README.md b/kyu_7/jaden_casing_strings/README.md index 530fa68c6e2..2d7931b29ba 100644 --- a/kyu_7/jaden_casing_strings/README.md +++ b/kyu_7/jaden_casing_strings/README.md @@ -1,7 +1,7 @@ # Jaden Casing Strings -Jaden Smith, the son of Will Smith, is the star of films such as -The Karate Kid (2010) and After Earth (2013). Jaden is also known +`Jaden Smith`, the son of `Will Smith`, is the star of films such as +`The Karate Kid (2010)` and `After Earth (2013)`. Jaden is also known for some of his philosophy that he delivers via Twitter. When writing on Twitter, he is known for almost always capitalizing every word. @@ -11,8 +11,7 @@ capitalized in the same way he originally typed them. ## Example -Not Jaden-Cased: "How can mirrors be real if our eyes aren't real" - -Jaden-Cased: "How Can Mirrors Be Real If Our Eyes Aren't Real" +Not Jaden-Cased: "How can mirrors be real if our eyes aren't real". +Jaden-Cased: "How Can Mirrors Be Real If Our Eyes Aren't Real". [Source](https://www.codewars.com/kata/5390bac347d09b7da40006f6) diff --git a/kyu_7/jaden_casing_strings/__init__.py b/kyu_7/jaden_casing_strings/__init__.py index e69de29bb2d..3628f9ab8ee 100644 --- a/kyu_7/jaden_casing_strings/__init__.py +++ b/kyu_7/jaden_casing_strings/__init__.py @@ -0,0 +1 @@ +"""Jaden Casing Strings.""" diff --git a/kyu_7/jaden_casing_strings/jaden_casing_strings.py b/kyu_7/jaden_casing_strings/jaden_casing_strings.py index 948beeee895..ff38c5e89eb 100644 --- a/kyu_7/jaden_casing_strings/jaden_casing_strings.py +++ b/kyu_7/jaden_casing_strings/jaden_casing_strings.py @@ -1,5 +1,6 @@ """ -Solution for -> Jaden Casing Strings +Solution for -> Jaden Casing Strings. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def to_jaden_case(string: str) -> str: """ + Jaden Casing Strings. + Convert strings to how they would be written by Jaden Smith. The strings are actual quotes from Jaden Smith, @@ -27,7 +30,6 @@ def to_jaden_case(string: str) -> str: :return: """ list_string: list = string.split() - for i, el in enumerate(list_string): list_string[i] = el.capitalize() diff --git a/kyu_7/jaden_casing_strings/test_jaden_casing_strings.py b/kyu_7/jaden_casing_strings/test_jaden_casing_strings.py index 6cb9cecfeba..93ea000bf9e 100644 --- a/kyu_7/jaden_casing_strings/test_jaden_casing_strings.py +++ b/kyu_7/jaden_casing_strings/test_jaden_casing_strings.py @@ -1,5 +1,6 @@ """ -Test for -> Jaden Casing Strings +Test for -> Jaden Casing Strings. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,13 +28,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class JadenCasingStringsTestCase(unittest.TestCase): - """ - Testing toJadenCase function - """ + """Testing toJadenCase function.""" def test_to_jaden_case_positive(self): """ - Simple positive test + Simple positive test. + :return: """ # pylint: disable-msg=R0801 @@ -49,13 +49,13 @@ def test_to_jaden_case_positive(self): with allure.step("Pass string and verify the output"): quote = "How can mirrors be real if our eyes aren't real" expected = "How Can Mirrors Be Real If Our Eyes Aren't Real" - print_log(string=quote, expected=expected) self.assertEqual(to_jaden_case(quote), expected) def test_to_jaden_case_negative(self): """ - Simple negative test + Simple negative test. + :return: """ # pylint: disable-msg=R0801 @@ -70,6 +70,5 @@ def test_to_jaden_case_negative(self): # pylint: enable-msg=R0801 with allure.step("Pass string and verify the output"): quote = "How can mirrors be real if our eyes aren't real" - print_log(string=quote, expected=False) self.assertNotEqual(to_jaden_case(quote), quote) From 406cee8a35408350182beb4dae4341182aa3eb28 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:27:53 -0800 Subject: [PATCH 712/873] # Make Class --- kyu_7/make_class/__init__.py | 1 + kyu_7/make_class/animal.py | 83 +++++++++++++++++------------ kyu_7/make_class/make_class.py | 16 ++++-- kyu_7/make_class/test_make_class.py | 11 ++-- 4 files changed, 68 insertions(+), 43 deletions(-) diff --git a/kyu_7/make_class/__init__.py b/kyu_7/make_class/__init__.py index e69de29bb2d..5a28e28507d 100644 --- a/kyu_7/make_class/__init__.py +++ b/kyu_7/make_class/__init__.py @@ -0,0 +1 @@ +"""Make Class.""" diff --git a/kyu_7/make_class/animal.py b/kyu_7/make_class/animal.py index 8b6d30fbf8c..278d4e4b433 100644 --- a/kyu_7/make_class/animal.py +++ b/kyu_7/make_class/animal.py @@ -1,15 +1,20 @@ """ -Animal class implementation for -> Make Class +Animal class implementation for -> Make Class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ class Animal: - """ - Animal class implementation - """ + """Animal class implementation.""" + def __init__(self, **kwargs): + """ + Create a new Animal instance. + + :param kwargs: + """ self._name = kwargs['name'] self._species = kwargs['species'] self._age = kwargs['age'] @@ -20,101 +25,113 @@ def __init__(self, **kwargs): @property def name(self) -> str: """ - Get name - :return: + Get name. + + :return: str """ return self._name @name.setter def name(self, val: str) -> None: """ - Set name - :param val: - :return: + Set name. + + :param val: str + :return: None """ self._name = val @property def species(self) -> str: """ - Get species - :return: + Get species. + + :return: str """ return self._species @species.setter def species(self, val: str) -> None: """ - Set species - :param val: - :return: + Set species. + + :param val: str + :return: None """ self._species = val @property def age(self) -> str: """ - Get age - :return: + Get age. + + :return: str """ return self._age @age.setter def age(self, val: str) -> None: """ - Set age + Set age. + :param val: - :return: + :return: None """ self._age = val @property def health(self) -> str: """ - Get health - :return: + Get health. + + :return: str """ return self._health @health.setter def health(self, val: str) -> None: """ - Set health - :param val: - :return: + Set health. + + :param val: str + :return: None """ self._health = val @property def weight(self) -> str: """ - Get weight - :return: + Get weight. + + :return: str """ return self._weight @weight.setter def weight(self, val: str) -> None: """ - Set weight - :param val: - :return: + Set weight. + + :param val: str + :return: None """ self._weight = val @property def color(self) -> str: """ - Get color - :return: + Get color. + + :return: str """ return self._color @color.setter def color(self, val: str) -> None: """ - Set color - :param val: - :return: + Set color. + + :param val: str + :return: None """ self._color = val diff --git a/kyu_7/make_class/make_class.py b/kyu_7/make_class/make_class.py index f7679ab0f95..aa5ff7aed45 100644 --- a/kyu_7/make_class/make_class.py +++ b/kyu_7/make_class/make_class.py @@ -1,5 +1,6 @@ """ -make_class function implementation for -> Make Class +make_class function implementation for -> Make Class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,17 +8,22 @@ def make_class(*args): """ - make_class function implementation + 'make_class' function implementation. + :param args: :return: """ # pylint: disable-msg=R0903 class Class: - """ - Generic class - """ + """Generic class.""" + def __init__(self, *vals): + """ + Create a new Class instance. + + :param vals: + """ for arg, val in zip(args, vals): setattr(self, arg, val) # pylint: enable-msg=R0903 diff --git a/kyu_7/make_class/test_make_class.py b/kyu_7/make_class/test_make_class.py index 68052b97544..39c5d0d1b30 100644 --- a/kyu_7/make_class/test_make_class.py +++ b/kyu_7/make_class/test_make_class.py @@ -1,5 +1,6 @@ """ -Test for -> Make Class +Test for -> Make Class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -27,12 +28,12 @@ name='Source/Kata') # @pytest.mark.skip(reason="The solution is not ready") class MakeClassTestCase(unittest.TestCase): - """ - Testing make_class function - """ + """Testing make_class function.""" + def test_make_class(self): """ - Testing make_class function + Testing make_class function. + :return: """ # pylint: disable-msg=R0801 From 11a3eb0a81f3028c2a78570d67ce9808cab2ff01 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:32:51 -0800 Subject: [PATCH 713/873] # Maximum Multiple --- kyu_7/maximum_multiple/__init__.py | 1 + kyu_7/maximum_multiple/maximum_multiple.py | 10 +--- .../maximum_multiple/test_maximum_multiple.py | 55 ++++++++----------- 3 files changed, 28 insertions(+), 38 deletions(-) diff --git a/kyu_7/maximum_multiple/__init__.py b/kyu_7/maximum_multiple/__init__.py index e69de29bb2d..8a122147efa 100644 --- a/kyu_7/maximum_multiple/__init__.py +++ b/kyu_7/maximum_multiple/__init__.py @@ -0,0 +1 @@ +"""Maximum Multiple.""" diff --git a/kyu_7/maximum_multiple/maximum_multiple.py b/kyu_7/maximum_multiple/maximum_multiple.py index a4d1ecabf46..15aedc20970 100644 --- a/kyu_7/maximum_multiple/maximum_multiple.py +++ b/kyu_7/maximum_multiple/maximum_multiple.py @@ -1,5 +1,6 @@ """ -Solution for -> Maximum Multiple +Solution for -> Maximum Multiple. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,27 +8,22 @@ def max_multiple(divisor: int, bound: int) -> int: """ - Given a Divisor and a Bound, find the - largest integer N + Given a Divisor and a Bound, find the largest integer N. Conditions: - 1. N is divisible by divisor 2. N is less than or equal to bound 3. N is greater than 0. Notes: - 1. The parameters (divisor, bound) passed to the function are only positive values. - 2. It's guaranteed that a divisor is Found. :param divisor: int :param bound: int :return: int """ - while bound > 0: if bound % divisor == 0: return bound diff --git a/kyu_7/maximum_multiple/test_maximum_multiple.py b/kyu_7/maximum_multiple/test_maximum_multiple.py index f4493af6530..8fadcf84aac 100644 --- a/kyu_7/maximum_multiple/test_maximum_multiple.py +++ b/kyu_7/maximum_multiple/test_maximum_multiple.py @@ -1,11 +1,13 @@ """ -Test for -> Maximum Multiple +Test for -> Maximum Multiple. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.maximum_multiple.maximum_multiple import max_multiple @@ -30,14 +32,24 @@ url='https://www.codewars.com/kata/5aba780a6a176b029800041c', name='Source/Kata') class MaximumMultipleTestCase(unittest.TestCase): - """ - Testing max_multiple function - """ + """Testing max_multiple function.""" - def test_maximum_multiple(self): + @parameterized.expand([ + (2, 7, 6), + (3, 10, 9), + (7, 17, 14), + (10, 50, 50), + (37, 200, 185), + (7, 100, 98), + (37, 100, 74), + (1, 13, 13), + (1, 1, 1), + (22, 9, 0), + (43, 7, 0), + (50, 7, 0)]) + def test_maximum_multiple(self, divisor, bound, expected): """ - Testing max_multiple function with - various test data + Testing max_multiple function with various test data. :return: """ @@ -51,27 +63,8 @@ def test_maximum_multiple(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter divisor, bound and verify the output"): - data: tuple = ( - (2, 7, 6), - (3, 10, 9), - (7, 17, 14), - (10, 50, 50), - (37, 200, 185), - (7, 100, 98), - (37, 100, 74), - (1, 13, 13), - (1, 1, 1), - (22, 9, 0), - (43, 7, 0), - (50, 7, 0)) - - for divisor, bound, expected in data: - - print_log(divisor=divisor, - bound=bound, - expected=expected) - - self.assertEqual(expected, - max_multiple(divisor, - bound)) + with allure.step(f"Enter divisor: {divisor}, " + f"bound: {bound}, " + f"and verify the expected output: {expected}."): + print_log(divisor=divisor, bound=bound, expected=expected) + self.assertEqual(expected, max_multiple(divisor, bound)) From bca03063a7eaac51da854a5b166201c46f4f4b1b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:40:56 -0800 Subject: [PATCH 714/873] Password validator --- kyu_7/password_validator/__init__.py | 1 + kyu_7/password_validator/password.py | 5 ++- kyu_7/password_validator/test_password.py | 49 ++++++++++++----------- 3 files changed, 30 insertions(+), 25 deletions(-) diff --git a/kyu_7/password_validator/__init__.py b/kyu_7/password_validator/__init__.py index e69de29bb2d..de998915abf 100644 --- a/kyu_7/password_validator/__init__.py +++ b/kyu_7/password_validator/__init__.py @@ -0,0 +1 @@ +"""Password validator.""" diff --git a/kyu_7/password_validator/password.py b/kyu_7/password_validator/password.py index e239e69472b..a76755c5ddc 100644 --- a/kyu_7/password_validator/password.py +++ b/kyu_7/password_validator/password.py @@ -1,5 +1,6 @@ """ -Solution for -> Password validator +Solution for -> Password validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def password(string: str) -> bool: """ + Password validator function. + Your job is to create a simple password validation function, as seen on many websites. diff --git a/kyu_7/password_validator/test_password.py b/kyu_7/password_validator/test_password.py index b6f5b6bd2ef..bf24f4b6eda 100644 --- a/kyu_7/password_validator/test_password.py +++ b/kyu_7/password_validator/test_password.py @@ -1,5 +1,6 @@ """ -Test for -> Password validator +Test for -> Password validator. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.password_validator.password import password @@ -30,13 +32,23 @@ name='Source/Kata') # pylint: enable-msg=R0801 class PasswordTestCase(unittest.TestCase): - """ - Testing password function - """ + """Testing password function.""" - def test_password(self): + @parameterized.expand([ + ("Abcd1234", True), + ("Abcd123", False), + ("abcd1234", False), + ("AbcdefGhijKlmnopQRsTuvwxyZ1234567890", True), + ("ABCD1234", False), + (r"Ab1!@#$%^&*()-_+={}[]|\:;?/>.<,", True), + (r"!@#$%^&*()-_+={}[]|\:;?/>.<,", False), + ("", False), + (" aA1----", True), + ("4aA1----", True)]) + def test_password(self, string, expected): """ - Testing password function with various test inputs + Testing password function with various test inputs. + :return: """ # pylint: disable-msg=R0801 @@ -44,24 +56,13 @@ def test_password(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the result"): - test_data: tuple = ( - ("Abcd1234", True), - ("Abcd123", False), - ("abcd1234", False), - ("AbcdefGhijKlmnopQRsTuvwxyZ1234567890", True), - ("ABCD1234", False), - (r"Ab1!@#$%^&*()-_+={}[]|\:;?/>.<,", True), - (r"!@#$%^&*()-_+={}[]|\:;?/>.<,", False), - ("", False), - (" aA1----", True), - ("4aA1----", True)) - - for string, expected in test_data: - print_log(string=string, expected=expected) - self.assertEqual(expected, password(string)) + with allure.step(f"Enter test string: {string} " + f"and verify the expected result: {expected}."): + print_log(string=string, expected=expected) + self.assertEqual(expected, password(string)) From 9086ad3aecf3f21e87b5fd88cf231bc51a1575da Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:46:23 -0800 Subject: [PATCH 715/873] # Powers of 3 --- kyu_7/powers_of_3/README.md | 2 +- kyu_7/powers_of_3/__init__.py | 1 + kyu_7/powers_of_3/largest_power.py | 5 ++++- kyu_7/powers_of_3/test_largest_power.py | 10 +++++----- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/kyu_7/powers_of_3/README.md b/kyu_7/powers_of_3/README.md index cc35ff39123..235efd9d560 100644 --- a/kyu_7/powers_of_3/README.md +++ b/kyu_7/powers_of_3/README.md @@ -1,6 +1,6 @@ # Powers of 3 -Given a positive integer N, return the largest integer k such that 3^k < N. +Given a positive integer `N`, return the largest integer `k` such that `3^k < N`. For example, diff --git a/kyu_7/powers_of_3/__init__.py b/kyu_7/powers_of_3/__init__.py index e69de29bb2d..38dad8bdd50 100644 --- a/kyu_7/powers_of_3/__init__.py +++ b/kyu_7/powers_of_3/__init__.py @@ -0,0 +1 @@ +"""Powers of 3.""" diff --git a/kyu_7/powers_of_3/largest_power.py b/kyu_7/powers_of_3/largest_power.py index 7236e2293db..25fcd197639 100644 --- a/kyu_7/powers_of_3/largest_power.py +++ b/kyu_7/powers_of_3/largest_power.py @@ -1,5 +1,6 @@ """ -Solution for -> Powers of 3 +Solution for -> Powers of 3. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def largest_power(num: int) -> int: """ + Largest power function. + Given a positive integer N, return the largest integer k such that 3^k < N. diff --git a/kyu_7/powers_of_3/test_largest_power.py b/kyu_7/powers_of_3/test_largest_power.py index 557adfc8531..d5620b86059 100644 --- a/kyu_7/powers_of_3/test_largest_power.py +++ b/kyu_7/powers_of_3/test_largest_power.py @@ -1,5 +1,6 @@ """ -Test for -> Powers of 3 +Test for -> Powers of 3. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -32,13 +33,12 @@ name='Source/Kata') # pylint: enable=R0801 class LargestPowerTestCase(unittest.TestCase): - """ - Testing largestPower function - """ + """Testing largestPower function.""" def test_largest_power(self): """ - Testing largestPower function + Testing largestPower function. + :return: """ # pylint: disable-msg=R0801 From 0518e84c524cc668fd5ccbdff58826e83e2b8f16 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:56:03 -0800 Subject: [PATCH 716/873] # Pull your words together, man --- kyu_7/pull_your_words_together_man/README.md | 2 +- .../pull_your_words_together_man/__init__.py | 1 + .../sentencify.py | 6 ++- .../test_sentencify.py | 45 +++++++++---------- 4 files changed, 26 insertions(+), 28 deletions(-) diff --git a/kyu_7/pull_your_words_together_man/README.md b/kyu_7/pull_your_words_together_man/README.md index d1b6a604783..f159e0197ba 100644 --- a/kyu_7/pull_your_words_together_man/README.md +++ b/kyu_7/pull_your_words_together_man/README.md @@ -16,7 +16,7 @@ it in normal English orthography, it just outputs a list of words. Robbie has pulled multiple all-nighters to get this project finished, and he needs some beauty sleep. So, he wants you to write the last part -of his code, a sentencify function, which takes the output that the +of his code, a `sentencify` function, which takes the output that the machine gives, and formats it into proper English orthography. **Your function should:** diff --git a/kyu_7/pull_your_words_together_man/__init__.py b/kyu_7/pull_your_words_together_man/__init__.py index e69de29bb2d..529300dabc7 100644 --- a/kyu_7/pull_your_words_together_man/__init__.py +++ b/kyu_7/pull_your_words_together_man/__init__.py @@ -0,0 +1 @@ +"""Pull your words together, man.""" diff --git a/kyu_7/pull_your_words_together_man/sentencify.py b/kyu_7/pull_your_words_together_man/sentencify.py index cafba6dd414..b9db5baea6b 100644 --- a/kyu_7/pull_your_words_together_man/sentencify.py +++ b/kyu_7/pull_your_words_together_man/sentencify.py @@ -1,5 +1,6 @@ """ -Solution for -> Pull your words together, man! +Solution for -> Pull your words together, man!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,13 +8,14 @@ def sentencify(words: list) -> str: """ + '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. - :param words: list :return: str """ diff --git a/kyu_7/pull_your_words_together_man/test_sentencify.py b/kyu_7/pull_your_words_together_man/test_sentencify.py index dcf4ace726d..2965a3d5653 100644 --- a/kyu_7/pull_your_words_together_man/test_sentencify.py +++ b/kyu_7/pull_your_words_together_man/test_sentencify.py @@ -1,5 +1,6 @@ """ -Test for -> Pull your words together, man! +Test for -> Pull your words together, man!. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.pull_your_words_together_man.sentencify import sentencify @@ -27,19 +29,26 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SentencifyTestCase(unittest.TestCase): - """ - Testing 'sentencify' function - """ + """Testing 'sentencify' function.""" - def test_sentencify(self): + @parameterized.expand([ + (["i", "am", "an", "AI"], + "I am an AI."), + (["yes"], + "Yes."), + (["FIELDS", "of", "CORN", "are", "to", "be", "sown"], + "FIELDS of CORN are to be sown."), + (["i'm", "afraid", "I", "can't", "let", "you", "do", "that"], + "I'm afraid I can't let you do that.")]) + def test_sentencify(self, words, expected): """ - Testing 'sentencify' function. + Testing 'sentencify' function with various test data. + 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: """ # pylint: disable-msg=R0801 @@ -52,21 +61,7 @@ def test_sentencify(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter a list of strings" - " and verify the result"): - test_data = [ - (["i", "am", "an", "AI"], - "I am an AI."), - (["yes"], - "Yes."), - (["FIELDS", "of", "CORN", "are", "to", "be", "sown"], - "FIELDS of CORN are to be sown."), - (["i'm", "afraid", "I", "can't", "let", "you", "do", "that"], - "I'm afraid I can't let you do that.")] - - for words, expected in test_data: - print_log(expected=expected, - words=words) - - self.assertEqual(expected, - sentencify(words)) + with allure.step(f"Enter a list of strings: {words}" + f" and verify the expected result: {expected}."): + print_log(expected=expected, words=words) + self.assertEqual(expected, sentencify(words)) From 0c2936ea3475738fb57f5d9262c5a504e6be2e6a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 03:58:37 -0800 Subject: [PATCH 717/873] Update test_sentencify.py --- kyu_7/pull_your_words_together_man/test_sentencify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_7/pull_your_words_together_man/test_sentencify.py b/kyu_7/pull_your_words_together_man/test_sentencify.py index 2965a3d5653..f1d3b9855b1 100644 --- a/kyu_7/pull_your_words_together_man/test_sentencify.py +++ b/kyu_7/pull_your_words_together_man/test_sentencify.py @@ -38,8 +38,8 @@ class SentencifyTestCase(unittest.TestCase): "Yes."), (["FIELDS", "of", "CORN", "are", "to", "be", "sown"], "FIELDS of CORN are to be sown."), - (["i'm", "afraid", "I", "can't", "let", "you", "do", "that"], - "I'm afraid I can't let you do that.")]) + ([r"i'm", "afraid", "I", "can't", "let", "you", "do", "that"], + r"I'm afraid I can't let you do that.")]) def test_sentencify(self, words, expected): """ Testing 'sentencify' function with various test data. From 81b244bd0a42895746fc57e09c4789992acc18ce Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:05:15 -0800 Subject: [PATCH 718/873] Update sentencify.py --- kyu_7/pull_your_words_together_man/sentencify.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kyu_7/pull_your_words_together_man/sentencify.py b/kyu_7/pull_your_words_together_man/sentencify.py index b9db5baea6b..458ef5be29b 100644 --- a/kyu_7/pull_your_words_together_man/sentencify.py +++ b/kyu_7/pull_your_words_together_man/sentencify.py @@ -16,6 +16,7 @@ def sentencify(words: list) -> str: 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. + :param words: list :return: str """ From 3b64528301438c74a345cd6a1691c59a7a4d191b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:10:44 -0800 Subject: [PATCH 719/873] # The museum of incredible dull things --- .../sentencify.py | 2 +- kyu_7/remove_the_minimum/__init__.py | 1 + .../remove_the_minimum/remove_the_minimum.py | 7 +++-- .../test_remove_the_minimum.py | 28 ++++++++++--------- 4 files changed, 21 insertions(+), 17 deletions(-) diff --git a/kyu_7/pull_your_words_together_man/sentencify.py b/kyu_7/pull_your_words_together_man/sentencify.py index 458ef5be29b..4e079b8197b 100644 --- a/kyu_7/pull_your_words_together_man/sentencify.py +++ b/kyu_7/pull_your_words_together_man/sentencify.py @@ -16,7 +16,7 @@ def sentencify(words: list) -> str: 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. - + :param words: list :return: str """ diff --git a/kyu_7/remove_the_minimum/__init__.py b/kyu_7/remove_the_minimum/__init__.py index e69de29bb2d..31096ae2032 100644 --- a/kyu_7/remove_the_minimum/__init__.py +++ b/kyu_7/remove_the_minimum/__init__.py @@ -0,0 +1 @@ +"""The museum of incredible dull things.""" diff --git a/kyu_7/remove_the_minimum/remove_the_minimum.py b/kyu_7/remove_the_minimum/remove_the_minimum.py index e0a2f124584..eed554f5050 100644 --- a/kyu_7/remove_the_minimum/remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/remove_the_minimum.py @@ -1,5 +1,6 @@ """ -Solution for -> The museum of incredible dull things +Solution for -> The museum of incredible dull things. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,18 +8,18 @@ def remove_smallest(numbers: list) -> list: """ + Remove the smallest function. + Given an array of integers, remove the smallest value. Do not mutate the original array/list. If there are multiple elements with the same value, remove the one with a lower index. If you get an empty array/list, return an empty array/list. Don't change the order of the elements that are left. - :param numbers: list :return: list """ new_array: list = [] - if len(numbers) > 0: min_num: int = min(numbers) min_i: int = numbers.index(min_num) diff --git a/kyu_7/remove_the_minimum/test_remove_the_minimum.py b/kyu_7/remove_the_minimum/test_remove_the_minimum.py index 9ce02b54f04..673ba46c589 100644 --- a/kyu_7/remove_the_minimum/test_remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/test_remove_the_minimum.py @@ -1,5 +1,6 @@ """ -Test for -> The museum of incredible dull things +Test for -> The museum of incredible dull things. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,14 +29,13 @@ name='Source/Kata') # pylint: enable-msg=R0801 class RemoveSmallestTestCase(unittest.TestCase): - """ - Testing remove_smallest function - """ + """Testing remove_smallest function.""" @staticmethod def random_list(): """ - Helper function + Helper function. + :return: """ with allure.step("Create a random list"): @@ -43,7 +43,8 @@ def random_list(): def test_remove_smallest(self): """ - Test lists with multiple digits + Test lists with multiple digits. + :return: """ # pylint: disable-msg=R0801 @@ -77,7 +78,8 @@ def test_remove_smallest(self): def test_remove_smallest_empty_list(self): """ - Test with empty list + Test with empty list. + :return: """ # pylint: disable-msg=R0801 @@ -91,15 +93,15 @@ def test_remove_smallest_empty_list(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Remove smallest value from " - "the empty list"): + with allure.step("Remove smallest value from the empty list"): self.assertEqual(remove_smallest([]), [], "Wrong result for []") def test_remove_smallest_one_element_list(self): """ - Returns [] if list has only one element + Returns [] if list has only one element. + :return: """ # pylint: disable-msg=R0801 @@ -125,7 +127,8 @@ def test_remove_smallest_one_element_list(self): def test_remove_smallest_random_list(self): """ - Returns a list that misses only one element + Returns a list that misses only one element. + :return: """ # pylint: disable-msg=R0801 @@ -139,8 +142,7 @@ def test_remove_smallest_random_list(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Remove smallest value from " - "the random list"): + with allure.step("Remove smallest value from the random list"): i: int = 0 while i < 10: arr = self.random_list() From 1ba22dcedaf8f9333420f65d694625126d3869dc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:16:45 -0800 Subject: [PATCH 720/873] # Share price --- kyu_7/share_prices/__init__.py | 1 + kyu_7/share_prices/share_price.py | 6 ++-- kyu_7/share_prices/test_share_price.py | 44 +++++++++++--------------- 3 files changed, 24 insertions(+), 27 deletions(-) diff --git a/kyu_7/share_prices/__init__.py b/kyu_7/share_prices/__init__.py index e69de29bb2d..af633600374 100644 --- a/kyu_7/share_prices/__init__.py +++ b/kyu_7/share_prices/__init__.py @@ -0,0 +1 @@ +"""Share price.""" diff --git a/kyu_7/share_prices/share_price.py b/kyu_7/share_prices/share_price.py index 36a982df44e..19573016a03 100644 --- a/kyu_7/share_prices/share_price.py +++ b/kyu_7/share_prices/share_price.py @@ -1,5 +1,6 @@ """ -Solution for -> Share prices +Solution for -> Share prices. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,12 +8,13 @@ def share_price(invested: int, changes: list) -> str: """ + Share prices function. + Calculates, and returns the current price of your share, given the following two arguments: 1. invested(number), the amount of money you initially invested in the given share - 2. changes(array of numbers), contains your shares daily movement percentages diff --git a/kyu_7/share_prices/test_share_price.py b/kyu_7/share_prices/test_share_price.py index 80bce1fc3ce..464df38e1cf 100644 --- a/kyu_7/share_prices/test_share_price.py +++ b/kyu_7/share_prices/test_share_price.py @@ -1,5 +1,6 @@ """ -Test for -> Share prices +Test for -> Share prices. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.share_prices.share_price import share_price @@ -29,14 +31,18 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SharePriceTestCase(unittest.TestCase): - """ - Testing share_price function - """ - - def test_share_price(self): + """Testing share_price function.""" + + @parameterized.expand([ + (100, [], '100.00'), + (100, [-50, 50], '75.00'), + (100, [-50, 100], '100.00'), + (100, [-20, 30], '104.00'), + (1000, [0, 2, 3, 6], '1113.64')]) + def test_share_price(self, invested, changes, expected): """ - Testing share_price function - with multiple test inputs + Testing share_price function with multiple test inputs. + :return: """ # pylint: disable-msg=R0801 @@ -49,20 +55,8 @@ def test_share_price(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter invested, changes " - "and verify the output"): - test_data: tuple = ( - (100, [], '100.00'), - (100, [-50, 50], '75.00'), - (100, [-50, 100], '100.00'), - (100, [-20, 30], '104.00'), - (1000, [0, 2, 3, 6], '1113.64')) - - for invested, changes, expected in test_data: - - print_log(invested=invested, - changes=changes, - expected=False) - - self.assertEqual(expected, - share_price(invested, changes)) + with allure.step(f"Enter invested: {invested}, " + f"changes: {changes}" + f"and verify the expected output: {expected}."): + print_log(invested=invested, changes=changes, expected=False) + self.assertEqual(expected, share_price(invested, changes)) From 4dd10c662dad7b04e4610be45727aefbc761fae2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:25:36 -0800 Subject: [PATCH 721/873] # Significant Figures Challenge --- kyu_7/significant_figures/__init__.py | 1 + .../significant_figures/number_of_sigfigs.py | 18 +++--- .../test_number_of_sigfigs.py | 55 +++++++++---------- 3 files changed, 38 insertions(+), 36 deletions(-) diff --git a/kyu_7/significant_figures/__init__.py b/kyu_7/significant_figures/__init__.py index e69de29bb2d..1dcdd391be7 100644 --- a/kyu_7/significant_figures/__init__.py +++ b/kyu_7/significant_figures/__init__.py @@ -0,0 +1 @@ +"""Significant Figures Challenge.""" diff --git a/kyu_7/significant_figures/number_of_sigfigs.py b/kyu_7/significant_figures/number_of_sigfigs.py index e87be25ad9c..5ff808b10b8 100644 --- a/kyu_7/significant_figures/number_of_sigfigs.py +++ b/kyu_7/significant_figures/number_of_sigfigs.py @@ -1,5 +1,6 @@ """ -Solution for -> Significant Figures +Solution for -> Significant Figures. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,8 @@ def number_of_sigfigs(number: str) -> int: """ - return the number of sigfigs in the - passed in string "number" + Return the number of significant figures in the given number. + :param number: :return: """ @@ -28,8 +29,8 @@ def number_of_sigfigs(number: str) -> int: def normalize_string(number: str) -> str: """ - Normalize string by converting it into a - number and back to string once again + Normalize string by converting it into a number and back to string again. + :param number: :return: """ @@ -44,12 +45,12 @@ def normalize_string(number: str) -> str: def remove_extra_zeroes(number: str) -> str: """ - Remove all zeroes from the end of the string + Remove all zeroes from the end of the string. + :param number: :return: """ index = None - for i in range(-1, len(number) * -1, -1): if number[i] == '0': index = i @@ -64,7 +65,8 @@ def remove_extra_zeroes(number: str) -> str: def remove_extra_leading_zeroes(number: str) -> str: """ - Remove all extra leading zeroes from the head of the string + Remove all extra leading zeroes from the head of the string. + :param number: :return: """ diff --git a/kyu_7/significant_figures/test_number_of_sigfigs.py b/kyu_7/significant_figures/test_number_of_sigfigs.py index 4054915c646..03263d2361a 100644 --- a/kyu_7/significant_figures/test_number_of_sigfigs.py +++ b/kyu_7/significant_figures/test_number_of_sigfigs.py @@ -1,5 +1,6 @@ """ -Test for -> Significant Figures +Test for -> Significant Figures. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.significant_figures.number_of_sigfigs import number_of_sigfigs @@ -26,14 +28,28 @@ url='https://www.codewars.com/kata/5d9fe0ace0aad7001290acb7', name='Source/Kata') class NumberOfSigFigsTestCase(unittest.TestCase): - """ - Testing number_of_sigfigs function - """ + """Testing number_of_sigfigs function.""" - def test_number_of_sigfigs(self): + @parameterized.expand([ + (1, "1"), + (0, "0"), + (1, "0003"), + (1, "3000"), + (3, "404"), + (7, "050030210"), + (1, "0.1"), + (2, '1.0'), + (3, '4.40'), + (4, '90.00'), + (1, "0.0"), + (9, '03.27310000'), + (10, '23625700.00'), + (10, '09.971730000'), + (10, '0000.0673560000')]) + def test_number_of_sigfigs(self, exp, inp): """ - Testing number_of_sigfigs function - with various test inputs + Testing 'number_of_sigfigs' function with various test inputs. + :return: """ # pylint: disable-msg=R0801 @@ -47,24 +63,7 @@ def test_number_of_sigfigs(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Pass string and verify the output"): - test_data: tuple = ( - (1, "1"), - (0, "0"), - (1, "0003"), - (1, "3000"), - (3, "404"), - (7, "050030210"), - (1, "0.1"), - (2, '1.0'), - (3, '4.40'), - (4, '90.00'), - (1, "0.0"), - (9, '03.27310000'), - (10, '23625700.00'), - (10, '09.971730000'), - (10, '0000.0673560000')) - - for exp, inp in test_data: - print_log(inp=inp, expected=exp) - self.assertEqual(exp, number_of_sigfigs(inp)) + with allure.step(f"Pass a number: {inp} " + f"and verify the expected output: {exp}."): + print_log(inp=inp, expected=exp) + self.assertEqual(exp, number_of_sigfigs(inp)) From 589a152c56d9e77770e16f5a0d00ba58e0139f43 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:33:44 -0800 Subject: [PATCH 722/873] # Simple Fun #152: Invite More Women --- kyu_7/simple_fun_152/__init__.py | 1 + kyu_7/simple_fun_152/invite_more_women.py | 5 +- .../simple_fun_152/test_invite_more_women.py | 59 ++++++++----------- 3 files changed, 30 insertions(+), 35 deletions(-) diff --git a/kyu_7/simple_fun_152/__init__.py b/kyu_7/simple_fun_152/__init__.py index e69de29bb2d..16224d521e2 100644 --- a/kyu_7/simple_fun_152/__init__.py +++ b/kyu_7/simple_fun_152/__init__.py @@ -0,0 +1 @@ +"""Simple Fun #152: Invite More Women.""" diff --git a/kyu_7/simple_fun_152/invite_more_women.py b/kyu_7/simple_fun_152/invite_more_women.py index 3cb3412082a..90a09bcae51 100644 --- a/kyu_7/simple_fun_152/invite_more_women.py +++ b/kyu_7/simple_fun_152/invite_more_women.py @@ -1,5 +1,6 @@ """ -Solution for -> Simple Fun #152: Invite More Women? +Solution for -> Simple Fun #152: Invite More Women?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def invite_more_women(arr: list) -> bool: """ + Invite More Women function. + Arthur wants to make sure that there are at least as many women as men at this year's party. He gave you a list of integers of all the party goers. diff --git a/kyu_7/simple_fun_152/test_invite_more_women.py b/kyu_7/simple_fun_152/test_invite_more_women.py index 0d50b8c2f9d..68e7b8da662 100644 --- a/kyu_7/simple_fun_152/test_invite_more_women.py +++ b/kyu_7/simple_fun_152/test_invite_more_women.py @@ -1,5 +1,6 @@ """ -Test for -> Simple Fun #152: Invite More Women? +Test for -> Simple Fun #152: Invite More Women?. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.simple_fun_152.invite_more_women import invite_more_women @@ -26,15 +28,16 @@ name='Source/Kata') # pylint: enable-msg=R0801 class InviteMoreWomenTestCase(unittest.TestCase): - """ - Simple Fun #152: Invite More Women? - Testing invite_more_women function - """ + """Testing invite_more_women function.""" - def test_invite_more_women_positive(self): + @parameterized.expand([ + ([-1, -1, -1], False), + ([1, -1], False), + ([], False)]) + def test_invite_more_women_positive(self, arr, expected): """ - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) + Testing invite_more_women function (positive). + :return: """ # pylint: disable-msg=R0801 @@ -47,23 +50,18 @@ def test_invite_more_women_positive(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step('Enter test data and verify the output'): - data: tuple = ( - ([-1, -1, -1], False), - ([1, -1], False), - ([], False)) - - for d in data: - arr = d[0] - expected = d[1] - - print_log(arr=arr, expected=expected) - self.assertEqual(invite_more_women(arr), expected) + with allure.step(f'Enter test data: {arr} ' + f'and verify the expected output: {expected}.'): + print_log(arr=arr, expected=expected) + self.assertEqual(invite_more_women(arr), expected) - def test_invite_more_women_negative(self): + @parameterized.expand([ + ([1, -1, 1], True), + ([1, 1, 1], True)]) + def test_invite_more_women_negative(self, arr, expected): """ - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing invite_more_women function (negative). + :return: """ # pylint: disable-msg=R0801 @@ -76,14 +74,7 @@ def test_invite_more_women_negative(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step('Enter test data and verify the output'): - data: tuple = ( - ([1, -1, 1], True), - ([1, 1, 1], True)) - - for d in data: - arr = d[0] - expected = d[1] - - print_log(arr=arr, expected=expected) - self.assertEqual(invite_more_women(arr), expected) + with allure.step(f'Enter test data: {arr} ' + f'and verify the expected output: {expected}.'): + print_log(arr=arr, expected=expected) + self.assertEqual(invite_more_women(arr), expected) From 916feadd64056809ff89e65402359b7e6a1cdcc1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:36:31 -0800 Subject: [PATCH 723/873] Create pydocstyle_kyu7.yml --- .github/workflows/pydocstyle_kyu7.yml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/pydocstyle_kyu7.yml diff --git a/.github/workflows/pydocstyle_kyu7.yml b/.github/workflows/pydocstyle_kyu7.yml new file mode 100644 index 00000000000..7f722ee07ed --- /dev/null +++ b/.github/workflows/pydocstyle_kyu7.yml @@ -0,0 +1,46 @@ +--- +name: pydocstyle for kyu7 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu7' + +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 pydocstyle + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Check pydocstyle version + run: | + pydocstyle --version + - name: Doc style checking with pydocstyle + # Pydocstyle testing (Guide) + # https://www.pydocstyle.org/en/stable/usage.html#cli-usage + run: | + pydocstyle --verbose --explain --count kyu_7 From 3943876c69e3f0164585625eb95664ce02ca53c0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:45:12 -0800 Subject: [PATCH 724/873] # Sort Out The Men From Boys --- kyu_7/sort_out_the_men_from_boys/__init__.py | 1 + .../men_from_boys.py | 10 +-- .../test_men_from_boys.py | 86 +++++++++---------- 3 files changed, 48 insertions(+), 49 deletions(-) diff --git a/kyu_7/sort_out_the_men_from_boys/__init__.py b/kyu_7/sort_out_the_men_from_boys/__init__.py index e69de29bb2d..c004c5bb75d 100644 --- a/kyu_7/sort_out_the_men_from_boys/__init__.py +++ b/kyu_7/sort_out_the_men_from_boys/__init__.py @@ -0,0 +1 @@ +"""Sort Out The Men From Boys.""" diff --git a/kyu_7/sort_out_the_men_from_boys/men_from_boys.py b/kyu_7/sort_out_the_men_from_boys/men_from_boys.py index ee01ac3cce9..311bf6d7a82 100644 --- a/kyu_7/sort_out_the_men_from_boys/men_from_boys.py +++ b/kyu_7/sort_out_the_men_from_boys/men_from_boys.py @@ -1,5 +1,6 @@ """ -Solution for -> Sort Out The Men From Boys +Solution for -> Sort Out The Men From Boys. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,7 +8,7 @@ from typing import List -def men_from_boys(arr: List[int]) -> list: +def men_from_boys(arr: List[int]) -> List[int]: """ Sort out the men from the boys. @@ -19,12 +20,11 @@ def men_from_boys(arr: List[int]) -> list: Since, Men are stronger than Boys, then Even numbers in ascending order while odds in descending. - :param arr: list - :return: list + :param arr: List + :return: List """ boys: List[int] = [] men: List[int] = [] - for a in arr: if a % 2 == 0: if a not in men: diff --git a/kyu_7/sort_out_the_men_from_boys/test_men_from_boys.py b/kyu_7/sort_out_the_men_from_boys/test_men_from_boys.py index c9c75ede174..9ca29f454a1 100644 --- a/kyu_7/sort_out_the_men_from_boys/test_men_from_boys.py +++ b/kyu_7/sort_out_the_men_from_boys/test_men_from_boys.py @@ -1,5 +1,6 @@ """ -Test for -> Sort Out The Men From Boys +Test for -> Sort Out The Men From Boys. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.sort_out_the_men_from_boys.men_from_boys import men_from_boys @@ -31,14 +33,42 @@ name='Source/Kata') # pylint: enable-msg=R0801 class MenFromBoysTestCase(unittest.TestCase): - """ - Testing men_from_boys function - """ + """Testing men_from_boys function.""" - def test_men_from_boys(self): + @parameterized.expand([ + ([7, 3, 14, 17], + [14, 17, 7, 3]), + ([2, 43, 95, 90, 37], + [2, 90, 95, 43, 37]), + ([20, 33, 50, 34, 43, 46], + [20, 34, 46, 50, 43, 33]), + ([82, 91, 72, 76, 76, 100, 85], + [72, 76, 82, 100, 91, 85]), + ([2, 15, 17, 15, 2, 10, 10, 17, 1, 1], + [2, 10, 17, 15, 1]), + ([-32, -39, -35, -41], + [-32, -35, -39, -41]), + ([-64, -71, -63, -66, -65], + [-66, -64, -63, -65, -71]), + ([-94, -99, -100, -99, -96, -99], + [-100, -96, -94, -99]), + ([-53, -26, -53, -27, -49, -51, -14], + [-26, -14, -27, -49, -51, -53]), + ([-17, -45, -15, -33, -85, -56, -86, -30], + [-86, -56, -30, -15, -17, -33, -45, -85]), + ([12, 89, -38, -78], + [-78, -38, 12, 89]), + ([2, -43, 95, -90, 37], + [-90, 2, 95, 37, -43]), + ([82, -61, -87, -12, 21, 1], + [-12, 82, 21, 1, -61, -87]), + ([63, -57, 76, -85, 88, 2, -28], + [-28, 2, 76, 88, 63, -57, -85]), + ([49, 818, -282, 900, 928, 281, -282, -1], + [-282, 818, 900, 928, 281, 49, -1])]) + def test_men_from_boys(self, arr, expected): """ - Testing men_from_boys function with - various test inputs + Testing men_from_boys function with various test inputs. Scenario Now that the competition gets tough it @@ -70,40 +100,8 @@ def test_men_from_boys(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step('Given an list of integers => ' - 'separate the even numbers from the odds'): - test_data: tuple = ( - ([7, 3, 14, 17], - [14, 17, 7, 3]), - ([2, 43, 95, 90, 37], - [2, 90, 95, 43, 37]), - ([20, 33, 50, 34, 43, 46], - [20, 34, 46, 50, 43, 33]), - ([82, 91, 72, 76, 76, 100, 85], - [72, 76, 82, 100, 91, 85]), - ([2, 15, 17, 15, 2, 10, 10, 17, 1, 1], - [2, 10, 17, 15, 1]), - ([-32, -39, -35, -41], - [-32, -35, -39, -41]), - ([-64, -71, -63, -66, -65], - [-66, -64, -63, -65, -71]), - ([-94, -99, -100, -99, -96, -99], - [-100, -96, -94, -99]), - ([-53, -26, -53, -27, -49, -51, -14], - [-26, -14, -27, -49, -51, -53]), - ([-17, -45, -15, -33, -85, -56, -86, -30], - [-86, -56, -30, -15, -17, -33, -45, -85]), - ([12, 89, -38, -78], - [-78, -38, 12, 89]), - ([2, -43, 95, -90, 37], - [-90, 2, 95, 37, -43]), - ([82, -61, -87, -12, 21, 1], - [-12, 82, 21, 1, -61, -87]), - ([63, -57, 76, -85, 88, 2, -28], - [-28, 2, 76, 88, 63, -57, -85]), - ([49, 818, -282, 900, 928, 281, -282, -1], - [-282, 818, 900, 928, 281, 49, -1])) - - for arr, expected in test_data: - print_log(arr=arr, expected=expected) - self.assertEqual(expected, men_from_boys(arr)) + with allure.step(f'Given an list of integers => {arr}' + f'separate the even numbers from the odds' + f' and verify the expected result: {expected}.'): + print_log(arr=arr, expected=expected) + self.assertEqual(expected, men_from_boys(arr)) From eb9ec3597ec40c718fb14396e58ab665fc888068 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:49:28 -0800 Subject: [PATCH 725/873] # Substituting Variables Into Strings: Padded Numbers --- .../__init__.py | 1 + .../solution.py | 8 ++--- .../test_solution.py | 31 ++++++++++--------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/kyu_7/substituting_variables_into_strings_padded_numbers/__init__.py b/kyu_7/substituting_variables_into_strings_padded_numbers/__init__.py index e69de29bb2d..8fc9162e4fb 100644 --- a/kyu_7/substituting_variables_into_strings_padded_numbers/__init__.py +++ b/kyu_7/substituting_variables_into_strings_padded_numbers/__init__.py @@ -0,0 +1 @@ +"""Substituting Variables Into Strings: Padded Numbers.""" diff --git a/kyu_7/substituting_variables_into_strings_padded_numbers/solution.py b/kyu_7/substituting_variables_into_strings_padded_numbers/solution.py index 6dfd165045d..0bbc2b336de 100644 --- a/kyu_7/substituting_variables_into_strings_padded_numbers/solution.py +++ b/kyu_7/substituting_variables_into_strings_padded_numbers/solution.py @@ -1,5 +1,6 @@ """ -Test for -> Substituting Variables Into Strings: Padded Numbers +Test for -> Substituting Variables Into Strings: Padded Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,18 +8,15 @@ def solution(value: int) -> str: """ - Complete the solution so that it - returns a formatted string. + Complete the solution so that it returns a formatted string. The return value should equal "Value is VALUE" where value is a 5 digit padded number. - :param value: int :return: str """ result: str = str(value) - while len(result) != 5: result = '0' + result diff --git a/kyu_7/substituting_variables_into_strings_padded_numbers/test_solution.py b/kyu_7/substituting_variables_into_strings_padded_numbers/test_solution.py index 1ae99a303ed..1b69b8c8cc8 100644 --- a/kyu_7/substituting_variables_into_strings_padded_numbers/test_solution.py +++ b/kyu_7/substituting_variables_into_strings_padded_numbers/test_solution.py @@ -1,5 +1,6 @@ """ -Test for -> Substituting Variables Into Strings: Padded Numbers +Test for -> Substituting Variables Into Strings: Padded Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.substituting_variables_into_strings_padded_numbers.solution import solution @@ -29,12 +31,17 @@ name='Source/Kata') # pylint: enable-msg=R0801 class SolutionTestCase(unittest.TestCase): - """ - Testing 'solution' function - """ + """Testing 'solution' function.""" - def test_solution(self): + @parameterized.expand([ + (0, 'Value is 00000'), + (5, 'Value is 00005'), + (109, 'Value is 00109'), + (1204, 'Value is 01204')]) + def test_solution(self, value, expected): """ + Testing 'solution' function with various test data. + The function should return a formatted string. The return value should equal "Value is VALUE" where value is a 5 digit padded number. @@ -50,13 +57,7 @@ def test_solution(self): '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter a number and verify the result"): - test_data: tuple = ( - (0, 'Value is 00000'), - (5, 'Value is 00005'), - (109, 'Value is 00109'), - (1204, 'Value is 01204')) - - for value, expected in test_data: - print_log(expected=expected, value=value) - self.assertEqual(expected, solution(value)) + with allure.step(f"Enter a number: {value} " + f"and verify the expected result: {expected}."): + print_log(expected=expected, value=value) + self.assertEqual(expected, solution(value)) From 7618ca750e4ea2eda0a214d75840572328081ecc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:59:01 -0800 Subject: [PATCH 726/873] Sum of odd numbers --- kyu_7/sum_of_odd_numbers/README.md | 2 +- kyu_7/sum_of_odd_numbers/__init__.py | 1 + .../sum_of_odd_numbers/row_sum_odd_numbers.py | 16 +++--- .../test_row_sum_odd_numbers.py | 52 +++++++++---------- 4 files changed, 36 insertions(+), 35 deletions(-) diff --git a/kyu_7/sum_of_odd_numbers/README.md b/kyu_7/sum_of_odd_numbers/README.md index 194a47bb7f0..be4e1eb8c03 100644 --- a/kyu_7/sum_of_odd_numbers/README.md +++ b/kyu_7/sum_of_odd_numbers/README.md @@ -12,7 +12,7 @@ Given the triangle of consecutive odd numbers: ``` Calculate the row sums of this triangle from the row index -(starting at index 1) e.g.: +(starting at index `1`) e.g.: ```text row_sum_odd_numbers(1); # 1 diff --git a/kyu_7/sum_of_odd_numbers/__init__.py b/kyu_7/sum_of_odd_numbers/__init__.py index e69de29bb2d..28d737a9eda 100644 --- a/kyu_7/sum_of_odd_numbers/__init__.py +++ b/kyu_7/sum_of_odd_numbers/__init__.py @@ -0,0 +1 @@ +"""Sum of odd numbers.""" diff --git a/kyu_7/sum_of_odd_numbers/row_sum_odd_numbers.py b/kyu_7/sum_of_odd_numbers/row_sum_odd_numbers.py index 4dd4926ef24..2decaa56352 100644 --- a/kyu_7/sum_of_odd_numbers/row_sum_odd_numbers.py +++ b/kyu_7/sum_of_odd_numbers/row_sum_odd_numbers.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of odd numbers +Solution for -> Sum of odd numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,6 +8,8 @@ def odd_row(n: int) -> list: """ + Find odd row. + Given a triangle of consecutive odd numbers finds the triangle's row knowing its index (the rows are 1-indexed). @@ -27,7 +30,8 @@ def odd_row(n: int) -> list: def calc_first_number(n: int) -> int: """ - Calculate first number in the row + Calculate first number in the row. + :param n: :return: """ @@ -36,7 +40,8 @@ def calc_first_number(n: int) -> int: def calc_last_number(n: int) -> int: """ - Calculate last number in the row + Calculate last number in the row. + :param n: :return: """ @@ -45,9 +50,8 @@ def calc_last_number(n: int) -> int: def row_sum_odd_numbers(n: int) -> int: """ - Given the triangle of consecutive odd - numbers calculate the row sums of this - triangle from the row index (starting at index 1) + Sum of odd numbers function. + :param n: :return: """ diff --git a/kyu_7/sum_of_odd_numbers/test_row_sum_odd_numbers.py b/kyu_7/sum_of_odd_numbers/test_row_sum_odd_numbers.py index 78a08ff696a..05e471aa939 100644 --- a/kyu_7/sum_of_odd_numbers/test_row_sum_odd_numbers.py +++ b/kyu_7/sum_of_odd_numbers/test_row_sum_odd_numbers.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of odd numbers +Test for -> Sum of odd numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,6 +10,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.sum_of_odd_numbers.row_sum_odd_numbers \ import row_sum_odd_numbers @@ -34,13 +36,18 @@ name='Source/Kata') # pylint: enable=R0801 class OddRowTestCase(unittest.TestCase): - """ - Testing row_sum_odd_numbers function - """ + """Testing row_sum_odd_numbers function.""" - def test_row_sum_odd_numbers(self): + @parameterized.expand([ + (1, 1), + (2, 8), + (13, 2197), + (19, 6859), + (41, 68921)]) + def test_row_sum_odd_numbers(self, n, expected): """ - Testing the function with various test data + Testing the function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -48,30 +55,19 @@ def test_row_sum_odd_numbers(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    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)

    ") # pylint: enable-msg=R0801 - test_data: tuple = ( - (1, 1), - (2, 8), - (13, 2197), - (19, 6859), - (41, 68921)) - - for n, expected in test_data: - actual_result: int = row_sum_odd_numbers(n) - with allure.step(f"Enter the triangle's row ({n}) and verify the " - f"expected output ({expected}) " - f"vs actual result ({actual_result})"): - # pylint: disable=R0801 - print_log(n=n, - expected=expected, - result=actual_result) - - self.assertEqual(expected, - actual_result) - # pylint: enable=R0801 + actual_result: int = row_sum_odd_numbers(n) + with allure.step(f"Enter the triangle's row ({n}) and verify the " + f"expected output ({expected}) " + f"vs actual result ({actual_result})"): + # pylint: disable=R0801 + print_log(n=n, expected=expected, result=actual_result) + self.assertEqual(expected, actual_result) + # pylint: enable=R0801 From 4237e27858e73c88e5400619142b2352cfb74f1c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:04:45 -0800 Subject: [PATCH 727/873] # Sum of powers of 2 --- kyu_7/sum_of_powers_of_2/README.md | 8 +- kyu_7/sum_of_powers_of_2/__init__.py | 1 + .../sum_of_powers_of_2/sum_of_powers_of_2.py | 12 +-- .../test_sum_of_powers_of_2.py | 96 +++++++++---------- 4 files changed, 58 insertions(+), 59 deletions(-) diff --git a/kyu_7/sum_of_powers_of_2/README.md b/kyu_7/sum_of_powers_of_2/README.md index 172be641f45..c08fca60355 100644 --- a/kyu_7/sum_of_powers_of_2/README.md +++ b/kyu_7/sum_of_powers_of_2/README.md @@ -4,7 +4,7 @@ Given a number n, you should find a set of numbers for which the sum equals n. This set must consist exclusively of values -that are a power of 2 (eg: 2^0 => 1, 2^1 => 2, 2^2 => 4, ...). +that are a power of `2 (eg: 2^0 => 1, 2^1 => 2, 2^2 => 4, ...)`. The function powers takes a single parameter, the number n, and should return an array of unique numbers. @@ -12,9 +12,9 @@ should return an array of unique numbers. ## Criteria The function will always receive a valid input: any positive -integer between 1 and the max integer value for your language -(eg: for JavaScript this would be 9007199254740991 otherwise known -as Number.MAX_SAFE_INTEGER). +integer between `1` and the `max integer` value for your language +(eg: for JavaScript this would be `9007199254740991` otherwise known +as `Number.MAX_SAFE_INTEGER`). The function should return an array of numbers that are a **power of 2** diff --git a/kyu_7/sum_of_powers_of_2/__init__.py b/kyu_7/sum_of_powers_of_2/__init__.py index e69de29bb2d..f6a05a6ead3 100644 --- a/kyu_7/sum_of_powers_of_2/__init__.py +++ b/kyu_7/sum_of_powers_of_2/__init__.py @@ -0,0 +1 @@ +"""Sum of powers of 2.""" diff --git a/kyu_7/sum_of_powers_of_2/sum_of_powers_of_2.py b/kyu_7/sum_of_powers_of_2/sum_of_powers_of_2.py index 706d466512f..7cec9e34718 100644 --- a/kyu_7/sum_of_powers_of_2/sum_of_powers_of_2.py +++ b/kyu_7/sum_of_powers_of_2/sum_of_powers_of_2.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of powers of 2 +Solution for -> Sum of powers of 2. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -9,22 +10,21 @@ def powers(n: int) -> list: """ - Return an array of numbers - (that are a power of 2) - for which the input "n" is the sum + Powers function. + + Return an array of numbers (that are a power of 2) + for which the input "n" is the sum. :param n: :return: """ lst: list = [] power: int = 0 - while (2 ** power) <= n: lst.append(2 ** power) power += 1 i: int = -1 result: List[int] = [] - while sum(result) != n: if sum(result) + lst[i] <= n: result.append(lst[i]) diff --git a/kyu_7/sum_of_powers_of_2/test_sum_of_powers_of_2.py b/kyu_7/sum_of_powers_of_2/test_sum_of_powers_of_2.py index ada175e21fb..2bef71a8561 100644 --- a/kyu_7/sum_of_powers_of_2/test_sum_of_powers_of_2.py +++ b/kyu_7/sum_of_powers_of_2/test_sum_of_powers_of_2.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of powers of 2 +Test for -> Sum of powers of 2. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.sum_of_powers_of_2.sum_of_powers_of_2 import powers @@ -25,62 +27,58 @@ url='https://www.codewars.com/kata/5d9f95424a336600278a9632', name='Source/Kata') class SumOfPowerOfTwoTestCase(unittest.TestCase): - """ - Testing 'powers' function - """ + """Testing 'powers' function.""" - def test_powers(self): + @parameterized.expand([ + ("Pass n = 1 and verify the output", 1, [1]), + ("Pass n = 2 and verify the output", 2, [2]), + ("Pass n = 4 and verify the output", 4, [4]), + ("Pass n = 6 and verify the output", 6, [2, 4]), + ("Pass n = 14 and verify the output", 14, [2, 4, 8]), + ("Pass n = 32 and verify the output", 32, [32]), + ("Pass n = 128 and verify the output", 128, [128]), + ("Pass n = 512 and verify the output", 512, [512]), + ("Pass n = 514 and verify the output", 514, [2, 512]), + ("Pass n = 688 and verify the output", 688, [16, 32, 128, 512]), + ("Pass n = 8197 and verify the output", 8197, [1, 4, 8192]), + ("Pass n = 1966 and verify the output", 1966, + [2, 4, 8, 32, 128, 256, 512, 1024]), + ("Pass n = 134217736 and verify the output", + 134217736, [8, 134217728]), + ("Pass n = 140737488355330 and verify the output", + 140737488355330, [2, 140737488355328]), + ("Pass n = 35184372088896 and verify the output", + 35184372088896, [64, 35184372088832]), + ("Pass n = 9007199254740991 and verify the output", + 9007199254740991, + [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, + 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, + 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, + 268435456, + 536870912, 1073741824, 2147483648, 4294967296, 8589934592, + 17179869184, 34359738368, 68719476736, 137438953472, + 274877906944, 549755813888, 1099511627776, 2199023255552, + 4398046511104, 8796093022208, 17592186044416, 35184372088832, + 70368744177664, 140737488355328, 281474976710656, 562949953421312, + 1125899906842624, 2251799813685248, 4503599627370496])]) + def test_powers(self, message, number, expected): """ - The function powers takes a single parameter, - the number n, and should return an array of - unique numbers. + Test powers function with various test data. + :return: """ # pylint: disable-msg=R0801 - allure.dynamic.title("powers function should return " - "an array of unique numbers") + allure.dynamic.title("'powers' function should return an " + "array of unique numbers") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") - test_data: tuple = ( - ("Pass n = 1 and verify the output", 1, [1]), - ("Pass n = 2 and verify the output", 2, [2]), - ("Pass n = 4 and verify the output", 4, [4]), - ("Pass n = 6 and verify the output", 6, [2, 4]), - ("Pass n = 14 and verify the output", 14, [2, 4, 8]), - ("Pass n = 32 and verify the output", 32, [32]), - ("Pass n = 128 and verify the output", 128, [128]), - ("Pass n = 512 and verify the output", 512, [512]), - ("Pass n = 514 and verify the output", 514, [2, 512]), - ("Pass n = 688 and verify the output", 688, [16, 32, 128, 512]), - ("Pass n = 8197 and verify the output", 8197, [1, 4, 8192]), - ("Pass n = 1966 and verify the output", 1966, - [2, 4, 8, 32, 128, 256, 512, 1024]), - ("Pass n = 134217736 and verify the output", - 134217736, [8, 134217728]), - ("Pass n = 140737488355330 and verify the output", - 140737488355330, [2, 140737488355328]), - ("Pass n = 35184372088896 and verify the output", - 35184372088896, [64, 35184372088832]), - ("Pass n = 9007199254740991 and verify the output", - 9007199254740991, - [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, - 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, - 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, - 268435456, - 536870912, 1073741824, 2147483648, 4294967296, 8589934592, - 17179869184, 34359738368, 68719476736, 137438953472, - 274877906944, 549755813888, 1099511627776, 2199023255552, - 4398046511104, 8796093022208, 17592186044416, 35184372088832, - 70368744177664, 140737488355328, 281474976710656, 562949953421312, - 1125899906842624, 2251799813685248, 4503599627370496])) - - for message, number, expected in test_data: - with allure.step(message): - print_log(n=number, expected=expected) - self.assertEqual(powers(number), expected) + with allure.step(message): + print_log(n=number, expected=expected, message=message) + self.assertEqual(powers(number), expected) From b63ab125d3bddbc1e8041a6cfe85f81e3cf9ff5b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:09:08 -0800 Subject: [PATCH 728/873] # Sum of Triangular Numbers --- kyu_7/sum_of_triangular_numbers/README.md | 8 ++-- kyu_7/sum_of_triangular_numbers/__init__.py | 1 + .../sum_triangular_numbers.py | 7 ++-- .../test_sum_triangular_numbers.py | 39 ++++++++++--------- 4 files changed, 30 insertions(+), 25 deletions(-) diff --git a/kyu_7/sum_of_triangular_numbers/README.md b/kyu_7/sum_of_triangular_numbers/README.md index e266dd3293a..a27815216a8 100644 --- a/kyu_7/sum_of_triangular_numbers/README.md +++ b/kyu_7/sum_of_triangular_numbers/README.md @@ -1,10 +1,10 @@ # Sum of Triangular Numbers -Your task is to return the sum of Triangular Numbers +Your task is to return the sum of `Triangular Numbers` up-to-and-including the `nth` Triangular Number. -Triangular Number: "any of the series of numbers (1, 3, 6, 10, 15, etc.) -obtained by continued summation of the natural numbers 1, 2, 3, 4, 5, etc." +Triangular Number: "any of the series of numbers `(1, 3, 6, 10, 15, etc.)` +obtained by continued summation of the natural numbers `1, 2, 3, 4, 5,` etc." > `[01]` > @@ -20,6 +20,6 @@ obtained by continued summation of the natural numbers 1, 2, 3, 4, 5, etc." e.g. If `4` is given: `1 + 3 + 6 + 10 = 20`. -Triangular Numbers cannot be negative so return 0 if a negative number is given. +`Triangular Numbers` cannot be negative so return `0` if a negative number is given. [Source](https://www.codewars.com/kata/580878d5d27b84b64c000b51) \ No newline at end of file diff --git a/kyu_7/sum_of_triangular_numbers/__init__.py b/kyu_7/sum_of_triangular_numbers/__init__.py index e69de29bb2d..93e5d01fd44 100644 --- a/kyu_7/sum_of_triangular_numbers/__init__.py +++ b/kyu_7/sum_of_triangular_numbers/__init__.py @@ -0,0 +1 @@ +"""Sum of Triangular Numbers.""" diff --git a/kyu_7/sum_of_triangular_numbers/sum_triangular_numbers.py b/kyu_7/sum_of_triangular_numbers/sum_triangular_numbers.py index 5bf1edafa50..d948906f219 100644 --- a/kyu_7/sum_of_triangular_numbers/sum_triangular_numbers.py +++ b/kyu_7/sum_of_triangular_numbers/sum_triangular_numbers.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of Triangular Numbers +Solution for -> Sum of Triangular Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,8 @@ def sum_triangular_numbers(n: int) -> int: """ - returns the sum of Triangular Numbers - up-to-and-including the nth Triangular Number. + Return the sum of Triangular Numbers. + :param n: :return: """ diff --git a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py index 7de7af745e5..20aef4c3727 100644 --- a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py +++ b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py @@ -1,5 +1,6 @@ """ -Test for -> Sum of Triangular Numbers +Test for -> Sum of Triangular Numbers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -28,14 +29,12 @@ url='https://www.codewars.com/kata/580878d5d27b84b64c000b51', name='Source/Kata') class SumTriangularNumbersTestCase(unittest.TestCase): - """ - Testing 'sum_triangular_numbers' function - """ + """Testing 'sum_triangular_numbers' function.""" def test_sum_triangular_numbers_negative_numbers(self): """ - Testing 'sum_triangular_numbers' function - with negative numbers + Testing 'sum_triangular_numbers' function with negative numbers. + :return: """ # pylint: disable-msg=R0801 @@ -44,8 +43,9 @@ def test_sum_triangular_numbers_negative_numbers(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 @@ -63,8 +63,8 @@ def test_sum_triangular_numbers_negative_numbers(self): def test_sum_triangular_numbers_zero(self): """ - Testing 'sum_triangular_numbers' function - with zero as an input + Testing 'sum_triangular_numbers' function with zero as an input. + :return: """ # pylint: disable-msg=R0801 @@ -72,8 +72,9 @@ def test_sum_triangular_numbers_zero(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 @@ -95,8 +96,9 @@ def test_sum_triangular_numbers_positive_numbers(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 @@ -116,8 +118,8 @@ def test_sum_triangular_numbers_positive_numbers(self): def test_sum_triangular_numbers_big_number(self): """ - Testing 'sum_triangular_numbers' function - with big number as an input + Testing 'sum_triangular_numbers' function with big number as an input. + :return: """ # pylint: disable-msg=R0801 @@ -126,8 +128,9 @@ def test_sum_triangular_numbers_big_number(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 From dc34fc1307b421d6c93f55f12443ccbfbdc16630 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:12:04 -0800 Subject: [PATCH 729/873] # Sum of two lowest positive integers --- kyu_7/sum_of_two_lowest_int/README.md | 2 +- kyu_7/sum_of_two_lowest_int/__init__.py | 1 + kyu_7/sum_of_two_lowest_int/sum_two_smallest_int.py | 12 ++++++------ .../test_sum_two_smallest_numbers.py | 10 +++++----- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/kyu_7/sum_of_two_lowest_int/README.md b/kyu_7/sum_of_two_lowest_int/README.md index 57e424f7b25..a19c4bd86c3 100644 --- a/kyu_7/sum_of_two_lowest_int/README.md +++ b/kyu_7/sum_of_two_lowest_int/README.md @@ -1,7 +1,7 @@ # Sum of two lowest positive integers Create a function that returns the sum of the two lowest -positive numbers given an array of minimum 4 positive integers. +positive numbers given an array of minimum `4` positive integers. No floats or non-positive integers will be passed. For example: diff --git a/kyu_7/sum_of_two_lowest_int/__init__.py b/kyu_7/sum_of_two_lowest_int/__init__.py index e69de29bb2d..f8381bfa8a8 100644 --- a/kyu_7/sum_of_two_lowest_int/__init__.py +++ b/kyu_7/sum_of_two_lowest_int/__init__.py @@ -0,0 +1 @@ +"""Sum of two lowest positive integers.""" diff --git a/kyu_7/sum_of_two_lowest_int/sum_two_smallest_int.py b/kyu_7/sum_of_two_lowest_int/sum_two_smallest_int.py index ced61ff7987..fd12160e81b 100644 --- a/kyu_7/sum_of_two_lowest_int/sum_two_smallest_int.py +++ b/kyu_7/sum_of_two_lowest_int/sum_two_smallest_int.py @@ -1,5 +1,6 @@ """ -Solution for -> Sum of two lowest positive integers +Solution for -> Sum of two lowest positive integers. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,11 +8,10 @@ def sum_two_smallest_numbers(numbers: list) -> int: """ - Returns the sum of the two lowest - positive numbers given an array of - minimum 4 positive integers. - :param numbers: - :return: + Return the sum of the two lowest positive numbers. + + :param numbers: list + :return: int """ numbers.sort() return numbers[0] + numbers[1] diff --git a/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py b/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py index a227850deeb..4291fd53c8c 100644 --- a/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py +++ b/kyu_7/sum_of_two_lowest_int/test_sum_two_smallest_numbers.py @@ -31,9 +31,8 @@ class SumTwoSmallestNumbersTestCase(unittest.TestCase): def test_sum_two_smallest_numbers(self): """ - Test sum_two_smallest_numbers function - The function should return the sum of - the two lowest positive numbers + Test sum_two_smallest_numbers function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -42,8 +41,9 @@ def test_sum_two_smallest_numbers(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 From 538f3399d25381467132f31529c5de78b292ba84 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:41:44 -0800 Subject: [PATCH 730/873] # The First Non Repeated Character In A String --- .../README.md | 4 +- .../__init__.py | 1 + .../first_non_repeated.py | 15 +--- .../test_first_non_repeated.py | 68 +++++++++---------- 4 files changed, 38 insertions(+), 50 deletions(-) diff --git a/kyu_7/the_first_non_repeated_character_in_string/README.md b/kyu_7/the_first_non_repeated_character_in_string/README.md index c9c14edb02f..922cd8dcd3a 100644 --- a/kyu_7/the_first_non_repeated_character_in_string/README.md +++ b/kyu_7/the_first_non_repeated_character_in_string/README.md @@ -1,7 +1,7 @@ # The First Non Repeated Character In A String -You need to write a function, that returns the first -non-repeated character in the given string. +You need to write a function, that returns the `first +non-repeated character` in the given string. For example for string `"test"` function should return `'e'`. diff --git a/kyu_7/the_first_non_repeated_character_in_string/__init__.py b/kyu_7/the_first_non_repeated_character_in_string/__init__.py index e69de29bb2d..8df7691281b 100644 --- a/kyu_7/the_first_non_repeated_character_in_string/__init__.py +++ b/kyu_7/the_first_non_repeated_character_in_string/__init__.py @@ -0,0 +1 @@ +"""The First Non Repeated Character In A String.""" diff --git a/kyu_7/the_first_non_repeated_character_in_string/first_non_repeated.py b/kyu_7/the_first_non_repeated_character_in_string/first_non_repeated.py index 29717ae3203..b06fd0e1bc7 100644 --- a/kyu_7/the_first_non_repeated_character_in_string/first_non_repeated.py +++ b/kyu_7/the_first_non_repeated_character_in_string/first_non_repeated.py @@ -1,5 +1,6 @@ """ -Solution for -> The First Non Repeated Character In A String +Solution for -> The First Non Repeated Character In A String. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,18 +8,8 @@ def first_non_repeated(s: str) -> str | None: """ - You need to write a function, that returns the - first non-repeated character in the given string. - - For example for string "test" function should return 'e'. - For string "teeter" function should return 'r'. - - If a string contains all unique characters, then return - just the first character of the string. - Example: for input "trend" function should return 't' + Return the first non-repeated character in the given string. - You can assume, that the input string has always - non-zero length. :param s: :return: """ diff --git a/kyu_7/the_first_non_repeated_character_in_string/test_first_non_repeated.py b/kyu_7/the_first_non_repeated_character_in_string/test_first_non_repeated.py index 7766c867e31..0bcf22f4932 100644 --- a/kyu_7/the_first_non_repeated_character_in_string/test_first_non_repeated.py +++ b/kyu_7/the_first_non_repeated_character_in_string/test_first_non_repeated.py @@ -1,5 +1,6 @@ """ -Test for -> The First Non Repeated Character In A String +Test for -> The First Non-Repeated Character In A String. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.the_first_non_repeated_character_in_string.first_non_repeated \ import first_non_repeated @@ -28,49 +30,43 @@ name='Source/Kata') # pylint: enable-msg=R0801 class FirstNonRepeatedTestCase(unittest.TestCase): - """ - Testing first_non_repeated function - """ + """Testing first_non_repeated function.""" - def test_first_non_repeated(self): + @parameterized.expand([ + ("test", 'e'), + ("teeter", 'r'), + ("1122321235121222", '5'), + ('1122321235121222dsfasddssdfa112232123sdfasdfasdf11' + '22321235121222dsfasddssdfa112232123sdfasdfasdf1122' + '321231122321235121222dsfasddssdfa112232123sdfasdfa' + 'sdf1122321231122321235121222dsfasddssdfa112232123sd' + 'fasdfasdf1122321231122321235121222dsfasddssdfa11223' + '2123sdfasdfasdf1122321231122321235121222dsfasddssdf' + 'a112232123sdfasdfasdf112232123asddssdfa112232123sdfa' + 'sdfasdf1122z321231122321235121222dsfasddssdf1122321' + '235121222dsfasddssdf1122321235121222dsfasddssdf11223' + '21235121222dsfasddssdf1122321235121222dsfasddssdf112' + 'p2321235121222dsfasddssdf1122321235121222dsfasddssdf', 'z'), + ('ogmhrsoqiklqfmhgnpjsrikmnlpfj', None), + ('knioolrpnutskmqmhqtriipjjushl', None)]) + def test_first_non_repeated(self, s, expected): """ - Testing first_non_repeated function + Testing first_non_repeated function with various test data. + :return: """ # pylint: disable-msg=R0801 - allure.dynamic.title("Testing first_non_repeated " - "function with various inputs") + allure.dynamic.title("Testing first_non_repeated function with various inputs") allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 - with allure.step("Enter test string and verify the output"): - test_data: tuple = ( - ("test", 'e'), - ("teeter", 'r'), - ("1122321235121222", '5'), - ('1122321235121222dsfasddssdfa112232123sdfasdfasdf11' - '22321235121222dsfasddssdfa112232123sdfasdfasdf1122' - '321231122321235121222dsfasddssdfa112232123sdfasdfa' - 'sdf1122321231122321235121222dsfasddssdfa112232123sd' - 'fasdfasdf1122321231122321235121222dsfasddssdfa11223' - '2123sdfasdfasdf1122321231122321235121222dsfasddssdf' - 'a112232123sdfasdfasdf112232123asddssdfa112232123sdfa' - 'sdfasdf1122z321231122321235121222dsfasddssdf1122321' - '235121222dsfasddssdf1122321235121222dsfasddssdf11223' - '21235121222dsfasddssdf1122321235121222dsfasddssdf112' - 'p2321235121222dsfasddssdf1122321235121222dsfasddssdf', 'z'), - ('ogmhrsoqiklqfmhgnpjsrikmnlpfj', None), - ('knioolrpnutskmqmhqtriipjjushl', None)) - - for s, expected in test_data: - - print_log(s=s, - expected=expected) - - self.assertEqual(expected, - first_non_repeated(s)) + with allure.step(f"Enter test string: {s} " + f"and verify the expected output: {expected}."): + print_log(s=s, expected=expected) + self.assertEqual(expected, first_non_repeated(s)) From 441bab4228fdf75b32abde9a7fc8ffba2d47d1ff Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:51:49 -0800 Subject: [PATCH 731/873] # Valid Parentheses --- kyu_7/valid_parentheses/README.md | 2 +- kyu_7/valid_parentheses/__init__.py | 1 + kyu_7/valid_parentheses/solution.py | 9 +- .../test_valid_parentheses.py | 104 +++++++++--------- 4 files changed, 60 insertions(+), 56 deletions(-) diff --git a/kyu_7/valid_parentheses/README.md b/kyu_7/valid_parentheses/README.md index b3576c3eb60..daf5c19699c 100644 --- a/kyu_7/valid_parentheses/README.md +++ b/kyu_7/valid_parentheses/README.md @@ -2,7 +2,7 @@ Write a function 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. +`true` if the string is valid, and `false` if it's invalid. Examples: ```bash diff --git a/kyu_7/valid_parentheses/__init__.py b/kyu_7/valid_parentheses/__init__.py index e69de29bb2d..cd485cb5e94 100644 --- a/kyu_7/valid_parentheses/__init__.py +++ b/kyu_7/valid_parentheses/__init__.py @@ -0,0 +1 @@ +"""Valid Parentheses.""" diff --git a/kyu_7/valid_parentheses/solution.py b/kyu_7/valid_parentheses/solution.py index d112681a5eb..e03c9ce24a2 100644 --- a/kyu_7/valid_parentheses/solution.py +++ b/kyu_7/valid_parentheses/solution.py @@ -1,5 +1,6 @@ """ -Solution for -> Valid Parentheses +Solution for -> Valid Parentheses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,9 +8,8 @@ def valid_parentheses(paren_str: str) -> bool: """ - A function 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. + Determine if the order of the parentheses is valid. + :param paren_str: str :return: bool """ @@ -20,7 +20,6 @@ def valid_parentheses(paren_str: str) -> bool: # convert string into list paren_str_list: list = list(paren_str) - while paren_str_list: # Fail if starts from closing bracket if paren_str_list[0] == ')': diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index f80b00f6a95..a231014d3ce 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -1,5 +1,6 @@ """ -Test for -> Valid Parentheses +Test for -> Valid Parentheses. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -8,6 +9,7 @@ import unittest import allure +from parameterized import parameterized from utils.log_func import print_log from kyu_7.valid_parentheses.solution import valid_parentheses @@ -27,13 +29,18 @@ name='Source/Kata') # pylint: enable=R0801 class ValidParenthesesTestCase(unittest.TestCase): - """ - Testing valid_parentheses function - """ + """Testing valid_parentheses function.""" - def test_valid_parentheses_true(self): + @parameterized.expand([ + "()", + "((()))", + "()()()", + "(()())()", + "()(())((()))(())()"]) + def test_valid_parentheses_true(self, test_str): """ - -1: Negative numbers cannot be square numbers + Negative numbers cannot be square numbers. + :return: """ # pylint: disable=R0801 @@ -41,28 +48,29 @@ def test_valid_parentheses_true(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    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) + with allure.step(f"Enter test string {test_str}" + 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): + @parameterized.expand([ + ")(", + "()()(", + "((())", + "())(()", + ")()", + ")"]) + def test_valid_parentheses_false(self, test_str): """ - 0 is a square number + 0 is a square number. + :return: """ # pylint: disable=R0801 @@ -70,29 +78,22 @@ def test_valid_parentheses_false(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    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) + with allure.step(f"Enter test string {test_str}" + 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 + 3 is not a square number. + :return: """ # pylint: disable=R0801 @@ -100,8 +101,9 @@ def test_valid_parentheses_empty_string(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    Should return True for empty strings.

    ") # pylint: enable=R0801 @@ -113,8 +115,8 @@ def test_valid_parentheses_empty_string(self): def test_valid_parentheses_large_valid(self): """ - Test valid_parentheses function with - valid large string + Test valid_parentheses function with valid large string. + :return: """ # pylint: disable=R0801 @@ -122,8 +124,9 @@ def test_valid_parentheses_large_valid(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    Valid large test string

    ") # pylint: enable=R0801 @@ -137,8 +140,8 @@ def test_valid_parentheses_large_valid(self): def test_valid_parentheses_large_invalid(self): """ - Test valid_parentheses function with - invalid large string + Test valid_parentheses function with invalid large string. + :return: """ # pylint: disable=R0801 @@ -146,8 +149,9 @@ def test_valid_parentheses_large_invalid(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    Invalid large test string

    ") # pylint: enable=R0801 From a5d9cf539d05209066c54539d62579c0d64d2273 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:56:39 -0800 Subject: [PATCH 732/873] V A P O R C O D E --- kyu_7/vaporcode/README.md | 6 +++--- kyu_7/vaporcode/__init__.py | 1 + kyu_7/vaporcode/test_vaporcode.py | 15 ++++++++------- kyu_7/vaporcode/vaporcode.py | 7 ++++--- 4 files changed, 16 insertions(+), 13 deletions(-) diff --git a/kyu_7/vaporcode/README.md b/kyu_7/vaporcode/README.md index cca8d3bd742..8f78c5564a7 100644 --- a/kyu_7/vaporcode/README.md +++ b/kyu_7/vaporcode/README.md @@ -2,10 +2,10 @@ ## ASC Week 1 Challenge 4 (Medium #1) -Write a function that converts any sentence into a V A P O R W A V E -sentence. a V A P O R W A V E sentence converts all the letters into +Write a function that converts any sentence into a `V A P O R W A V E` +sentence. A `V A P O R W A V E` sentence converts all the letters into uppercase, and adds 2 spaces between each letter (or special character) -to create this V A P O R W A V E effect. +to create this `V A P O R W A V E` effect. ### Examples diff --git a/kyu_7/vaporcode/__init__.py b/kyu_7/vaporcode/__init__.py index e69de29bb2d..68beeb0ea39 100644 --- a/kyu_7/vaporcode/__init__.py +++ b/kyu_7/vaporcode/__init__.py @@ -0,0 +1 @@ +"""V A P O R C O D E.""" diff --git a/kyu_7/vaporcode/test_vaporcode.py b/kyu_7/vaporcode/test_vaporcode.py index 474fe8360f6..d734d9a00f8 100644 --- a/kyu_7/vaporcode/test_vaporcode.py +++ b/kyu_7/vaporcode/test_vaporcode.py @@ -1,5 +1,6 @@ """ -Test for -> V A P O R C O D E +Test for -> V A P O R C O D E. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -25,13 +26,12 @@ name='Source/Kata') # pylint: enable-msg=R0801 class VaporcodeTestCase(unittest.TestCase): - """ - Testing 'vaporcode' function - """ + """Testing 'vaporcode' function.""" def test_vaporcode(self): """ - Testing 'vaporcode' function + Testing 'vaporcode' function with various test data. + :return: """ # pylint: disable-msg=R0801 @@ -39,8 +39,9 @@ def test_vaporcode(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable-msg=R0801 diff --git a/kyu_7/vaporcode/vaporcode.py b/kyu_7/vaporcode/vaporcode.py index 73d13bbf39d..db28c4c596a 100644 --- a/kyu_7/vaporcode/vaporcode.py +++ b/kyu_7/vaporcode/vaporcode.py @@ -1,5 +1,6 @@ """ -Solution for -> V A P O R C O D E +Solution for -> V A P O R C O D E. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,8 +8,8 @@ def vaporcode(s: str) -> str: """ - function that converts any sentence - into a V A P O R W A V E sentence + Converts any sentence into a V A P O R W A V E sentence. + :param s: :return: """ From 25a4ce973b028ceaebf74ec3effc17fd78a31001 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:07:41 -0800 Subject: [PATCH 733/873] # You're a square --- kyu_7/you_are_square/README.md | 6 +-- kyu_7/you_are_square/__init__.py | 1 + kyu_7/you_are_square/test_you_are_square.py | 53 +++++++++++++-------- kyu_7/you_are_square/you_are_square.py | 10 ++-- 4 files changed, 43 insertions(+), 27 deletions(-) diff --git a/kyu_7/you_are_square/README.md b/kyu_7/you_are_square/README.md index b44203d745b..f159f48618e 100644 --- a/kyu_7/you_are_square/README.md +++ b/kyu_7/you_are_square/README.md @@ -8,9 +8,9 @@ them into a square of square building blocks! However, sometimes, you can't arrange them into a square. Instead, you end up with an ordinary rectangle! Those blasted things! If you -just had a way to know, whether you're currently working in vain… Wait! -That's it! You just have to check if your number of building blocks -is a perfect square. +just had a way to know whether you're currently working in vain… Wait! +That's it! You just have to check if your `number of building blocks +is a perfect square`. ## Task diff --git a/kyu_7/you_are_square/__init__.py b/kyu_7/you_are_square/__init__.py index e69de29bb2d..f039366cd1a 100644 --- a/kyu_7/you_are_square/__init__.py +++ b/kyu_7/you_are_square/__init__.py @@ -0,0 +1 @@ +"""You're a square.""" diff --git a/kyu_7/you_are_square/test_you_are_square.py b/kyu_7/you_are_square/test_you_are_square.py index 00e78fef797..9b70b37af0f 100644 --- a/kyu_7/you_are_square/test_you_are_square.py +++ b/kyu_7/you_are_square/test_you_are_square.py @@ -1,5 +1,6 @@ """ -Test for -> You\'re a square +Test for -> You\'re a square. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -26,7 +27,7 @@ # pylint: enable=R0801 class YouAreSquareTestCase(unittest.TestCase): """ - Testing is_square function + Testing is_square function. The tests will always use some integral number, so don't worry about that in dynamic typed languages. @@ -34,7 +35,8 @@ class YouAreSquareTestCase(unittest.TestCase): def test_is_square_negative_numbers(self): """ - -1: Negative numbers cannot be square numbers + Negative numbers cannot be square numbers. + :return: """ # pylint: disable=R0801 @@ -42,8 +44,9 @@ def test_is_square_negative_numbers(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 @@ -54,7 +57,8 @@ def test_is_square_negative_numbers(self): def test_is_square_zero(self): """ - 0 is a square number + 0 is a square number. + :return: """ # pylint: disable=R0801 @@ -62,8 +66,9 @@ def test_is_square_zero(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 @@ -74,7 +79,8 @@ def test_is_square_zero(self): def test_is_square_negative_test(self): """ - 3 is not a square number + 3 is not a square number. + :return: """ # pylint: disable=R0801 @@ -82,8 +88,9 @@ def test_is_square_negative_test(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 @@ -94,7 +101,8 @@ def test_is_square_negative_test(self): def test_is_square_four(self): """ - 4 is a square number + 4 is a square number. + :return: """ # pylint: disable=R0801 @@ -102,8 +110,9 @@ def test_is_square_four(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 @@ -114,7 +123,8 @@ def test_is_square_four(self): def test_is_square_25(self): """ - 25 is a square number + 25 is a square number. + :return: """ # pylint: disable=R0801 @@ -122,8 +132,9 @@ def test_is_square_25(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 @@ -134,7 +145,8 @@ def test_is_square_25(self): def test_is_square_26(self): """ - 26 is not a square number + 26 is not a square number. + :return: """ # pylint: disable=R0801 @@ -142,8 +154,9 @@ def test_is_square_26(self): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '

    Codewars badge:

    ' - '' + '' '

    Test Description:

    ' "

    ") # pylint: enable=R0801 diff --git a/kyu_7/you_are_square/you_are_square.py b/kyu_7/you_are_square/you_are_square.py index 3df5e3a8e44..31823bb53fa 100644 --- a/kyu_7/you_are_square/you_are_square.py +++ b/kyu_7/you_are_square/you_are_square.py @@ -1,5 +1,6 @@ """ -Solution for -> You\'re a square +Solution for -> You\'re a square. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -7,11 +8,12 @@ import math -def is_square(n) -> bool: +def is_square(n: int) -> bool: """ - Given an integral number, determine if it's a square number: + Given an integral number, determine if it's a square number. + :param n: - :return: + :return: bool """ if n > -1: number = math.sqrt(n) From f44ecaf6c287d11cd3143b2cc7bebcf6ba78c291 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:15:39 -0800 Subject: [PATCH 734/873] Update count_letters_and_digits.py kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py:10 in public function `count_letters_and_digits`: D401: First line should be in imperative mood; try rephrasing (found 'A') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- .../count_letters_and_digits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py b/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py index 3c8ceabe119..5784b0298c7 100644 --- a/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py +++ b/kyu_7/help_bob_count_letters_and_digits/count_letters_and_digits.py @@ -8,7 +8,7 @@ def count_letters_and_digits(s: str) -> int: """ - A method that can determine how many letters and digits are in a given string. + Determine how many letters and digits are in a given string. :param s: :return: From 8f8e2cf9945fb9361814656461dac2cb2a11c769 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:16:16 -0800 Subject: [PATCH 735/873] Update gap.py kyu_7/find_the_longest_gap/gap.py:47 in public function `calc_g_max`: D401: First line should be in imperative mood (perhaps 'Calculate', not 'Calculates') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...". --- kyu_7/find_the_longest_gap/gap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/find_the_longest_gap/gap.py b/kyu_7/find_the_longest_gap/gap.py index a4aa13e5275..3b4e3eac14e 100644 --- a/kyu_7/find_the_longest_gap/gap.py +++ b/kyu_7/find_the_longest_gap/gap.py @@ -8,7 +8,7 @@ def gap(num: int) -> int: """ - Returns the length of its longest binary gap. + Return the length of its longest binary gap. The function should return 0 if num doesn't contain a binary gap. From 35586ba1c10db957ddeb85a66e16b099436ae23b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:19:17 -0800 Subject: [PATCH 736/873] Update gap.py --- kyu_7/find_the_longest_gap/gap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_7/find_the_longest_gap/gap.py b/kyu_7/find_the_longest_gap/gap.py index 3b4e3eac14e..ebe6bc2ac02 100644 --- a/kyu_7/find_the_longest_gap/gap.py +++ b/kyu_7/find_the_longest_gap/gap.py @@ -30,7 +30,7 @@ def gap(num: int) -> int: def calc_g_cur(g_cur: int, char: str) -> int: """ - Calculates g_cur. + Calculate g_cur. :param g_cur: :param char: @@ -45,7 +45,7 @@ def calc_g_cur(g_cur: int, char: str) -> int: def calc_g_max(g_cur: int, g_max: int) -> int: """ - Calculates g_max. + Calculate g_max. :param g_cur: :param g_max: From 65f7de59fb3dc48d066872bde0606e1ec38a1745 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:20:26 -0800 Subject: [PATCH 737/873] Update test_sum_triangular_numbers.py --- .../sum_of_triangular_numbers/test_sum_triangular_numbers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py index 20aef4c3727..eae5e8139c1 100644 --- a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py +++ b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py @@ -86,8 +86,8 @@ def test_sum_triangular_numbers_zero(self): def test_sum_triangular_numbers_positive_numbers(self): """ - Testing 'sum_triangular_numbers' function - with positive numbers + Testing 'sum_triangular_numbers' function with positive numbers. + :return: """ # pylint: disable-msg=R0801 From a52cfd6bd3e19752e82ab7ef01aa01b257163a2f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:20:44 -0800 Subject: [PATCH 738/873] Update test_sum_triangular_numbers.py --- kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py index eae5e8139c1..b0dd752ba76 100644 --- a/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py +++ b/kyu_7/sum_of_triangular_numbers/test_sum_triangular_numbers.py @@ -87,7 +87,7 @@ def test_sum_triangular_numbers_zero(self): def test_sum_triangular_numbers_positive_numbers(self): """ Testing 'sum_triangular_numbers' function with positive numbers. - + :return: """ # pylint: disable-msg=R0801 From fc8d590bc45799d0c45ff35ef5a5662720fdd78b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:22:11 -0800 Subject: [PATCH 739/873] Update node.py --- kyu_7/fun_with_lists_length/node.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kyu_7/fun_with_lists_length/node.py b/kyu_7/fun_with_lists_length/node.py index d02cc0e4de6..b81fc4f9dbb 100644 --- a/kyu_7/fun_with_lists_length/node.py +++ b/kyu_7/fun_with_lists_length/node.py @@ -10,6 +10,12 @@ class Node: """The linked list.""" def __init__(self, data, n_next=None): + """ + Create a new Node instance. + + :param data: + :param n_next: + """ self._data = data self._next = n_next @@ -25,7 +31,7 @@ def next(self): @next.setter def next(self, n_next=None) -> None: """ - Get next. + Set next. :param n_next: :return: @@ -44,7 +50,7 @@ def data(self): @data.setter def data(self, data) -> None: """ - Get data. + Set data. :param data: :return: From 3852e5fc4f92118c8cce767fbd0b24a286d8c9a1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:23:30 -0800 Subject: [PATCH 740/873] Update you_are_square.py --- kyu_7/you_are_square/you_are_square.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_7/you_are_square/you_are_square.py b/kyu_7/you_are_square/you_are_square.py index 31823bb53fa..ba6f2ef16b2 100644 --- a/kyu_7/you_are_square/you_are_square.py +++ b/kyu_7/you_are_square/you_are_square.py @@ -1,5 +1,5 @@ """ -Solution for -> You\'re a square. +Solution for -> You're a square. Created by Egor Kostan. GitHub: https://github.com/ikostan @@ -10,9 +10,9 @@ def is_square(n: int) -> bool: """ - Given an integral number, determine if it's a square number. + Determine if it's a square number. - :param n: + :param n: int :return: bool """ if n > -1: From 95721fd8c468174ec4aae481b790ca27f8ae67f9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:25:06 -0800 Subject: [PATCH 741/873] Update vaporcode.py --- kyu_7/vaporcode/vaporcode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/vaporcode/vaporcode.py b/kyu_7/vaporcode/vaporcode.py index db28c4c596a..da6c8d3d2cf 100644 --- a/kyu_7/vaporcode/vaporcode.py +++ b/kyu_7/vaporcode/vaporcode.py @@ -8,7 +8,7 @@ def vaporcode(s: str) -> str: """ - Converts any sentence into a V A P O R W A V E sentence. + Convert any sentence into a V A P O R W A V E sentence. :param s: :return: From 0c53145530fb53f0e04976b7ea7c4d71080b3e86 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:26:00 -0800 Subject: [PATCH 742/873] Update two_decimal_places.py --- kyu_7/formatting_decimal_places_1/two_decimal_places.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/kyu_7/formatting_decimal_places_1/two_decimal_places.py b/kyu_7/formatting_decimal_places_1/two_decimal_places.py index 2c4761b2149..5a77bae1c7f 100644 --- a/kyu_7/formatting_decimal_places_1/two_decimal_places.py +++ b/kyu_7/formatting_decimal_places_1/two_decimal_places.py @@ -8,16 +8,10 @@ def two_decimal_places(number) -> float: """ - Formatting decimal places #1. + Format decimal places #1. Each floating-point number should be formatted that only the first two decimal places are returned. - - You don't need to check whether the input is a valid - number because only valid numbers are used in the tests. - - Don't round the numbers! Just cut them after two decimal - places! :param number: :return: float """ From e77752a07c5e868974114971edf7f0e58a39b099 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:38:57 -0800 Subject: [PATCH 743/873] Update test_you_are_square.py --- kyu_7/you_are_square/test_you_are_square.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/you_are_square/test_you_are_square.py b/kyu_7/you_are_square/test_you_are_square.py index 9b70b37af0f..a186e2d0a98 100644 --- a/kyu_7/you_are_square/test_you_are_square.py +++ b/kyu_7/you_are_square/test_you_are_square.py @@ -1,5 +1,5 @@ """ -Test for -> You\'re a square. +Test for -> You're a square. Created by Egor Kostan. GitHub: https://github.com/ikostan From f7ba738c22247bd78a3ca6ff178ac104ea8943ff Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:41:09 -0800 Subject: [PATCH 744/873] Update test_remove_the_minimum.py --- kyu_7/remove_the_minimum/test_remove_the_minimum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/remove_the_minimum/test_remove_the_minimum.py b/kyu_7/remove_the_minimum/test_remove_the_minimum.py index 673ba46c589..e253d7e887e 100644 --- a/kyu_7/remove_the_minimum/test_remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/test_remove_the_minimum.py @@ -34,7 +34,7 @@ class RemoveSmallestTestCase(unittest.TestCase): @staticmethod def random_list(): """ - Helper function. + Create random list helper function. :return: """ From 86ef4484d3835a606dcd3c34459343fae34a1d0e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:42:42 -0800 Subject: [PATCH 745/873] Update sentencify.py --- kyu_7/pull_your_words_together_man/sentencify.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_7/pull_your_words_together_man/sentencify.py b/kyu_7/pull_your_words_together_man/sentencify.py index 4e079b8197b..0a3427c36ec 100644 --- a/kyu_7/pull_your_words_together_man/sentencify.py +++ b/kyu_7/pull_your_words_together_man/sentencify.py @@ -8,10 +8,9 @@ def sentencify(words: list) -> str: """ - 'Sentencify' function. + '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. From 515e59799c910072ab6dd7b4f7277eb39a7cec2b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:44:12 -0800 Subject: [PATCH 746/873] Update disemvowel_trolls.py --- kyu_7/disemvowel_trolls/disemvowel_trolls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/disemvowel_trolls/disemvowel_trolls.py b/kyu_7/disemvowel_trolls/disemvowel_trolls.py index d086c5105bc..212de3eb402 100644 --- a/kyu_7/disemvowel_trolls/disemvowel_trolls.py +++ b/kyu_7/disemvowel_trolls/disemvowel_trolls.py @@ -10,7 +10,7 @@ def disemvowel(string: str) -> str: """ - 'Disemvowel' function. + 'disemvowel' function. A function that takes a string and return a new string with all vowels removed. From 56f0ad92bd01f360bb43d42405c9210b7b430603 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:44:16 -0800 Subject: [PATCH 747/873] Update make_class.py --- kyu_7/make_class/make_class.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kyu_7/make_class/make_class.py b/kyu_7/make_class/make_class.py index aa5ff7aed45..65eca4c38ee 100644 --- a/kyu_7/make_class/make_class.py +++ b/kyu_7/make_class/make_class.py @@ -8,12 +8,11 @@ def make_class(*args): """ - 'make_class' function implementation. + 'make_class' function. :param args: :return: """ - # pylint: disable-msg=R0903 class Class: """Generic class.""" From 764a1c5c01b099a64482417e3d75eb2b1bfbb372 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:46:08 -0800 Subject: [PATCH 748/873] Update __init__.py --- kyu_7/isograms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/isograms/__init__.py b/kyu_7/isograms/__init__.py index b9ce839e97f..5f643ee6f38 100644 --- a/kyu_7/isograms/__init__.py +++ b/kyu_7/isograms/__init__.py @@ -1 +1 @@ -"""Isograms""" +"""Isograms kyu.""" From f65d8902c84661d2500ce11843ab027dbbdebe6d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:46:30 -0800 Subject: [PATCH 749/873] Update __init__.py --- kyu_7/isograms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/isograms/__init__.py b/kyu_7/isograms/__init__.py index 5f643ee6f38..c8795aa5e9e 100644 --- a/kyu_7/isograms/__init__.py +++ b/kyu_7/isograms/__init__.py @@ -1 +1 @@ -"""Isograms kyu.""" +"""Isograms.""" From 2211d608fd691e8cbce829cbf76ad2258ea65bf4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:48:19 -0800 Subject: [PATCH 750/873] Update is_isogram.py --- kyu_7/isograms/is_isogram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/isograms/is_isogram.py b/kyu_7/isograms/is_isogram.py index 78344099730..5d474889921 100644 --- a/kyu_7/isograms/is_isogram.py +++ b/kyu_7/isograms/is_isogram.py @@ -8,7 +8,7 @@ def is_isogram(string: str) -> bool: """ - Determines whether a string that contains only letters is an 'isogram'. + Determine whether a string that contains only letters is an 'isogram'. :param string: str :return: bool From aaaaa3c5158574b2be8b18fecc33d97a804f499e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:49:59 -0800 Subject: [PATCH 751/873] Update growing_plant.py --- kyu_7/growing_plant/growing_plant.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kyu_7/growing_plant/growing_plant.py b/kyu_7/growing_plant/growing_plant.py index 40599735949..ee02b5ef7fb 100644 --- a/kyu_7/growing_plant/growing_plant.py +++ b/kyu_7/growing_plant/growing_plant.py @@ -6,8 +6,12 @@ """ -def growing_plant(up_speed: int, down_speed: int, desired_height: int) -> int: +def growing_plant(up_speed: int, + down_speed: int, + desired_height: int) -> int: """ + Growing Plant function. + Each day a plant is growing by upSpeed meters. Each night that plant's height decreases by downSpeed meters due to the lack of sun heat. Initially, plant is 0 meters tall. We plant @@ -18,10 +22,8 @@ def growing_plant(up_speed: int, down_speed: int, desired_height: int) -> int: :param desired_height: int :return: int """ - height: int = 0 days: int = 0 - while height <= desired_height: height += up_speed days += 1 From abc9b9b3b2795c0cefa72bf62f4a39eff77e5f78 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:51:45 -0800 Subject: [PATCH 752/873] Update save.py --- kyu_7/fill_the_hard_disk_drive/save.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/fill_the_hard_disk_drive/save.py b/kyu_7/fill_the_hard_disk_drive/save.py index c192982246d..1b36f7970d8 100644 --- a/kyu_7/fill_the_hard_disk_drive/save.py +++ b/kyu_7/fill_the_hard_disk_drive/save.py @@ -8,7 +8,7 @@ def save(sizes: list, hd: int) -> int: """ - 'Save' function. + 'save' function. Your task is to determine how many files of the copy queue you will be able to save into your From 65c5e2180509b649e9de0f55c8755cfa6c515c5d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:54:43 -0800 Subject: [PATCH 753/873] Update jaden_casing_strings.py --- .../jaden_casing_strings.py | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/kyu_7/jaden_casing_strings/jaden_casing_strings.py b/kyu_7/jaden_casing_strings/jaden_casing_strings.py index ff38c5e89eb..1f2bb9ef932 100644 --- a/kyu_7/jaden_casing_strings/jaden_casing_strings.py +++ b/kyu_7/jaden_casing_strings/jaden_casing_strings.py @@ -10,22 +10,17 @@ def to_jaden_case(string: str) -> str: """ Jaden Casing Strings. - Convert strings to how they would - be written by Jaden Smith. The strings - are actual quotes from Jaden Smith, - but they are not capitalized in the - same way he originally typed them. + Convert strings to how they would be written by Jaden Smith. + The strings are actual quotes from Jaden Smith, but they are + not capitalized in the same way he originally typed them. Example: - Not Jaden-Cased: - "How can mirrors be real if - our eyes aren't real" - - Jaden-Cased: - "How Can Mirrors Be Real If - Our Eyes Aren't Real" + Not Jaden-Cased: "How can mirrors be real if + our eyes aren't real" + Jaden-Cased: "How Can Mirrors Be Real If + Our Eyes Aren't Real" :param string: :return: """ From c553a0e457093ed9855fd40f1732616484738283 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:56:04 -0800 Subject: [PATCH 754/873] Update jaden_casing_strings.py --- kyu_7/jaden_casing_strings/jaden_casing_strings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/jaden_casing_strings/jaden_casing_strings.py b/kyu_7/jaden_casing_strings/jaden_casing_strings.py index 1f2bb9ef932..61066690997 100644 --- a/kyu_7/jaden_casing_strings/jaden_casing_strings.py +++ b/kyu_7/jaden_casing_strings/jaden_casing_strings.py @@ -14,7 +14,7 @@ def to_jaden_case(string: str) -> str: The strings are actual quotes from Jaden Smith, but they are not capitalized in the same way he originally typed them. - Example: + Example. Not Jaden-Cased: "How can mirrors be real if our eyes aren't real" From c7cc076714f926a9cb8acc2375d5170c9c967b6e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:11:57 -0800 Subject: [PATCH 755/873] Update remove_the_minimum.py --- kyu_7/remove_the_minimum/remove_the_minimum.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/kyu_7/remove_the_minimum/remove_the_minimum.py b/kyu_7/remove_the_minimum/remove_the_minimum.py index eed554f5050..1b2e31aec35 100644 --- a/kyu_7/remove_the_minimum/remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/remove_the_minimum.py @@ -20,14 +20,13 @@ def remove_smallest(numbers: list) -> list: :return: list """ new_array: list = [] - if len(numbers) > 0: - min_num: int = min(numbers) - min_i: int = numbers.index(min_num) - - for i, el in enumerate(numbers): - if i != min_i: - new_array.append(el) - else: + if len(numbers) < 1: return numbers + min_num: int = min(numbers) + min_i: int = numbers.index(min_num) + for i, el in enumerate(numbers): + if i != min_i: + new_array.append(el) + return new_array From b5353866e67cf51bda983d626c563ee697994348 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:16:44 -0800 Subject: [PATCH 756/873] Update README.md --- kyu_7/jaden_casing_strings/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_7/jaden_casing_strings/README.md b/kyu_7/jaden_casing_strings/README.md index 2d7931b29ba..d3611ce283d 100644 --- a/kyu_7/jaden_casing_strings/README.md +++ b/kyu_7/jaden_casing_strings/README.md @@ -11,7 +11,7 @@ capitalized in the same way he originally typed them. ## Example -Not Jaden-Cased: "How can mirrors be real if our eyes aren't real". -Jaden-Cased: "How Can Mirrors Be Real If Our Eyes Aren't Real". +Not Jaden-Cased: "How can mirrors be real if our eyes aren't real" +Jaden-Cased: "How Can Mirrors Be Real If Our Eyes Aren't Real" [Source](https://www.codewars.com/kata/5390bac347d09b7da40006f6) From c152e4433fd24d7f89809442b81596367ae579af Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:22:34 -0800 Subject: [PATCH 757/873] Update animal.py --- kyu_7/make_class/animal.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kyu_7/make_class/animal.py b/kyu_7/make_class/animal.py index 278d4e4b433..698b77c3a4a 100644 --- a/kyu_7/make_class/animal.py +++ b/kyu_7/make_class/animal.py @@ -5,10 +5,20 @@ GitHub: https://github.com/ikostan """ +from dataclasses import dataclass + +@dataclass class Animal: """Animal class implementation.""" + _name: str + _species: str + _age: str + _health: str + _weight: str + _color: str + def __init__(self, **kwargs): """ Create a new Animal instance. From 9e49c0bbf65fafcfa8c83c25c421f015d3ead08b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:28:41 -0800 Subject: [PATCH 758/873] Update remove_the_minimum.py --- kyu_7/remove_the_minimum/remove_the_minimum.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kyu_7/remove_the_minimum/remove_the_minimum.py b/kyu_7/remove_the_minimum/remove_the_minimum.py index 1b2e31aec35..6ca0ee9468e 100644 --- a/kyu_7/remove_the_minimum/remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/remove_the_minimum.py @@ -25,8 +25,5 @@ def remove_smallest(numbers: list) -> list: min_num: int = min(numbers) min_i: int = numbers.index(min_num) - for i, el in enumerate(numbers): - if i != min_i: - new_array.append(el) - + new_array = [el for i, el in enumerate(numbers) if i != min_i] return new_array From 10892b4f069fc27aa52c89f4b86560fc9f929b94 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:30:53 -0800 Subject: [PATCH 759/873] Update remove_the_minimum.py --- kyu_7/remove_the_minimum/remove_the_minimum.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_7/remove_the_minimum/remove_the_minimum.py b/kyu_7/remove_the_minimum/remove_the_minimum.py index 6ca0ee9468e..87589af91bf 100644 --- a/kyu_7/remove_the_minimum/remove_the_minimum.py +++ b/kyu_7/remove_the_minimum/remove_the_minimum.py @@ -19,7 +19,6 @@ def remove_smallest(numbers: list) -> list: :param numbers: list :return: list """ - new_array: list = [] if len(numbers) < 1: return numbers From 31e565b9560f3a0f7d0d9786987364aad6438c25 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:41:39 -0800 Subject: [PATCH 760/873] Update test_count_letters_and_digits.py --- .../test_count_letters_and_digits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py b/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py index fcc38672024..589b85a64fe 100644 --- a/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py +++ b/kyu_7/help_bob_count_letters_and_digits/test_count_letters_and_digits.py @@ -56,5 +56,5 @@ def test_count_letters_and_digits(self, s, expected): with allure.step(f"Enter string ({s}) and verify the " f"expected output ({expected}) vs " f"actual result ({actual_result})"): - print_log(s=s, expected=expected,result=actual_result) + print_log(s=s, expected=expected, result=actual_result) self.assertEqual(expected, actual_result) From 9f998ec5c52d3366aedcceae9b60ecfba050fc41 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 07:42:57 -0800 Subject: [PATCH 761/873] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 8152b8be614..51e2aef0b32 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -43,7 +43,7 @@ class CheckRootTestCase(unittest.TestCase): ('10,11,12,13,15', 'incorrect input'), ('10,11,12,13', '17161, 131'), ('\\*-3,-2,-1,0', 'incorrect input')]) - def test_check_root(self,string, expected): + def test_check_root(self, string, expected): """ Testing 'check_root' function with various test inputs. From a7df8d85e8a56c84ff01e3ba16b1f01f54bf2e05 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:16:34 -0800 Subject: [PATCH 762/873] Docs for kyu_6 --- README.md | 60 +++++++++++++++++++ docs/index.rst | 2 +- .../kyu_6.a_rule_of_divisibility_by_13.rst | 0 docs/{ => kyu_6}/kyu_6.array_diff.rst | 0 .../{ => kyu_6}/kyu_6.array_to_html_table.rst | 0 .../kyu_6.binary_to_text_ascii_conversion.rst | 0 docs/{ => kyu_6}/kyu_6.casino_chips.rst | 0 .../{ => kyu_6}/kyu_6.character_frequency.rst | 0 docs/{ => kyu_6}/kyu_6.color_choice.rst | 0 .../kyu_6.count_letters_in_string.rst | 0 docs/{ => kyu_6}/kyu_6.decipher_this.rst | 0 docs/{ => kyu_6}/kyu_6.default_list.rst | 0 docs/{ => kyu_6}/kyu_6.disease_spread.rst | 0 docs/{ => kyu_6}/kyu_6.duplicate_encoder.rst | 0 docs/{ => kyu_6}/kyu_6.easy_diagonal.rst | 0 docs/{ => kyu_6}/kyu_6.encrypt_this.rst | 0 docs/{ => kyu_6}/kyu_6.find_the_odd_int.rst | 0 .../kyu_6.first_character_that_repeats.rst | 0 .../kyu_6.format_string_of_names.rst | 0 .../{ => kyu_6}/kyu_6.help_the_bookseller.rst | 0 docs/{ => kyu_6}/kyu_6.longest_repetition.rst | 0 .../{ => kyu_6}/kyu_6.multiples_of_3_or_5.rst | 0 .../kyu_6.no_arithmetic_progressions.rst | 0 docs/{ => kyu_6}/kyu_6.number_zoo_patrol.rst | 0 .../kyu_6.numericals_of_string.rst | 0 .../kyu_6.permute_a_palindrome.rst | 0 .../kyu_6.pokemon_damage_calculator.rst | 0 docs/{ => kyu_6}/kyu_6.potion_class_101.rst | 0 docs/{ => kyu_6}/kyu_6.pyramid_array.rst | 0 docs/{ => kyu_6}/kyu_6.readme.rst | 0 ...u_6.rotate_the_letters_of_each_element.rst | 0 .../kyu_6.row_of_the_odd_triangle.rst | 0 docs/{ => kyu_6}/kyu_6.rst | 0 docs/{ => kyu_6}/kyu_6.scheduling.module.rst | 0 docs/{ => kyu_6}/kyu_6.scheduling.readme.rst | 0 docs/{ => kyu_6}/kyu_6.scheduling.rst | 0 docs/{ => kyu_6}/kyu_6.sort_the_odd.rst | 0 .../kyu_6.string_subpattern_recognition_1.rst | 0 .../kyu_6.string_subpattern_recognition_2.rst | 0 .../kyu_6.string_subpattern_recognition_3.rst | 0 docs/{ => kyu_6}/kyu_6.string_transformer.rst | 0 .../kyu_6.sum_of_digits_digital_root.rst | 0 docs/{ => kyu_6}/kyu_6.sums_of_parts.rst | 0 docs/{ => kyu_6}/kyu_6.unique_in_order.rst | 0 docs/{ => kyu_6}/kyu_6.vasya_clerk.rst | 0 docs/{ => kyu_6}/kyu_6.who_likes_it.rst | 0 docs/{ => kyu_6}/kyu_6.your_order_please.rst | 0 47 files changed, 61 insertions(+), 1 deletion(-) rename docs/{ => kyu_6}/kyu_6.a_rule_of_divisibility_by_13.rst (100%) rename docs/{ => kyu_6}/kyu_6.array_diff.rst (100%) rename docs/{ => kyu_6}/kyu_6.array_to_html_table.rst (100%) rename docs/{ => kyu_6}/kyu_6.binary_to_text_ascii_conversion.rst (100%) rename docs/{ => kyu_6}/kyu_6.casino_chips.rst (100%) rename docs/{ => kyu_6}/kyu_6.character_frequency.rst (100%) rename docs/{ => kyu_6}/kyu_6.color_choice.rst (100%) rename docs/{ => kyu_6}/kyu_6.count_letters_in_string.rst (100%) rename docs/{ => kyu_6}/kyu_6.decipher_this.rst (100%) rename docs/{ => kyu_6}/kyu_6.default_list.rst (100%) rename docs/{ => kyu_6}/kyu_6.disease_spread.rst (100%) rename docs/{ => kyu_6}/kyu_6.duplicate_encoder.rst (100%) rename docs/{ => kyu_6}/kyu_6.easy_diagonal.rst (100%) rename docs/{ => kyu_6}/kyu_6.encrypt_this.rst (100%) rename docs/{ => kyu_6}/kyu_6.find_the_odd_int.rst (100%) rename docs/{ => kyu_6}/kyu_6.first_character_that_repeats.rst (100%) rename docs/{ => kyu_6}/kyu_6.format_string_of_names.rst (100%) rename docs/{ => kyu_6}/kyu_6.help_the_bookseller.rst (100%) rename docs/{ => kyu_6}/kyu_6.longest_repetition.rst (100%) rename docs/{ => kyu_6}/kyu_6.multiples_of_3_or_5.rst (100%) rename docs/{ => kyu_6}/kyu_6.no_arithmetic_progressions.rst (100%) rename docs/{ => kyu_6}/kyu_6.number_zoo_patrol.rst (100%) rename docs/{ => kyu_6}/kyu_6.numericals_of_string.rst (100%) rename docs/{ => kyu_6}/kyu_6.permute_a_palindrome.rst (100%) rename docs/{ => kyu_6}/kyu_6.pokemon_damage_calculator.rst (100%) rename docs/{ => kyu_6}/kyu_6.potion_class_101.rst (100%) rename docs/{ => kyu_6}/kyu_6.pyramid_array.rst (100%) rename docs/{ => kyu_6}/kyu_6.readme.rst (100%) rename docs/{ => kyu_6}/kyu_6.rotate_the_letters_of_each_element.rst (100%) rename docs/{ => kyu_6}/kyu_6.row_of_the_odd_triangle.rst (100%) rename docs/{ => kyu_6}/kyu_6.rst (100%) rename docs/{ => kyu_6}/kyu_6.scheduling.module.rst (100%) rename docs/{ => kyu_6}/kyu_6.scheduling.readme.rst (100%) rename docs/{ => kyu_6}/kyu_6.scheduling.rst (100%) rename docs/{ => kyu_6}/kyu_6.sort_the_odd.rst (100%) rename docs/{ => kyu_6}/kyu_6.string_subpattern_recognition_1.rst (100%) rename docs/{ => kyu_6}/kyu_6.string_subpattern_recognition_2.rst (100%) rename docs/{ => kyu_6}/kyu_6.string_subpattern_recognition_3.rst (100%) rename docs/{ => kyu_6}/kyu_6.string_transformer.rst (100%) rename docs/{ => kyu_6}/kyu_6.sum_of_digits_digital_root.rst (100%) rename docs/{ => kyu_6}/kyu_6.sums_of_parts.rst (100%) rename docs/{ => kyu_6}/kyu_6.unique_in_order.rst (100%) rename docs/{ => kyu_6}/kyu_6.vasya_clerk.rst (100%) rename docs/{ => kyu_6}/kyu_6.who_likes_it.rst (100%) rename docs/{ => kyu_6}/kyu_6.your_order_please.rst (100%) diff --git a/README.md b/README.md index e7b1fc12747..9ceb8e643bc 100644 --- a/README.md +++ b/README.md @@ -350,4 +350,64 @@ the environment for every build, see comment from Grimmy below). [Source](https://intellipaat.com/community/31672/how-to-use-requirements-txt-to-install-all-dependencies-in-a-python-project) + +
    +ERROR: make : The term 'make' is not recognized as the name of a cmdlet + +'make' is not recognized as an internal or external command. + +The error "'make' is not recognized as an internal or external command, operable program or +batch file" occurs when we run the make command on Windows without having make installed. +To solve the error, install make using Chocolatey. + +```commandline +make clean +make : The term 'make' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path +was included, verify that the path is correct and try again. +At line:1 char:1 ++ make clean ++ ~~~~ + + CategoryInfo : ObjectNotFound: (make:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +Suggestion [3,General]: The command make was not found, but does exist in the current location. Windows PowerShell does not load commands from the current location by default. If you trust this command, instead type: ".\make". See "get-help about_Command_Precedence" for more details. +``` + +To install Chocolatey: + +1. Open PowerShell as an administrator. +2. Run the following command: + ```commandline + Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) + ``` +3. Wait for the command to complete. +4. Type choco to make sure Chocolatey is installed: + ```commandline + PS C:\WINDOWS\system32> choco + Chocolatey v2.4.1 + Please run 'choco -?' or 'choco -?' for help menu. + ``` +5. Now that you have Chocolatey installed, run the following command to install make: + ```commandline + PS C:\WINDOWS\system32> choco install make -y + Chocolatey v2.4.1 + Installing the following packages: + make + By installing, you accept licenses for the packages. + Downloading package from source 'https://community.chocolatey.org/api/v2/' + Progress: Downloading make 4.4.1... 100% + + make v4.4.1 [Approved] + make package files install completed. Performing other installation steps. + ShimGen has successfully created a shim for make.exe + The install of make was successful. + Deployed to 'C:\ProgramData\chocolatey\lib\make' + + Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). + ``` + +[Source](https://bobbyhadz.com/blog/make-is-not-recognized-as-internal-or-external-command) +
    diff --git a/docs/index.rst b/docs/index.rst index fefbd97ba67..32b8296193a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -15,7 +15,7 @@ Welcome to Python3 solutions for codewars problems's documentation! kyu_3/kyu_3 kyu_4/kyu_4 kyu_5/kyu_5 - kyu_6 + kyu_6/kyu_6 kyu_7 kyu_8 utils diff --git a/docs/kyu_6.a_rule_of_divisibility_by_13.rst b/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.rst similarity index 100% rename from docs/kyu_6.a_rule_of_divisibility_by_13.rst rename to docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.rst diff --git a/docs/kyu_6.array_diff.rst b/docs/kyu_6/kyu_6.array_diff.rst similarity index 100% rename from docs/kyu_6.array_diff.rst rename to docs/kyu_6/kyu_6.array_diff.rst diff --git a/docs/kyu_6.array_to_html_table.rst b/docs/kyu_6/kyu_6.array_to_html_table.rst similarity index 100% rename from docs/kyu_6.array_to_html_table.rst rename to docs/kyu_6/kyu_6.array_to_html_table.rst diff --git a/docs/kyu_6.binary_to_text_ascii_conversion.rst b/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.rst similarity index 100% rename from docs/kyu_6.binary_to_text_ascii_conversion.rst rename to docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.rst diff --git a/docs/kyu_6.casino_chips.rst b/docs/kyu_6/kyu_6.casino_chips.rst similarity index 100% rename from docs/kyu_6.casino_chips.rst rename to docs/kyu_6/kyu_6.casino_chips.rst diff --git a/docs/kyu_6.character_frequency.rst b/docs/kyu_6/kyu_6.character_frequency.rst similarity index 100% rename from docs/kyu_6.character_frequency.rst rename to docs/kyu_6/kyu_6.character_frequency.rst diff --git a/docs/kyu_6.color_choice.rst b/docs/kyu_6/kyu_6.color_choice.rst similarity index 100% rename from docs/kyu_6.color_choice.rst rename to docs/kyu_6/kyu_6.color_choice.rst diff --git a/docs/kyu_6.count_letters_in_string.rst b/docs/kyu_6/kyu_6.count_letters_in_string.rst similarity index 100% rename from docs/kyu_6.count_letters_in_string.rst rename to docs/kyu_6/kyu_6.count_letters_in_string.rst diff --git a/docs/kyu_6.decipher_this.rst b/docs/kyu_6/kyu_6.decipher_this.rst similarity index 100% rename from docs/kyu_6.decipher_this.rst rename to docs/kyu_6/kyu_6.decipher_this.rst diff --git a/docs/kyu_6.default_list.rst b/docs/kyu_6/kyu_6.default_list.rst similarity index 100% rename from docs/kyu_6.default_list.rst rename to docs/kyu_6/kyu_6.default_list.rst diff --git a/docs/kyu_6.disease_spread.rst b/docs/kyu_6/kyu_6.disease_spread.rst similarity index 100% rename from docs/kyu_6.disease_spread.rst rename to docs/kyu_6/kyu_6.disease_spread.rst diff --git a/docs/kyu_6.duplicate_encoder.rst b/docs/kyu_6/kyu_6.duplicate_encoder.rst similarity index 100% rename from docs/kyu_6.duplicate_encoder.rst rename to docs/kyu_6/kyu_6.duplicate_encoder.rst diff --git a/docs/kyu_6.easy_diagonal.rst b/docs/kyu_6/kyu_6.easy_diagonal.rst similarity index 100% rename from docs/kyu_6.easy_diagonal.rst rename to docs/kyu_6/kyu_6.easy_diagonal.rst diff --git a/docs/kyu_6.encrypt_this.rst b/docs/kyu_6/kyu_6.encrypt_this.rst similarity index 100% rename from docs/kyu_6.encrypt_this.rst rename to docs/kyu_6/kyu_6.encrypt_this.rst diff --git a/docs/kyu_6.find_the_odd_int.rst b/docs/kyu_6/kyu_6.find_the_odd_int.rst similarity index 100% rename from docs/kyu_6.find_the_odd_int.rst rename to docs/kyu_6/kyu_6.find_the_odd_int.rst diff --git a/docs/kyu_6.first_character_that_repeats.rst b/docs/kyu_6/kyu_6.first_character_that_repeats.rst similarity index 100% rename from docs/kyu_6.first_character_that_repeats.rst rename to docs/kyu_6/kyu_6.first_character_that_repeats.rst diff --git a/docs/kyu_6.format_string_of_names.rst b/docs/kyu_6/kyu_6.format_string_of_names.rst similarity index 100% rename from docs/kyu_6.format_string_of_names.rst rename to docs/kyu_6/kyu_6.format_string_of_names.rst diff --git a/docs/kyu_6.help_the_bookseller.rst b/docs/kyu_6/kyu_6.help_the_bookseller.rst similarity index 100% rename from docs/kyu_6.help_the_bookseller.rst rename to docs/kyu_6/kyu_6.help_the_bookseller.rst diff --git a/docs/kyu_6.longest_repetition.rst b/docs/kyu_6/kyu_6.longest_repetition.rst similarity index 100% rename from docs/kyu_6.longest_repetition.rst rename to docs/kyu_6/kyu_6.longest_repetition.rst diff --git a/docs/kyu_6.multiples_of_3_or_5.rst b/docs/kyu_6/kyu_6.multiples_of_3_or_5.rst similarity index 100% rename from docs/kyu_6.multiples_of_3_or_5.rst rename to docs/kyu_6/kyu_6.multiples_of_3_or_5.rst diff --git a/docs/kyu_6.no_arithmetic_progressions.rst b/docs/kyu_6/kyu_6.no_arithmetic_progressions.rst similarity index 100% rename from docs/kyu_6.no_arithmetic_progressions.rst rename to docs/kyu_6/kyu_6.no_arithmetic_progressions.rst diff --git a/docs/kyu_6.number_zoo_patrol.rst b/docs/kyu_6/kyu_6.number_zoo_patrol.rst similarity index 100% rename from docs/kyu_6.number_zoo_patrol.rst rename to docs/kyu_6/kyu_6.number_zoo_patrol.rst diff --git a/docs/kyu_6.numericals_of_string.rst b/docs/kyu_6/kyu_6.numericals_of_string.rst similarity index 100% rename from docs/kyu_6.numericals_of_string.rst rename to docs/kyu_6/kyu_6.numericals_of_string.rst diff --git a/docs/kyu_6.permute_a_palindrome.rst b/docs/kyu_6/kyu_6.permute_a_palindrome.rst similarity index 100% rename from docs/kyu_6.permute_a_palindrome.rst rename to docs/kyu_6/kyu_6.permute_a_palindrome.rst diff --git a/docs/kyu_6.pokemon_damage_calculator.rst b/docs/kyu_6/kyu_6.pokemon_damage_calculator.rst similarity index 100% rename from docs/kyu_6.pokemon_damage_calculator.rst rename to docs/kyu_6/kyu_6.pokemon_damage_calculator.rst diff --git a/docs/kyu_6.potion_class_101.rst b/docs/kyu_6/kyu_6.potion_class_101.rst similarity index 100% rename from docs/kyu_6.potion_class_101.rst rename to docs/kyu_6/kyu_6.potion_class_101.rst diff --git a/docs/kyu_6.pyramid_array.rst b/docs/kyu_6/kyu_6.pyramid_array.rst similarity index 100% rename from docs/kyu_6.pyramid_array.rst rename to docs/kyu_6/kyu_6.pyramid_array.rst diff --git a/docs/kyu_6.readme.rst b/docs/kyu_6/kyu_6.readme.rst similarity index 100% rename from docs/kyu_6.readme.rst rename to docs/kyu_6/kyu_6.readme.rst diff --git a/docs/kyu_6.rotate_the_letters_of_each_element.rst b/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.rst similarity index 100% rename from docs/kyu_6.rotate_the_letters_of_each_element.rst rename to docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.rst diff --git a/docs/kyu_6.row_of_the_odd_triangle.rst b/docs/kyu_6/kyu_6.row_of_the_odd_triangle.rst similarity index 100% rename from docs/kyu_6.row_of_the_odd_triangle.rst rename to docs/kyu_6/kyu_6.row_of_the_odd_triangle.rst diff --git a/docs/kyu_6.rst b/docs/kyu_6/kyu_6.rst similarity index 100% rename from docs/kyu_6.rst rename to docs/kyu_6/kyu_6.rst diff --git a/docs/kyu_6.scheduling.module.rst b/docs/kyu_6/kyu_6.scheduling.module.rst similarity index 100% rename from docs/kyu_6.scheduling.module.rst rename to docs/kyu_6/kyu_6.scheduling.module.rst diff --git a/docs/kyu_6.scheduling.readme.rst b/docs/kyu_6/kyu_6.scheduling.readme.rst similarity index 100% rename from docs/kyu_6.scheduling.readme.rst rename to docs/kyu_6/kyu_6.scheduling.readme.rst diff --git a/docs/kyu_6.scheduling.rst b/docs/kyu_6/kyu_6.scheduling.rst similarity index 100% rename from docs/kyu_6.scheduling.rst rename to docs/kyu_6/kyu_6.scheduling.rst diff --git a/docs/kyu_6.sort_the_odd.rst b/docs/kyu_6/kyu_6.sort_the_odd.rst similarity index 100% rename from docs/kyu_6.sort_the_odd.rst rename to docs/kyu_6/kyu_6.sort_the_odd.rst diff --git a/docs/kyu_6.string_subpattern_recognition_1.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_1.rst similarity index 100% rename from docs/kyu_6.string_subpattern_recognition_1.rst rename to docs/kyu_6/kyu_6.string_subpattern_recognition_1.rst diff --git a/docs/kyu_6.string_subpattern_recognition_2.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_2.rst similarity index 100% rename from docs/kyu_6.string_subpattern_recognition_2.rst rename to docs/kyu_6/kyu_6.string_subpattern_recognition_2.rst diff --git a/docs/kyu_6.string_subpattern_recognition_3.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_3.rst similarity index 100% rename from docs/kyu_6.string_subpattern_recognition_3.rst rename to docs/kyu_6/kyu_6.string_subpattern_recognition_3.rst diff --git a/docs/kyu_6.string_transformer.rst b/docs/kyu_6/kyu_6.string_transformer.rst similarity index 100% rename from docs/kyu_6.string_transformer.rst rename to docs/kyu_6/kyu_6.string_transformer.rst diff --git a/docs/kyu_6.sum_of_digits_digital_root.rst b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.rst similarity index 100% rename from docs/kyu_6.sum_of_digits_digital_root.rst rename to docs/kyu_6/kyu_6.sum_of_digits_digital_root.rst diff --git a/docs/kyu_6.sums_of_parts.rst b/docs/kyu_6/kyu_6.sums_of_parts.rst similarity index 100% rename from docs/kyu_6.sums_of_parts.rst rename to docs/kyu_6/kyu_6.sums_of_parts.rst diff --git a/docs/kyu_6.unique_in_order.rst b/docs/kyu_6/kyu_6.unique_in_order.rst similarity index 100% rename from docs/kyu_6.unique_in_order.rst rename to docs/kyu_6/kyu_6.unique_in_order.rst diff --git a/docs/kyu_6.vasya_clerk.rst b/docs/kyu_6/kyu_6.vasya_clerk.rst similarity index 100% rename from docs/kyu_6.vasya_clerk.rst rename to docs/kyu_6/kyu_6.vasya_clerk.rst diff --git a/docs/kyu_6.who_likes_it.rst b/docs/kyu_6/kyu_6.who_likes_it.rst similarity index 100% rename from docs/kyu_6.who_likes_it.rst rename to docs/kyu_6/kyu_6.who_likes_it.rst diff --git a/docs/kyu_6.your_order_please.rst b/docs/kyu_6/kyu_6.your_order_please.rst similarity index 100% rename from docs/kyu_6.your_order_please.rst rename to docs/kyu_6/kyu_6.your_order_please.rst From 553b5949f444d065ba6c090b32fd2a9ad6609902 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:25:41 -0800 Subject: [PATCH 763/873] new docs --- docs/kyu_6/kyu_6.default_list.rst | 9 +++++++++ docs/kyu_6/kyu_6.rst | 4 ++-- docs/kyu_6/kyu_6.valid_braces.rst | 32 +++++++++++++++++++++++++++++++ docs/kyu_7.valid_parentheses.rst | 32 +++++++++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 docs/kyu_6/kyu_6.valid_braces.rst create mode 100644 docs/kyu_7.valid_parentheses.rst diff --git a/docs/kyu_6/kyu_6.default_list.rst b/docs/kyu_6/kyu_6.default_list.rst index 522b88eca52..47f9efc18e4 100644 --- a/docs/kyu_6/kyu_6.default_list.rst +++ b/docs/kyu_6/kyu_6.default_list.rst @@ -22,6 +22,15 @@ kyu\_6.default\_list.test\_default\_list module :show-inheritance: :private-members: +kyu\_6.default\_list.test\_edge\_case\_list module +-------------------------------------------------- + +.. automodule:: kyu_6.default_list.test_edge_case_list + :members: + :undoc-members: + :show-inheritance: + :private-members: + Module contents --------------- diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index fdd602fdf14..e285bd5c5e3 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -7,7 +7,6 @@ Subpackages .. toctree:: :maxdepth: 4 - kyu_6.readme kyu_6.a_rule_of_divisibility_by_13 kyu_6.array_diff kyu_6.array_to_html_table @@ -37,7 +36,7 @@ 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.scheduling kyu_6.sort_the_odd kyu_6.string_subpattern_recognition_1 kyu_6.string_subpattern_recognition_2 @@ -46,6 +45,7 @@ Subpackages kyu_6.sum_of_digits_digital_root kyu_6.sums_of_parts kyu_6.unique_in_order + kyu_6.valid_braces kyu_6.vasya_clerk kyu_6.who_likes_it kyu_6.your_order_please diff --git a/docs/kyu_6/kyu_6.valid_braces.rst b/docs/kyu_6/kyu_6.valid_braces.rst new file mode 100644 index 00000000000..4b2ce074c3c --- /dev/null +++ b/docs/kyu_6/kyu_6.valid_braces.rst @@ -0,0 +1,32 @@ +kyu\_6.valid\_braces package +============================ + +Submodules +---------- + +kyu\_6.valid\_braces.test\_valid\_braces module +----------------------------------------------- + +.. automodule:: kyu_6.valid_braces.test_valid_braces + :members: + :undoc-members: + :show-inheritance: + :private-members: + +kyu\_6.valid\_braces.valid\_braces module +----------------------------------------- + +.. automodule:: kyu_6.valid_braces.valid_braces + :members: + :undoc-members: + :show-inheritance: + :private-members: + +Module contents +--------------- + +.. automodule:: kyu_6.valid_braces + :members: + :undoc-members: + :show-inheritance: + :private-members: diff --git a/docs/kyu_7.valid_parentheses.rst b/docs/kyu_7.valid_parentheses.rst new file mode 100644 index 00000000000..345bb31ae15 --- /dev/null +++ b/docs/kyu_7.valid_parentheses.rst @@ -0,0 +1,32 @@ +kyu\_7.valid\_parentheses package +================================= + +Submodules +---------- + +kyu\_7.valid\_parentheses.solution module +----------------------------------------- + +.. automodule:: kyu_7.valid_parentheses.solution + :members: + :undoc-members: + :show-inheritance: + :private-members: + +kyu\_7.valid\_parentheses.test\_valid\_parentheses module +--------------------------------------------------------- + +.. automodule:: kyu_7.valid_parentheses.test_valid_parentheses + :members: + :undoc-members: + :show-inheritance: + :private-members: + +Module contents +--------------- + +.. automodule:: kyu_7.valid_parentheses + :members: + :undoc-members: + :show-inheritance: + :private-members: From 0e585c8b7b31f186364f97d9f600ac936cc9af4a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:29:59 -0800 Subject: [PATCH 764/873] new module --- .../kyu_6.a_rule_of_divisibility_by_13.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.rst | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.module.rst diff --git a/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.module.rst b/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.module.rst new file mode 100644 index 00000000000..68ce9140ea0 --- /dev/null +++ b/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.module.rst @@ -0,0 +1,11 @@ +kyu\_6.a\_rule\_of\_divisibility\_by\_13.module package +======================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.a_rule_of_divisibility_by_13.readme + kyu_6.a_rule_of_divisibility_by_13 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index e285bd5c5e3..51fda3cefe4 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -7,7 +7,7 @@ Subpackages .. toctree:: :maxdepth: 4 - kyu_6.a_rule_of_divisibility_by_13 + kyu_6.a_rule_of_divisibility_by_13.module kyu_6.array_diff kyu_6.array_to_html_table kyu_6.binary_to_text_ascii_conversion From 0818267e1c9789e3f039eb51d7dfa3c942a18dd0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:33:46 -0800 Subject: [PATCH 765/873] Create kyu_6.a_rule_of_divisibility_by_13.readme.rst --- docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.readme.rst | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.readme.rst diff --git a/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.readme.rst b/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.readme.rst new file mode 100644 index 00000000000..a495c48dce8 --- /dev/null +++ b/docs/kyu_6/kyu_6.a_rule_of_divisibility_by_13.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/a_rule_of_divisibility_by_13/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 5d11cbdec23859a597966ec183a0120cbf28e1a1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:36:52 -0800 Subject: [PATCH 766/873] Update kyu_6.readme.rst --- docs/kyu_6/kyu_6.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.readme.rst b/docs/kyu_6/kyu_6.readme.rst index 28cf093a0ec..a13a61458cd 100644 --- a/docs/kyu_6/kyu_6.readme.rst +++ b/docs/kyu_6/kyu_6.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_6/README.md +.. include:: ../../kyu_6/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From dfdbbdcb0d49bb2d0cf3cd17b4e233c92fac723f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:39:24 -0800 Subject: [PATCH 767/873] Update kyu_6.scheduling.readme.rst --- docs/kyu_6/kyu_6.scheduling.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.scheduling.readme.rst b/docs/kyu_6/kyu_6.scheduling.readme.rst index 64a08fe635d..b3dfd9d7879 100644 --- a/docs/kyu_6/kyu_6.scheduling.readme.rst +++ b/docs/kyu_6/kyu_6.scheduling.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_6/scheduling/README.md +.. include:: ../../kyu_6/scheduling/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 3b90d167d7fea7d58961e918ba23b25a4c07bc27 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:43:12 -0800 Subject: [PATCH 768/873] Update kyu_6.rst --- docs/kyu_6/kyu_6.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 51fda3cefe4..78f3ab9b01b 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -7,6 +7,7 @@ Subpackages .. toctree:: :maxdepth: 4 + kyu_6.readme kyu_6.a_rule_of_divisibility_by_13.module kyu_6.array_diff kyu_6.array_to_html_table @@ -36,7 +37,7 @@ Subpackages kyu_6.pyramid_array kyu_6.rotate_the_letters_of_each_element kyu_6.row_of_the_odd_triangle - kyu_6.scheduling + kyu_6.scheduling.module kyu_6.sort_the_odd kyu_6.string_subpattern_recognition_1 kyu_6.string_subpattern_recognition_2 From 11975fbf49ae672f40ff5e2ad720eb4e4d98cf71 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:43:15 -0800 Subject: [PATCH 769/873] Update kyu_7.rst --- docs/kyu_7.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/kyu_7.rst b/docs/kyu_7.rst index 2b1d447f7f2..dbf31d06e07 100644 --- a/docs/kyu_7.rst +++ b/docs/kyu_7.rst @@ -40,6 +40,7 @@ Subpackages kyu_7.sum_of_two_lowest_int kyu_7.the_first_non_repeated_character_in_string kyu_7.vaporcode + kyu_7.valid_parentheses kyu_7.you_are_square Module contents From 1741a48ad94ab2af7e1e973b0cf5ef684669f799 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:46:17 -0800 Subject: [PATCH 770/873] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9ceb8e643bc..d97d51c7233 100644 --- a/README.md +++ b/README.md @@ -352,7 +352,7 @@ the environment for every build, see comment from Grimmy below).
    -ERROR: make : The term 'make' is not recognized as the name of a cmdlet +ERROR: The term 'make' is not recognized as the name of a cmdlet 'make' is not recognized as an internal or external command. @@ -360,7 +360,7 @@ The error "'make' is not recognized as an internal or external command, operable batch file" occurs when we run the make command on Windows without having make installed. To solve the error, install make using Chocolatey. -```commandline +``` make clean make : The term 'make' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. @@ -378,18 +378,18 @@ To install Chocolatey: 1. Open PowerShell as an administrator. 2. Run the following command: - ```commandline + ``` Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) ``` 3. Wait for the command to complete. 4. Type choco to make sure Chocolatey is installed: - ```commandline + ``` PS C:\WINDOWS\system32> choco Chocolatey v2.4.1 Please run 'choco -?' or 'choco -?' for help menu. ``` 5. Now that you have Chocolatey installed, run the following command to install make: - ```commandline + ``` PS C:\WINDOWS\system32> choco install make -y Chocolatey v2.4.1 Installing the following packages: From 81b4d6af5edff868eab79cc102348a403daa787f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:50:30 -0800 Subject: [PATCH 771/873] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d97d51c7233..cdec1fb788d 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ for CI or a build tool. ## Tech Issues and Problem Solving - +
    Changing the project interpreter in the PyCharm project settings @@ -410,4 +410,4 @@ To install Chocolatey: [Source](https://bobbyhadz.com/blog/make-is-not-recognized-as-internal-or-external-command)
    - + From e1a63720bf9a36ca9cd1df2379b9ef55a4c4b2b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:56:34 -0800 Subject: [PATCH 772/873] array_diff --- docs/kyu_6/kyu_6.array_diff.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.array_diff.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.array_diff.module.rst create mode 100644 docs/kyu_6/kyu_6.array_diff.readme.rst diff --git a/docs/kyu_6/kyu_6.array_diff.module.rst b/docs/kyu_6/kyu_6.array_diff.module.rst new file mode 100644 index 00000000000..6ff4eb39b5b --- /dev/null +++ b/docs/kyu_6/kyu_6.array_diff.module.rst @@ -0,0 +1,11 @@ +kyu\_6.array\_diff.module package +================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.array_diff.readme + kyu_6.array_diff \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.array_diff.readme.rst b/docs/kyu_6/kyu_6.array_diff.readme.rst new file mode 100644 index 00000000000..c8f7276d15b --- /dev/null +++ b/docs/kyu_6/kyu_6.array_diff.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/array_diff/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 78f3ab9b01b..7a5ada8cffc 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -9,7 +9,7 @@ Subpackages kyu_6.readme kyu_6.a_rule_of_divisibility_by_13.module - kyu_6.array_diff + kyu_6.array_diff.module kyu_6.array_to_html_table kyu_6.binary_to_text_ascii_conversion kyu_6.casino_chips From 651466b1bd921efed70f434635ef2f015543db11 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:59:27 -0800 Subject: [PATCH 773/873] array_to_html_table --- docs/kyu_6/kyu_6.array_to_html_table.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.array_to_html_table.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.array_to_html_table.module.rst create mode 100644 docs/kyu_6/kyu_6.array_to_html_table.readme.rst diff --git a/docs/kyu_6/kyu_6.array_to_html_table.module.rst b/docs/kyu_6/kyu_6.array_to_html_table.module.rst new file mode 100644 index 00000000000..47e3f0fc354 --- /dev/null +++ b/docs/kyu_6/kyu_6.array_to_html_table.module.rst @@ -0,0 +1,11 @@ +kyu\_6.array\_to\_html\_table.module package +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.array_to_html_table.readme + kyu_6.array_to_html_table \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.array_to_html_table.readme.rst b/docs/kyu_6/kyu_6.array_to_html_table.readme.rst new file mode 100644 index 00000000000..fa25c102d85 --- /dev/null +++ b/docs/kyu_6/kyu_6.array_to_html_table.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/array_to_html_table/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 7a5ada8cffc..d6858f1274c 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -10,7 +10,7 @@ Subpackages kyu_6.readme kyu_6.a_rule_of_divisibility_by_13.module kyu_6.array_diff.module - kyu_6.array_to_html_table + kyu_6.array_to_html_table.module kyu_6.binary_to_text_ascii_conversion kyu_6.casino_chips kyu_6.character_frequency From d05fbbf94e1bc394680fe7542770e04f30ab9e92 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:38:35 -0800 Subject: [PATCH 774/873] binary_to_text_ascii_conversion --- .../kyu_6.binary_to_text_ascii_conversion.module.rst | 11 +++++++++++ .../kyu_6.binary_to_text_ascii_conversion.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.module.rst create mode 100644 docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.readme.rst diff --git a/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.module.rst b/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.module.rst new file mode 100644 index 00000000000..8b036332555 --- /dev/null +++ b/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.module.rst @@ -0,0 +1,11 @@ +kyu\_6.binary\_to\_text\_ascii\_conversion.module package +========================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.binary_to_text_ascii_conversion.readme + kyu_6.binary_to_text_ascii_conversion \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.readme.rst b/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.readme.rst new file mode 100644 index 00000000000..b8116f869fc --- /dev/null +++ b/docs/kyu_6/kyu_6.binary_to_text_ascii_conversion.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/binary_to_text_ascii_conversion/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index d6858f1274c..a9332e1b087 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -11,7 +11,7 @@ Subpackages kyu_6.a_rule_of_divisibility_by_13.module kyu_6.array_diff.module kyu_6.array_to_html_table.module - kyu_6.binary_to_text_ascii_conversion + kyu_6.binary_to_text_ascii_conversion.module kyu_6.casino_chips kyu_6.character_frequency kyu_6.color_choice From b46a8213d1b2793437e34267d79bcfb43c635b01 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:43:32 -0800 Subject: [PATCH 775/873] casino_chips --- docs/kyu_6/kyu_6.casino_chips.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.casino_chips.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 4 ++-- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 docs/kyu_6/kyu_6.casino_chips.module.rst create mode 100644 docs/kyu_6/kyu_6.casino_chips.readme.rst diff --git a/docs/kyu_6/kyu_6.casino_chips.module.rst b/docs/kyu_6/kyu_6.casino_chips.module.rst new file mode 100644 index 00000000000..8da94ca33ef --- /dev/null +++ b/docs/kyu_6/kyu_6.casino_chips.module.rst @@ -0,0 +1,11 @@ +kyu\_6.casino\_chips.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.casino_chips.readme + kyu_6.casino_chips \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.casino_chips.readme.rst b/docs/kyu_6/kyu_6.casino_chips.readme.rst new file mode 100644 index 00000000000..c68076f7bd8 --- /dev/null +++ b/docs/kyu_6/kyu_6.casino_chips.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/casino_chips/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index a9332e1b087..c158a089f3c 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -12,8 +12,8 @@ Subpackages kyu_6.array_diff.module kyu_6.array_to_html_table.module kyu_6.binary_to_text_ascii_conversion.module - kyu_6.casino_chips - kyu_6.character_frequency + kyu_6.casino_chips.module + kyu_6.character_frequency.module kyu_6.color_choice kyu_6.count_letters_in_string kyu_6.decipher_this From 509e5cff952688cb15364d5df1c59bfeac5d21fe Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:45:52 -0800 Subject: [PATCH 776/873] color_choice --- docs/kyu_6/kyu_6.color_choice.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.color_choice.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.color_choice.module.rst create mode 100644 docs/kyu_6/kyu_6.color_choice.readme.rst diff --git a/docs/kyu_6/kyu_6.color_choice.module.rst b/docs/kyu_6/kyu_6.color_choice.module.rst new file mode 100644 index 00000000000..3242e497717 --- /dev/null +++ b/docs/kyu_6/kyu_6.color_choice.module.rst @@ -0,0 +1,11 @@ +kyu\_6.color\_choice.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.color_choice.readme + kyu_6.color_choice \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.color_choice.readme.rst b/docs/kyu_6/kyu_6.color_choice.readme.rst new file mode 100644 index 00000000000..c49a475582b --- /dev/null +++ b/docs/kyu_6/kyu_6.color_choice.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/color_choice/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index c158a089f3c..3041270a390 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -14,7 +14,7 @@ Subpackages kyu_6.binary_to_text_ascii_conversion.module kyu_6.casino_chips.module kyu_6.character_frequency.module - kyu_6.color_choice + kyu_6.color_choice.module kyu_6.count_letters_in_string kyu_6.decipher_this kyu_6.default_list From 2f8b1489beee1c7b515238ac508f21871448d73e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:50:11 -0800 Subject: [PATCH 777/873] count_letters_in_string --- docs/kyu_6/kyu_6.count_letters_in_string.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.count_letters_in_string.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.count_letters_in_string.module.rst create mode 100644 docs/kyu_6/kyu_6.count_letters_in_string.readme.rst diff --git a/docs/kyu_6/kyu_6.count_letters_in_string.module.rst b/docs/kyu_6/kyu_6.count_letters_in_string.module.rst new file mode 100644 index 00000000000..cd1a999236e --- /dev/null +++ b/docs/kyu_6/kyu_6.count_letters_in_string.module.rst @@ -0,0 +1,11 @@ +kyu\_6.count\_letters\_in\_string.module package +================================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.count_letters_in_string.readme + kyu_6.count_letters_in_string \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.count_letters_in_string.readme.rst b/docs/kyu_6/kyu_6.count_letters_in_string.readme.rst new file mode 100644 index 00000000000..c43914e352d --- /dev/null +++ b/docs/kyu_6/kyu_6.count_letters_in_string.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/count_letters_in_string/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 3041270a390..b90b6451fa5 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -15,7 +15,7 @@ Subpackages kyu_6.casino_chips.module kyu_6.character_frequency.module kyu_6.color_choice.module - kyu_6.count_letters_in_string + kyu_6.count_letters_in_string.module kyu_6.decipher_this kyu_6.default_list kyu_6.disease_spread From 884832b770c32059822fd769823e4f026e6b2036 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:55:01 -0800 Subject: [PATCH 778/873] character_frequency --- docs/kyu_6/kyu_6.character_frequency.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.character_frequency.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.character_frequency.module.rst create mode 100644 docs/kyu_6/kyu_6.character_frequency.readme.rst diff --git a/docs/kyu_6/kyu_6.character_frequency.module.rst b/docs/kyu_6/kyu_6.character_frequency.module.rst new file mode 100644 index 00000000000..e565de4a8b6 --- /dev/null +++ b/docs/kyu_6/kyu_6.character_frequency.module.rst @@ -0,0 +1,11 @@ +kyu\_6.character\_frequency.module package +========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.character_frequency.readme + kyu_6.character_frequency \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.character_frequency.readme.rst b/docs/kyu_6/kyu_6.character_frequency.readme.rst new file mode 100644 index 00000000000..089f403b014 --- /dev/null +++ b/docs/kyu_6/kyu_6.character_frequency.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/character_frequency/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index b90b6451fa5..3041270a390 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -15,7 +15,7 @@ Subpackages kyu_6.casino_chips.module kyu_6.character_frequency.module kyu_6.color_choice.module - kyu_6.count_letters_in_string.module + kyu_6.count_letters_in_string kyu_6.decipher_this kyu_6.default_list kyu_6.disease_spread From f6386f90ee7f954877724d284eb70b397744c784 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:57:06 -0800 Subject: [PATCH 779/873] Update kyu_6.rst --- docs/kyu_6/kyu_6.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 3041270a390..b90b6451fa5 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -15,7 +15,7 @@ Subpackages kyu_6.casino_chips.module kyu_6.character_frequency.module kyu_6.color_choice.module - kyu_6.count_letters_in_string + kyu_6.count_letters_in_string.module kyu_6.decipher_this kyu_6.default_list kyu_6.disease_spread From 8866b68161d2c6a7ff91be9402c4519d19790785 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:01:48 -0800 Subject: [PATCH 780/873] decipher_this --- docs/kyu_6/kyu_6.decipher_this.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.decipher_this.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.decipher_this.module.rst create mode 100644 docs/kyu_6/kyu_6.decipher_this.readme.rst diff --git a/docs/kyu_6/kyu_6.decipher_this.module.rst b/docs/kyu_6/kyu_6.decipher_this.module.rst new file mode 100644 index 00000000000..40e30b4b7d0 --- /dev/null +++ b/docs/kyu_6/kyu_6.decipher_this.module.rst @@ -0,0 +1,11 @@ +kyu\_6.decipher\_this.module package +==================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.decipher_this.readme + kyu_6.decipher_this \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.decipher_this.readme.rst b/docs/kyu_6/kyu_6.decipher_this.readme.rst new file mode 100644 index 00000000000..e3f8c9ea1c6 --- /dev/null +++ b/docs/kyu_6/kyu_6.decipher_this.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/decipher_this/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index b90b6451fa5..3cb195b8428 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -16,7 +16,7 @@ Subpackages kyu_6.character_frequency.module kyu_6.color_choice.module kyu_6.count_letters_in_string.module - kyu_6.decipher_this + kyu_6.decipher_this.module kyu_6.default_list kyu_6.disease_spread kyu_6.duplicate_encoder From 486fa35d2e750d8027b7a5db69a0775f3d43a063 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:13:52 -0800 Subject: [PATCH 781/873] default_list --- docs/kyu_6/kyu_6.default_list.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.default_list.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.default_list.module.rst create mode 100644 docs/kyu_6/kyu_6.default_list.readme.rst diff --git a/docs/kyu_6/kyu_6.default_list.module.rst b/docs/kyu_6/kyu_6.default_list.module.rst new file mode 100644 index 00000000000..97ae9440c21 --- /dev/null +++ b/docs/kyu_6/kyu_6.default_list.module.rst @@ -0,0 +1,11 @@ +kyu\_6.default\_list.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.default_list.readme + kyu_6.default_list \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.default_list.readme.rst b/docs/kyu_6/kyu_6.default_list.readme.rst new file mode 100644 index 00000000000..68dc8340a49 --- /dev/null +++ b/docs/kyu_6/kyu_6.default_list.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/default_list/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 3cb195b8428..10fee98979b 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -17,7 +17,7 @@ Subpackages kyu_6.color_choice.module kyu_6.count_letters_in_string.module kyu_6.decipher_this.module - kyu_6.default_list + kyu_6.default_list.module kyu_6.disease_spread kyu_6.duplicate_encoder kyu_6.easy_diagonal From 1afe06e592e3bb306d5126881dacee1eb3e5f5a2 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:23:57 -0800 Subject: [PATCH 782/873] disease_spread --- docs/kyu_6/kyu_6.disease_spread.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.disease_spread.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.disease_spread.module.rst create mode 100644 docs/kyu_6/kyu_6.disease_spread.readme.rst diff --git a/docs/kyu_6/kyu_6.disease_spread.module.rst b/docs/kyu_6/kyu_6.disease_spread.module.rst new file mode 100644 index 00000000000..08cac8e6e1a --- /dev/null +++ b/docs/kyu_6/kyu_6.disease_spread.module.rst @@ -0,0 +1,11 @@ +kyu\_6.disease\_spread.module package +===================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.disease_spread.readme + kyu_6.disease_spread \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.disease_spread.readme.rst b/docs/kyu_6/kyu_6.disease_spread.readme.rst new file mode 100644 index 00000000000..c3d4c28fcaf --- /dev/null +++ b/docs/kyu_6/kyu_6.disease_spread.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/disease_spread/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 10fee98979b..6507c972e3d 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -18,7 +18,7 @@ Subpackages kyu_6.count_letters_in_string.module kyu_6.decipher_this.module kyu_6.default_list.module - kyu_6.disease_spread + kyu_6.disease_spread.module kyu_6.duplicate_encoder kyu_6.easy_diagonal kyu_6.encrypt_this From d3c46a6153434e3e54997c40b923b035ff2b3ea5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:29:47 -0800 Subject: [PATCH 783/873] duplicate_encoder --- docs/kyu_6/kyu_6.duplicate_encoder.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.duplicate_encoder.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.duplicate_encoder.module.rst create mode 100644 docs/kyu_6/kyu_6.duplicate_encoder.readme.rst diff --git a/docs/kyu_6/kyu_6.duplicate_encoder.module.rst b/docs/kyu_6/kyu_6.duplicate_encoder.module.rst new file mode 100644 index 00000000000..6fe9ee2c900 --- /dev/null +++ b/docs/kyu_6/kyu_6.duplicate_encoder.module.rst @@ -0,0 +1,11 @@ +kyu\_6.duplicate\_encoder.module package +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.duplicate_encoder.readme + kyu_6.duplicate_encoder \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.duplicate_encoder.readme.rst b/docs/kyu_6/kyu_6.duplicate_encoder.readme.rst new file mode 100644 index 00000000000..5f68f0f1c8c --- /dev/null +++ b/docs/kyu_6/kyu_6.duplicate_encoder.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/duplicate_encoder/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 6507c972e3d..44515fa018e 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -19,7 +19,7 @@ Subpackages kyu_6.decipher_this.module kyu_6.default_list.module kyu_6.disease_spread.module - kyu_6.duplicate_encoder + kyu_6.duplicate_encoder.module kyu_6.easy_diagonal kyu_6.encrypt_this kyu_6.find_the_odd_int From 138d1c1fae9e0eaf09e4fb59952a812987de10b1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:33:05 -0800 Subject: [PATCH 784/873] easy_diagonal --- docs/kyu_6/kyu_6.easy_diagonal.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.easy_diagonal.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.easy_diagonal.module.rst create mode 100644 docs/kyu_6/kyu_6.easy_diagonal.readme.rst diff --git a/docs/kyu_6/kyu_6.easy_diagonal.module.rst b/docs/kyu_6/kyu_6.easy_diagonal.module.rst new file mode 100644 index 00000000000..f71209eac21 --- /dev/null +++ b/docs/kyu_6/kyu_6.easy_diagonal.module.rst @@ -0,0 +1,11 @@ +kyu\_6.easy\_diagonal.module package +==================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.easy_diagonal.readme + kyu_6.easy_diagonal \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.easy_diagonal.readme.rst b/docs/kyu_6/kyu_6.easy_diagonal.readme.rst new file mode 100644 index 00000000000..ce613dc3c39 --- /dev/null +++ b/docs/kyu_6/kyu_6.easy_diagonal.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/easy_diagonal/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 44515fa018e..bf417e1a91e 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -20,7 +20,7 @@ Subpackages kyu_6.default_list.module kyu_6.disease_spread.module kyu_6.duplicate_encoder.module - kyu_6.easy_diagonal + kyu_6.easy_diagonal.module kyu_6.encrypt_this kyu_6.find_the_odd_int kyu_6.first_character_that_repeats From 4ebb456abb2801f4f0c2b7b59392e5f45808e587 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:36:03 -0800 Subject: [PATCH 785/873] encrypt_this --- docs/kyu_6/kyu_6.encrypt_this.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.encrypt_this.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.encrypt_this.module.rst create mode 100644 docs/kyu_6/kyu_6.encrypt_this.readme.rst diff --git a/docs/kyu_6/kyu_6.encrypt_this.module.rst b/docs/kyu_6/kyu_6.encrypt_this.module.rst new file mode 100644 index 00000000000..e3289e8b114 --- /dev/null +++ b/docs/kyu_6/kyu_6.encrypt_this.module.rst @@ -0,0 +1,11 @@ +kyu\_6.encrypt\_this.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.encrypt_this.readme + kyu_6.encrypt_this \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.encrypt_this.readme.rst b/docs/kyu_6/kyu_6.encrypt_this.readme.rst new file mode 100644 index 00000000000..069dcce6823 --- /dev/null +++ b/docs/kyu_6/kyu_6.encrypt_this.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/encrypt_this/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index bf417e1a91e..f77ce93265c 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -21,7 +21,7 @@ Subpackages kyu_6.disease_spread.module kyu_6.duplicate_encoder.module kyu_6.easy_diagonal.module - kyu_6.encrypt_this + kyu_6.encrypt_this.module kyu_6.find_the_odd_int kyu_6.first_character_that_repeats kyu_6.format_string_of_names From 3c8d75fd0b4ea680070900e9e993feb3491700d0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:40:08 -0800 Subject: [PATCH 786/873] find_the_odd_int --- docs/kyu_6/kyu_6.find_the_odd_int.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.find_the_odd_int.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.find_the_odd_int.module.rst create mode 100644 docs/kyu_6/kyu_6.find_the_odd_int.readme.rst diff --git a/docs/kyu_6/kyu_6.find_the_odd_int.module.rst b/docs/kyu_6/kyu_6.find_the_odd_int.module.rst new file mode 100644 index 00000000000..708a87b804e --- /dev/null +++ b/docs/kyu_6/kyu_6.find_the_odd_int.module.rst @@ -0,0 +1,11 @@ +kyu\_6.find\_the\_odd\_int.module package +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.find_the_odd_int.readme + kyu_6.find_the_odd_int \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.find_the_odd_int.readme.rst b/docs/kyu_6/kyu_6.find_the_odd_int.readme.rst new file mode 100644 index 00000000000..feb5bc09011 --- /dev/null +++ b/docs/kyu_6/kyu_6.find_the_odd_int.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/find_the_odd_int/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index f77ce93265c..bcd7731346b 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -22,7 +22,7 @@ Subpackages kyu_6.duplicate_encoder.module kyu_6.easy_diagonal.module kyu_6.encrypt_this.module - kyu_6.find_the_odd_int + kyu_6.find_the_odd_int.module kyu_6.first_character_that_repeats kyu_6.format_string_of_names kyu_6.help_the_bookseller From 351bd2c63532f1a461aea566be51ae06d3b1df6d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:02:45 -0800 Subject: [PATCH 787/873] first_character_that_repeats --- .../kyu_6.first_character_that_repeats.module.rst | 11 +++++++++++ .../kyu_6.first_character_that_repeats.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.first_character_that_repeats.module.rst create mode 100644 docs/kyu_6/kyu_6.first_character_that_repeats.readme.rst diff --git a/docs/kyu_6/kyu_6.first_character_that_repeats.module.rst b/docs/kyu_6/kyu_6.first_character_that_repeats.module.rst new file mode 100644 index 00000000000..c35e4228c47 --- /dev/null +++ b/docs/kyu_6/kyu_6.first_character_that_repeats.module.rst @@ -0,0 +1,11 @@ +kyu\_6.first\_character\_that\_repeats.module package +===================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.first_character_that_repeats.readme + kyu_6.first_character_that_repeats \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.first_character_that_repeats.readme.rst b/docs/kyu_6/kyu_6.first_character_that_repeats.readme.rst new file mode 100644 index 00000000000..2aca9cec097 --- /dev/null +++ b/docs/kyu_6/kyu_6.first_character_that_repeats.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/first_character_that_repeats/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index bcd7731346b..85bc14c4a0b 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -23,7 +23,7 @@ Subpackages kyu_6.easy_diagonal.module kyu_6.encrypt_this.module kyu_6.find_the_odd_int.module - kyu_6.first_character_that_repeats + kyu_6.first_character_that_repeats.module kyu_6.format_string_of_names kyu_6.help_the_bookseller kyu_6.longest_repetition From 3f5a91c5fdef64b1f8c0eb979295c3f3e7bdde9c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:07:11 -0800 Subject: [PATCH 788/873] format_string_of_names --- docs/kyu_6/kyu_6.format_string_of_names.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.format_string_of_names.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.format_string_of_names.module.rst create mode 100644 docs/kyu_6/kyu_6.format_string_of_names.readme.rst diff --git a/docs/kyu_6/kyu_6.format_string_of_names.module.rst b/docs/kyu_6/kyu_6.format_string_of_names.module.rst new file mode 100644 index 00000000000..92c17ce78aa --- /dev/null +++ b/docs/kyu_6/kyu_6.format_string_of_names.module.rst @@ -0,0 +1,11 @@ +kyu\_6.format\_string\_of\_names.module package +=============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.format_string_of_names.readme + kyu_6.format_string_of_names \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.format_string_of_names.readme.rst b/docs/kyu_6/kyu_6.format_string_of_names.readme.rst new file mode 100644 index 00000000000..8423dbd2e71 --- /dev/null +++ b/docs/kyu_6/kyu_6.format_string_of_names.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/format_string_of_names/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 85bc14c4a0b..78347ec54df 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -24,7 +24,7 @@ Subpackages kyu_6.encrypt_this.module kyu_6.find_the_odd_int.module kyu_6.first_character_that_repeats.module - kyu_6.format_string_of_names + kyu_6.format_string_of_names.module kyu_6.help_the_bookseller kyu_6.longest_repetition kyu_6.multiples_of_3_or_5 From a432e522385225210e29db9f6d66b7de505e7252 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:09:33 -0800 Subject: [PATCH 789/873] help_the_bookseller --- docs/kyu_6/kyu_6.help_the_bookseller.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.help_the_bookseller.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.help_the_bookseller.module.rst create mode 100644 docs/kyu_6/kyu_6.help_the_bookseller.readme.rst diff --git a/docs/kyu_6/kyu_6.help_the_bookseller.module.rst b/docs/kyu_6/kyu_6.help_the_bookseller.module.rst new file mode 100644 index 00000000000..889f475ea8d --- /dev/null +++ b/docs/kyu_6/kyu_6.help_the_bookseller.module.rst @@ -0,0 +1,11 @@ +kyu\_6.help_the_bookseller.module package +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.help_the_bookseller.readme + kyu_6.help_the_bookseller \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.help_the_bookseller.readme.rst b/docs/kyu_6/kyu_6.help_the_bookseller.readme.rst new file mode 100644 index 00000000000..b16d0922abf --- /dev/null +++ b/docs/kyu_6/kyu_6.help_the_bookseller.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/help_the_bookseller/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 78347ec54df..1998cdc12d6 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -25,7 +25,7 @@ Subpackages kyu_6.find_the_odd_int.module kyu_6.first_character_that_repeats.module kyu_6.format_string_of_names.module - kyu_6.help_the_bookseller + kyu_6.help_the_bookseller.module kyu_6.longest_repetition kyu_6.multiples_of_3_or_5 kyu_6.no_arithmetic_progressions From 4c3a347791ea543bfbfd7bf6c01dec2c5036b5b4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:11:44 -0800 Subject: [PATCH 790/873] longest_repetition --- docs/kyu_6/kyu_6.longest_repetition.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.longest_repetition.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.longest_repetition.module.rst create mode 100644 docs/kyu_6/kyu_6.longest_repetition.readme.rst diff --git a/docs/kyu_6/kyu_6.longest_repetition.module.rst b/docs/kyu_6/kyu_6.longest_repetition.module.rst new file mode 100644 index 00000000000..a5b968158b1 --- /dev/null +++ b/docs/kyu_6/kyu_6.longest_repetition.module.rst @@ -0,0 +1,11 @@ +kyu\_6.longest\_repetition.module package +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.longest_repetition.readme + kyu_6.longest_repetition \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.longest_repetition.readme.rst b/docs/kyu_6/kyu_6.longest_repetition.readme.rst new file mode 100644 index 00000000000..2ad17e0f0c4 --- /dev/null +++ b/docs/kyu_6/kyu_6.longest_repetition.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/longest_repetition/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 1998cdc12d6..08f3214ddff 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -26,7 +26,7 @@ Subpackages kyu_6.first_character_that_repeats.module kyu_6.format_string_of_names.module kyu_6.help_the_bookseller.module - kyu_6.longest_repetition + kyu_6.longest_repetition.module kyu_6.multiples_of_3_or_5 kyu_6.no_arithmetic_progressions kyu_6.number_zoo_patrol From 56f6e8df0408e67ca299e9d75b888eb2e6c40991 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:12:10 -0800 Subject: [PATCH 791/873] Update kyu_6.help_the_bookseller.module.rst --- docs/kyu_6/kyu_6.help_the_bookseller.module.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/kyu_6/kyu_6.help_the_bookseller.module.rst b/docs/kyu_6/kyu_6.help_the_bookseller.module.rst index 889f475ea8d..1c2a7947e63 100644 --- a/docs/kyu_6/kyu_6.help_the_bookseller.module.rst +++ b/docs/kyu_6/kyu_6.help_the_bookseller.module.rst @@ -1,5 +1,5 @@ -kyu\_6.help_the_bookseller.module package -========================================= +kyu\_6.help\_the\_bookseller.module package +=========================================== Subpackages ----------- From 1276ee3b4ea05835031d808808161f090290f838 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:15:36 -0800 Subject: [PATCH 792/873] multiples_of_3_or_5 --- docs/kyu_6/kyu_6.multiples_of_3_or_5.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.multiples_of_3_or_5.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.multiples_of_3_or_5.module.rst create mode 100644 docs/kyu_6/kyu_6.multiples_of_3_or_5.readme.rst diff --git a/docs/kyu_6/kyu_6.multiples_of_3_or_5.module.rst b/docs/kyu_6/kyu_6.multiples_of_3_or_5.module.rst new file mode 100644 index 00000000000..b08a4ae1d7c --- /dev/null +++ b/docs/kyu_6/kyu_6.multiples_of_3_or_5.module.rst @@ -0,0 +1,11 @@ +kyu\_6.multiples\_of\_3\_or\_5.module package +============================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.multiples_of_3_or_5.readme + kyu_6.multiples_of_3_or_5 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.multiples_of_3_or_5.readme.rst b/docs/kyu_6/kyu_6.multiples_of_3_or_5.readme.rst new file mode 100644 index 00000000000..7e17db5cef2 --- /dev/null +++ b/docs/kyu_6/kyu_6.multiples_of_3_or_5.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/multiples_of_3_or_5/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 08f3214ddff..2373e75c43e 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -27,7 +27,7 @@ Subpackages kyu_6.format_string_of_names.module kyu_6.help_the_bookseller.module kyu_6.longest_repetition.module - kyu_6.multiples_of_3_or_5 + kyu_6.multiples_of_3_or_5.module kyu_6.no_arithmetic_progressions kyu_6.number_zoo_patrol kyu_6.numericals_of_string From 0ac1c133c2ce59b260d4fbbd72704d0bae7dae12 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:20:43 -0800 Subject: [PATCH 793/873] no_arithmetic_progressions --- .../kyu_6/kyu_6.no_arithmetic_progressions.module.rst | 11 +++++++++++ .../kyu_6/kyu_6.no_arithmetic_progressions.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.no_arithmetic_progressions.module.rst create mode 100644 docs/kyu_6/kyu_6.no_arithmetic_progressions.readme.rst diff --git a/docs/kyu_6/kyu_6.no_arithmetic_progressions.module.rst b/docs/kyu_6/kyu_6.no_arithmetic_progressions.module.rst new file mode 100644 index 00000000000..7e44583b604 --- /dev/null +++ b/docs/kyu_6/kyu_6.no_arithmetic_progressions.module.rst @@ -0,0 +1,11 @@ +kyu\_6.no\_arithmetic\_progressions.module package +================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.no_arithmetic_progressions.readme + kyu_6.no_arithmetic_progressions \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.no_arithmetic_progressions.readme.rst b/docs/kyu_6/kyu_6.no_arithmetic_progressions.readme.rst new file mode 100644 index 00000000000..3e6cd55f7b8 --- /dev/null +++ b/docs/kyu_6/kyu_6.no_arithmetic_progressions.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/no_arithmetic_progressions/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 2373e75c43e..d9410f45911 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -28,7 +28,7 @@ Subpackages kyu_6.help_the_bookseller.module kyu_6.longest_repetition.module kyu_6.multiples_of_3_or_5.module - kyu_6.no_arithmetic_progressions + kyu_6.no_arithmetic_progressions.module kyu_6.number_zoo_patrol kyu_6.numericals_of_string kyu_6.permute_a_palindrome From 190788a71f57bd9e21e737d0ac2bb73e0ca61384 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:23:05 -0800 Subject: [PATCH 794/873] number_zoo_patrol --- docs/kyu_6/kyu_6.number_zoo_patrol.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.number_zoo_patrol.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.number_zoo_patrol.module.rst create mode 100644 docs/kyu_6/kyu_6.number_zoo_patrol.readme.rst diff --git a/docs/kyu_6/kyu_6.number_zoo_patrol.module.rst b/docs/kyu_6/kyu_6.number_zoo_patrol.module.rst new file mode 100644 index 00000000000..75daa412ce2 --- /dev/null +++ b/docs/kyu_6/kyu_6.number_zoo_patrol.module.rst @@ -0,0 +1,11 @@ +kyu\_6.number\_zoo\_patrol.module package +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.number_zoo_patrol.readme + kyu_6.number_zoo_patrol \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.number_zoo_patrol.readme.rst b/docs/kyu_6/kyu_6.number_zoo_patrol.readme.rst new file mode 100644 index 00000000000..aaf9791ae6b --- /dev/null +++ b/docs/kyu_6/kyu_6.number_zoo_patrol.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/number_zoo_patrol/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index d9410f45911..34f1ec0ec04 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -29,7 +29,7 @@ Subpackages kyu_6.longest_repetition.module kyu_6.multiples_of_3_or_5.module kyu_6.no_arithmetic_progressions.module - kyu_6.number_zoo_patrol + kyu_6.number_zoo_patrol.module kyu_6.numericals_of_string kyu_6.permute_a_palindrome kyu_6.pokemon_damage_calculator From 41ae1007db26b382c072f9d34ae62e247c26d216 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:27:04 -0800 Subject: [PATCH 795/873] numericals_of_string --- docs/kyu_6/kyu_6.numericals_of_string.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.numericals_of_string.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.numericals_of_string.module.rst create mode 100644 docs/kyu_6/kyu_6.numericals_of_string.readme.rst diff --git a/docs/kyu_6/kyu_6.numericals_of_string.module.rst b/docs/kyu_6/kyu_6.numericals_of_string.module.rst new file mode 100644 index 00000000000..146c8bde49b --- /dev/null +++ b/docs/kyu_6/kyu_6.numericals_of_string.module.rst @@ -0,0 +1,11 @@ +kyu\_6.numericals\_of\_string.module package +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.numericals_of_string.readme + kyu_6.numericals_of_string \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.numericals_of_string.readme.rst b/docs/kyu_6/kyu_6.numericals_of_string.readme.rst new file mode 100644 index 00000000000..e1c9f74bfcb --- /dev/null +++ b/docs/kyu_6/kyu_6.numericals_of_string.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/numericals_of_string/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 34f1ec0ec04..9de9721d6ce 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -30,7 +30,7 @@ Subpackages kyu_6.multiples_of_3_or_5.module kyu_6.no_arithmetic_progressions.module kyu_6.number_zoo_patrol.module - kyu_6.numericals_of_string + kyu_6.numericals_of_string.module kyu_6.permute_a_palindrome kyu_6.pokemon_damage_calculator kyu_6.potion_class_101 From 9eeca57b7a86428fb59c6ee9ec6ac26f08d7e8af Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:36:28 -0800 Subject: [PATCH 796/873] permute_a_palindrome --- docs/kyu_6/kyu_6.permute_a_palindrome.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.permute_a_palindrome.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.permute_a_palindrome.module.rst create mode 100644 docs/kyu_6/kyu_6.permute_a_palindrome.readme.rst diff --git a/docs/kyu_6/kyu_6.permute_a_palindrome.module.rst b/docs/kyu_6/kyu_6.permute_a_palindrome.module.rst new file mode 100644 index 00000000000..221d6b78b22 --- /dev/null +++ b/docs/kyu_6/kyu_6.permute_a_palindrome.module.rst @@ -0,0 +1,11 @@ +kyu\_6.permute\_a\_palindrome.module package +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.permute_a_palindrome.readme + kyu_6.permute_a_palindrome \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.permute_a_palindrome.readme.rst b/docs/kyu_6/kyu_6.permute_a_palindrome.readme.rst new file mode 100644 index 00000000000..f59cf91743a --- /dev/null +++ b/docs/kyu_6/kyu_6.permute_a_palindrome.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/permute_a_palindrome/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 9de9721d6ce..281157a81a2 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -31,7 +31,7 @@ Subpackages kyu_6.no_arithmetic_progressions.module kyu_6.number_zoo_patrol.module kyu_6.numericals_of_string.module - kyu_6.permute_a_palindrome + kyu_6.permute_a_palindrome.module kyu_6.pokemon_damage_calculator kyu_6.potion_class_101 kyu_6.pyramid_array From 8ae9dbc611e5f11e67f58081d06f6ea4286a22c3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:39:17 -0800 Subject: [PATCH 797/873] pokemon_damage_calculator --- docs/kyu_6/kyu_6.pokemon_damage_calculator.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.pokemon_damage_calculator.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.pokemon_damage_calculator.module.rst create mode 100644 docs/kyu_6/kyu_6.pokemon_damage_calculator.readme.rst diff --git a/docs/kyu_6/kyu_6.pokemon_damage_calculator.module.rst b/docs/kyu_6/kyu_6.pokemon_damage_calculator.module.rst new file mode 100644 index 00000000000..8d91bbd3b32 --- /dev/null +++ b/docs/kyu_6/kyu_6.pokemon_damage_calculator.module.rst @@ -0,0 +1,11 @@ +kyu\_6.pokemon\_damage\_calculator.module package +================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.pokemon_damage_calculator.readme + kyu_6.pokemon_damage_calculator \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.pokemon_damage_calculator.readme.rst b/docs/kyu_6/kyu_6.pokemon_damage_calculator.readme.rst new file mode 100644 index 00000000000..d793fd117bd --- /dev/null +++ b/docs/kyu_6/kyu_6.pokemon_damage_calculator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/pokemon_damage_calculator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 281157a81a2..ffe5516eae3 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -32,7 +32,7 @@ Subpackages kyu_6.number_zoo_patrol.module kyu_6.numericals_of_string.module kyu_6.permute_a_palindrome.module - kyu_6.pokemon_damage_calculator + kyu_6.pokemon_damage_calculator.module kyu_6.potion_class_101 kyu_6.pyramid_array kyu_6.rotate_the_letters_of_each_element From 42866359c3d05075106f56cd3b5e633042e6511a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:43:19 -0800 Subject: [PATCH 798/873] potion_class_101 --- docs/kyu_6/kyu_6.potion_class_101.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.potion_class_101.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.potion_class_101.module.rst create mode 100644 docs/kyu_6/kyu_6.potion_class_101.readme.rst diff --git a/docs/kyu_6/kyu_6.potion_class_101.module.rst b/docs/kyu_6/kyu_6.potion_class_101.module.rst new file mode 100644 index 00000000000..10e7bdaaa4c --- /dev/null +++ b/docs/kyu_6/kyu_6.potion_class_101.module.rst @@ -0,0 +1,11 @@ +kyu\_6.potion\_class\_101.module package +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.potion_class_101.readme + kyu_6.potion_class_101 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.potion_class_101.readme.rst b/docs/kyu_6/kyu_6.potion_class_101.readme.rst new file mode 100644 index 00000000000..a98df47e4e9 --- /dev/null +++ b/docs/kyu_6/kyu_6.potion_class_101.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/potion_class_101/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index ffe5516eae3..3d295feef03 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -33,7 +33,7 @@ Subpackages kyu_6.numericals_of_string.module kyu_6.permute_a_palindrome.module kyu_6.pokemon_damage_calculator.module - kyu_6.potion_class_101 + kyu_6.potion_class_101.module kyu_6.pyramid_array kyu_6.rotate_the_letters_of_each_element kyu_6.row_of_the_odd_triangle From bcef888f8b16a33e735d4c32527a3c09f81ee3d4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:58:09 -0800 Subject: [PATCH 799/873] pyramid_array --- docs/kyu_6/kyu_6.pyramid_array.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.pyramid_array.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.pyramid_array.module.rst create mode 100644 docs/kyu_6/kyu_6.pyramid_array.readme.rst diff --git a/docs/kyu_6/kyu_6.pyramid_array.module.rst b/docs/kyu_6/kyu_6.pyramid_array.module.rst new file mode 100644 index 00000000000..98bb097eb88 --- /dev/null +++ b/docs/kyu_6/kyu_6.pyramid_array.module.rst @@ -0,0 +1,11 @@ +kyu\_6.pyramid\_array.module package +==================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.pyramid_array.readme + kyu_6.pyramid_array \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.pyramid_array.readme.rst b/docs/kyu_6/kyu_6.pyramid_array.readme.rst new file mode 100644 index 00000000000..622c71f50f1 --- /dev/null +++ b/docs/kyu_6/kyu_6.pyramid_array.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/pyramid_array/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 3d295feef03..c15096894db 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -34,7 +34,7 @@ Subpackages kyu_6.permute_a_palindrome.module kyu_6.pokemon_damage_calculator.module kyu_6.potion_class_101.module - kyu_6.pyramid_array + kyu_6.pyramid_array.module kyu_6.rotate_the_letters_of_each_element kyu_6.row_of_the_odd_triangle kyu_6.scheduling.module From bca693e057c065d710c3248cc3db8a5e551a71f0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:08:49 -0800 Subject: [PATCH 800/873] rotate_the_letters_of_each_element --- ...yu_6.rotate_the_letters_of_each_element.module.rst | 11 +++++++++++ ...yu_6.rotate_the_letters_of_each_element.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.module.rst create mode 100644 docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.readme.rst diff --git a/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.module.rst b/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.module.rst new file mode 100644 index 00000000000..c1b0bc25acc --- /dev/null +++ b/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.module.rst @@ -0,0 +1,11 @@ +kyu\_6.rotate\_the\_letters\_of\_each\_element.module package +============================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.rotate_the_letters_of_each_element.readme + kyu_6.rotate_the_letters_of_each_element \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.readme.rst b/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.readme.rst new file mode 100644 index 00000000000..f78bd68b835 --- /dev/null +++ b/docs/kyu_6/kyu_6.rotate_the_letters_of_each_element.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/rotate_the_letters_of_each_element/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index c15096894db..ce4425c92df 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -35,7 +35,7 @@ Subpackages kyu_6.pokemon_damage_calculator.module kyu_6.potion_class_101.module kyu_6.pyramid_array.module - kyu_6.rotate_the_letters_of_each_element + kyu_6.rotate_the_letters_of_each_element.module kyu_6.row_of_the_odd_triangle kyu_6.scheduling.module kyu_6.sort_the_odd From 741aee1a6ec95ec8c53e7e707cfaf0a3968fc545 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:14:07 -0800 Subject: [PATCH 801/873] row_of_the_odd_triangle --- docs/kyu_6/kyu_6.row_of_the_odd_triangle.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.row_of_the_odd_triangle.readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.row_of_the_odd_triangle.module.rst create mode 100644 docs/kyu_6/kyu_6.row_of_the_odd_triangle.readme.rst diff --git a/docs/kyu_6/kyu_6.row_of_the_odd_triangle.module.rst b/docs/kyu_6/kyu_6.row_of_the_odd_triangle.module.rst new file mode 100644 index 00000000000..c172fc82e71 --- /dev/null +++ b/docs/kyu_6/kyu_6.row_of_the_odd_triangle.module.rst @@ -0,0 +1,11 @@ +kyu\_6.row\_of\_the\_odd\_triangle.module package +================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.row_of_the_odd_triangle.readme + kyu_6.row_of_the_odd_triangle \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.row_of_the_odd_triangle.readme.rst b/docs/kyu_6/kyu_6.row_of_the_odd_triangle.readme.rst new file mode 100644 index 00000000000..139e4d92533 --- /dev/null +++ b/docs/kyu_6/kyu_6.row_of_the_odd_triangle.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/row_of_the_odd_triangle/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index ce4425c92df..e55a14013b1 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -36,7 +36,7 @@ Subpackages kyu_6.potion_class_101.module kyu_6.pyramid_array.module kyu_6.rotate_the_letters_of_each_element.module - kyu_6.row_of_the_odd_triangle + kyu_6.row_of_the_odd_triangle.module kyu_6.scheduling.module kyu_6.sort_the_odd kyu_6.string_subpattern_recognition_1 From ae7c453a0ce052a6e2cc333b8f401106855b4d46 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:18:00 -0800 Subject: [PATCH 802/873] sort_the_odd --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.sort_the_odd.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.sort_the_odd.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.sort_the_odd.module.rst create mode 100644 docs/kyu_6/kyu_6.sort_the_odd.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index e55a14013b1..053f1e3bb68 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -38,7 +38,7 @@ Subpackages kyu_6.rotate_the_letters_of_each_element.module kyu_6.row_of_the_odd_triangle.module kyu_6.scheduling.module - kyu_6.sort_the_odd + kyu_6.sort_the_odd.module kyu_6.string_subpattern_recognition_1 kyu_6.string_subpattern_recognition_2 kyu_6.string_subpattern_recognition_3 diff --git a/docs/kyu_6/kyu_6.sort_the_odd.module.rst b/docs/kyu_6/kyu_6.sort_the_odd.module.rst new file mode 100644 index 00000000000..25aa2ab96bd --- /dev/null +++ b/docs/kyu_6/kyu_6.sort_the_odd.module.rst @@ -0,0 +1,11 @@ +kyu\_6.sort_the_odd.module module +================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.sort_the_odd.readme + kyu_6.sort_the_odd \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.sort_the_odd.readme.rst b/docs/kyu_6/kyu_6.sort_the_odd.readme.rst new file mode 100644 index 00000000000..fdb0af35fa1 --- /dev/null +++ b/docs/kyu_6/kyu_6.sort_the_odd.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/sort_the_odd/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 247434ad3debe689cd7161bbadc8c2f6f6453aa8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:22:31 -0800 Subject: [PATCH 803/873] string_subpattern_recognition_1 --- docs/kyu_6/kyu_6.rst | 2 +- .../kyu_6.string_subpattern_recognition_1.module.rst | 11 +++++++++++ .../kyu_6.string_subpattern_recognition_1.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_1.module.rst create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_1.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 053f1e3bb68..dba6d1c9180 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -39,7 +39,7 @@ Subpackages kyu_6.row_of_the_odd_triangle.module kyu_6.scheduling.module kyu_6.sort_the_odd.module - kyu_6.string_subpattern_recognition_1 + kyu_6.string_subpattern_recognition_1.module kyu_6.string_subpattern_recognition_2 kyu_6.string_subpattern_recognition_3 kyu_6.string_transformer diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_1.module.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_1.module.rst new file mode 100644 index 00000000000..8ae62de2f63 --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_1.module.rst @@ -0,0 +1,11 @@ +kyu\_6.string\_subpattern\_recognition\_1.module module +======================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.string_subpattern_recognition_1.readme + kyu_6.string_subpattern_recognition_1 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_1.readme.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_1.readme.rst new file mode 100644 index 00000000000..5de492f34e7 --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_1.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/string_subpattern_recognition_1/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From a715e4e1a6021d35d6d3f8de9afe1e001496a7de Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:26:23 -0800 Subject: [PATCH 804/873] string_subpattern_recognition_2 --- docs/kyu_6/kyu_6.rst | 2 +- .../kyu_6.string_subpattern_recognition_2.module.rst | 11 +++++++++++ .../kyu_6.string_subpattern_recognition_2.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_2.module.rst create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_2.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index dba6d1c9180..da42dd66433 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -40,7 +40,7 @@ Subpackages kyu_6.scheduling.module kyu_6.sort_the_odd.module kyu_6.string_subpattern_recognition_1.module - kyu_6.string_subpattern_recognition_2 + kyu_6.string_subpattern_recognition_2.module kyu_6.string_subpattern_recognition_3 kyu_6.string_transformer kyu_6.sum_of_digits_digital_root diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_2.module.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_2.module.rst new file mode 100644 index 00000000000..3dddb187ff1 --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_2.module.rst @@ -0,0 +1,11 @@ +kyu\_6.string\_subpattern\_recognition\_2.module module +======================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.string_subpattern_recognition_2.readme + kyu_6.string_subpattern_recognition_2 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_2.readme.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_2.readme.rst new file mode 100644 index 00000000000..d5124566c73 --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_2.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/string_subpattern_recognition_2/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 817f3b6bf07210eeb845409b8b53d88d4136eeed Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:38:23 -0800 Subject: [PATCH 805/873] Update kyu_6.sort_the_odd.module.rst --- docs/kyu_6/kyu_6.sort_the_odd.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.sort_the_odd.module.rst b/docs/kyu_6/kyu_6.sort_the_odd.module.rst index 25aa2ab96bd..0a022a62b12 100644 --- a/docs/kyu_6/kyu_6.sort_the_odd.module.rst +++ b/docs/kyu_6/kyu_6.sort_the_odd.module.rst @@ -1,4 +1,4 @@ -kyu\_6.sort_the_odd.module module +kyu\_6.sort\_the\_odd.module module ================================= Subpackages From c093d1491620629f7b59c5d0b4b3771e76960b53 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:41:43 -0800 Subject: [PATCH 806/873] Update kyu_6.sort_the_odd.module.rst --- docs/kyu_6/kyu_6.sort_the_odd.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.sort_the_odd.module.rst b/docs/kyu_6/kyu_6.sort_the_odd.module.rst index 0a022a62b12..821bb560eab 100644 --- a/docs/kyu_6/kyu_6.sort_the_odd.module.rst +++ b/docs/kyu_6/kyu_6.sort_the_odd.module.rst @@ -1,5 +1,5 @@ kyu\_6.sort\_the\_odd.module module -================================= +=================================== Subpackages ----------- From 0d102466f8492aea0ea211688373b758019a9db1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:41:52 -0800 Subject: [PATCH 807/873] string_subpattern_recognition_3 --- docs/kyu_6/kyu_6.rst | 2 +- .../kyu_6.string_subpattern_recognition_3.module.rst | 11 +++++++++++ .../kyu_6.string_subpattern_recognition_3.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_3.module.rst create mode 100644 docs/kyu_6/kyu_6.string_subpattern_recognition_3.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index da42dd66433..99bed9e8738 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -41,7 +41,7 @@ Subpackages kyu_6.sort_the_odd.module kyu_6.string_subpattern_recognition_1.module kyu_6.string_subpattern_recognition_2.module - kyu_6.string_subpattern_recognition_3 + kyu_6.string_subpattern_recognition_3.module kyu_6.string_transformer kyu_6.sum_of_digits_digital_root kyu_6.sums_of_parts diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_3.module.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_3.module.rst new file mode 100644 index 00000000000..4a78c0b2f44 --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_3.module.rst @@ -0,0 +1,11 @@ +kyu\_6.string\_subpattern\_recognition\_3.module module +======================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.string_subpattern_recognition_3.readme + kyu_6.string_subpattern_recognition_3 \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.string_subpattern_recognition_3.readme.rst b/docs/kyu_6/kyu_6.string_subpattern_recognition_3.readme.rst new file mode 100644 index 00000000000..f27ce5521af --- /dev/null +++ b/docs/kyu_6/kyu_6.string_subpattern_recognition_3.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/string_subpattern_recognition_3/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 7123991dd1b68ffd120dab8d8c7a96629f20cedb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 09:56:26 -0800 Subject: [PATCH 808/873] string_transformer --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.string_transformer.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.string_transformer.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.string_transformer.module.rst create mode 100644 docs/kyu_6/kyu_6.string_transformer.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 99bed9e8738..339b131cd79 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -42,7 +42,7 @@ Subpackages kyu_6.string_subpattern_recognition_1.module kyu_6.string_subpattern_recognition_2.module kyu_6.string_subpattern_recognition_3.module - kyu_6.string_transformer + kyu_6.string_transformer.module kyu_6.sum_of_digits_digital_root kyu_6.sums_of_parts kyu_6.unique_in_order diff --git a/docs/kyu_6/kyu_6.string_transformer.module.rst b/docs/kyu_6/kyu_6.string_transformer.module.rst new file mode 100644 index 00000000000..328be54d72a --- /dev/null +++ b/docs/kyu_6/kyu_6.string_transformer.module.rst @@ -0,0 +1,11 @@ +kyu\_6.string\_transformer.module module +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.string_transformer.readme + kyu_6.string_transformer \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.string_transformer.readme.rst b/docs/kyu_6/kyu_6.string_transformer.readme.rst new file mode 100644 index 00000000000..f6f7f1a42be --- /dev/null +++ b/docs/kyu_6/kyu_6.string_transformer.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/string_transformer/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From c538f1a8852ee50fd6925358a3861a7e96baab05 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:00:02 -0800 Subject: [PATCH 809/873] sum_of_digits_digital_root --- docs/kyu_6/kyu_6.rst | 2 +- .../kyu_6/kyu_6.sum_of_digits_digital_root.module.rst | 11 +++++++++++ .../kyu_6/kyu_6.sum_of_digits_digital_root.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst create mode 100644 docs/kyu_6/kyu_6.sum_of_digits_digital_root.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 339b131cd79..17bb278814c 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -43,7 +43,7 @@ Subpackages kyu_6.string_subpattern_recognition_2.module kyu_6.string_subpattern_recognition_3.module kyu_6.string_transformer.module - kyu_6.sum_of_digits_digital_root + kyu_6.sum_of_digits_digital_root.module kyu_6.sums_of_parts kyu_6.unique_in_order kyu_6.valid_braces diff --git a/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst new file mode 100644 index 00000000000..bd52b82fbf3 --- /dev/null +++ b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst @@ -0,0 +1,11 @@ +kyu\_6.sum\_of\_digits\_digital\_root.module module +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.sum_of_digits_digital_root.readme + kyu_6.sum_of_digits_digital_root \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.sum_of_digits_digital_root.readme.rst b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.readme.rst new file mode 100644 index 00000000000..f6f7f1a42be --- /dev/null +++ b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/string_transformer/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From d1520aeb2accba826199ac6ac610ee3dc9952d1b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:03:06 -0800 Subject: [PATCH 810/873] sums_of_parts --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.sums_of_parts.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.sums_of_parts.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.sums_of_parts.module.rst create mode 100644 docs/kyu_6/kyu_6.sums_of_parts.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 17bb278814c..7acb3acadc7 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -44,7 +44,7 @@ Subpackages kyu_6.string_subpattern_recognition_3.module kyu_6.string_transformer.module kyu_6.sum_of_digits_digital_root.module - kyu_6.sums_of_parts + kyu_6.sums_of_parts.module kyu_6.unique_in_order kyu_6.valid_braces kyu_6.vasya_clerk diff --git a/docs/kyu_6/kyu_6.sums_of_parts.module.rst b/docs/kyu_6/kyu_6.sums_of_parts.module.rst new file mode 100644 index 00000000000..733f87b042f --- /dev/null +++ b/docs/kyu_6/kyu_6.sums_of_parts.module.rst @@ -0,0 +1,11 @@ +kyu\_6.sums\_of\_parts.module module +==================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.sums_of_parts.readme + kyu_6.sums_of_parts \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.sums_of_parts.readme.rst b/docs/kyu_6/kyu_6.sums_of_parts.readme.rst new file mode 100644 index 00000000000..49f3b35ffe7 --- /dev/null +++ b/docs/kyu_6/kyu_6.sums_of_parts.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/sums_of_parts/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 534a2ea8b34c45abe1c7f685781f8661c7e9bffc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:06:53 -0800 Subject: [PATCH 811/873] Update kyu_6.sum_of_digits_digital_root.module.rst --- docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst index bd52b82fbf3..6253dbac6f2 100644 --- a/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst +++ b/docs/kyu_6/kyu_6.sum_of_digits_digital_root.module.rst @@ -1,5 +1,5 @@ kyu\_6.sum\_of\_digits\_digital\_root.module module -======================================== +=================================================== Subpackages ----------- From c49bd81a8019a76061fa6f410b66c59e15eb9e27 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:13:54 -0800 Subject: [PATCH 812/873] unique_in_order --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.unique_in_order.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.unique_in_order.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.unique_in_order.module.rst create mode 100644 docs/kyu_6/kyu_6.unique_in_order.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 7acb3acadc7..369b0049eda 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -45,7 +45,7 @@ Subpackages kyu_6.string_transformer.module kyu_6.sum_of_digits_digital_root.module kyu_6.sums_of_parts.module - kyu_6.unique_in_order + kyu_6.unique_in_order.module kyu_6.valid_braces kyu_6.vasya_clerk kyu_6.who_likes_it diff --git a/docs/kyu_6/kyu_6.unique_in_order.module.rst b/docs/kyu_6/kyu_6.unique_in_order.module.rst new file mode 100644 index 00000000000..1ab4b59b328 --- /dev/null +++ b/docs/kyu_6/kyu_6.unique_in_order.module.rst @@ -0,0 +1,11 @@ +kyu\_6.unique\_in\_order.module module +====================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.unique_in_order.readme + kyu_6.unique_in_order \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.unique_in_order.readme.rst b/docs/kyu_6/kyu_6.unique_in_order.readme.rst new file mode 100644 index 00000000000..0afd3952fe8 --- /dev/null +++ b/docs/kyu_6/kyu_6.unique_in_order.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/unique_in_order/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From ce2d161370b0f6546945f985434ec25f780ea69f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:17:44 -0800 Subject: [PATCH 813/873] valid_braces --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.valid_braces.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.valid_braces.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.valid_braces.module.rst create mode 100644 docs/kyu_6/kyu_6.valid_braces.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 369b0049eda..28126c227c9 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -46,7 +46,7 @@ Subpackages kyu_6.sum_of_digits_digital_root.module kyu_6.sums_of_parts.module kyu_6.unique_in_order.module - kyu_6.valid_braces + kyu_6.valid_braces.module kyu_6.vasya_clerk kyu_6.who_likes_it kyu_6.your_order_please diff --git a/docs/kyu_6/kyu_6.valid_braces.module.rst b/docs/kyu_6/kyu_6.valid_braces.module.rst new file mode 100644 index 00000000000..374f8dbb987 --- /dev/null +++ b/docs/kyu_6/kyu_6.valid_braces.module.rst @@ -0,0 +1,11 @@ +kyu\_6.valid\_braces.module module +================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.valid_braces.readme + kyu_6.valid_braces \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.valid_braces.readme.rst b/docs/kyu_6/kyu_6.valid_braces.readme.rst new file mode 100644 index 00000000000..f8e98f5ebf1 --- /dev/null +++ b/docs/kyu_6/kyu_6.valid_braces.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/valid_braces/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 550f29ec084ada76f9dc5fdb83bc9b5b24ea3819 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:24:41 -0800 Subject: [PATCH 814/873] vasya_clerk --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.vasya_clerk.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.vasya_clerk.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.vasya_clerk.module.rst create mode 100644 docs/kyu_6/kyu_6.vasya_clerk.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 28126c227c9..0d836f0e228 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -47,7 +47,7 @@ Subpackages kyu_6.sums_of_parts.module kyu_6.unique_in_order.module kyu_6.valid_braces.module - kyu_6.vasya_clerk + kyu_6.vasya_clerk.module kyu_6.who_likes_it kyu_6.your_order_please diff --git a/docs/kyu_6/kyu_6.vasya_clerk.module.rst b/docs/kyu_6/kyu_6.vasya_clerk.module.rst new file mode 100644 index 00000000000..3f12b5a1180 --- /dev/null +++ b/docs/kyu_6/kyu_6.vasya_clerk.module.rst @@ -0,0 +1,11 @@ +kyu\_6.vasya\_clerk.module module +================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.vasya_clerk.readme + kyu_6.vasya_clerk \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.vasya_clerk.readme.rst b/docs/kyu_6/kyu_6.vasya_clerk.readme.rst new file mode 100644 index 00000000000..5c27a66fbaa --- /dev/null +++ b/docs/kyu_6/kyu_6.vasya_clerk.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/vasya_clerk/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 51644d67b0ee42075b197a7320156ad34791a184 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:28:04 -0800 Subject: [PATCH 815/873] who_likes_it --- docs/kyu_6/kyu_6.rst | 2 +- docs/kyu_6/kyu_6.who_likes_it.module.rst | 11 +++++++++++ docs/kyu_6/kyu_6.who_likes_it.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6.who_likes_it.module.rst create mode 100644 docs/kyu_6/kyu_6.who_likes_it.readme.rst diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index 0d836f0e228..e52e47e565a 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -48,7 +48,7 @@ Subpackages kyu_6.unique_in_order.module kyu_6.valid_braces.module kyu_6.vasya_clerk.module - kyu_6.who_likes_it + kyu_6.who_likes_it.module kyu_6.your_order_please Module contents diff --git a/docs/kyu_6/kyu_6.who_likes_it.module.rst b/docs/kyu_6/kyu_6.who_likes_it.module.rst new file mode 100644 index 00000000000..59afb6f6572 --- /dev/null +++ b/docs/kyu_6/kyu_6.who_likes_it.module.rst @@ -0,0 +1,11 @@ +kyu\_6.who\_likes\_it.module module +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.who_likes_it.readme + kyu_6.who_likes_it \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.who_likes_it.readme.rst b/docs/kyu_6/kyu_6.who_likes_it.readme.rst new file mode 100644 index 00000000000..d358c263eea --- /dev/null +++ b/docs/kyu_6/kyu_6.who_likes_it.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/who_likes_it/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 46bebf276da2e7399642f566684c5943b743af05 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:30:23 -0800 Subject: [PATCH 816/873] your_order_please --- docs/kyu_6/kyu_6..module.rst | 11 +++++++++++ docs/kyu_6/kyu_6..readme.rst | 5 +++++ docs/kyu_6/kyu_6.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_6/kyu_6..module.rst create mode 100644 docs/kyu_6/kyu_6..readme.rst diff --git a/docs/kyu_6/kyu_6..module.rst b/docs/kyu_6/kyu_6..module.rst new file mode 100644 index 00000000000..3490d832960 --- /dev/null +++ b/docs/kyu_6/kyu_6..module.rst @@ -0,0 +1,11 @@ +kyu\_6.your\_order\_please.module module +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.your_order_please.readme + kyu_6.your_order_please \ No newline at end of file diff --git a/docs/kyu_6/kyu_6..readme.rst b/docs/kyu_6/kyu_6..readme.rst new file mode 100644 index 00000000000..221c507882d --- /dev/null +++ b/docs/kyu_6/kyu_6..readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_6/your_order_please/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6/kyu_6.rst b/docs/kyu_6/kyu_6.rst index e52e47e565a..2aba7122898 100644 --- a/docs/kyu_6/kyu_6.rst +++ b/docs/kyu_6/kyu_6.rst @@ -49,7 +49,7 @@ Subpackages kyu_6.valid_braces.module kyu_6.vasya_clerk.module kyu_6.who_likes_it.module - kyu_6.your_order_please + kyu_6.your_order_please.module Module contents --------------- From 829ba43cb796d652c7ac9c8d55ff4ec1da67571b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:37:01 -0800 Subject: [PATCH 817/873] your_order_please --- .../{kyu_6..module.rst => kyu_6.your_order_please.module.rst} | 0 .../{kyu_6..readme.rst => kyu_6.your_order_please.readme.rst} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename docs/kyu_6/{kyu_6..module.rst => kyu_6.your_order_please.module.rst} (100%) rename docs/kyu_6/{kyu_6..readme.rst => kyu_6.your_order_please.readme.rst} (100%) diff --git a/docs/kyu_6/kyu_6..module.rst b/docs/kyu_6/kyu_6.your_order_please.module.rst similarity index 100% rename from docs/kyu_6/kyu_6..module.rst rename to docs/kyu_6/kyu_6.your_order_please.module.rst diff --git a/docs/kyu_6/kyu_6..readme.rst b/docs/kyu_6/kyu_6.your_order_please.readme.rst similarity index 100% rename from docs/kyu_6/kyu_6..readme.rst rename to docs/kyu_6/kyu_6.your_order_please.readme.rst From 2c87f633a18b91b745e43df6def38a825f87aaff Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:49:02 -0800 Subject: [PATCH 818/873] multidimensional_neighbourhood --- .../kyu_5.multidimensional_neighbourhood.module.rst | 11 +++++++++++ .../kyu_5.multidimensional_neighbourhood.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.multidimensional_neighbourhood.module.rst create mode 100644 docs/kyu_5/kyu_5.multidimensional_neighbourhood.readme.rst diff --git a/docs/kyu_5/kyu_5.multidimensional_neighbourhood.module.rst b/docs/kyu_5/kyu_5.multidimensional_neighbourhood.module.rst new file mode 100644 index 00000000000..ffedd76a67f --- /dev/null +++ b/docs/kyu_5/kyu_5.multidimensional_neighbourhood.module.rst @@ -0,0 +1,11 @@ +kyu\_5.multidimensional\_neighbourhood.module module +==================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.multidimensional_neighbourhood.readme + kyu_5.multidimensional_neighbourhood \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.multidimensional_neighbourhood.readme.rst b/docs/kyu_5/kyu_5.multidimensional_neighbourhood.readme.rst new file mode 100644 index 00000000000..c853e89bdb5 --- /dev/null +++ b/docs/kyu_5/kyu_5.multidimensional_neighbourhood.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/multidimensional_neighbourhood/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 index 7c8e83b7c78..a45b94aba09 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -24,7 +24,7 @@ Subpackages 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.multidimensional_neighbourhood.module kyu_5.not_very_secure kyu_5.number_of_trailing_zeros_of_n kyu_5.simple_pig_latin From c5cf158e04b3c0dcea84b7153b39d903f620a659 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:53:40 -0800 Subject: [PATCH 819/873] not_very_secure --- docs/kyu_5/kyu_5.not_very_secure.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.not_very_secure.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.not_very_secure.module.rst create mode 100644 docs/kyu_5/kyu_5.not_very_secure.readme.rst diff --git a/docs/kyu_5/kyu_5.not_very_secure.module.rst b/docs/kyu_5/kyu_5.not_very_secure.module.rst new file mode 100644 index 00000000000..35df11e1ae9 --- /dev/null +++ b/docs/kyu_5/kyu_5.not_very_secure.module.rst @@ -0,0 +1,11 @@ +kyu\_5.not\_very\_secure.module module +====================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.not_very_secure.readme + kyu_5.not_very_secure \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.not_very_secure.readme.rst b/docs/kyu_5/kyu_5.not_very_secure.readme.rst new file mode 100644 index 00000000000..264ce7396e3 --- /dev/null +++ b/docs/kyu_5/kyu_5.not_very_secure.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/not_very_secure/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 index a45b94aba09..3863d1e79d6 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -25,7 +25,7 @@ Subpackages kyu_5.master_your_primes_sieve_with_memoization.module kyu_5.moving_zeros_to_the_end.module kyu_5.multidimensional_neighbourhood.module - kyu_5.not_very_secure + kyu_5.not_very_secure.module kyu_5.number_of_trailing_zeros_of_n kyu_5.simple_pig_latin kyu_5.sports_league_table_ranking From 72389ae1a6b79b3b5089d00e84b9ac0105752076 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 10:59:30 -0800 Subject: [PATCH 820/873] number_of_trailing_zeros_of_n --- .../kyu_5.number_of_trailing_zeros_of_n.module.rst | 11 +++++++++++ .../kyu_5.number_of_trailing_zeros_of_n.readme.rst | 5 +++++ docs/kyu_5/kyu_5.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.module.rst create mode 100644 docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.readme.rst diff --git a/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.module.rst b/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.module.rst new file mode 100644 index 00000000000..7cd5b0a9d52 --- /dev/null +++ b/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.module.rst @@ -0,0 +1,11 @@ +kyu\_5.number\_of\_trailing\_zeros\_of\_n.module module +======================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.number_of_trailing_zeros_of_n.readme + kyu_5.number_of_trailing_zeros_of_n \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.readme.rst b/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.readme.rst new file mode 100644 index 00000000000..32893c43628 --- /dev/null +++ b/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/number_of_trailing_zeros_of_n/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 index 3863d1e79d6..b5ab43c7f95 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -26,7 +26,7 @@ Subpackages kyu_5.moving_zeros_to_the_end.module kyu_5.multidimensional_neighbourhood.module kyu_5.not_very_secure.module - kyu_5.number_of_trailing_zeros_of_n + kyu_5.number_of_trailing_zeros_of_n.module kyu_5.simple_pig_latin kyu_5.sports_league_table_ranking kyu_5.string_incrementer From 266a8e3c0b1b2a8d4dd2566a4548e5a47eb08ccc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 11:02:24 -0800 Subject: [PATCH 821/873] simple_pig_latin --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.simple_pig_latin.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.simple_pig_latin.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.simple_pig_latin.module.rst create mode 100644 docs/kyu_5/kyu_5.simple_pig_latin.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index b5ab43c7f95..873c1bb6f9a 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -27,7 +27,7 @@ Subpackages kyu_5.multidimensional_neighbourhood.module kyu_5.not_very_secure.module kyu_5.number_of_trailing_zeros_of_n.module - kyu_5.simple_pig_latin + kyu_5.simple_pig_latin.module kyu_5.sports_league_table_ranking kyu_5.string_incrementer kyu_5.sum_of_pairs diff --git a/docs/kyu_5/kyu_5.simple_pig_latin.module.rst b/docs/kyu_5/kyu_5.simple_pig_latin.module.rst new file mode 100644 index 00000000000..433470e60a6 --- /dev/null +++ b/docs/kyu_5/kyu_5.simple_pig_latin.module.rst @@ -0,0 +1,11 @@ +kyu\_5.simple\_pig\_latin.module module +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.simple_pig_latin.readme + kyu_5.simple_pig_latin \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.simple_pig_latin.readme.rst b/docs/kyu_5/kyu_5.simple_pig_latin.readme.rst new file mode 100644 index 00000000000..b8749cc80e7 --- /dev/null +++ b/docs/kyu_5/kyu_5.simple_pig_latin.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/simple_pig_latin/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 3af528e295bfb5c3dba4ac8e7d4949c5aa6c5d43 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 21 Dec 2024 11:05:54 -0800 Subject: [PATCH 822/873] sports_league_table_ranking --- docs/kyu_5/kyu_5.rst | 2 +- .../kyu_5.sports_league_table_ranking.module.rst | 11 +++++++++++ .../kyu_5.sports_league_table_ranking.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.sports_league_table_ranking.module.rst create mode 100644 docs/kyu_5/kyu_5.sports_league_table_ranking.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 873c1bb6f9a..133d1ee5f1d 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -28,7 +28,7 @@ Subpackages kyu_5.not_very_secure.module kyu_5.number_of_trailing_zeros_of_n.module kyu_5.simple_pig_latin.module - kyu_5.sports_league_table_ranking + kyu_5.sports_league_table_ranking.module kyu_5.string_incrementer kyu_5.sum_of_pairs kyu_5.the_hashtag_generator diff --git a/docs/kyu_5/kyu_5.sports_league_table_ranking.module.rst b/docs/kyu_5/kyu_5.sports_league_table_ranking.module.rst new file mode 100644 index 00000000000..d7630f2cf8e --- /dev/null +++ b/docs/kyu_5/kyu_5.sports_league_table_ranking.module.rst @@ -0,0 +1,11 @@ +kyu\_5.sports\_league\_table\_ranking.module module +=================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.sports_league_table_ranking.readme + kyu_5.sports_league_table_ranking \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.sports_league_table_ranking.readme.rst b/docs/kyu_5/kyu_5.sports_league_table_ranking.readme.rst new file mode 100644 index 00000000000..32099e9ea36 --- /dev/null +++ b/docs/kyu_5/kyu_5.sports_league_table_ranking.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/sports_league_table_ranking/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From d06d5076c47cc68ad14c7f333afa8c768cd0dbc5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:53:09 -0800 Subject: [PATCH 823/873] string_incrementer --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.string_incrementer.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.string_incrementer.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.string_incrementer.module.rst create mode 100644 docs/kyu_5/kyu_5.string_incrementer.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 133d1ee5f1d..0f6b6739c14 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -29,7 +29,7 @@ Subpackages kyu_5.number_of_trailing_zeros_of_n.module kyu_5.simple_pig_latin.module kyu_5.sports_league_table_ranking.module - kyu_5.string_incrementer + kyu_5.string_incrementer.module kyu_5.sum_of_pairs kyu_5.the_hashtag_generator kyu_5.tic_tac_toe_checker diff --git a/docs/kyu_5/kyu_5.string_incrementer.module.rst b/docs/kyu_5/kyu_5.string_incrementer.module.rst new file mode 100644 index 00000000000..f3048b624b7 --- /dev/null +++ b/docs/kyu_5/kyu_5.string_incrementer.module.rst @@ -0,0 +1,11 @@ +kyu\_5.string\_incrementer.module module +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.string_incrementer.readme + kyu_5.string_incrementer \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.string_incrementer.readme.rst b/docs/kyu_5/kyu_5.string_incrementer.readme.rst new file mode 100644 index 00000000000..23fda9932c5 --- /dev/null +++ b/docs/kyu_5/kyu_5.string_incrementer.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/string_incrementer/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From a1113fe7f54de9f277d3efb696f2d9a5ee57a443 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:55:00 -0800 Subject: [PATCH 824/873] sum_of_pairs --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.sum_of_pairs.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.sum_of_pairs.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.sum_of_pairs.module.rst create mode 100644 docs/kyu_5/kyu_5.sum_of_pairs.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 0f6b6739c14..4587b542f28 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -30,7 +30,7 @@ Subpackages kyu_5.simple_pig_latin.module kyu_5.sports_league_table_ranking.module kyu_5.string_incrementer.module - kyu_5.sum_of_pairs + kyu_5.sum_of_pairs.module kyu_5.the_hashtag_generator kyu_5.tic_tac_toe_checker kyu_5.valid_parentheses diff --git a/docs/kyu_5/kyu_5.sum_of_pairs.module.rst b/docs/kyu_5/kyu_5.sum_of_pairs.module.rst new file mode 100644 index 00000000000..889837c8619 --- /dev/null +++ b/docs/kyu_5/kyu_5.sum_of_pairs.module.rst @@ -0,0 +1,11 @@ +kyu\_5.sum\_of\_pairs.module module +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.sum_of_pairs.readme + kyu_5.sum_of_pairs \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.sum_of_pairs.readme.rst b/docs/kyu_5/kyu_5.sum_of_pairs.readme.rst new file mode 100644 index 00000000000..89e0c3d91e1 --- /dev/null +++ b/docs/kyu_5/kyu_5.sum_of_pairs.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/sum_of_pairs/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From fc89c363e8423a15bbb7c2d464a24424aeec953c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:56:51 -0800 Subject: [PATCH 825/873] Update kyu_5.string_incrementer.module.rst --- docs/kyu_5/kyu_5.string_incrementer.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_5/kyu_5.string_incrementer.module.rst b/docs/kyu_5/kyu_5.string_incrementer.module.rst index f3048b624b7..12007598f0b 100644 --- a/docs/kyu_5/kyu_5.string_incrementer.module.rst +++ b/docs/kyu_5/kyu_5.string_incrementer.module.rst @@ -1,5 +1,5 @@ kyu\_5.string\_incrementer.module module -======================================= +======================================== Subpackages ----------- From fcee072d32e383739b437ba395db05df7cab9eec Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:56:56 -0800 Subject: [PATCH 826/873] Update kyu_5.sum_of_pairs.module.rst --- docs/kyu_5/kyu_5.sum_of_pairs.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_5/kyu_5.sum_of_pairs.module.rst b/docs/kyu_5/kyu_5.sum_of_pairs.module.rst index 889837c8619..15d191306c3 100644 --- a/docs/kyu_5/kyu_5.sum_of_pairs.module.rst +++ b/docs/kyu_5/kyu_5.sum_of_pairs.module.rst @@ -1,5 +1,5 @@ kyu\_5.sum\_of\_pairs.module module -======================================= +=================================== Subpackages ----------- From 9afef0bea0b14007f51a759ae81b9025d5a9745f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:57:37 -0800 Subject: [PATCH 827/873] the_hashtag_generator --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.the_hashtag_generator.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.the_hashtag_generator.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.the_hashtag_generator.module.rst create mode 100644 docs/kyu_5/kyu_5.the_hashtag_generator.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 4587b542f28..cf29e790a9f 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -31,7 +31,7 @@ Subpackages kyu_5.sports_league_table_ranking.module kyu_5.string_incrementer.module kyu_5.sum_of_pairs.module - kyu_5.the_hashtag_generator + kyu_5.the_hashtag_generator.module kyu_5.tic_tac_toe_checker kyu_5.valid_parentheses kyu_5.where_my_anagrams_at diff --git a/docs/kyu_5/kyu_5.the_hashtag_generator.module.rst b/docs/kyu_5/kyu_5.the_hashtag_generator.module.rst new file mode 100644 index 00000000000..5f1952bb88d --- /dev/null +++ b/docs/kyu_5/kyu_5.the_hashtag_generator.module.rst @@ -0,0 +1,11 @@ +kyu\_5.the\_hashtag\_generator.module module +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.the_hashtag_generator.readme + kyu_5.the_hashtag_generator \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.the_hashtag_generator.readme.rst b/docs/kyu_5/kyu_5.the_hashtag_generator.readme.rst new file mode 100644 index 00000000000..7895446e9ec --- /dev/null +++ b/docs/kyu_5/kyu_5.the_hashtag_generator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/the_hashtag_generator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 7af45b7fc19e409eb04ccbaa76f2432d94e520ea Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:01:02 -0800 Subject: [PATCH 828/873] tic_tac_toe_checker --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.tic_tac_toe_checker.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.tic_tac_toe_checker.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.tic_tac_toe_checker.module.rst create mode 100644 docs/kyu_5/kyu_5.tic_tac_toe_checker.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index cf29e790a9f..683dfd119c0 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -32,7 +32,7 @@ Subpackages kyu_5.string_incrementer.module kyu_5.sum_of_pairs.module kyu_5.the_hashtag_generator.module - kyu_5.tic_tac_toe_checker + kyu_5.tic_tac_toe_checker.module kyu_5.valid_parentheses kyu_5.where_my_anagrams_at diff --git a/docs/kyu_5/kyu_5.tic_tac_toe_checker.module.rst b/docs/kyu_5/kyu_5.tic_tac_toe_checker.module.rst new file mode 100644 index 00000000000..87f488e0ad4 --- /dev/null +++ b/docs/kyu_5/kyu_5.tic_tac_toe_checker.module.rst @@ -0,0 +1,11 @@ +kyu\_5.tic\_tac\_toe\_checker.module module +=========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.tic_tac_toe_checker.readme + kyu_5.tic_tac_toe_checker \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.tic_tac_toe_checker.readme.rst b/docs/kyu_5/kyu_5.tic_tac_toe_checker.readme.rst new file mode 100644 index 00000000000..eb1990c441a --- /dev/null +++ b/docs/kyu_5/kyu_5.tic_tac_toe_checker.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/tic_tac_toe_checker/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 11bb9fd3e232a21461badbd91d7275b68a316f86 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:02:53 -0800 Subject: [PATCH 829/873] valid_parentheses --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.valid_parentheses.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.valid_parentheses.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.valid_parentheses.module.rst create mode 100644 docs/kyu_5/kyu_5.valid_parentheses.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 683dfd119c0..3fc52cb9471 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -33,7 +33,7 @@ Subpackages kyu_5.sum_of_pairs.module kyu_5.the_hashtag_generator.module kyu_5.tic_tac_toe_checker.module - kyu_5.valid_parentheses + kyu_5.valid_parentheses.module kyu_5.where_my_anagrams_at Module contents diff --git a/docs/kyu_5/kyu_5.valid_parentheses.module.rst b/docs/kyu_5/kyu_5.valid_parentheses.module.rst new file mode 100644 index 00000000000..3ed77d8ef09 --- /dev/null +++ b/docs/kyu_5/kyu_5.valid_parentheses.module.rst @@ -0,0 +1,11 @@ +kyu\_5.valid\_parentheses.module module +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.valid_parentheses.readme + kyu_5.valid_parentheses \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.valid_parentheses.readme.rst b/docs/kyu_5/kyu_5.valid_parentheses.readme.rst new file mode 100644 index 00000000000..090a6631d0e --- /dev/null +++ b/docs/kyu_5/kyu_5.valid_parentheses.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/valid_parentheses/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From b7748eba804ff4eb601b88247eb9e1b125ef4e51 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:04:28 -0800 Subject: [PATCH 830/873] where_my_anagrams_at --- docs/kyu_5/kyu_5.rst | 2 +- docs/kyu_5/kyu_5.where_my_anagrams_at.module.rst | 11 +++++++++++ docs/kyu_5/kyu_5.where_my_anagrams_at.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_5/kyu_5.where_my_anagrams_at.module.rst create mode 100644 docs/kyu_5/kyu_5.where_my_anagrams_at.readme.rst diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst index 3fc52cb9471..4591b9e43b3 100644 --- a/docs/kyu_5/kyu_5.rst +++ b/docs/kyu_5/kyu_5.rst @@ -34,7 +34,7 @@ Subpackages kyu_5.the_hashtag_generator.module kyu_5.tic_tac_toe_checker.module kyu_5.valid_parentheses.module - kyu_5.where_my_anagrams_at + kyu_5.where_my_anagrams_at.module Module contents --------------- diff --git a/docs/kyu_5/kyu_5.where_my_anagrams_at.module.rst b/docs/kyu_5/kyu_5.where_my_anagrams_at.module.rst new file mode 100644 index 00000000000..cb164aad609 --- /dev/null +++ b/docs/kyu_5/kyu_5.where_my_anagrams_at.module.rst @@ -0,0 +1,11 @@ +kyu\_5.where\_my\_anagrams\_at.module module +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.where_my_anagrams_at.readme + kyu_5.where_my_anagrams_at \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.where_my_anagrams_at.readme.rst b/docs/kyu_5/kyu_5.where_my_anagrams_at.readme.rst new file mode 100644 index 00000000000..cdc93d6e18c --- /dev/null +++ b/docs/kyu_5/kyu_5.where_my_anagrams_at.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/where_my_anagrams_at/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 7a4abfe287690603f2a5055c713b733709f12f02 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:06:27 -0800 Subject: [PATCH 831/873] Update index.rst --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 32b8296193a..20687a2cf26 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to Python3 solutions for codewars problems's documentation! +Welcome to Python3 solutions for codewars problems documentation! =================================================================== .. toctree:: From e73f141c2c45aff122a205b1563b93e769135ffa Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:39:37 -0800 Subject: [PATCH 832/873] Update index.rst --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 20687a2cf26..04a46ebf6c2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,7 +16,7 @@ Welcome to Python3 solutions for codewars problems documentation! kyu_4/kyu_4 kyu_5/kyu_5 kyu_6/kyu_6 - kyu_7 + kyu_7/kyu_7 kyu_8 utils From d76f7e6401df4668b9f035392cba2189842f6ff0 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:42:02 -0800 Subject: [PATCH 833/873] docs for kyu_7 --- docs/{ => kyu_7}/kyu_7.always_perfect.rst | 0 docs/{ => kyu_7}/kyu_7.basic_math_add_or_subtract.rst | 0 docs/{ => kyu_7}/kyu_7.beginner_series_sum_of_numbers.rst | 0 docs/{ => kyu_7}/kyu_7.coloured_triangles.module.rst | 0 docs/{ => kyu_7}/kyu_7.coloured_triangles.readme.rst | 0 docs/{ => kyu_7}/kyu_7.coloured_triangles.rst | 0 docs/{ => kyu_7}/kyu_7.disemvowel_trolls.rst | 0 docs/{ => kyu_7}/kyu_7.easy_line.rst | 0 docs/{ => kyu_7}/kyu_7.factorial.rst | 0 docs/{ => kyu_7}/kyu_7.fill_the_hard_disk_drive.rst | 0 docs/{ => kyu_7}/kyu_7.find_the_longest_gap.rst | 0 docs/{ => kyu_7}/kyu_7.formatting_decimal_places_1.rst | 0 docs/{ => kyu_7}/kyu_7.fun_with_lists_length.rst | 0 docs/{ => kyu_7}/kyu_7.growing_plant.rst | 0 docs/{ => kyu_7}/kyu_7.help_bob_count_letters_and_digits.rst | 0 docs/{ => kyu_7}/kyu_7.isograms.rst | 0 docs/{ => kyu_7}/kyu_7.jaden_casing_strings.rst | 0 docs/{ => kyu_7}/kyu_7.make_class.rst | 0 docs/{ => kyu_7}/kyu_7.maximum_multiple.rst | 0 docs/{ => kyu_7}/kyu_7.password_validator.rst | 0 docs/{ => kyu_7}/kyu_7.powers_of_3.rst | 0 docs/{ => kyu_7}/kyu_7.pull_your_words_together_man.rst | 0 docs/{ => kyu_7}/kyu_7.readme.rst | 0 docs/{ => kyu_7}/kyu_7.remove_the_minimum.rst | 0 docs/{ => kyu_7}/kyu_7.rst | 0 docs/{ => kyu_7}/kyu_7.share_prices.rst | 0 docs/{ => kyu_7}/kyu_7.significant_figures.rst | 0 docs/{ => kyu_7}/kyu_7.simple_fun_152.rst | 0 docs/{ => kyu_7}/kyu_7.sort_out_the_men_from_boys.rst | 0 .../kyu_7.substituting_variables_into_strings_padded_numbers.rst | 0 docs/{ => kyu_7}/kyu_7.sum_of_odd_numbers.rst | 0 docs/{ => kyu_7}/kyu_7.sum_of_powers_of_2.rst | 0 docs/{ => kyu_7}/kyu_7.sum_of_triangular_numbers.rst | 0 docs/{ => kyu_7}/kyu_7.sum_of_two_lowest_int.rst | 0 .../kyu_7.the_first_non_repeated_character_in_string.rst | 0 docs/{ => kyu_7}/kyu_7.valid_parentheses.rst | 0 docs/{ => kyu_7}/kyu_7.vaporcode.rst | 0 docs/{ => kyu_7}/kyu_7.you_are_square.rst | 0 38 files changed, 0 insertions(+), 0 deletions(-) rename docs/{ => kyu_7}/kyu_7.always_perfect.rst (100%) rename docs/{ => kyu_7}/kyu_7.basic_math_add_or_subtract.rst (100%) rename docs/{ => kyu_7}/kyu_7.beginner_series_sum_of_numbers.rst (100%) rename docs/{ => kyu_7}/kyu_7.coloured_triangles.module.rst (100%) rename docs/{ => kyu_7}/kyu_7.coloured_triangles.readme.rst (100%) rename docs/{ => kyu_7}/kyu_7.coloured_triangles.rst (100%) rename docs/{ => kyu_7}/kyu_7.disemvowel_trolls.rst (100%) rename docs/{ => kyu_7}/kyu_7.easy_line.rst (100%) rename docs/{ => kyu_7}/kyu_7.factorial.rst (100%) rename docs/{ => kyu_7}/kyu_7.fill_the_hard_disk_drive.rst (100%) rename docs/{ => kyu_7}/kyu_7.find_the_longest_gap.rst (100%) rename docs/{ => kyu_7}/kyu_7.formatting_decimal_places_1.rst (100%) rename docs/{ => kyu_7}/kyu_7.fun_with_lists_length.rst (100%) rename docs/{ => kyu_7}/kyu_7.growing_plant.rst (100%) rename docs/{ => kyu_7}/kyu_7.help_bob_count_letters_and_digits.rst (100%) rename docs/{ => kyu_7}/kyu_7.isograms.rst (100%) rename docs/{ => kyu_7}/kyu_7.jaden_casing_strings.rst (100%) rename docs/{ => kyu_7}/kyu_7.make_class.rst (100%) rename docs/{ => kyu_7}/kyu_7.maximum_multiple.rst (100%) rename docs/{ => kyu_7}/kyu_7.password_validator.rst (100%) rename docs/{ => kyu_7}/kyu_7.powers_of_3.rst (100%) rename docs/{ => kyu_7}/kyu_7.pull_your_words_together_man.rst (100%) rename docs/{ => kyu_7}/kyu_7.readme.rst (100%) rename docs/{ => kyu_7}/kyu_7.remove_the_minimum.rst (100%) rename docs/{ => kyu_7}/kyu_7.rst (100%) rename docs/{ => kyu_7}/kyu_7.share_prices.rst (100%) rename docs/{ => kyu_7}/kyu_7.significant_figures.rst (100%) rename docs/{ => kyu_7}/kyu_7.simple_fun_152.rst (100%) rename docs/{ => kyu_7}/kyu_7.sort_out_the_men_from_boys.rst (100%) rename docs/{ => kyu_7}/kyu_7.substituting_variables_into_strings_padded_numbers.rst (100%) rename docs/{ => kyu_7}/kyu_7.sum_of_odd_numbers.rst (100%) rename docs/{ => kyu_7}/kyu_7.sum_of_powers_of_2.rst (100%) rename docs/{ => kyu_7}/kyu_7.sum_of_triangular_numbers.rst (100%) rename docs/{ => kyu_7}/kyu_7.sum_of_two_lowest_int.rst (100%) rename docs/{ => kyu_7}/kyu_7.the_first_non_repeated_character_in_string.rst (100%) rename docs/{ => kyu_7}/kyu_7.valid_parentheses.rst (100%) rename docs/{ => kyu_7}/kyu_7.vaporcode.rst (100%) rename docs/{ => kyu_7}/kyu_7.you_are_square.rst (100%) diff --git a/docs/kyu_7.always_perfect.rst b/docs/kyu_7/kyu_7.always_perfect.rst similarity index 100% rename from docs/kyu_7.always_perfect.rst rename to docs/kyu_7/kyu_7.always_perfect.rst diff --git a/docs/kyu_7.basic_math_add_or_subtract.rst b/docs/kyu_7/kyu_7.basic_math_add_or_subtract.rst similarity index 100% rename from docs/kyu_7.basic_math_add_or_subtract.rst rename to docs/kyu_7/kyu_7.basic_math_add_or_subtract.rst diff --git a/docs/kyu_7.beginner_series_sum_of_numbers.rst b/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.rst similarity index 100% rename from docs/kyu_7.beginner_series_sum_of_numbers.rst rename to docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.rst diff --git a/docs/kyu_7.coloured_triangles.module.rst b/docs/kyu_7/kyu_7.coloured_triangles.module.rst similarity index 100% rename from docs/kyu_7.coloured_triangles.module.rst rename to docs/kyu_7/kyu_7.coloured_triangles.module.rst diff --git a/docs/kyu_7.coloured_triangles.readme.rst b/docs/kyu_7/kyu_7.coloured_triangles.readme.rst similarity index 100% rename from docs/kyu_7.coloured_triangles.readme.rst rename to docs/kyu_7/kyu_7.coloured_triangles.readme.rst diff --git a/docs/kyu_7.coloured_triangles.rst b/docs/kyu_7/kyu_7.coloured_triangles.rst similarity index 100% rename from docs/kyu_7.coloured_triangles.rst rename to docs/kyu_7/kyu_7.coloured_triangles.rst diff --git a/docs/kyu_7.disemvowel_trolls.rst b/docs/kyu_7/kyu_7.disemvowel_trolls.rst similarity index 100% rename from docs/kyu_7.disemvowel_trolls.rst rename to docs/kyu_7/kyu_7.disemvowel_trolls.rst diff --git a/docs/kyu_7.easy_line.rst b/docs/kyu_7/kyu_7.easy_line.rst similarity index 100% rename from docs/kyu_7.easy_line.rst rename to docs/kyu_7/kyu_7.easy_line.rst diff --git a/docs/kyu_7.factorial.rst b/docs/kyu_7/kyu_7.factorial.rst similarity index 100% rename from docs/kyu_7.factorial.rst rename to docs/kyu_7/kyu_7.factorial.rst diff --git a/docs/kyu_7.fill_the_hard_disk_drive.rst b/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.rst similarity index 100% rename from docs/kyu_7.fill_the_hard_disk_drive.rst rename to docs/kyu_7/kyu_7.fill_the_hard_disk_drive.rst diff --git a/docs/kyu_7.find_the_longest_gap.rst b/docs/kyu_7/kyu_7.find_the_longest_gap.rst similarity index 100% rename from docs/kyu_7.find_the_longest_gap.rst rename to docs/kyu_7/kyu_7.find_the_longest_gap.rst diff --git a/docs/kyu_7.formatting_decimal_places_1.rst b/docs/kyu_7/kyu_7.formatting_decimal_places_1.rst similarity index 100% rename from docs/kyu_7.formatting_decimal_places_1.rst rename to docs/kyu_7/kyu_7.formatting_decimal_places_1.rst diff --git a/docs/kyu_7.fun_with_lists_length.rst b/docs/kyu_7/kyu_7.fun_with_lists_length.rst similarity index 100% rename from docs/kyu_7.fun_with_lists_length.rst rename to docs/kyu_7/kyu_7.fun_with_lists_length.rst diff --git a/docs/kyu_7.growing_plant.rst b/docs/kyu_7/kyu_7.growing_plant.rst similarity index 100% rename from docs/kyu_7.growing_plant.rst rename to docs/kyu_7/kyu_7.growing_plant.rst diff --git a/docs/kyu_7.help_bob_count_letters_and_digits.rst b/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.rst similarity index 100% rename from docs/kyu_7.help_bob_count_letters_and_digits.rst rename to docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.rst diff --git a/docs/kyu_7.isograms.rst b/docs/kyu_7/kyu_7.isograms.rst similarity index 100% rename from docs/kyu_7.isograms.rst rename to docs/kyu_7/kyu_7.isograms.rst diff --git a/docs/kyu_7.jaden_casing_strings.rst b/docs/kyu_7/kyu_7.jaden_casing_strings.rst similarity index 100% rename from docs/kyu_7.jaden_casing_strings.rst rename to docs/kyu_7/kyu_7.jaden_casing_strings.rst diff --git a/docs/kyu_7.make_class.rst b/docs/kyu_7/kyu_7.make_class.rst similarity index 100% rename from docs/kyu_7.make_class.rst rename to docs/kyu_7/kyu_7.make_class.rst diff --git a/docs/kyu_7.maximum_multiple.rst b/docs/kyu_7/kyu_7.maximum_multiple.rst similarity index 100% rename from docs/kyu_7.maximum_multiple.rst rename to docs/kyu_7/kyu_7.maximum_multiple.rst diff --git a/docs/kyu_7.password_validator.rst b/docs/kyu_7/kyu_7.password_validator.rst similarity index 100% rename from docs/kyu_7.password_validator.rst rename to docs/kyu_7/kyu_7.password_validator.rst diff --git a/docs/kyu_7.powers_of_3.rst b/docs/kyu_7/kyu_7.powers_of_3.rst similarity index 100% rename from docs/kyu_7.powers_of_3.rst rename to docs/kyu_7/kyu_7.powers_of_3.rst diff --git a/docs/kyu_7.pull_your_words_together_man.rst b/docs/kyu_7/kyu_7.pull_your_words_together_man.rst similarity index 100% rename from docs/kyu_7.pull_your_words_together_man.rst rename to docs/kyu_7/kyu_7.pull_your_words_together_man.rst diff --git a/docs/kyu_7.readme.rst b/docs/kyu_7/kyu_7.readme.rst similarity index 100% rename from docs/kyu_7.readme.rst rename to docs/kyu_7/kyu_7.readme.rst diff --git a/docs/kyu_7.remove_the_minimum.rst b/docs/kyu_7/kyu_7.remove_the_minimum.rst similarity index 100% rename from docs/kyu_7.remove_the_minimum.rst rename to docs/kyu_7/kyu_7.remove_the_minimum.rst diff --git a/docs/kyu_7.rst b/docs/kyu_7/kyu_7.rst similarity index 100% rename from docs/kyu_7.rst rename to docs/kyu_7/kyu_7.rst diff --git a/docs/kyu_7.share_prices.rst b/docs/kyu_7/kyu_7.share_prices.rst similarity index 100% rename from docs/kyu_7.share_prices.rst rename to docs/kyu_7/kyu_7.share_prices.rst diff --git a/docs/kyu_7.significant_figures.rst b/docs/kyu_7/kyu_7.significant_figures.rst similarity index 100% rename from docs/kyu_7.significant_figures.rst rename to docs/kyu_7/kyu_7.significant_figures.rst diff --git a/docs/kyu_7.simple_fun_152.rst b/docs/kyu_7/kyu_7.simple_fun_152.rst similarity index 100% rename from docs/kyu_7.simple_fun_152.rst rename to docs/kyu_7/kyu_7.simple_fun_152.rst diff --git a/docs/kyu_7.sort_out_the_men_from_boys.rst b/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.rst similarity index 100% rename from docs/kyu_7.sort_out_the_men_from_boys.rst rename to docs/kyu_7/kyu_7.sort_out_the_men_from_boys.rst diff --git a/docs/kyu_7.substituting_variables_into_strings_padded_numbers.rst b/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.rst similarity index 100% rename from docs/kyu_7.substituting_variables_into_strings_padded_numbers.rst rename to docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.rst diff --git a/docs/kyu_7.sum_of_odd_numbers.rst b/docs/kyu_7/kyu_7.sum_of_odd_numbers.rst similarity index 100% rename from docs/kyu_7.sum_of_odd_numbers.rst rename to docs/kyu_7/kyu_7.sum_of_odd_numbers.rst diff --git a/docs/kyu_7.sum_of_powers_of_2.rst b/docs/kyu_7/kyu_7.sum_of_powers_of_2.rst similarity index 100% rename from docs/kyu_7.sum_of_powers_of_2.rst rename to docs/kyu_7/kyu_7.sum_of_powers_of_2.rst diff --git a/docs/kyu_7.sum_of_triangular_numbers.rst b/docs/kyu_7/kyu_7.sum_of_triangular_numbers.rst similarity index 100% rename from docs/kyu_7.sum_of_triangular_numbers.rst rename to docs/kyu_7/kyu_7.sum_of_triangular_numbers.rst diff --git a/docs/kyu_7.sum_of_two_lowest_int.rst b/docs/kyu_7/kyu_7.sum_of_two_lowest_int.rst similarity index 100% rename from docs/kyu_7.sum_of_two_lowest_int.rst rename to docs/kyu_7/kyu_7.sum_of_two_lowest_int.rst diff --git a/docs/kyu_7.the_first_non_repeated_character_in_string.rst b/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.rst similarity index 100% rename from docs/kyu_7.the_first_non_repeated_character_in_string.rst rename to docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.rst diff --git a/docs/kyu_7.valid_parentheses.rst b/docs/kyu_7/kyu_7.valid_parentheses.rst similarity index 100% rename from docs/kyu_7.valid_parentheses.rst rename to docs/kyu_7/kyu_7.valid_parentheses.rst diff --git a/docs/kyu_7.vaporcode.rst b/docs/kyu_7/kyu_7.vaporcode.rst similarity index 100% rename from docs/kyu_7.vaporcode.rst rename to docs/kyu_7/kyu_7.vaporcode.rst diff --git a/docs/kyu_7.you_are_square.rst b/docs/kyu_7/kyu_7.you_are_square.rst similarity index 100% rename from docs/kyu_7.you_are_square.rst rename to docs/kyu_7/kyu_7.you_are_square.rst From 14f6edbab935e58f186b1ba577d00b55b1162e1e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:43:09 -0800 Subject: [PATCH 834/873] Update kyu_7.readme.rst --- docs/kyu_7/kyu_7.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_7/kyu_7.readme.rst b/docs/kyu_7/kyu_7.readme.rst index e6a2be179f9..73bd6f4cfe6 100644 --- a/docs/kyu_7/kyu_7.readme.rst +++ b/docs/kyu_7/kyu_7.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_7/README.md +.. include:: ../../kyu_7/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 73a9233a837d7ca7754cf8be9d7eefa27b9c10aa Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:47:12 -0800 Subject: [PATCH 835/873] always_perfect --- docs/kyu_7/kyu_7.always_perfect.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.always_perfect.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.always_perfect.module.rst create mode 100644 docs/kyu_7/kyu_7.always_perfect.readme.rst diff --git a/docs/kyu_7/kyu_7.always_perfect.module.rst b/docs/kyu_7/kyu_7.always_perfect.module.rst new file mode 100644 index 00000000000..bb662a161ec --- /dev/null +++ b/docs/kyu_7/kyu_7.always_perfect.module.rst @@ -0,0 +1,11 @@ +kyu\_7.always\_perfect.module package +===================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.always_perfect.readme + kyu_7. \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.always_perfect.readme.rst b/docs/kyu_7/kyu_7.always_perfect.readme.rst new file mode 100644 index 00000000000..7473f611894 --- /dev/null +++ b/docs/kyu_7/kyu_7.always_perfect.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/always_perfect/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index dbf31d06e07..b5a134b2388 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -8,7 +8,7 @@ Subpackages :maxdepth: 4 kyu_7.readme - kyu_7.always_perfect + kyu_7.always_perfect.module kyu_7.basic_math_add_or_subtract kyu_7.beginner_series_sum_of_numbers kyu_7.coloured_triangles.module From e1881f0edca1881a65ec867c8d4b65c9664331c1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:58:24 -0800 Subject: [PATCH 836/873] Update kyu_7.always_perfect.module.rst --- docs/kyu_7/kyu_7.always_perfect.module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_7/kyu_7.always_perfect.module.rst b/docs/kyu_7/kyu_7.always_perfect.module.rst index bb662a161ec..14ade26407c 100644 --- a/docs/kyu_7/kyu_7.always_perfect.module.rst +++ b/docs/kyu_7/kyu_7.always_perfect.module.rst @@ -8,4 +8,4 @@ Subpackages :maxdepth: 4 kyu_7.always_perfect.readme - kyu_7. \ No newline at end of file + kyu_7.always_perfect \ No newline at end of file From 8fc0aa4e33d06971f7d3cb3be951525e8d6cb78b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:01:15 -0800 Subject: [PATCH 837/873] Update kyu_7.coloured_triangles.readme.rst --- docs/kyu_7/kyu_7.coloured_triangles.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_7/kyu_7.coloured_triangles.readme.rst b/docs/kyu_7/kyu_7.coloured_triangles.readme.rst index 51ad2f4b725..61e996a48a3 100644 --- a/docs/kyu_7/kyu_7.coloured_triangles.readme.rst +++ b/docs/kyu_7/kyu_7.coloured_triangles.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_7/coloured_triangles/README.md +.. include:: ../../kyu_7/coloured_triangles/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From e5539c26435b88cd05d5ce179a8083223aa7d6fc Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:05:02 -0800 Subject: [PATCH 838/873] basic_math_add_or_subtract --- .../kyu_7/kyu_7.basic_math_add_or_subtract.module.rst | 11 +++++++++++ .../kyu_7/kyu_7.basic_math_add_or_subtract.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.basic_math_add_or_subtract.module.rst create mode 100644 docs/kyu_7/kyu_7.basic_math_add_or_subtract.readme.rst diff --git a/docs/kyu_7/kyu_7.basic_math_add_or_subtract.module.rst b/docs/kyu_7/kyu_7.basic_math_add_or_subtract.module.rst new file mode 100644 index 00000000000..cc522b5047c --- /dev/null +++ b/docs/kyu_7/kyu_7.basic_math_add_or_subtract.module.rst @@ -0,0 +1,11 @@ +kyu\_7.basic\_math\_add\_or\_subtract.module package +==================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.basic_math_add_or_subtract.readme + kyu_7.basic_math_add_or_subtract \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.basic_math_add_or_subtract.readme.rst b/docs/kyu_7/kyu_7.basic_math_add_or_subtract.readme.rst new file mode 100644 index 00000000000..e183b4e1099 --- /dev/null +++ b/docs/kyu_7/kyu_7.basic_math_add_or_subtract.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/basic_math_add_or_subtract/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index b5a134b2388..cc9408cd43f 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -9,7 +9,7 @@ Subpackages kyu_7.readme kyu_7.always_perfect.module - kyu_7.basic_math_add_or_subtract + kyu_7.basic_math_add_or_subtract.module kyu_7.beginner_series_sum_of_numbers kyu_7.coloured_triangles.module kyu_7.disemvowel_trolls From c82ed6e7a043ee492f246edc85065fefe36f10bb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:07:53 -0800 Subject: [PATCH 839/873] beginner_series_sum_of_numbers --- .../kyu_7.beginner_series_sum_of_numbers.module.rst | 11 +++++++++++ .../kyu_7.beginner_series_sum_of_numbers.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 4 ++-- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.module.rst create mode 100644 docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.readme.rst diff --git a/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.module.rst b/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.module.rst new file mode 100644 index 00000000000..87b2a9cf943 --- /dev/null +++ b/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.module.rst @@ -0,0 +1,11 @@ +kyu\_7.beginner_series_sum_of_numbers.module package +==================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.beginner_series_sum_of_numbers.readme + kyu_7.beginner_series_sum_of_numbers \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.readme.rst b/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.readme.rst new file mode 100644 index 00000000000..68896caff58 --- /dev/null +++ b/docs/kyu_7/kyu_7.beginner_series_sum_of_numbers.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/beginner_series_sum_of_numbers/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index cc9408cd43f..268c2140cbd 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -10,9 +10,9 @@ Subpackages kyu_7.readme kyu_7.always_perfect.module kyu_7.basic_math_add_or_subtract.module - kyu_7.beginner_series_sum_of_numbers + kyu_7.beginner_series_sum_of_numbers.module kyu_7.coloured_triangles.module - kyu_7.disemvowel_trolls + kyu_7.disemvowel_trolls.module kyu_7.easy_line kyu_7.factorial kyu_7.fill_the_hard_disk_drive From d0434e89073900336317a0095a090add4a37d4f9 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:09:27 -0800 Subject: [PATCH 840/873] disemvowel_trolls --- docs/kyu_7/kyu_7.disemvowel_trolls.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.disemvowel_trolls.readme.rst | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 docs/kyu_7/kyu_7.disemvowel_trolls.module.rst create mode 100644 docs/kyu_7/kyu_7.disemvowel_trolls.readme.rst diff --git a/docs/kyu_7/kyu_7.disemvowel_trolls.module.rst b/docs/kyu_7/kyu_7.disemvowel_trolls.module.rst new file mode 100644 index 00000000000..64957dad5f1 --- /dev/null +++ b/docs/kyu_7/kyu_7.disemvowel_trolls.module.rst @@ -0,0 +1,11 @@ +kyu\_7.disemvowel_trolls.module package +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.disemvowel_trolls.readme + kyu_7.disemvowel_trolls \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.disemvowel_trolls.readme.rst b/docs/kyu_7/kyu_7.disemvowel_trolls.readme.rst new file mode 100644 index 00000000000..768938de9ce --- /dev/null +++ b/docs/kyu_7/kyu_7.disemvowel_trolls.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/disemvowel_trolls/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 4150a6e23c60ed09f1018c91e07d8a2fd5ca39c3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:12:16 -0800 Subject: [PATCH 841/873] easy_line --- docs/kyu_7/kyu_7.easy_line.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.easy_line.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.easy_line.module.rst create mode 100644 docs/kyu_7/kyu_7.easy_line.readme.rst diff --git a/docs/kyu_7/kyu_7.easy_line.module.rst b/docs/kyu_7/kyu_7.easy_line.module.rst new file mode 100644 index 00000000000..78ad05bc7c4 --- /dev/null +++ b/docs/kyu_7/kyu_7.easy_line.module.rst @@ -0,0 +1,11 @@ +kyu\_7.easy\_line.module package +================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.easy_line.readme + kyu_7.easy_line \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.easy_line.readme.rst b/docs/kyu_7/kyu_7.easy_line.readme.rst new file mode 100644 index 00000000000..4c7d6a199f5 --- /dev/null +++ b/docs/kyu_7/kyu_7.easy_line.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/easy_line/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 268c2140cbd..0d191d2099b 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -13,7 +13,7 @@ Subpackages kyu_7.beginner_series_sum_of_numbers.module kyu_7.coloured_triangles.module kyu_7.disemvowel_trolls.module - kyu_7.easy_line + kyu_7.easy_line.module kyu_7.factorial kyu_7.fill_the_hard_disk_drive kyu_7.find_the_longest_gap From cb888c37ab214b4936eaf9f7784b777307ac64ae Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:14:42 -0800 Subject: [PATCH 842/873] factorial --- docs/kyu_7/kyu_7.factorial.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.factorial.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.factorial.module.rst create mode 100644 docs/kyu_7/kyu_7.factorial.readme.rst diff --git a/docs/kyu_7/kyu_7.factorial.module.rst b/docs/kyu_7/kyu_7.factorial.module.rst new file mode 100644 index 00000000000..febe84062f1 --- /dev/null +++ b/docs/kyu_7/kyu_7.factorial.module.rst @@ -0,0 +1,11 @@ +kyu\_7.factorial.module package +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.factorial.readme + kyu_7.factorial \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.factorial.readme.rst b/docs/kyu_7/kyu_7.factorial.readme.rst new file mode 100644 index 00000000000..745efc374c8 --- /dev/null +++ b/docs/kyu_7/kyu_7.factorial.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/factorial/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 0d191d2099b..2d5897b220a 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -14,7 +14,7 @@ Subpackages kyu_7.coloured_triangles.module kyu_7.disemvowel_trolls.module kyu_7.easy_line.module - kyu_7.factorial + kyu_7.factorial.module kyu_7.fill_the_hard_disk_drive kyu_7.find_the_longest_gap kyu_7.formatting_decimal_places_1 From f9afea51706077aed5ee308ed73698b44d712756 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:17:46 -0800 Subject: [PATCH 843/873] fill_the_hard_disk_drive --- docs/kyu_7/kyu_7.fill_the_hard_disk_drive.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.fill_the_hard_disk_drive.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.fill_the_hard_disk_drive.module.rst create mode 100644 docs/kyu_7/kyu_7.fill_the_hard_disk_drive.readme.rst diff --git a/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.module.rst b/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.module.rst new file mode 100644 index 00000000000..74f6bf1cf63 --- /dev/null +++ b/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.module.rst @@ -0,0 +1,11 @@ +kyu\_7.fill_the_hard_disk_drive.module package +============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.fill_the_hard_disk_drive.readme + kyu_7.fill_the_hard_disk_drive \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.readme.rst b/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.readme.rst new file mode 100644 index 00000000000..927fd00e76e --- /dev/null +++ b/docs/kyu_7/kyu_7.fill_the_hard_disk_drive.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/fill_the_hard_disk_drive/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 2d5897b220a..4eafe590d4c 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -15,7 +15,7 @@ Subpackages kyu_7.disemvowel_trolls.module kyu_7.easy_line.module kyu_7.factorial.module - kyu_7.fill_the_hard_disk_drive + kyu_7.fill_the_hard_disk_drive.module kyu_7.find_the_longest_gap kyu_7.formatting_decimal_places_1 kyu_7.fun_with_lists_length From fa4b86184a5906098f26fe2c69023bd77520613a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:21:33 -0800 Subject: [PATCH 844/873] find_the_longest_gap --- docs/kyu_7/kyu_7.find_the_longest_gap.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.find_the_longest_gap.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.find_the_longest_gap.module.rst create mode 100644 docs/kyu_7/kyu_7.find_the_longest_gap.readme.rst diff --git a/docs/kyu_7/kyu_7.find_the_longest_gap.module.rst b/docs/kyu_7/kyu_7.find_the_longest_gap.module.rst new file mode 100644 index 00000000000..585636c9897 --- /dev/null +++ b/docs/kyu_7/kyu_7.find_the_longest_gap.module.rst @@ -0,0 +1,11 @@ +kyu\_7.find\_the\_longest\_gap.module package +============================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.find_the_longest_gap.readme + kyu_7.find_the_longest_gap \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.find_the_longest_gap.readme.rst b/docs/kyu_7/kyu_7.find_the_longest_gap.readme.rst new file mode 100644 index 00000000000..c81a0a3520e --- /dev/null +++ b/docs/kyu_7/kyu_7.find_the_longest_gap.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/find_the_longest_gap/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 4eafe590d4c..7b1c05e8819 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -16,7 +16,7 @@ Subpackages kyu_7.easy_line.module kyu_7.factorial.module kyu_7.fill_the_hard_disk_drive.module - kyu_7.find_the_longest_gap + kyu_7.find_the_longest_gap.module kyu_7.formatting_decimal_places_1 kyu_7.fun_with_lists_length kyu_7.growing_plant From 698bf8e8e9b6911756f320fa88b0c853a74e9997 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:23:42 -0800 Subject: [PATCH 845/873] formatting_decimal_places_1 --- .../kyu_7.formatting_decimal_places_1.module.rst | 11 +++++++++++ .../kyu_7.formatting_decimal_places_1.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.formatting_decimal_places_1.module.rst create mode 100644 docs/kyu_7/kyu_7.formatting_decimal_places_1.readme.rst diff --git a/docs/kyu_7/kyu_7.formatting_decimal_places_1.module.rst b/docs/kyu_7/kyu_7.formatting_decimal_places_1.module.rst new file mode 100644 index 00000000000..56f1e9bbf68 --- /dev/null +++ b/docs/kyu_7/kyu_7.formatting_decimal_places_1.module.rst @@ -0,0 +1,11 @@ +kyu\_7.formatting\_decimal\_places\_1.module package +==================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.formatting_decimal_places_1.readme + kyu_7.formatting_decimal_places_1 \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.formatting_decimal_places_1.readme.rst b/docs/kyu_7/kyu_7.formatting_decimal_places_1.readme.rst new file mode 100644 index 00000000000..90babf3b3a8 --- /dev/null +++ b/docs/kyu_7/kyu_7.formatting_decimal_places_1.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/formatting_decimal_places_1/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 7b1c05e8819..17a8361861a 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -17,7 +17,7 @@ Subpackages kyu_7.factorial.module kyu_7.fill_the_hard_disk_drive.module kyu_7.find_the_longest_gap.module - kyu_7.formatting_decimal_places_1 + kyu_7.formatting_decimal_places_1.module kyu_7.fun_with_lists_length kyu_7.growing_plant kyu_7.help_bob_count_letters_and_digits From 787b34ca442922b8984da427b7741ba9ad769319 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:27:25 -0800 Subject: [PATCH 846/873] fun_with_lists_length --- docs/kyu_7/kyu_7.fun_with_lists_length.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.fun_with_lists_length.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.fun_with_lists_length.module.rst create mode 100644 docs/kyu_7/kyu_7.fun_with_lists_length.readme.rst diff --git a/docs/kyu_7/kyu_7.fun_with_lists_length.module.rst b/docs/kyu_7/kyu_7.fun_with_lists_length.module.rst new file mode 100644 index 00000000000..19224981918 --- /dev/null +++ b/docs/kyu_7/kyu_7.fun_with_lists_length.module.rst @@ -0,0 +1,11 @@ +kyu\_7.fun\_with\_lists\_length.module package +============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.fun_with_lists_length.readme + kyu_7.fun_with_lists_length \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.fun_with_lists_length.readme.rst b/docs/kyu_7/kyu_7.fun_with_lists_length.readme.rst new file mode 100644 index 00000000000..98a23e0a118 --- /dev/null +++ b/docs/kyu_7/kyu_7.fun_with_lists_length.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/fun_with_lists_length/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 17a8361861a..6d22f6da757 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -18,7 +18,7 @@ Subpackages kyu_7.fill_the_hard_disk_drive.module kyu_7.find_the_longest_gap.module kyu_7.formatting_decimal_places_1.module - kyu_7.fun_with_lists_length + kyu_7.fun_with_lists_length.module kyu_7.growing_plant kyu_7.help_bob_count_letters_and_digits kyu_7.isograms From 3363fc9c927ff266e2e340f27bb5128a49d7b01b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:29:42 -0800 Subject: [PATCH 847/873] growing_plant --- docs/kyu_7/kyu_7.growing_plant.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.growing_plant.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.growing_plant.module.rst create mode 100644 docs/kyu_7/kyu_7.growing_plant.readme.rst diff --git a/docs/kyu_7/kyu_7.growing_plant.module.rst b/docs/kyu_7/kyu_7.growing_plant.module.rst new file mode 100644 index 00000000000..c01a0af015b --- /dev/null +++ b/docs/kyu_7/kyu_7.growing_plant.module.rst @@ -0,0 +1,11 @@ +kyu\_7.growing\_plant.module package +==================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.growing_plant.readme + kyu_7.growing_plant \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.growing_plant.readme.rst b/docs/kyu_7/kyu_7.growing_plant.readme.rst new file mode 100644 index 00000000000..f10e0c87f5a --- /dev/null +++ b/docs/kyu_7/kyu_7.growing_plant.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/growing_plant/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 6d22f6da757..3e06e449009 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -19,7 +19,7 @@ Subpackages kyu_7.find_the_longest_gap.module kyu_7.formatting_decimal_places_1.module kyu_7.fun_with_lists_length.module - kyu_7.growing_plant + kyu_7.growing_plant.module kyu_7.help_bob_count_letters_and_digits kyu_7.isograms kyu_7.jaden_casing_strings From 392ac9d15441afb771172eacd949cf822eaae0ef Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:33:56 -0800 Subject: [PATCH 848/873] help_bob_count_letters_and_digits --- ...kyu_7.help_bob_count_letters_and_digits.module.rst | 11 +++++++++++ ...kyu_7.help_bob_count_letters_and_digits.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.module.rst create mode 100644 docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.readme.rst diff --git a/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.module.rst b/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.module.rst new file mode 100644 index 00000000000..bce85d377c8 --- /dev/null +++ b/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.module.rst @@ -0,0 +1,11 @@ +kyu\_7.help\_bob\_count\_letters\_and\_digits.module package +============================================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.help_bob_count_letters_and_digits.readme + kyu_7.help_bob_count_letters_and_digits \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.readme.rst b/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.readme.rst new file mode 100644 index 00000000000..45489503d53 --- /dev/null +++ b/docs/kyu_7/kyu_7.help_bob_count_letters_and_digits.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/help_bob_count_letters_and_digits/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 3e06e449009..eb3d5015d0f 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -20,7 +20,7 @@ Subpackages kyu_7.formatting_decimal_places_1.module kyu_7.fun_with_lists_length.module kyu_7.growing_plant.module - kyu_7.help_bob_count_letters_and_digits + kyu_7.help_bob_count_letters_and_digits.module kyu_7.isograms kyu_7.jaden_casing_strings kyu_7.make_class From 1e2d86ad47419ea690ce521bf17903d98cd901ff Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:35:44 -0800 Subject: [PATCH 849/873] isograms --- docs/kyu_7/kyu_7.isograms.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.isograms.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.isograms.module.rst create mode 100644 docs/kyu_7/kyu_7.isograms.readme.rst diff --git a/docs/kyu_7/kyu_7.isograms.module.rst b/docs/kyu_7/kyu_7.isograms.module.rst new file mode 100644 index 00000000000..4c625d07f65 --- /dev/null +++ b/docs/kyu_7/kyu_7.isograms.module.rst @@ -0,0 +1,11 @@ +kyu\_7.isograms.module package +============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.isograms.readme + kyu_7.isograms \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.isograms.readme.rst b/docs/kyu_7/kyu_7.isograms.readme.rst new file mode 100644 index 00000000000..209bd441727 --- /dev/null +++ b/docs/kyu_7/kyu_7.isograms.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/isograms/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index eb3d5015d0f..3a3f4d5d42a 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -21,7 +21,7 @@ Subpackages kyu_7.fun_with_lists_length.module kyu_7.growing_plant.module kyu_7.help_bob_count_letters_and_digits.module - kyu_7.isograms + kyu_7.isograms.module kyu_7.jaden_casing_strings kyu_7.make_class kyu_7.maximum_multiple From a666bb5882e8d482d0f2a1b0833085a685fe06e3 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:38:18 -0800 Subject: [PATCH 850/873] jaden_casing_strings --- docs/kyu_7/kyu_7.jaden_casing_strings.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.jaden_casing_strings.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.jaden_casing_strings.module.rst create mode 100644 docs/kyu_7/kyu_7.jaden_casing_strings.readme.rst diff --git a/docs/kyu_7/kyu_7.jaden_casing_strings.module.rst b/docs/kyu_7/kyu_7.jaden_casing_strings.module.rst new file mode 100644 index 00000000000..62fbc40e98e --- /dev/null +++ b/docs/kyu_7/kyu_7.jaden_casing_strings.module.rst @@ -0,0 +1,11 @@ +kyu\_7.jaden\_casing\_strings.module package +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.jaden_casing_strings.readme + kyu_7.jaden_casing_strings \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.jaden_casing_strings.readme.rst b/docs/kyu_7/kyu_7.jaden_casing_strings.readme.rst new file mode 100644 index 00000000000..d9b457746cb --- /dev/null +++ b/docs/kyu_7/kyu_7.jaden_casing_strings.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/jaden_casing_strings/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 3a3f4d5d42a..4d172ade003 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -22,7 +22,7 @@ Subpackages kyu_7.growing_plant.module kyu_7.help_bob_count_letters_and_digits.module kyu_7.isograms.module - kyu_7.jaden_casing_strings + kyu_7.jaden_casing_strings.module kyu_7.make_class kyu_7.maximum_multiple kyu_7.password_validator From 794cd434589e3938ed12e75b734a54328cbbfa19 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:42:34 -0800 Subject: [PATCH 851/873] make_class --- docs/kyu_7/kyu_7.make_class.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.make_class.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.make_class.module.rst create mode 100644 docs/kyu_7/kyu_7.make_class.readme.rst diff --git a/docs/kyu_7/kyu_7.make_class.module.rst b/docs/kyu_7/kyu_7.make_class.module.rst new file mode 100644 index 00000000000..a0d1669c813 --- /dev/null +++ b/docs/kyu_7/kyu_7.make_class.module.rst @@ -0,0 +1,11 @@ +kyu\_7.make\_class.module package +================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.make_class.readme + kyu_7.make_class \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.make_class.readme.rst b/docs/kyu_7/kyu_7.make_class.readme.rst new file mode 100644 index 00000000000..1d0995049c6 --- /dev/null +++ b/docs/kyu_7/kyu_7.make_class.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/make_class/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 4d172ade003..e2b1ac2a031 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -23,7 +23,7 @@ Subpackages kyu_7.help_bob_count_letters_and_digits.module kyu_7.isograms.module kyu_7.jaden_casing_strings.module - kyu_7.make_class + kyu_7.make_class.module kyu_7.maximum_multiple kyu_7.password_validator kyu_7.powers_of_3 From 558dc42a6bb70736c3850df0997a6e7068ffaa05 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:46:17 -0800 Subject: [PATCH 852/873] maximum_multiple --- docs/kyu_7/kyu_7.maximum_multiple.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.maximum_multiple.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.maximum_multiple.module.rst create mode 100644 docs/kyu_7/kyu_7.maximum_multiple.readme.rst diff --git a/docs/kyu_7/kyu_7.maximum_multiple.module.rst b/docs/kyu_7/kyu_7.maximum_multiple.module.rst new file mode 100644 index 00000000000..f8e218fa610 --- /dev/null +++ b/docs/kyu_7/kyu_7.maximum_multiple.module.rst @@ -0,0 +1,11 @@ +kyu\_7.maximum\_multiple.module package +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.maximum_multiple.readme + kyu_7.maximum_multiple \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.maximum_multiple.readme.rst b/docs/kyu_7/kyu_7.maximum_multiple.readme.rst new file mode 100644 index 00000000000..b0ba33b6e00 --- /dev/null +++ b/docs/kyu_7/kyu_7.maximum_multiple.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/maximum_multiple/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index e2b1ac2a031..21d7f4b6024 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -24,7 +24,7 @@ Subpackages kyu_7.isograms.module kyu_7.jaden_casing_strings.module kyu_7.make_class.module - kyu_7.maximum_multiple + kyu_7.maximum_multiple.module kyu_7.password_validator kyu_7.powers_of_3 kyu_7.pull_your_words_together_man From 5f54eae1e087b55105f2fa91bd42a23e3796f279 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 03:59:08 -0800 Subject: [PATCH 853/873] password_validator --- docs/kyu_7/kyu_7.password_validator.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.password_validator.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.password_validator.module.rst create mode 100644 docs/kyu_7/kyu_7.password_validator.readme.rst diff --git a/docs/kyu_7/kyu_7.password_validator.module.rst b/docs/kyu_7/kyu_7.password_validator.module.rst new file mode 100644 index 00000000000..5b2bd79d7e0 --- /dev/null +++ b/docs/kyu_7/kyu_7.password_validator.module.rst @@ -0,0 +1,11 @@ +kyu\_7.password_validator.module package +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.password_validator.readme + kyu_7.password_validator \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.password_validator.readme.rst b/docs/kyu_7/kyu_7.password_validator.readme.rst new file mode 100644 index 00000000000..129f4c3581b --- /dev/null +++ b/docs/kyu_7/kyu_7.password_validator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/password_validator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 21d7f4b6024..ef3179f8367 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -25,7 +25,7 @@ Subpackages kyu_7.jaden_casing_strings.module kyu_7.make_class.module kyu_7.maximum_multiple.module - kyu_7.password_validator + kyu_7.password_validator.module kyu_7.powers_of_3 kyu_7.pull_your_words_together_man kyu_7.remove_the_minimum From 72c57569995b92be03ea85ca6f8154a97701177c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:02:12 -0800 Subject: [PATCH 854/873] powers_of_3 --- docs/kyu_7/kyu_7.powers_of_3.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.powers_of_3.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.powers_of_3.module.rst create mode 100644 docs/kyu_7/kyu_7.powers_of_3.readme.rst diff --git a/docs/kyu_7/kyu_7.powers_of_3.module.rst b/docs/kyu_7/kyu_7.powers_of_3.module.rst new file mode 100644 index 00000000000..5b48071c7d2 --- /dev/null +++ b/docs/kyu_7/kyu_7.powers_of_3.module.rst @@ -0,0 +1,11 @@ +kyu\_7.powers\_of\_3.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.powers_of_3.readme + kyu_7.powers_of_3 \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.powers_of_3.readme.rst b/docs/kyu_7/kyu_7.powers_of_3.readme.rst new file mode 100644 index 00000000000..ab82c6f5d29 --- /dev/null +++ b/docs/kyu_7/kyu_7.powers_of_3.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/powers_of_3/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index ef3179f8367..d17bc235548 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -26,7 +26,7 @@ Subpackages kyu_7.make_class.module kyu_7.maximum_multiple.module kyu_7.password_validator.module - kyu_7.powers_of_3 + kyu_7.powers_of_3.module kyu_7.pull_your_words_together_man kyu_7.remove_the_minimum kyu_7.share_prices From 7763ce8fb5607ffb1e5fbcd474883e8662438bf1 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:07:04 -0800 Subject: [PATCH 855/873] pull_your_words_together_man --- .../kyu_7.pull_your_words_together_man.module.rst | 11 +++++++++++ .../kyu_7.pull_your_words_together_man.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.pull_your_words_together_man.module.rst create mode 100644 docs/kyu_7/kyu_7.pull_your_words_together_man.readme.rst diff --git a/docs/kyu_7/kyu_7.pull_your_words_together_man.module.rst b/docs/kyu_7/kyu_7.pull_your_words_together_man.module.rst new file mode 100644 index 00000000000..f4a2b7be655 --- /dev/null +++ b/docs/kyu_7/kyu_7.pull_your_words_together_man.module.rst @@ -0,0 +1,11 @@ +kyu\_7.pull\_your\_words\_together\_man.module package +====================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.pull_your_words_together_man.readme + kyu_7.pull_your_words_together_man \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.pull_your_words_together_man.readme.rst b/docs/kyu_7/kyu_7.pull_your_words_together_man.readme.rst new file mode 100644 index 00000000000..d6e45369fff --- /dev/null +++ b/docs/kyu_7/kyu_7.pull_your_words_together_man.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/pull_your_words_together_man/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index d17bc235548..4dcef2120d5 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -27,7 +27,7 @@ Subpackages kyu_7.maximum_multiple.module kyu_7.password_validator.module kyu_7.powers_of_3.module - kyu_7.pull_your_words_together_man + kyu_7.pull_your_words_together_man.module kyu_7.remove_the_minimum kyu_7.share_prices kyu_7.significant_figures From 02c8097812af73cbd417d7dd0572666b3cdc07c8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:09:41 -0800 Subject: [PATCH 856/873] remove_the_minimum --- docs/kyu_7/kyu_7.remove_the_minimum.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.remove_the_minimum.readme.rst | 5 +++++ docs/kyu_7/kyu_7.rst | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.remove_the_minimum.module.rst create mode 100644 docs/kyu_7/kyu_7.remove_the_minimum.readme.rst diff --git a/docs/kyu_7/kyu_7.remove_the_minimum.module.rst b/docs/kyu_7/kyu_7.remove_the_minimum.module.rst new file mode 100644 index 00000000000..57bcb931575 --- /dev/null +++ b/docs/kyu_7/kyu_7.remove_the_minimum.module.rst @@ -0,0 +1,11 @@ +kyu\_7.remove\_the\_minimum.module package +========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.remove_the_minimum.readme + kyu_7.remove_the_minimum \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.remove_the_minimum.readme.rst b/docs/kyu_7/kyu_7.remove_the_minimum.readme.rst new file mode 100644 index 00000000000..735e7bb016d --- /dev/null +++ b/docs/kyu_7/kyu_7.remove_the_minimum.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/remove_the_minimum/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 4dcef2120d5..7872e1f8ec1 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -28,7 +28,7 @@ Subpackages kyu_7.password_validator.module kyu_7.powers_of_3.module kyu_7.pull_your_words_together_man.module - kyu_7.remove_the_minimum + kyu_7.remove_the_minimum.module kyu_7.share_prices kyu_7.significant_figures kyu_7.simple_fun_152 From 997f0f5baaa68e1ef19d066130777d7a18d0b28d Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:11:46 -0800 Subject: [PATCH 857/873] share_prices --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.share_prices.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.share_prices.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.share_prices.module.rst create mode 100644 docs/kyu_7/kyu_7.share_prices.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 7872e1f8ec1..ad9b5d14f12 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -29,7 +29,7 @@ Subpackages kyu_7.powers_of_3.module kyu_7.pull_your_words_together_man.module kyu_7.remove_the_minimum.module - kyu_7.share_prices + kyu_7.share_prices.module kyu_7.significant_figures kyu_7.simple_fun_152 kyu_7.sort_out_the_men_from_boys diff --git a/docs/kyu_7/kyu_7.share_prices.module.rst b/docs/kyu_7/kyu_7.share_prices.module.rst new file mode 100644 index 00000000000..96557ac81bc --- /dev/null +++ b/docs/kyu_7/kyu_7.share_prices.module.rst @@ -0,0 +1,11 @@ +kyu\_7.share\_prices.module package +=================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.share_prices.readme + kyu_7.share_prices \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.share_prices.readme.rst b/docs/kyu_7/kyu_7.share_prices.readme.rst new file mode 100644 index 00000000000..cc12c7f8233 --- /dev/null +++ b/docs/kyu_7/kyu_7.share_prices.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/share_prices/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 29f6fb194e7bc06a8ba4b96d1916671ab9d6f92e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:14:36 -0800 Subject: [PATCH 858/873] significant_figures --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.significant_figures.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.significant_figures.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.significant_figures.module.rst create mode 100644 docs/kyu_7/kyu_7.significant_figures.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index ad9b5d14f12..9a218b8a630 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -30,7 +30,7 @@ Subpackages kyu_7.pull_your_words_together_man.module kyu_7.remove_the_minimum.module kyu_7.share_prices.module - kyu_7.significant_figures + kyu_7.significant_figures.module kyu_7.simple_fun_152 kyu_7.sort_out_the_men_from_boys kyu_7.substituting_variables_into_strings_padded_numbers diff --git a/docs/kyu_7/kyu_7.significant_figures.module.rst b/docs/kyu_7/kyu_7.significant_figures.module.rst new file mode 100644 index 00000000000..4d46789e4f5 --- /dev/null +++ b/docs/kyu_7/kyu_7.significant_figures.module.rst @@ -0,0 +1,11 @@ +kyu\_7.significant_figures.module package +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.significant_figures.readme + kyu_7.significant_figures \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.significant_figures.readme.rst b/docs/kyu_7/kyu_7.significant_figures.readme.rst new file mode 100644 index 00000000000..a3962720d63 --- /dev/null +++ b/docs/kyu_7/kyu_7.significant_figures.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/significant_figures/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 790aef421a6c0fa458578b3ac749bd20ee94cb48 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:18:42 -0800 Subject: [PATCH 859/873] simple_fun_152 --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.simple_fun_152.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.simple_fun_152.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.simple_fun_152.module.rst create mode 100644 docs/kyu_7/kyu_7.simple_fun_152.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 9a218b8a630..6b1665e7ee6 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -31,7 +31,7 @@ Subpackages kyu_7.remove_the_minimum.module kyu_7.share_prices.module kyu_7.significant_figures.module - kyu_7.simple_fun_152 + kyu_7.simple_fun_152.module kyu_7.sort_out_the_men_from_boys kyu_7.substituting_variables_into_strings_padded_numbers kyu_7.sum_of_odd_numbers diff --git a/docs/kyu_7/kyu_7.simple_fun_152.module.rst b/docs/kyu_7/kyu_7.simple_fun_152.module.rst new file mode 100644 index 00000000000..3743a5c0b6e --- /dev/null +++ b/docs/kyu_7/kyu_7.simple_fun_152.module.rst @@ -0,0 +1,11 @@ +kyu\_7.simple\_fun\_152.module package +====================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.simple_fun_152.readme + kyu_7.simple_fun_152 \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.simple_fun_152.readme.rst b/docs/kyu_7/kyu_7.simple_fun_152.readme.rst new file mode 100644 index 00000000000..c74a2bc072e --- /dev/null +++ b/docs/kyu_7/kyu_7.simple_fun_152.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/simple_fun_152/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 52d9334390d89358f6df58e729c948c5a684f8c4 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:20:40 -0800 Subject: [PATCH 860/873] sort_out_the_men_from_boys --- docs/kyu_7/kyu_7.rst | 2 +- .../kyu_7/kyu_7.sort_out_the_men_from_boys.module.rst | 11 +++++++++++ .../kyu_7/kyu_7.sort_out_the_men_from_boys.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.sort_out_the_men_from_boys.module.rst create mode 100644 docs/kyu_7/kyu_7.sort_out_the_men_from_boys.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 6b1665e7ee6..bafcaf38a36 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -32,7 +32,7 @@ Subpackages kyu_7.share_prices.module kyu_7.significant_figures.module kyu_7.simple_fun_152.module - kyu_7.sort_out_the_men_from_boys + kyu_7.sort_out_the_men_from_boys.module kyu_7.substituting_variables_into_strings_padded_numbers kyu_7.sum_of_odd_numbers kyu_7.sum_of_powers_of_2 diff --git a/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.module.rst b/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.module.rst new file mode 100644 index 00000000000..d0640ead849 --- /dev/null +++ b/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.module.rst @@ -0,0 +1,11 @@ +kyu\_7.sort\_out\_the\_men\_from\_boys.module package +===================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.sort_out_the_men_from_boys.readme + kyu_7.sort_out_the_men_from_boys \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.readme.rst b/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.readme.rst new file mode 100644 index 00000000000..845c65784e7 --- /dev/null +++ b/docs/kyu_7/kyu_7.sort_out_the_men_from_boys.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/sort_out_the_men_from_boys/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 22cbe472549df6c6d422229204e93b6943eddb4c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 04:28:33 -0800 Subject: [PATCH 861/873] substituting_variables_into_strings_padded_numbers --- docs/kyu_7/kyu_7.rst | 2 +- ...g_variables_into_strings_padded_numbers.module.rst | 11 +++++++++++ ...g_variables_into_strings_padded_numbers.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.module.rst create mode 100644 docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index bafcaf38a36..b16b10237ba 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -33,7 +33,7 @@ Subpackages kyu_7.significant_figures.module kyu_7.simple_fun_152.module kyu_7.sort_out_the_men_from_boys.module - kyu_7.substituting_variables_into_strings_padded_numbers + kyu_7.substituting_variables_into_strings_padded_numbers.module kyu_7.sum_of_odd_numbers kyu_7.sum_of_powers_of_2 kyu_7.sum_of_triangular_numbers diff --git a/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.module.rst b/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.module.rst new file mode 100644 index 00000000000..f3b3b18f69b --- /dev/null +++ b/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.module.rst @@ -0,0 +1,11 @@ +kyu\_7.substituting\_variables\_into\_strings\_padded\_numbers.module package +============================================================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.substituting_variables_into_strings_padded_numbers.readme + kyu_7.substituting_variables_into_strings_padded_numbers \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.readme.rst b/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.readme.rst new file mode 100644 index 00000000000..bea2e0f6ad6 --- /dev/null +++ b/docs/kyu_7/kyu_7.substituting_variables_into_strings_padded_numbers.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/substituting_variables_into_strings_padded_numbers/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 4c6bf74b69eaff263106406759b86557c90e6b0b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 12:59:05 -0800 Subject: [PATCH 862/873] sum_of_odd_numbers --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.sum_of_odd_numbers.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst create mode 100644 docs/kyu_7/kyu_7.sum_of_odd_numbers.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index b16b10237ba..3725d5234b6 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -34,7 +34,7 @@ Subpackages kyu_7.simple_fun_152.module kyu_7.sort_out_the_men_from_boys.module kyu_7.substituting_variables_into_strings_padded_numbers.module - kyu_7.sum_of_odd_numbers + kyu_7.sum_of_odd_numbers.module kyu_7.sum_of_powers_of_2 kyu_7.sum_of_triangular_numbers kyu_7.sum_of_two_lowest_int diff --git a/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst b/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst new file mode 100644 index 00000000000..90e13d40be0 --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst @@ -0,0 +1,11 @@ +kyu\_7.sum_of_odd_numbers.module package +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.sum_of_odd_numbers.readme + kyu_7.sum_of_odd_numbers \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.sum_of_odd_numbers.readme.rst b/docs/kyu_7/kyu_7.sum_of_odd_numbers.readme.rst new file mode 100644 index 00000000000..e2b5eb130d4 --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_odd_numbers.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/sum_of_odd_numbers/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 4ed2375fa1e68966b5360b16e876855bf0ea783b Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:02:34 -0800 Subject: [PATCH 863/873] sum_of_powers_of_2 --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.sum_of_powers_of_2.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.sum_of_powers_of_2.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.sum_of_powers_of_2.module.rst create mode 100644 docs/kyu_7/kyu_7.sum_of_powers_of_2.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 3725d5234b6..3b81cadfbf9 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -35,7 +35,7 @@ Subpackages kyu_7.sort_out_the_men_from_boys.module kyu_7.substituting_variables_into_strings_padded_numbers.module kyu_7.sum_of_odd_numbers.module - kyu_7.sum_of_powers_of_2 + kyu_7.sum_of_powers_of_2.module kyu_7.sum_of_triangular_numbers kyu_7.sum_of_two_lowest_int kyu_7.the_first_non_repeated_character_in_string diff --git a/docs/kyu_7/kyu_7.sum_of_powers_of_2.module.rst b/docs/kyu_7/kyu_7.sum_of_powers_of_2.module.rst new file mode 100644 index 00000000000..5b27a25bd9f --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_powers_of_2.module.rst @@ -0,0 +1,11 @@ +kyu\_7.sum\_of\_powers\_of\_2.module package +============================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.sum_of_powers_of_2.readme + kyu_7.sum_of_powers_of_2 \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.sum_of_powers_of_2.readme.rst b/docs/kyu_7/kyu_7.sum_of_powers_of_2.readme.rst new file mode 100644 index 00000000000..ee312f5190a --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_powers_of_2.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/sum_of_powers_of_2/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From fb1a68274b668e567ecf76d8b8f139b5ede1d0fb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:05:19 -0800 Subject: [PATCH 864/873] sum_of_odd_numbers --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 3b81cadfbf9..239765c5217 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -36,7 +36,7 @@ Subpackages kyu_7.substituting_variables_into_strings_padded_numbers.module kyu_7.sum_of_odd_numbers.module kyu_7.sum_of_powers_of_2.module - kyu_7.sum_of_triangular_numbers + kyu_7.sum_of_triangular_numbers.module kyu_7.sum_of_two_lowest_int kyu_7.the_first_non_repeated_character_in_string kyu_7.vaporcode diff --git a/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst b/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst index 90e13d40be0..7e1597c836a 100644 --- a/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst +++ b/docs/kyu_7/kyu_7.sum_of_odd_numbers.module.rst @@ -1,5 +1,5 @@ -kyu\_7.sum_of_odd_numbers.module package -======================================== +kyu\_7.sum\_of\_odd\_numbers.module package +=========================================== Subpackages ----------- From cf1ad179daa617699f585b3f83d4296434729f58 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:07:49 -0800 Subject: [PATCH 865/873] sum_of_triangular_numbers --- docs/kyu_7/kyu_7.sum_of_triangular_numbers.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.sum_of_triangular_numbers.readme.rst | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 docs/kyu_7/kyu_7.sum_of_triangular_numbers.module.rst create mode 100644 docs/kyu_7/kyu_7.sum_of_triangular_numbers.readme.rst diff --git a/docs/kyu_7/kyu_7.sum_of_triangular_numbers.module.rst b/docs/kyu_7/kyu_7.sum_of_triangular_numbers.module.rst new file mode 100644 index 00000000000..49a60b27ffb --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_triangular_numbers.module.rst @@ -0,0 +1,11 @@ +kyu\_7.sum\_of\_triangular\_numbers.module package +================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.sum_of_triangular_numbers.readme + kyu_7.sum_of_triangular_numbers \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.sum_of_triangular_numbers.readme.rst b/docs/kyu_7/kyu_7.sum_of_triangular_numbers.readme.rst new file mode 100644 index 00000000000..b34f02f09a8 --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_triangular_numbers.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/sum_of_triangular_numbers/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From eefc8bcde1120a17a21e6a038869c3338a96ac75 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:12:05 -0800 Subject: [PATCH 866/873] sum_of_two_lowest_int --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.sum_of_two_lowest_int.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.sum_of_two_lowest_int.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.sum_of_two_lowest_int.module.rst create mode 100644 docs/kyu_7/kyu_7.sum_of_two_lowest_int.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 239765c5217..6eadfb44c2d 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -37,7 +37,7 @@ Subpackages kyu_7.sum_of_odd_numbers.module kyu_7.sum_of_powers_of_2.module kyu_7.sum_of_triangular_numbers.module - kyu_7.sum_of_two_lowest_int + kyu_7.sum_of_two_lowest_int.module kyu_7.the_first_non_repeated_character_in_string kyu_7.vaporcode kyu_7.valid_parentheses diff --git a/docs/kyu_7/kyu_7.sum_of_two_lowest_int.module.rst b/docs/kyu_7/kyu_7.sum_of_two_lowest_int.module.rst new file mode 100644 index 00000000000..4aafc642716 --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_two_lowest_int.module.rst @@ -0,0 +1,11 @@ +kyu\_7.sum\_of\_two\_lowest\_int.module package +=============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.sum_of_two_lowest_int.readme + kyu_7.sum_of_two_lowest_int \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.sum_of_two_lowest_int.readme.rst b/docs/kyu_7/kyu_7.sum_of_two_lowest_int.readme.rst new file mode 100644 index 00000000000..ff0be73e724 --- /dev/null +++ b/docs/kyu_7/kyu_7.sum_of_two_lowest_int.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/sum_of_two_lowest_int/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From ba7d801d47e3b0fbc459fd26b0698cd933934431 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:14:24 -0800 Subject: [PATCH 867/873] the_first_non_repeated_character_in_string --- docs/kyu_7/kyu_7.rst | 2 +- ..._first_non_repeated_character_in_string.module.rst | 11 +++++++++++ ..._first_non_repeated_character_in_string.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.module.rst create mode 100644 docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 6eadfb44c2d..84dda08c68a 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -38,7 +38,7 @@ Subpackages kyu_7.sum_of_powers_of_2.module kyu_7.sum_of_triangular_numbers.module kyu_7.sum_of_two_lowest_int.module - kyu_7.the_first_non_repeated_character_in_string + kyu_7.the_first_non_repeated_character_in_string.module kyu_7.vaporcode kyu_7.valid_parentheses kyu_7.you_are_square diff --git a/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.module.rst b/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.module.rst new file mode 100644 index 00000000000..ed906b8ef2a --- /dev/null +++ b/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.module.rst @@ -0,0 +1,11 @@ +kyu\_7.the\_first\_non\_repeated\_character\_in\_string.module package +====================================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.the_first_non_repeated_character_in_string.readme + kyu_7.the_first_non_repeated_character_in_string \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.readme.rst b/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.readme.rst new file mode 100644 index 00000000000..dfb31fd7396 --- /dev/null +++ b/docs/kyu_7/kyu_7.the_first_non_repeated_character_in_string.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/the_first_non_repeated_character_in_string/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 20580dbd6bb8cf09c9167ba79ceda8847edf33b8 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:16:52 -0800 Subject: [PATCH 868/873] valid_parentheses --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.valid_parentheses.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.valid_parentheses.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.valid_parentheses.module.rst create mode 100644 docs/kyu_7/kyu_7.valid_parentheses.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 84dda08c68a..955aabaaaae 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -39,8 +39,8 @@ Subpackages kyu_7.sum_of_triangular_numbers.module kyu_7.sum_of_two_lowest_int.module kyu_7.the_first_non_repeated_character_in_string.module + kyu_7.valid_parentheses.module kyu_7.vaporcode - kyu_7.valid_parentheses kyu_7.you_are_square Module contents diff --git a/docs/kyu_7/kyu_7.valid_parentheses.module.rst b/docs/kyu_7/kyu_7.valid_parentheses.module.rst new file mode 100644 index 00000000000..65fafdcea5b --- /dev/null +++ b/docs/kyu_7/kyu_7.valid_parentheses.module.rst @@ -0,0 +1,11 @@ +kyu\_7.valid\_parentheses.module package +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.valid_parentheses.readme + kyu_7.valid_parentheses \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.valid_parentheses.readme.rst b/docs/kyu_7/kyu_7.valid_parentheses.readme.rst new file mode 100644 index 00000000000..c30f6ea6f1e --- /dev/null +++ b/docs/kyu_7/kyu_7.valid_parentheses.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/valid_parentheses/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 8e2ecace7ef1efb5a60dc465e2ad756a176334b5 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:21:30 -0800 Subject: [PATCH 869/873] vaporcode --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.vaporcode.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.vaporcode.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.vaporcode.module.rst create mode 100644 docs/kyu_7/kyu_7.vaporcode.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 955aabaaaae..3228017f2a9 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -40,7 +40,7 @@ Subpackages kyu_7.sum_of_two_lowest_int.module kyu_7.the_first_non_repeated_character_in_string.module kyu_7.valid_parentheses.module - kyu_7.vaporcode + kyu_7.vaporcode.module kyu_7.you_are_square Module contents diff --git a/docs/kyu_7/kyu_7.vaporcode.module.rst b/docs/kyu_7/kyu_7.vaporcode.module.rst new file mode 100644 index 00000000000..0487391d70e --- /dev/null +++ b/docs/kyu_7/kyu_7.vaporcode.module.rst @@ -0,0 +1,11 @@ +kyu\_7.vaporcode.module package +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.vaporcode.readme + kyu_7.vaporcode \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.vaporcode.readme.rst b/docs/kyu_7/kyu_7.vaporcode.readme.rst new file mode 100644 index 00000000000..76118ef8c59 --- /dev/null +++ b/docs/kyu_7/kyu_7.vaporcode.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/vaporcode/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 1c4d4ae76788488563b2710a86ecd87d638155bf Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:25:54 -0800 Subject: [PATCH 870/873] you_are_square --- docs/kyu_7/kyu_7.rst | 2 +- docs/kyu_7/kyu_7.you_are_square.module.rst | 11 +++++++++++ docs/kyu_7/kyu_7.you_are_square.readme.rst | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/kyu_7/kyu_7.you_are_square.module.rst create mode 100644 docs/kyu_7/kyu_7.you_are_square.readme.rst diff --git a/docs/kyu_7/kyu_7.rst b/docs/kyu_7/kyu_7.rst index 3228017f2a9..0542201924d 100644 --- a/docs/kyu_7/kyu_7.rst +++ b/docs/kyu_7/kyu_7.rst @@ -41,7 +41,7 @@ Subpackages kyu_7.the_first_non_repeated_character_in_string.module kyu_7.valid_parentheses.module kyu_7.vaporcode.module - kyu_7.you_are_square + kyu_7.you_are_square.module Module contents --------------- diff --git a/docs/kyu_7/kyu_7.you_are_square.module.rst b/docs/kyu_7/kyu_7.you_are_square.module.rst new file mode 100644 index 00000000000..e8ae76c4a77 --- /dev/null +++ b/docs/kyu_7/kyu_7.you_are_square.module.rst @@ -0,0 +1,11 @@ +kyu\_7.you\_are\_square.module package +====================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_7.you_are_square.readme + kyu_7.you_are_square \ No newline at end of file diff --git a/docs/kyu_7/kyu_7.you_are_square.readme.rst b/docs/kyu_7/kyu_7.you_are_square.readme.rst new file mode 100644 index 00000000000..05c60bd4e5d --- /dev/null +++ b/docs/kyu_7/kyu_7.you_are_square.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_7/you_are_square/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file From 90af04dc5c50da3c67cd1ed40e9c8c7e64c747df Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:33:48 -0800 Subject: [PATCH 871/873] kyu_8 --- docs/index.rst | 2 +- docs/{ => kyu_8}/kyu_8.alternating_case.rst | 0 docs/{ => kyu_8}/kyu_8.century_from_year.rst | 0 docs/{ => kyu_8}/kyu_8.check_the_exam.rst | 0 docs/{ => kyu_8}/kyu_8.convert_string_to_an_array.rst | 0 docs/{ => kyu_8}/kyu_8.count_the_monkeys.rst | 0 docs/{ => kyu_8}/kyu_8.counting_sheep.rst | 0 docs/{ => kyu_8}/kyu_8.enumerable_magic_25.rst | 0 .../{ => kyu_8}/kyu_8.find_the_first_non_consecutive_number.rst | 0 docs/{ => kyu_8}/kyu_8.formatting_decimal_places_0.rst | 0 docs/{ => kyu_8}/kyu_8.grasshopper_check_for_factor.rst | 0 docs/{ => kyu_8}/kyu_8.grasshopper_messi_goals_function.rst | 0 docs/{ => kyu_8}/kyu_8.grasshopper_personalized_message.rst | 0 docs/{ => kyu_8}/kyu_8.grasshopper_summation.rst | 0 docs/{ => kyu_8}/kyu_8.greek_sort.rst | 0 docs/{ => kyu_8}/kyu_8.holiday_vi_shark_pontoon.rst | 0 docs/{ => kyu_8}/kyu_8.is_it_a_palindrome.rst | 0 docs/{ => kyu_8}/kyu_8.is_your_period_late.rst | 0 docs/{ => kyu_8}/kyu_8.keep_hydrated.rst | 0 docs/{ => kyu_8}/kyu_8.keep_up_the_hoop.rst | 0 docs/{ => kyu_8}/kyu_8.logical_calculator.rst | 0 docs/{ => kyu_8}/kyu_8.make_upper_case.rst | 0 docs/{ => kyu_8}/kyu_8.multiply.rst | 0 docs/{ => kyu_8}/kyu_8.my_head_is_at_the_wrong_end.rst | 0 docs/{ => kyu_8}/kyu_8.readme.rst | 0 docs/{ => kyu_8}/kyu_8.remove_first_and_last_character.rst | 0 docs/{ => kyu_8}/kyu_8.remove_string_spaces.rst | 0 docs/{ => kyu_8}/kyu_8.reversed_strings.rst | 0 docs/{ => kyu_8}/kyu_8.rst | 0 docs/{ => kyu_8}/kyu_8.set_alarm.rst | 0 docs/{ => kyu_8}/kyu_8.surface_area_and_volume_of_box.rst | 0 docs/{ => kyu_8}/kyu_8.swap_values.rst | 0 docs/{ => kyu_8}/kyu_8.terminal_game_move_function.rst | 0 docs/{ => kyu_8}/kyu_8.the_feast_of_many_beasts.rst | 0 docs/{ => kyu_8}/kyu_8.third_angle_of_triangle.rst | 0 docs/{ => kyu_8}/kyu_8.well_of_ideas_easy_version.rst | 0 docs/{ => kyu_8}/kyu_8.will_there_be_enough_space.rst | 0 docs/{ => kyu_8}/kyu_8.will_you_make_it.rst | 0 docs/{ => kyu_8}/kyu_8.wolf_in_sheep_clothing.rst | 0 39 files changed, 1 insertion(+), 1 deletion(-) rename docs/{ => kyu_8}/kyu_8.alternating_case.rst (100%) rename docs/{ => kyu_8}/kyu_8.century_from_year.rst (100%) rename docs/{ => kyu_8}/kyu_8.check_the_exam.rst (100%) rename docs/{ => kyu_8}/kyu_8.convert_string_to_an_array.rst (100%) rename docs/{ => kyu_8}/kyu_8.count_the_monkeys.rst (100%) rename docs/{ => kyu_8}/kyu_8.counting_sheep.rst (100%) rename docs/{ => kyu_8}/kyu_8.enumerable_magic_25.rst (100%) rename docs/{ => kyu_8}/kyu_8.find_the_first_non_consecutive_number.rst (100%) rename docs/{ => kyu_8}/kyu_8.formatting_decimal_places_0.rst (100%) rename docs/{ => kyu_8}/kyu_8.grasshopper_check_for_factor.rst (100%) rename docs/{ => kyu_8}/kyu_8.grasshopper_messi_goals_function.rst (100%) rename docs/{ => kyu_8}/kyu_8.grasshopper_personalized_message.rst (100%) rename docs/{ => kyu_8}/kyu_8.grasshopper_summation.rst (100%) rename docs/{ => kyu_8}/kyu_8.greek_sort.rst (100%) rename docs/{ => kyu_8}/kyu_8.holiday_vi_shark_pontoon.rst (100%) rename docs/{ => kyu_8}/kyu_8.is_it_a_palindrome.rst (100%) rename docs/{ => kyu_8}/kyu_8.is_your_period_late.rst (100%) rename docs/{ => kyu_8}/kyu_8.keep_hydrated.rst (100%) rename docs/{ => kyu_8}/kyu_8.keep_up_the_hoop.rst (100%) rename docs/{ => kyu_8}/kyu_8.logical_calculator.rst (100%) rename docs/{ => kyu_8}/kyu_8.make_upper_case.rst (100%) rename docs/{ => kyu_8}/kyu_8.multiply.rst (100%) rename docs/{ => kyu_8}/kyu_8.my_head_is_at_the_wrong_end.rst (100%) rename docs/{ => kyu_8}/kyu_8.readme.rst (100%) rename docs/{ => kyu_8}/kyu_8.remove_first_and_last_character.rst (100%) rename docs/{ => kyu_8}/kyu_8.remove_string_spaces.rst (100%) rename docs/{ => kyu_8}/kyu_8.reversed_strings.rst (100%) rename docs/{ => kyu_8}/kyu_8.rst (100%) rename docs/{ => kyu_8}/kyu_8.set_alarm.rst (100%) rename docs/{ => kyu_8}/kyu_8.surface_area_and_volume_of_box.rst (100%) rename docs/{ => kyu_8}/kyu_8.swap_values.rst (100%) rename docs/{ => kyu_8}/kyu_8.terminal_game_move_function.rst (100%) rename docs/{ => kyu_8}/kyu_8.the_feast_of_many_beasts.rst (100%) rename docs/{ => kyu_8}/kyu_8.third_angle_of_triangle.rst (100%) rename docs/{ => kyu_8}/kyu_8.well_of_ideas_easy_version.rst (100%) rename docs/{ => kyu_8}/kyu_8.will_there_be_enough_space.rst (100%) rename docs/{ => kyu_8}/kyu_8.will_you_make_it.rst (100%) rename docs/{ => kyu_8}/kyu_8.wolf_in_sheep_clothing.rst (100%) diff --git a/docs/index.rst b/docs/index.rst index 04a46ebf6c2..392b6ef0422 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ Welcome to Python3 solutions for codewars problems documentation! kyu_5/kyu_5 kyu_6/kyu_6 kyu_7/kyu_7 - kyu_8 + kyu_8/kyu_8 utils Indices and tables diff --git a/docs/kyu_8.alternating_case.rst b/docs/kyu_8/kyu_8.alternating_case.rst similarity index 100% rename from docs/kyu_8.alternating_case.rst rename to docs/kyu_8/kyu_8.alternating_case.rst diff --git a/docs/kyu_8.century_from_year.rst b/docs/kyu_8/kyu_8.century_from_year.rst similarity index 100% rename from docs/kyu_8.century_from_year.rst rename to docs/kyu_8/kyu_8.century_from_year.rst diff --git a/docs/kyu_8.check_the_exam.rst b/docs/kyu_8/kyu_8.check_the_exam.rst similarity index 100% rename from docs/kyu_8.check_the_exam.rst rename to docs/kyu_8/kyu_8.check_the_exam.rst diff --git a/docs/kyu_8.convert_string_to_an_array.rst b/docs/kyu_8/kyu_8.convert_string_to_an_array.rst similarity index 100% rename from docs/kyu_8.convert_string_to_an_array.rst rename to docs/kyu_8/kyu_8.convert_string_to_an_array.rst diff --git a/docs/kyu_8.count_the_monkeys.rst b/docs/kyu_8/kyu_8.count_the_monkeys.rst similarity index 100% rename from docs/kyu_8.count_the_monkeys.rst rename to docs/kyu_8/kyu_8.count_the_monkeys.rst diff --git a/docs/kyu_8.counting_sheep.rst b/docs/kyu_8/kyu_8.counting_sheep.rst similarity index 100% rename from docs/kyu_8.counting_sheep.rst rename to docs/kyu_8/kyu_8.counting_sheep.rst diff --git a/docs/kyu_8.enumerable_magic_25.rst b/docs/kyu_8/kyu_8.enumerable_magic_25.rst similarity index 100% rename from docs/kyu_8.enumerable_magic_25.rst rename to docs/kyu_8/kyu_8.enumerable_magic_25.rst diff --git a/docs/kyu_8.find_the_first_non_consecutive_number.rst b/docs/kyu_8/kyu_8.find_the_first_non_consecutive_number.rst similarity index 100% rename from docs/kyu_8.find_the_first_non_consecutive_number.rst rename to docs/kyu_8/kyu_8.find_the_first_non_consecutive_number.rst diff --git a/docs/kyu_8.formatting_decimal_places_0.rst b/docs/kyu_8/kyu_8.formatting_decimal_places_0.rst similarity index 100% rename from docs/kyu_8.formatting_decimal_places_0.rst rename to docs/kyu_8/kyu_8.formatting_decimal_places_0.rst diff --git a/docs/kyu_8.grasshopper_check_for_factor.rst b/docs/kyu_8/kyu_8.grasshopper_check_for_factor.rst similarity index 100% rename from docs/kyu_8.grasshopper_check_for_factor.rst rename to docs/kyu_8/kyu_8.grasshopper_check_for_factor.rst diff --git a/docs/kyu_8.grasshopper_messi_goals_function.rst b/docs/kyu_8/kyu_8.grasshopper_messi_goals_function.rst similarity index 100% rename from docs/kyu_8.grasshopper_messi_goals_function.rst rename to docs/kyu_8/kyu_8.grasshopper_messi_goals_function.rst diff --git a/docs/kyu_8.grasshopper_personalized_message.rst b/docs/kyu_8/kyu_8.grasshopper_personalized_message.rst similarity index 100% rename from docs/kyu_8.grasshopper_personalized_message.rst rename to docs/kyu_8/kyu_8.grasshopper_personalized_message.rst diff --git a/docs/kyu_8.grasshopper_summation.rst b/docs/kyu_8/kyu_8.grasshopper_summation.rst similarity index 100% rename from docs/kyu_8.grasshopper_summation.rst rename to docs/kyu_8/kyu_8.grasshopper_summation.rst diff --git a/docs/kyu_8.greek_sort.rst b/docs/kyu_8/kyu_8.greek_sort.rst similarity index 100% rename from docs/kyu_8.greek_sort.rst rename to docs/kyu_8/kyu_8.greek_sort.rst diff --git a/docs/kyu_8.holiday_vi_shark_pontoon.rst b/docs/kyu_8/kyu_8.holiday_vi_shark_pontoon.rst similarity index 100% rename from docs/kyu_8.holiday_vi_shark_pontoon.rst rename to docs/kyu_8/kyu_8.holiday_vi_shark_pontoon.rst diff --git a/docs/kyu_8.is_it_a_palindrome.rst b/docs/kyu_8/kyu_8.is_it_a_palindrome.rst similarity index 100% rename from docs/kyu_8.is_it_a_palindrome.rst rename to docs/kyu_8/kyu_8.is_it_a_palindrome.rst diff --git a/docs/kyu_8.is_your_period_late.rst b/docs/kyu_8/kyu_8.is_your_period_late.rst similarity index 100% rename from docs/kyu_8.is_your_period_late.rst rename to docs/kyu_8/kyu_8.is_your_period_late.rst diff --git a/docs/kyu_8.keep_hydrated.rst b/docs/kyu_8/kyu_8.keep_hydrated.rst similarity index 100% rename from docs/kyu_8.keep_hydrated.rst rename to docs/kyu_8/kyu_8.keep_hydrated.rst diff --git a/docs/kyu_8.keep_up_the_hoop.rst b/docs/kyu_8/kyu_8.keep_up_the_hoop.rst similarity index 100% rename from docs/kyu_8.keep_up_the_hoop.rst rename to docs/kyu_8/kyu_8.keep_up_the_hoop.rst diff --git a/docs/kyu_8.logical_calculator.rst b/docs/kyu_8/kyu_8.logical_calculator.rst similarity index 100% rename from docs/kyu_8.logical_calculator.rst rename to docs/kyu_8/kyu_8.logical_calculator.rst diff --git a/docs/kyu_8.make_upper_case.rst b/docs/kyu_8/kyu_8.make_upper_case.rst similarity index 100% rename from docs/kyu_8.make_upper_case.rst rename to docs/kyu_8/kyu_8.make_upper_case.rst diff --git a/docs/kyu_8.multiply.rst b/docs/kyu_8/kyu_8.multiply.rst similarity index 100% rename from docs/kyu_8.multiply.rst rename to docs/kyu_8/kyu_8.multiply.rst diff --git a/docs/kyu_8.my_head_is_at_the_wrong_end.rst b/docs/kyu_8/kyu_8.my_head_is_at_the_wrong_end.rst similarity index 100% rename from docs/kyu_8.my_head_is_at_the_wrong_end.rst rename to docs/kyu_8/kyu_8.my_head_is_at_the_wrong_end.rst diff --git a/docs/kyu_8.readme.rst b/docs/kyu_8/kyu_8.readme.rst similarity index 100% rename from docs/kyu_8.readme.rst rename to docs/kyu_8/kyu_8.readme.rst diff --git a/docs/kyu_8.remove_first_and_last_character.rst b/docs/kyu_8/kyu_8.remove_first_and_last_character.rst similarity index 100% rename from docs/kyu_8.remove_first_and_last_character.rst rename to docs/kyu_8/kyu_8.remove_first_and_last_character.rst diff --git a/docs/kyu_8.remove_string_spaces.rst b/docs/kyu_8/kyu_8.remove_string_spaces.rst similarity index 100% rename from docs/kyu_8.remove_string_spaces.rst rename to docs/kyu_8/kyu_8.remove_string_spaces.rst diff --git a/docs/kyu_8.reversed_strings.rst b/docs/kyu_8/kyu_8.reversed_strings.rst similarity index 100% rename from docs/kyu_8.reversed_strings.rst rename to docs/kyu_8/kyu_8.reversed_strings.rst diff --git a/docs/kyu_8.rst b/docs/kyu_8/kyu_8.rst similarity index 100% rename from docs/kyu_8.rst rename to docs/kyu_8/kyu_8.rst diff --git a/docs/kyu_8.set_alarm.rst b/docs/kyu_8/kyu_8.set_alarm.rst similarity index 100% rename from docs/kyu_8.set_alarm.rst rename to docs/kyu_8/kyu_8.set_alarm.rst diff --git a/docs/kyu_8.surface_area_and_volume_of_box.rst b/docs/kyu_8/kyu_8.surface_area_and_volume_of_box.rst similarity index 100% rename from docs/kyu_8.surface_area_and_volume_of_box.rst rename to docs/kyu_8/kyu_8.surface_area_and_volume_of_box.rst diff --git a/docs/kyu_8.swap_values.rst b/docs/kyu_8/kyu_8.swap_values.rst similarity index 100% rename from docs/kyu_8.swap_values.rst rename to docs/kyu_8/kyu_8.swap_values.rst diff --git a/docs/kyu_8.terminal_game_move_function.rst b/docs/kyu_8/kyu_8.terminal_game_move_function.rst similarity index 100% rename from docs/kyu_8.terminal_game_move_function.rst rename to docs/kyu_8/kyu_8.terminal_game_move_function.rst diff --git a/docs/kyu_8.the_feast_of_many_beasts.rst b/docs/kyu_8/kyu_8.the_feast_of_many_beasts.rst similarity index 100% rename from docs/kyu_8.the_feast_of_many_beasts.rst rename to docs/kyu_8/kyu_8.the_feast_of_many_beasts.rst diff --git a/docs/kyu_8.third_angle_of_triangle.rst b/docs/kyu_8/kyu_8.third_angle_of_triangle.rst similarity index 100% rename from docs/kyu_8.third_angle_of_triangle.rst rename to docs/kyu_8/kyu_8.third_angle_of_triangle.rst diff --git a/docs/kyu_8.well_of_ideas_easy_version.rst b/docs/kyu_8/kyu_8.well_of_ideas_easy_version.rst similarity index 100% rename from docs/kyu_8.well_of_ideas_easy_version.rst rename to docs/kyu_8/kyu_8.well_of_ideas_easy_version.rst diff --git a/docs/kyu_8.will_there_be_enough_space.rst b/docs/kyu_8/kyu_8.will_there_be_enough_space.rst similarity index 100% rename from docs/kyu_8.will_there_be_enough_space.rst rename to docs/kyu_8/kyu_8.will_there_be_enough_space.rst diff --git a/docs/kyu_8.will_you_make_it.rst b/docs/kyu_8/kyu_8.will_you_make_it.rst similarity index 100% rename from docs/kyu_8.will_you_make_it.rst rename to docs/kyu_8/kyu_8.will_you_make_it.rst diff --git a/docs/kyu_8.wolf_in_sheep_clothing.rst b/docs/kyu_8/kyu_8.wolf_in_sheep_clothing.rst similarity index 100% rename from docs/kyu_8.wolf_in_sheep_clothing.rst rename to docs/kyu_8/kyu_8.wolf_in_sheep_clothing.rst From a50e94755a09d83be24a7d9bcc32d9c9a0e40d23 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:37:59 -0800 Subject: [PATCH 872/873] Update kyu_8.readme.rst --- docs/kyu_8/kyu_8.readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kyu_8/kyu_8.readme.rst b/docs/kyu_8/kyu_8.readme.rst index 65a4e32fe24..9507047e52d 100644 --- a/docs/kyu_8/kyu_8.readme.rst +++ b/docs/kyu_8/kyu_8.readme.rst @@ -1,5 +1,5 @@ README ====== -.. include:: ../kyu_8/README.md +.. include:: ../../kyu_8/README.md :parser: myst_parser.sphinx_ \ No newline at end of file From 94ac9d5abee7be6fb6cfeb330a1b802f28aac048 Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:46:31 -0800 Subject: [PATCH 873/873] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cdec1fb788d..1e7faaefbfa 100644 --- a/README.md +++ b/README.md @@ -354,13 +354,11 @@ the environment for every build, see comment from Grimmy below).
    ERROR: The term 'make' is not recognized as the name of a cmdlet -'make' is not recognized as an internal or external command. - The error "'make' is not recognized as an internal or external command, operable program or batch file" occurs when we run the make command on Windows without having make installed. To solve the error, install make using Chocolatey. -``` +```bash make clean make : The term 'make' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. @@ -378,18 +376,18 @@ To install Chocolatey: 1. Open PowerShell as an administrator. 2. Run the following command: - ``` + ```bash Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) ``` 3. Wait for the command to complete. 4. Type choco to make sure Chocolatey is installed: - ``` + ```bash PS C:\WINDOWS\system32> choco Chocolatey v2.4.1 Please run 'choco -?' or 'choco -?' for help menu. ``` 5. Now that you have Chocolatey installed, run the following command to install make: - ``` + ```bash PS C:\WINDOWS\system32> choco install make -y Chocolatey v2.4.1 Installing the following packages: